/* === HERO SECTION (GLOBAL) === */
.hero-section {
    background: var(--medical-blue-dark);
    padding: 80px 0 72px;
    position: relative;
    overflow: hidden;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* .program-hero-wrap is used well beyond single-programs/single-universities
   (home.php, archive.php, page-templates/blog.php all drop it into a
   dark-hero header) but its base background previously only lived in
   pages/single/program.css, which isn't loaded on the plain blog index or
   category/tag/date archives. Defined here so it's always available —
   the white/white-85 text inside it depends on this background existing. */
.program-hero-wrap {
    background: var(--medical-blue-dark);
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Shared top-right accent glow, reused on every dark hero/CTA panel site-wide */
.hero-section::before,
.program-archive-hero::before,
.program-hero-wrap::before,
.ai-cta-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% -10%, rgba(193, 85, 44, 0.16), transparent 60%);
    pointer-events: none;
}

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

.hero-title {
    color: white;
    margin-bottom: 16px;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* === STATS BAR === */
.stats-bar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 8px 16px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--medical-blue);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* === SECTION HEADERS === */
.section-header {
    margin-bottom: 48px;
}

.section-header.centered {
    text-align: center;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--medical-blue);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-eyebrow::after,
.centered .section-eyebrow::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.section-eyebrow::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--medical-blue);
    border-radius: 2px;
}

.centered .section-eyebrow {
    justify-content: center;
}

.centered .section-eyebrow::before,
.centered .section-eyebrow::after {
    display: none;
}

.section-title {
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
}

.centered .section-desc {
    margin: 0 auto;
}
