/* ===== Гарантийные преимущества ГАЗ ===== */
.gaz-warranty-adv {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    box-sizing: border-box;
}

.gaz-warranty-adv__title {
    margin: 0 0 36px;
    color: #1a1a1a;
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    font-family: "montserrat-black", Sans-serif;
}

.gaz-warranty-adv__title::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    margin-top: 14px;
    background: #97AF2C;
    border-radius: 2px;
}

.gaz-warranty-adv__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gaz-warranty-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 28px 24px 26px;
    box-sizing: border-box;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    min-height: 100%;
}

.gaz-warranty-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.gaz-warranty-card__num-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.gaz-warranty-card__num {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: #1a1a1a;
    font-family: "montserrat-black", Sans-serif;
}

.gaz-warranty-card__line {
    display: block;
    width: 40px;
    height: 3px;
    background: #97AF2C;
    border-radius: 2px;
}

.gaz-warranty-card__icon {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gaz-warranty-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
border-radius: 50%;
}

.gaz-warranty-card__icon-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid #97AF2C;
    
    box-sizing: border-box;
}

.gaz-warranty-card__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #333;
    font-family: "montserrat-reg", Sans-serif;
    font-weight: 400;
}

@media (max-width: 992px) {
    .gaz-warranty-adv__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .gaz-warranty-card {
        padding: 22px 18px 20px;
    }

    .gaz-warranty-card__num {
        font-size: 42px;
    }
}

@media (max-width: 640px) {
    .gaz-warranty-adv {
        padding: 28px 0;
    }

    .gaz-warranty-adv__title {
        margin-bottom: 24px;
        font-size: 20px;
    }

    .gaz-warranty-adv__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gaz-warranty-card__num {
        font-size: 40px;
    }

    .gaz-warranty-card__icon,
    .gaz-warranty-card__icon-placeholder {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }
}
