/* ── Block: Advantages ──────────────────────────────────────────────────── */

.il-advantages {
  padding: 64px 0;
}

.il-advantages__title {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
  color: #4D5154;
}

/* 2-column grid of cards */
.il-advantages__grid {
  display: grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

/* Card: horizontal — image left, text right */
.il-advantages__card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  border: 1px solid #D9DDDE;
  background: #fff;
}

/* Image / placeholder square */
.il-advantages__card-img {
  width: 120px;
  min-width: 120px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #EEF2F3;
  flex-shrink: 0;
}

.il-advantages__card-img--empty {
  background: #D9DDDE;
}

.il-advantages__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text area */
.il-advantages__card-body {
  flex: 1;
  min-width: 0;
}

.il-advantages__card-name {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 10px;
}

.il-advantages__card-desc {
  font-size: 13px;
  line-height: 160%;
  color: var(--color-text);
}

.il-advantages__card-desc p {
  margin: 0 0 6px;
}

.il-advantages__card-desc p:last-child {
  margin-bottom: 0;
}

.il-advantages__card-desc b,
.il-advantages__card-desc strong {
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .il-advantages__grid {
    grid-template-columns: 1fr;
  }

  .il-advantages {
    padding: 56px 0;
  }

  .il-advantages__title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .il-advantages__card-img {
    height: 150px;
  }
}
