/* ============ ALUMNI CLASS PAGE STYLES ============ */

/* ---- Hero ---- */
.alumni-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 9rem 6rem 5rem;
}

.alumni-hero__content {
    position: relative;
    z-index: 1;
    max-width: 750px;
}

.alumni-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1.5rem;
}

.alumni-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.alumni-hero__breadcrumb a:hover {
    color: #fff;
}

.alumni-hero__breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.alumni-hero__year-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--nwn-yellow);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.alumni-hero__year-badge .dot {
    width: 7px;
    height: 7px;
    background: var(--nwn-yellow);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.alumni-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.alumni-hero__title span {
    background: linear-gradient(135deg, var(--nwn-yellow), var(--nwn-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.alumni-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 2rem;
}

.alumni-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.alumni-hero__meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
}

.alumni-hero__meta-item i {
    color: var(--nwn-yellow);
}

/* ---- Cohort Stats Bar ---- */
.cohort-stats {
    background: var(--white);
    padding: 3rem 6rem;
    border-bottom: 1px solid var(--gray-100);
}

.cohort-stats__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.cohort-stat {
    padding: 1.5rem;
    border-radius: 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cohort-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.cohort-stat__icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cohort-stat__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--nwn-blue);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.cohort-stat__label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---- Programme Summary ---- */
.prog-summary {
    padding: 5rem 6rem;
    background: var(--white);
}

.prog-summary__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.prog-summary__content .section-tag {
    display: block;
    margin-bottom: 0.75rem;
}

.prog-summary__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.prog-summary__title span {
    color: var(--nwn-blue);
}

.prog-summary__text {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.prog-summary__highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.prog-summary__highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.9rem 1.1rem;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 3px solid var(--nwn-blue);
}

.prog-summary__highlight-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.prog-summary__highlight-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 500;
}

.prog-summary__visual {
    position: relative;
}

.prog-summary__img-stack {
    position: relative;
    height: 420px;
}

.prog-summary__img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 340px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.prog-summary__img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

/* ---- Graduate Profiles ---- */
.graduates {
    padding: 5rem 6rem;
    background: var(--gray-50);
}

.graduates__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.graduates__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.75rem;
}

.grad-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: transform 0.3s, box-shadow 0.3s;
}

.grad-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.grad-card__img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.grad-card__img-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.grad-card:hover .grad-card__img-wrap img {
    transform: scale(1.05);
}

.grad-card__track {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--nwn-blue);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.grad-card__body {
    padding: 1.25rem 1.4rem 1.5rem;
}

.grad-card__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.2rem;
}

.grad-card__role {
    font-size: 0.85rem;
    color: var(--nwn-blue);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.grad-card__quote {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    font-style: italic;
    border-left: 3px solid var(--nwn-yellow);
    padding-left: 0.75rem;
}

/* ---- Photo Gallery ---- */
.gallery {
    padding: 5rem 6rem;
    background: var(--white);
}

.gallery__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.gallery__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}

.gallery__item {
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    position: relative;
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery__item:hover img {
    transform: scale(1.06);
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery__item:hover::after {
    opacity: 1;
}

/* ---- Video Stories ---- */
.video-stories {
    padding: 5rem 6rem;
    background: var(--gray-900);
}

.video-stories__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.video-stories__grid {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.video-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    width: 50%;

}

.video-card__embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-card__embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card__caption {
    padding: 1.25rem 1.5rem;
}

.video-card__caption h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.video-card__caption p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
}

/* ---- Alumni CTA ---- */
.alumni-cta {
    padding: 5rem 6rem;
    background: linear-gradient(135deg, var(--nwn-navy) 0%, #0d3a5c 50%, var(--nwn-blue) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.alumni-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 168, 89, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 237, 42, 0.1) 0%, transparent 40%);
}

.alumni-cta__content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.alumni-cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.alumni-cta__title span {
    color: var(--nwn-yellow);
}

.alumni-cta__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.alumni-cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {

    .alumni-hero,
    .cohort-stats,
    .prog-summary,
    .graduates,
    .gallery,
    .video-stories,
    .alumni-cta {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .prog-summary__container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .prog-summary__img-stack {
        height: 300px;
    }

    .cohort-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .video-stories__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .alumni-hero {
        padding: 8rem 1.5rem 4rem;
    }

    .cohort-stats,
    .prog-summary,
    .graduates,
    .gallery,
    .video-stories,
    .alumni-cta {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .cohort-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .gallery__item--tall {
        grid-row: span 1;
    }

    .video-stories__grid {
        grid-template-columns: 1fr;
    }

    .grad-card__img-wrap {
        width: 100%;
        height: 35vh;
    }

    .video-card {
        width: 100%;
    }

    .video-card__embed {
        padding-bottom: 0;
        height: 35vh;
    }
}

@media (max-width: 480px) {
    .cohort-stats__grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
}