/**
 * Inner Banner Section Block
 *
 * Full-width background image with an optional semi-transparent navy title box.
 * Matches child-theme-sections-screenshots/inner-banner-section.png
 */

:root {
    --color-navy: #385d8c;
    --color-pale: #eef3f8;
    --color-teal: #93cddc;
    --color-sky:  #d2eaf0;
    --color-text: #787878;
    --color-white: #ffffff;
}

.inner-banner-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 460px;
    display: flex;
    align-items: center;
    font-family: 'Roboto', sans-serif;
}

.inner-banner-section__container {
    max-width: var(--theme-normal-container-max-width, 1290px);
    width: var(--theme-container-width, 100%);
    margin: 0 auto;
    padding: 0 20px;
}

.inner-banner-section__title-box {
    background-color: rgba(56, 93, 140, 0.72);
    padding: 40px 45px;
    max-width: 640px;
}

.inner-banner-section__title {
    color: var(--color-white);
    font-weight: 700;
    font-size: 38px;
    line-height: 1.25;
    margin: 0;
}

.inner-banner-section__subtitle {
    color: var(--color-white);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    margin: 16px 0 0;
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1023px) {
    .inner-banner-section {
        min-height: 300px;
    }

    .inner-banner-section__title {
        font-size: 32px;
    }

    .inner-banner-section__subtitle {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .inner-banner-section {
        min-height: 280px;
    }

    .inner-banner-section__title-box {
        padding: 26px 28px;
        max-width: 100%;
    }

    .inner-banner-section__title {
        font-size: 24px;
    }

    .inner-banner-section__subtitle {
        font-size: 16px;
        margin-top: 12px;
    }
}
