/* Splash Header Component */
.cite-splash-header {
    position: relative;
    min-height: 450px;
    height: 55vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.cite-splash-header--under-construction {
    min-height: 100vh;
    height: 100vh !important;
    padding: 5rem 1.5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
}

.cite-splash-header__text-bar {
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    margin: 3rem 0rem;
    padding: 4rem 4rem 4rem 0rem;
    padding-left: max(var(--site-padding), calc((100vw - var(--site-width)) / 2));
    display: inline-block;
    border-bottom-right-radius: 50px;
}

.cite-splash-header__text-bar--right {
    margin-left: auto;
    margin-right: 0;
    padding: 4rem 0 4rem 4rem;
    padding-right: max(var(--site-padding), calc((100vw - var(--site-width)) / 2));
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 50px;
}

.cite-splash-header__text-bar--right .cite-splash-header__content {
    padding-left: 5rem;
    padding-right: var(--site-padding);
}

.cite-splash-header--gradient .cite-splash-header__text-bar,
.cite-splash-header--color .cite-splash-header__text-bar {
    background: rgba(255, 255, 255, 1);
}

.cite-splash-header__content {
    max-width: var(--site-width);
    padding-right: 5rem;
    padding-left: var(--site-padding);
}

.cite-splash-header__headline {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--cite-dark);
    line-height: 1.1;
    letter-spacing: 2px;
}

.cite-splash-header__headline-highlight {
    color: var(--cite-blue);
}

.cite-splash-header--under-construction .cite-splash-header__headline-highlight {
    color: var(--cite-lime);
}

.cite-splash-header__copy {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: var(--cite-dark);
    opacity: 0.9;
}

.cite-splash-header__button-wrapper {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 0 max(var(--site-padding), calc((100vw - var(--site-width)) / 2));
    width: 100%;
}

.cite-splash-header__cta {
    margin-top: 1rem;
}

.cite-splash-header__uc-content {
    width: min(720px, 90vw);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cite-splash-header__uc-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.cite-splash-header__uc-headline {
    font-size: clamp(2.75rem, 6vw, 4.25rem);
    margin-bottom: 1.5rem;
    color: inherit;
}

.cite-splash-header__uc-copy {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 auto;
}

.cite-splash-header__uc-cta {
    margin-top: 2rem;
}

/* Responsive adjustments for splash header */
@media (max-width: 1024px) {
    .cite-splash-header__headline {
        font-size: 3rem;
    }
    
    .cite-splash-header__copy {
        font-size: 1.125rem;
    }
    .cite-splash-header__text-bar {
        margin-right: var(--site-padding);
    }
    .cite-splash-header__text-bar--right {
        margin-left: var(--site-padding);
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .cite-splash-header__text-bar {
        margin-right: var(--site-padding);
    }
    .cite-splash-header__text-bar--right {
        margin-left: var(--site-padding);
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .cite-splash-header__headline {
        font-size: 2.5rem;
    }

    .cite-splash-header__text-bar {
        padding: 3rem 3rem 3rem 0;
        margin-right: var(--site-padding-mobile);
    }
    .cite-splash-header__text-bar--right {
        padding: 3rem 0 3rem 3rem;
        margin-left: var(--site-padding-mobile);
        margin-right: 0;
    }
    
    .cite-splash-header__content {
        padding-right: 2rem;
        width: 75%;
    }
    .cite-splash-header__text-bar--right .cite-splash-header__content {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .cite-splash-header--under-construction {
        padding: 4rem 1rem;
    }

    .cite-splash-header__uc-content {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cite-splash-header__headline {
        font-size: 2rem;
    }
    
    .cite-splash-header__text-bar {
        padding: 2rem 2rem 2rem 0;
        margin: 2rem 0;
        margin-right: var(--site-padding-mobile);
    }
    .cite-splash-header__text-bar--right {
        padding: 2rem 0 2rem 2rem;
        margin-left: var(--site-padding-mobile);
        margin-right: 0;
    }
    
    .cite-splash-header__copy {
        font-size: 1rem;
    }
    
    .cite-splash-header__content {
        padding-right: 1rem;
        width: unset;
    }
    .cite-splash-header__text-bar--right .cite-splash-header__content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .cite-splash-header__button {
        padding: 0.875rem 1.5rem;
        font-size: 14px;
    }

    .cite-splash-header--under-construction {
        padding: 3rem 1rem;
        min-height: 85vh;
    }

    .cite-splash-header__uc-headline {
        font-size: 2.25rem;
    }

    .cite-splash-header__uc-copy {
        font-size: 1.05rem;
    }
}
