body {
    overflow-x: hidden;
}

.section {
    padding: 1.5rem 0;
}

.section .section__header {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    text-align: center;
}

.section .section__title {
    font-family: var(--hero-font-family);
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
    margin: 0;
}

.section .section__subtitle {
    font-size: 1rem;
    line-height: 1.37;
    color: var(--on-surface-variant);
}


.badge {
    display: inline-flex;
    align-items: center;
    padding: .25rem .75rem;
    gap: .5rem;
    border-radius: var(--radius-999);
    background-color: var(--secondary);
    color: var(--on-secondary);
    font-size: .75rem;
    line-height: 1.33;
    font-weight: 600;
}

.info-badge {
    display: flex;
    gap: .5rem;
    padding: .75rem;
    border-radius: var(--radius-999);
    background: rgba(105, 42, 0, 0.22);
    backdrop-filter: blur(9px);
    color: var(--on-surface-inverse);
}

.info-badge .info-badge__icon {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-999);
    background: rgba(46, 18, 0, 0.16);
}

.info-badge .info-badge__content {
    display: flex;
    flex-direction: column;
}

.info-badge .info-badge__title {
    font-size: 1rem;
    line-height: 1.37;
    font-weight: 700;
}

.info-badge .info-badge__text {
    font-size: .75rem;
    line-height: 1.33;
    opacity: .7;
}

.tab-section.section {
    padding-bottom: 0;
}

.tab-wrapper {
    display: flex;
    justify-content: center;
}

.tab-wrapper .tab-nav {
    background-color: var(--container);
    padding: .25rem;
    gap: .25rem;
}

.tab-wrapper .tab-button {
    padding: 1rem 1.5rem;
    height: auto;
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-weight: 600;
}

.tab-wrapper .tab-button.active {
    color: var(--on-surface);
    background-color: var(--container-higher);
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.12);
}

/* PAGE STYLES */
@media (min-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .section .section__header {
        margin-bottom: 2rem;
        gap: 1.25rem;
    }

    .section .section__title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .section .section__subtitle {
        font-size: 1.125rem;
        line-height: 1.5rem;
        max-width: 702px;
        align-self: center;
    }

    .tab-wrapper .tab-button {
        padding: 1rem 1.5rem;
        font-family: var(--hero-font-family);
        font-size: 1.5rem;
        line-height: 1.75rem;
    }

}

@media (min-width: 1600px) {
    .ib-hero-section {
        background: var(--bg-img) center -7rem /cover no-repeat;
        min-height: 75vh;
    }
}