/* Universal Hero Section - Matches dispatches page exactly */
.page-hero {
    position: relative;
    padding: 6rem 2rem 1.5rem;
    text-align: center;
    overflow: hidden;
    min-height: 220px;
    border-bottom: 1px solid var(--noir-gray);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/site/new_yorker_wide.webp') center top / cover no-repeat;
    opacity: 0.35;
    filter: saturate(0.5);
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        var(--noir-black) 0%,
        rgba(10,10,10,0.4) 40%,
        rgba(10,10,10,0.6) 70%,
        var(--noir-black) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-label {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.7rem;
    color: var(--amber);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--noir-cream);
    margin-bottom: 1rem;
}

.hero-subtitle {
    color: var(--noir-light);
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.7;
}
