/* Program single page styles */

.program-hero-wrap {
    background: var(--medical-blue-dark);
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
}

.program-hero-icon-wrap {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

/* .hero-badge itself (icon + phrase, dark-hero pill) is already fully
   defined once in components/badges.css and used almost everywhere the
   same way — this used to fully re-declare it as an uppercase/bold/
   letter-spaced eyebrow variant, which then applied on any page that
   happened to load this stylesheet (home.php, blog.php, every static
   Page) while the identical badge elsewhere (archive-programs.php,
   scholarships.php) kept the plain base style. Not an intentional
   variant, just accidental drift — removed so it's one look everywhere. */

.program-title-h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.program-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

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

.program-stat-item-hero {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 18px;
    text-align: left;
    transition: background-color 0.2s ease-out, border-color 0.2s ease-out;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.program-stat-item-hero:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.program-stat-label-hero {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
}

.program-stat-value-hero {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
}

.program-stat-icon-hero {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--sky-accent);
}

@media (max-width: 991px) {
    .program-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .program-hero-inner,
    .uni-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .program-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .program-hero-actions {
        width: 100%;
    }

    .program-hero-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }
}
