/* ===== Benefity pod bannery (homepage) ===== */
.dp-benefits{
    margin: 18px 0 34px;
  }
  
  .dp-benefits__box{
    border: 1px solid #fff;
    background: #fff;
    border-radius: 16px;
    padding: 18px 16px;
  }
  
  .dp-benefits__grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  
  .dp-benefit{
    display: flex;
    gap: 12px;
    padding: 14px 12px;
    border-radius: 14px;
    border: 1px solid #F2F1EB;
    background: #fff;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  }
  
  .dp-benefit:hover{
    transform: translateY(-2px);
    background: #F2F1EB;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
  }
  
  .dp-benefit__icon{
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(157,155,142,.55);
    background: rgba(255,255,255,.75);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }
  
  .dp-benefit__icon svg{
    width: 22px;
    height: 22px;
    fill: none;
    stroke: #666560;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  
  .dp-benefit__title{
    margin: 0 0 4px;
    font-size: 16px;
    line-height: 1.25;
  }
  
  .dp-benefit__text{
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    color: #666560;
  }
  
  /* responzivně */
  @media (max-width: 991px){
    .dp-benefits__grid{ grid-template-columns: 1fr; }
    .dp-benefit{ padding: 12px; }
  }
  