/* ============================================================
   ADVANTAGES SECTION — Секция «Преимущества»
   ============================================================ */

.advantages-section {
    position: relative;
    background: var(--milk-bg);
    padding: 90px 0 60px;
    overflow: hidden;
}

/* Декоративное фоновое изображение */
.advantages-section__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    pointer-events: none;
}

/* ---- Заголовочный блок ---- */

.advantages-section__header {
    position: relative;
    z-index: 1;
    max-width: 980px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}


/* ---- Сетка карточек ---- */

.advantages-section__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ---- Карточка ---- */

.advantages-section__card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #F3FAF6;
border: 1px solid #3CA99E;
box-shadow: 0px 2px 2px 0px #69C7BD1A;

    border-radius: 12px;
    padding:10px;
}

.advantages-section__card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.advantages-section__card-title {
    color: var(--graphite-dark);
}

.advantages-section__card-text {
    color: var(--text-secondary);
    line-height: 1.5;
}

.advantages-section__card-icon {
    flex-shrink: 0;
    width: 80px;
    height: 52px;
}

.advantages-section__card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
    .advantages-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .advantages-section {
        padding: 30px 0 30px;
    }

    .advantages-section__header {
        margin-bottom: 32px;
    }

    .advantages-section__grid {
        grid-template-columns: 1fr;
    }

    .advantages-section__card {
        padding: 16px 16px 16px 20px;
    }
}
