
/* ===== Programme Hero Styles ===== */
.prog-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.prog-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.prog-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.prog-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,34,64,0.92) 0%, rgba(27,54,93,0.8) 40%, rgba(42,79,127,0.7) 100%);
}

.prog-hero__grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.prog-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 6rem 0 4rem;
    color: #ffffff;
}

.prog-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.prog-hero__title {
    margin-bottom: 1.25rem;
}

.prog-hero__title-zh {
    display: block;
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.prog-hero__title-en {
    display: block;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.75;
}

.prog-hero__sub {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    letter-spacing: 0.08em;
    opacity: 0.85;
    margin-bottom: 2rem;
}

.prog-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.prog-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.prog-btn--primary {
    background: #C8102E;
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(200,16,46,0.3);
}

.prog-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200,16,46,0.4);
}

.prog-btn--outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.8);
}

.prog-btn--outline:hover {
    background: rgba(255,255,255,0.1);
}

.prog-hero__geo {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    pointer-events: none;
    z-index: 1;
}

.prog-hero__geo--1 {
    width: 400px;
    height: 400px;
    right: -100px;
    top: -80px;
}

.prog-hero__geo--2 {
    width: 250px;
    height: 250px;
    right: 8%;
    bottom: -40px;
    border-color: rgba(201, 162, 39, 0.12);
}

@media (max-width: 768px) {
    .prog-hero {
        min-height: 480px;
    }
    .prog-hero__inner {
        text-align: center;
        padding: 5rem 0 3rem;
    }
    .prog-hero__actions {
        justify-content: center;
    }
    .prog-hero__geo {
        display: none;
    }
}
