﻿/* ============================================
   hero-banner.css
   Баннер "Мы объединили для Вас клинику и аптеки"
   ============================================ */

/* Базовый контейнер */
.hero-banner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 60px;  
}

/* Группа заголовков */
.hero-banner__header {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

/* Главный заголовок */
.hero-banner__title {
    color: var(--text-color-black-100, #1c1f26);
    text-align: center;
    font-family: 'OpenRunde-Bold', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.011em;
    margin: 0;
}

/* Подзаголовок */
.hero-banner__subtitle {
    color: var(--text-color-black-100, #1c1f26);
    text-align: center;
    font-family: 'OpenRunde-Medium', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.011em;
    width: 100%;
    margin: 0;
}

/* Блок со скидкой */
.hero-banner__discount {
    background: var(--background-color-blue-10, #fcfcfc);
    border-radius: 40px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Текст о скидке */
.hero-banner__discount-text {
    color: var(--text-color-black-100, #1c1f26);
    text-align: center;
    font-family: 'OpenRunde-Medium', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.011em;
    flex: 1;
    margin: 0;
}

/* ===== АДАПТИВ: Планшет (768px - 1200px) ===== */
@media (max-width: 1200px) {
    .hero-banner__title {
        font-size: 28px;
    }

    .hero-banner__subtitle {
        font-size: 15px;
    }

    .hero-banner__discount-text {
        font-size: 15px;
    }

    .hero-banner__discount {
        padding: 14px 20px;
        border-radius: 32px;
    }
}

/* ===== АДАПТИВ: Мобильный (≤767px) ===== */
@media (max-width: 767px) {
    .hero-banner {
        gap: 12px;
    }

    .hero-banner__title {
        font-size: 24px;
    }

    .hero-banner__subtitle {
        font-size: 14px;
    }

    .hero-banner__discount {
        padding: 12px 16px;
        border-radius: 24px;
    }

    .hero-banner__discount-text {
        font-size: 14px;
    }
}

/* ===== АДАПТИВ: Маленький мобильный (≤480px) ===== */
@media (max-width: 480px) {
    .hero-banner__title {
        font-size: 20px;
    }

    .hero-banner__subtitle {
        font-size: 12px;
    }

    .hero-banner__discount {
        padding: 10px 14px;
        border-radius: 20px;
    }

    .hero-banner__discount-text {
        font-size: 12px;
    }
}
