/* AGY Features (ikon + başlık link + açıklama) */

.agy-features{ width:100%; }

.agy-features__list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:26px;
}

.agy-feature{
  display:flex;
  align-items:flex-start;
  gap:18px;
}

.agy-feature__icn{
  flex:0 0 auto;
  width:56px;
  height:56px;
  border-radius:999px;
  background: var(--agy-icn-bg, #00A1D9);
  display:flex;
  align-items:center;
  justify-content:center;
}

.agy-feature__icn svg{
  width:26px;
  height:26px;
  fill:#fff;
}

.agy-feature__txt{
  min-width:0; /* taşmaları engeller */
}

.agy-feature__title{
  display:inline-block;
  text-decoration:none;
  font-weight:700;
  font-size: 1.25rem;
  line-height:1.2;
  color:#1a1a1a;
}

.agy-feature__title:hover,
.agy-feature__title:focus{
  text-decoration: underline;
}

.agy-feature__desc{
  margin:6px 0 0 0;
  color:#6b6b6b;
  line-height:1.55;
  font-size: 0.98rem;
}

/* Mobil */
@media (max-width: 600px){
  .agy-feature__icn{ width:48px; height:48px; }
  .agy-feature__icn svg{ width:24px; height:24px; }
  .agy-feature__title{ font-size: 1.15rem; }
}
