/* Liste düzeni */
.benefit-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;

  /* fail-safe: JS çalışmazsa görünür kalsın */
  opacity: 1;
  transform: none;
}

/* Kart */
.benefit-list .benefit-card{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(17,17,17,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.benefit-list .benefit-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  border-color: rgba(255,45,85,.22);
}

/* Sol ikon */
.benefit-list .benefit-icon{
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 999px;
  background: #F4F6FA;

  display: flex;
  align-items: center;
  justify-content: center;

  /* Elementor baseline kaymasını bitir */
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.benefit-list .benefit-icon i{
  font-size: 18px;
  line-height: 1;
  color: #111;
}

.benefit-list .benefit-icon img,
.benefit-list .benefit-icon svg{
  width: 20px;
  height: 20px;
  display: block;
}

/* Elementor icon widget / i / svg baseline kaymasını bitir */
.benefit-list .benefit-icon .elementor-icon,
.benefit-list .benefit-icon i,
.benefit-list .benefit-icon svg,
.benefit-list .benefit-icon img{
  line-height: 0 !important;
  margin: 0 !important;
}

/* Sağ içerik */
.benefit-list .benefit-content{
  flex: 1 1 auto;
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 6px;
}

.benefit-list .benefit-content .elementor-heading-title{
  margin: 0 !important;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.2px;
  color: #111;
}

.benefit-list .benefit-content .elementor-widget-text-editor{
  margin-top: 0 !important;
  color: rgba(17,17,17,.72);
  font-size: 13px;
  line-height: 1.45;
}

.benefit-list .benefit-content .elementor-widget-text-editor p{
  margin: 0 !important;
}

/* Kart içindeki Elementor widget boşluklarını temizle */
.benefit-list .benefit-card .elementor-widget{
  margin: 0 !important;
}
.benefit-list .benefit-card .elementor-widget-wrap{
  padding: 0 !important;
}

@media (max-width: 767px){
  .benefit-list{
    grid-template-columns: 1fr;
  }
  .benefit-list .benefit-card{
    padding: 12px 14px;
  }
  .benefit-list .benefit-icon{
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }
}

/* Animasyon: JS .is-ready eklerse çalışır */
.benefit-list.is-ready{
  opacity: 0;
  transform: translateY(18px);
  animation: benefitWrapIn 1.0s ease forwards;
  will-change: opacity, transform;
}

@keyframes benefitWrapIn{
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
  .benefit-list.is-ready{
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

