/* ============================================================================
   PAGE HERO SECTION
   ============================================================================ */

.page-hero {
    position: relative;
    
    height: 514px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0px 40px 40px 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--brand-primary-900);
    overflow: hidden;

}

/* Dark overlay */
.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(4, 43, 43, 0.5) 0%,
        rgba(0, 14, 14, 1) 100%
    );
    z-index: 1;
}

/* Content container */
.page-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    padding: 32px 279px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Suffix breadcrumb pill */
.page-hero-suffix {
    background: rgba(243, 239, 245, 0.1);
    border: 0.68px solid rgba(243, 239, 245, 0.2);
    border-radius: 20551276px;
    padding: 11.63px 29.39px;
    font-family: var(--font-body);
    font-size: 12.86px;
    font-weight: 400;
    line-height: 18.37px;
    color: #F3EFF5;
    text-align: center;
}

/* Main hero title */
.page-hero-title {
    font-family: var(--font-display);
    font-size: 58.8px;
    font-weight: 700;
    line-height: 66.15px;
    color: #F3EFF5;
    margin: 0;
    text-align: center;
}

/* Description text */
.page-hero-description {
    font-family: var(--font-body);
    font-size: 16.54px;
    font-weight: 400;
    line-height: 29.4px;
    color: #F3EFF5;
    max-width: 734.96px;
    margin: 0 auto;
    opacity: 0.9;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .page-hero-inner {
        padding: 32px 120px;
    }
}

@media (max-width: 960px) {
    .page-hero {
        height: 450px;
        padding: 0px 30px 30px 30px;
    }

    .page-hero-inner {
        padding: 32px 60px;
        gap: 18px;
    }

    .page-hero-suffix {
        font-size: 11px;
        padding: 10px 24px;
    }

    .page-hero-title {
        font-size: 42px;
        line-height: 48px;
    }

    .page-hero-description {
        font-size: 15px;
        line-height: 26px;
    }
}

@media (max-width: 600px) {
    .page-hero {
        height: 380px;
        padding: 0px 20px 20px 20px;
    }

    .page-hero-inner {
        padding: 24px 20px;
        gap: 16px;
    }

    .page-hero-suffix {
        font-size: 10px;
        line-height: 16px;
        padding: 9px 20px;
    }

    .page-hero-title {
        font-size: 32px;
        line-height: 38px;
    }

    .page-hero-description {
        font-size: 14px;
        line-height: 24px;
    }
}
