/**
 * Alumni Hub Styles — Matched to Figma Designs
 *
 * Design system:
 *   - Dark near-black backgrounds
 *   - Playfair Display serif for display headings
 *   - Warm cream (#F5F1EB) card backgrounds
 *   - Bright blue (#1A9BD5) for CTAs, accents, form areas
 *   - Generous padding, 16px card radius
 */

/* ══════════════════════════════════════════════════════════
 *  FONT NOTE
 *  IvyPresto Headline and GT Flexa are loaded by the parent
 *  theme / Elementor global fonts. No additional import needed.
 * ══════════════════════════════════════════════════════════ */


/* ══════════════════════════════════════════════════════════
 *  DESIGN TOKENS
 * ══════════════════════════════════════════════════════════ */
:root {
    /* Brand colours — from Figma */
    --ah-dark: #191916;
    --ah-dark-lighter: #27271F;
    --ah-blue: #0A87BD;
    --ah-blue-hover: #097AAD;
    --ah-blue-dark: #086D9A;
    --ah-cream: #F5F1EB;
    --ah-cream-hover: #EDE8E0;
    --ah-warm-white: #FAF8F4;

    /* Text colours */
    --ah-text-light: #F2ECE0;
    --ah-text-muted: #F2ECE0;
    --ah-text-dark: #191916;
    --ah-text-blue: #0A87BD;

    /* Status */
    --ah-error: #E54D4D;
    --ah-error-bg: rgba(229, 77, 77, 0.12);

    /* Typography */
    --ah-font-display: "IvyPresto Headline Regular", Sans-serif;
    --ah-font-body: "GT Flexa Thin", Sans-serif;
    --ah-font-body-medium: "GT Flexa Medium";

    /* Spacing & sizing */
    --ah-container: 1300px;
    --ah-radius: 43px;
    --ah-radius-sm: 43px;
    --ah-transition: 0.3s ease;
}


/* ══════════════════════════════════════════════════════════
 *  BASE / LAYOUT
 * ══════════════════════════════════════════════════════════ */
.alumni-hub-page {
    background: var(--ah-dark) !important;
    background-image: none !important;
    min-height: 100vh;
    padding-top: 120px;
    font-family: var(--ah-font-body);
    color: var(--ah-text-light);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.alumni-hub-page strong,
.alumni-hub-page b,
.alumni-hub-page a {
    font-family: var(--ah-font-body-medium);
    font-weight: 500;
}

.alumni-hub-page *,
.alumni-hub-page *::before,
.alumni-hub-page *::after {
    box-sizing: border-box;
}

.alumni-hub-container {
    max-width: calc(var(--ah-container) + 80px);
    margin: 0 auto;
    padding: 0 40px 80px;
}

.alumni-hub-page a {
    color: inherit;
    text-decoration: none;
}

/* Force the site footer to match the hub dark background */
.alumni-hub-page ~ footer,
.alumni-hub-page ~ .site-footer,
.alumni-hub-page ~ #footer,
.alumni-hub-page + footer,
body:has(.alumni-hub-page) footer,
body:has(.alumni-hub-page) .elementor-location-footer {
    background: var(--ah-dark) !important;
    background-image: none !important;
}


/* ══════════════════════════════════════════════════════════
 *  TOP BAR (sign out)
 * ══════════════════════════════════════════════════════════ */
.alumni-topbar {
    padding: 16px 40px;
}

.alumni-topbar-inner {
    max-width: var(--ah-container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alumni-topbar-welcome {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ah-text-muted);
    letter-spacing: 0.02em;
}

.alumni-topbar .alumni-btn-outline {
    color: var(--ah-text-muted);
    border-color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    padding: 6px 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.alumni-topbar .alumni-btn-outline:hover {
    color: var(--ah-text-light);
    border-color: rgba(255, 255, 255, 0.5);
}


/* ══════════════════════════════════════════════════════════
 *  BUTTONS (shared)
 * ══════════════════════════════════════════════════════════ */
.alumni-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--ah-radius-sm);
    font-family: var(--ah-font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--ah-transition);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.4;
}

.alumni-btn-primary {
    background: var(--ah-blue);
    color: #F2ECE0;
}

.alumni-btn-primary:hover {
    background: var(--ah-blue-hover);
    color: #F2ECE0;
}

.alumni-btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--ah-text-light);
}

.alumni-btn-outline:hover {
    border-color: var(--ah-blue);
    color: var(--ah-blue);
}

.alumni-btn-sm {
    padding: 6px 16px;
    font-size: 0.8rem;
}


/* ══════════════════════════════════════════════════════════
 *  SIGN-IN PAGE
 * ══════════════════════════════════════════════════════════ */
.alumni-signin-page {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80vh;
    background: var(--ah-dark) !important;
    background-image: none !important;
}

.alumni-signin-container {
    max-width: var(--ah-container);
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.alumni-signin-header {
    margin-bottom: 48px;
    padding-top: 100px;
}

.alumni-signin-header h1 {
    font-family: var(--ah-font-display);
    font-size: clamp(2.125rem, 5.1vw, 69px);
    font-weight: 500;
    color: var(--ah-text-light);
    line-height: 1.13;
    margin: 0;
}

/* Blue form container */
.alumni-signin-form {
    background: var(--ah-blue);
    border-radius: var(--ah-radius);
    padding: 36px 32px;
    margin-bottom: 28px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.alumni-form-group {
    margin-bottom: 16px;
    position: relative;
}

.alumni-form-group:last-of-type {
    margin-bottom: 0;
}

.alumni-form-group label {
    display: none; /* Labels hidden — using placeholders as per Figma */
}

.alumni-form-group input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--ah-radius);
    font-size: 0.9rem;
    font-family: var(--ah-font-body);
    font-weight: 300;
    color: #F2ECE0;
    background: transparent;
    transition: border-color var(--ah-transition);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.alumni-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.alumni-form-group input:focus {
    outline: none;
    border-color: #F2ECE0;
    background: rgba(255, 255, 255, 0.08);
}

.alumni-form-group.has-error input {
    border-color: #FFB4B4;
}

.alumni-field-error {
    display: block;
    color: #FFD4D4;
    font-size: 0.8rem;
    margin-top: 6px;
    text-align: left;
}

/* Arrow submit inside the membership code field */
.alumni-form-group-code {
    position: relative;
}

.alumni-form-group-code input {
    padding-right: 52px;
}

.alumni-signin-form .alumni-btn {
    display: none; /* Hide the full-width fallback submit */
}

.alumni-submit-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #F2ECE0;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity var(--ah-transition);
}

.alumni-submit-arrow:hover {
    opacity: 1;
}

.alumni-alert {
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.875rem;
    margin-bottom: 24px;
    text-align: left;
}

.alumni-alert-error {
    background: var(--ah-error-bg);
    color: var(--ah-error);
    border: 1px solid rgba(229, 77, 77, 0.3);
}

.alumni-signin-links {
    text-align: center;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.alumni-signin-links p {
    color: #F2ECE0;
    font-size: 0.875rem;
    margin: 6px 0;
}

.alumni-signin-links a {
    color: #F2ECE0;
    font-weight: 500;
    text-decoration: none;
}

.alumni-signin-links a:hover {
    color: var(--ah-blue);
}


/* ══════════════════════════════════════════════════════════
 *  DASHBOARD
 * ══════════════════════════════════════════════════════════ */
.alumni-dashboard-page {
    padding-top: 0;
    background: var(--ah-dark) !important;
    background-image: none !important;
}

.alumni-dashboard-page .alumni-topbar {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    background: transparent;
}

/* Dashboard back + logout bar */
.alumni-dashboard-nav {
    position: relative;
    z-index: 10;
    padding: 24px 40px 12px;
}

.alumni-dashboard-nav-inner {
    max-width: var(--ah-container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alumni-dashboard-nav-inner a {
    color: var(--ah-text-muted);
    text-decoration: none;
    font-size: 0.825rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color var(--ah-transition);
}

.alumni-dashboard-nav-inner a:hover {
    color: var(--ah-blue);
}

.alumni-dashboard-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 40px 0;
    overflow: hidden;
}

.alumni-dashboard-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.alumni-dashboard-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.alumni-dashboard-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(25, 25, 22, 0.3) 0%,
        rgba(25, 25, 22, 0.6) 50%,
        rgba(25, 25, 22, 0.85) 100%
    );
}

.alumni-dashboard-content {
    position: relative;
    z-index: 2;
    max-width: var(--ah-container);
    margin: 0 auto;
    width: 100%;
}

.alumni-dashboard-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 40px;
}

.alumni-dashboard-header h1 {
    font-family: var(--ah-font-display);
    font-size: clamp(2.5rem, 5vw, 81px);
    font-weight: 500;
    color: var(--ah-text-light);
    line-height: 1.13;
    margin: 0;
}

.alumni-dashboard-header-text {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.alumni-dashboard-header-col {
    flex: 1;
    padding: 0 24px;
}

.alumni-dashboard-header-col:first-child {
    padding-left: 0;
}

.alumni-dashboard-header-col:last-child {
    padding-right: 0;
}

.alumni-dashboard-header-divider {
    width: 1px;
    background: var(--ah-text-muted);
    flex-shrink: 0;
    align-self: stretch;
}

.alumni-dashboard-header-text p {
    font-size: 0.875rem;
    color: var(--ah-text-muted);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.alumni-dashboard-header-text p strong,
.alumni-dashboard-header-cta strong {
    color: var(--ah-text-light);
    font-weight: 500;
}

.alumni-dashboard-header-cta {
    margin-top: 16px !important;
}

/* Hide "Back to Hub" on dashboard — it IS the hub */
.alumni-dashboard-page .alumni-hub-back a:first-child {
    display: none;
}

/* 5 CTA cards in a row */
.alumni-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    padding-bottom: 48px;
}

.alumni-dashboard-card {
    background: var(--ah-cream);
    border-radius: var(--ah-radius);
    padding: 0;
    text-decoration: none;
    color: var(--ah-text-dark);
    transition: all var(--ah-transition);
    display: flex;
    flex-direction: column;
    min-height: 220px;
    position: relative;
    border: 1px solid var(--ah-text-dark);
}

.alumni-dashboard-card:hover {
    background: var(--ah-blue);
    color: #F2ECE0;
    transform: none;
    box-shadow: none;
    border-color: #F2ECE0;
}

.alumni-dashboard-card:hover h2 {
    color: #F2ECE0;
}

.alumni-dashboard-card:hover .alumni-dashboard-card-explore {
    color: #F2ECE0;
    border-top-color: #F2ECE0;
}

.alumni-dashboard-card:hover .alumni-dashboard-card-explore svg {
    color: #F2ECE0;
}

/* Hide icon block from previous version */
.alumni-dashboard-card-icon {
    display: none;
}

.alumni-dashboard-card h2 {
    font-family: var(--ah-font-body-medium), Sans-serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 43px;
    margin: 0;
    flex: 1;
    color: #191916;
    padding: 28px 24px 28px;
}

.alumni-dashboard-card p {
    display: none; /* Figma shows no description text, just title + EXPLORE */
}

.alumni-dashboard-card-explore {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding: 20px 24px;
    border-top: 1px solid var(--ah-text-dark);
    font-family: var(--ah-font-body-medium), Sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: var(--ah-text-dark);
    transition: color var(--ah-transition), border-color var(--ah-transition);
}

.alumni-dashboard-card-explore svg {
    width: 18px;
    height: 18px;
    transition: color var(--ah-transition);
}

/* Disabled state for Alumni Circle */
.alumni-dashboard-card-disabled {
    opacity: 0.7;
    cursor: default;
    pointer-events: none;
}

.alumni-badge {
    display: inline-block;
    background: rgba(0, 0, 0, 0.08);
    color: var(--ah-text-dark);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}



/* ══════════════════════════════════════════════════════════
 *  SHARED INNER PAGE ELEMENTS
 * ══════════════════════════════════════════════════════════ */
.alumni-hub-back {
    padding: 24px 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alumni-hub-back a {
    color: var(--ah-text-muted);
    text-decoration: none;
    font-size: 0.825rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color var(--ah-transition);
}

.alumni-hub-back a:hover {
    color: var(--ah-blue);
}

.alumni-page-header {
    padding: 40px 0 48px;
}

.alumni-page-header h1 {
    font-family: var(--ah-font-display);
    font-size: clamp(2.5rem, 6vw, 81px);
    font-weight: 500;
    color: var(--ah-text-light);
    line-height: 1.13;
    margin: 0 0 20px;
}

.alumni-page-header p {
    color: var(--ah-text-muted);
    font-size: 0.95rem;
    margin: 0 0 8px;
    line-height: 1.7;
    max-width: 600px;
}

.alumni-page-header-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.alumni-page-header-split .alumni-page-header-right {
    text-align: right;
}

.alumni-page-header-split .alumni-page-header-right p {
    margin-left: auto;
}

.alumni-section-footer {
    text-align: right;
    padding: 16px 0 24px;
}

.alumni-section-footer p {
    color: var(--ah-text-muted);
    font-size: 0.875rem;
    font-weight: 600;
    margin: 2px 0;
    line-height: 1.5;
}

.alumni-empty-state {
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--ah-radius);
    padding: 64px 32px;
    text-align: center;
}

.alumni-empty-state p {
    color: var(--ah-text-muted);
    font-size: 0.95rem;
    margin: 0;
}


/* ══════════════════════════════════════════════════════════
 *  JOBS BOARD
 * ══════════════════════════════════════════════════════════ */
.alumni-jobs-page .alumni-page-header {
    text-align: center;
    max-width: 100%;
}

.alumni-jobs-page .alumni-page-header h1 {
    font-size: clamp(2.5rem, 6vw, 81px);
}

.alumni-jobs-page .alumni-page-header p {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.4;
}

.alumni-jobs-subheading {
    font-size: 1.25rem;
    margin-bottom: 8px !important;
}

.alumni-jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.alumni-job-card {
    background: var(--ah-cream);
    border-radius: var(--ah-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: var(--ah-text-dark);
    transition: all var(--ah-transition);
}

.alumni-job-card:hover {
    transform: none;
    box-shadow: none;
}

/* Hide featured image — Figma design doesn't show images on job cards */
.alumni-job-card .alumni-card-image {
    display: none;
}

.alumni-job-card .alumni-card-body {
    padding: 28px 28px 16px;
    flex: 1;
}

.alumni-job-card .alumni-card-location-label {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    opacity: 1;
}

.alumni-job-card .alumni-card-location-label span {
    color: var(--ah-text-dark);
    font-weight: 500;
    font-family: var(--ah-font-body-medium);
}

.alumni-job-card .alumni-card-title {
    font-family: var(--ah-font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ah-text-dark);
    margin: 0 0 16px;
    line-height: 1.25;
}

.alumni-job-card .alumni-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.alumni-job-card .alumni-meta-item {
    font-size: 1rem;
    color: var(--ah-text-dark);
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.alumni-job-card .alumni-meta-item svg {
    display: none; /* Figma uses text labels not icons */
}

.alumni-job-card .alumni-meta-label {
    color: var(--ah-text-dark);
    opacity: 1;
    font-weight: 400;
    margin-right: 4px;
    font-size: 1rem;
}

.alumni-job-card .alumni-meta-value {
    font-weight: 500;
    font-family: var(--ah-font-body-medium);
    font-size: 1rem;
}

/* Blue CTA bar at bottom of job card */
.alumni-job-card .alumni-card-footer {
    padding: 0;
}

.alumni-job-card .alumni-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--ah-blue);
    color: #F2ECE0;
    padding: 16px 28px;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--ah-font-body-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background var(--ah-transition);
    border-top: 1px solid var(--ah-text-dark);
}

.alumni-job-card .alumni-card-cta:hover {
    background: var(--ah-blue-hover);
}

.alumni-job-card .alumni-card-cta svg {
    width: 16px;
    height: 16px;
}


/* ══════════════════════════════════════════════════════════
 *  EVENTS
 * ══════════════════════════════════════════════════════════ */
.alumni-events-page .alumni-page-header {
    padding-bottom: 24px;
}

.alumni-events-page .alumni-section-footer {
    margin-top: 0;
}

/* Cream background section for month nav + cards — full width */
.alumni-events-page .alumni-events-content {
    background: var(--ah-cream);
    border-radius: var(--ah-radius);
    padding: 40px 40px 60px;
    color: var(--ah-text-dark);
    width: 100%;
}

.alumni-events-content-inner {
    max-width: var(--ah-container);
    margin: 0 auto;
}

.alumni-events-page .alumni-events-content .alumni-empty-state {
    border-color: rgba(0, 0, 0, 0.12);
}

.alumni-events-page .alumni-events-content .alumni-empty-state p {
    color: var(--ah-text-dark);
}

/* Month navigation bar — centered layout */
.alumni-events-month-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 32px;
    gap: 16px;
}

.alumni-events-month-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ah-text-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.alumni-events-month-label:first-child {
    text-align: left;
}

.alumni-events-month-label:last-child {
    text-align: right;
}

.alumni-events-month-current {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
    max-width: 420px;
    background: var(--ah-blue);
    color: #F2ECE0;
    padding: 14px 24px;
    border-radius: 32px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--ah-font-body-medium);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.alumni-events-month-arrow {
    background: none;
    border: none;
    color: #F2ECE0;
    cursor: pointer;
    padding: 2px;
    display: flex;
    transition: opacity var(--ah-transition);
}

.alumni-events-month-arrow:hover {
    opacity: 1;
}

/* Event cards */
.alumni-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.alumni-event-card {
    background: var(--ah-warm-white);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: var(--ah-text-dark);
    transition: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.alumni-event-card:hover {
    transform: none;
    box-shadow: none;
}

.alumni-event-card .alumni-card-body {
    padding: 28px 28px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.alumni-event-card .alumni-card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ah-text-dark);
}

.alumni-event-card .alumni-card-title {
    font-family: var(--ah-font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ah-text-dark);
    margin: 0;
    line-height: 1.2;
    flex: 1;
}

.alumni-event-card .alumni-card-day-number {
    font-family: var(--ah-font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ah-blue);
    line-height: 1;
    flex-shrink: 0;
}

.alumni-event-card .alumni-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.alumni-event-card .alumni-meta-item {
    font-size: 0.8rem;
    color: var(--ah-text-dark);
    display: inline;
}

.alumni-event-card .alumni-meta-item svg {
    display: none;
}

.alumni-event-card .alumni-meta-label {
    color: var(--ah-text-dark);
    font-weight: 400;
    margin-right: 4px;
}

.alumni-event-card .alumni-meta-value {
    font-weight: 500;
    font-family: var(--ah-font-body-medium);
}

.alumni-event-card .alumni-card-description {
    font-size: 0.875rem;
    color: var(--ah-text-dark);
    line-height: 1.6;
    margin: 0;
}

/* Blue CTA bar — rounded, with padding from card edges */
.alumni-event-card .alumni-card-footer {
    padding: 0 28px 20px;
}

.alumni-event-card .alumni-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: var(--ah-blue);
    color: #F2ECE0;
    padding: 16px 28px;
    border-radius: 32px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--ah-font-body-medium);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background var(--ah-transition);
}

.alumni-event-card .alumni-card-cta:hover {
    background: var(--ah-blue-hover);
}

/* Event card image at bottom */
.alumni-event-card .alumni-card-image {
    order: 99;
    height: 220px;
    overflow: hidden;
}

.alumni-event-card .alumni-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Past events greyed */
.alumni-card-past {
    opacity: 0.45;
}

.alumni-card-past:hover {
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.alumni-card-cta-disabled {
    cursor: default;
    opacity: 0.5;
    background: var(--ah-blue);
    color: #F2ECE0;
    padding: 14px 24px;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--ah-font-body-medium);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
}

.alumni-past-events-section {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.alumni-past-events-section h2 {
    font-family: var(--ah-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ah-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.alumni-events-page .alumni-section-footer p {
    font-family: var(--ah-font-body-medium);
    font-weight: 500;
    color: var(--ah-blue);
    font-style: normal;
}


/* ══════════════════════════════════════════════════════════
 *  RESOURCES
 * ══════════════════════════════════════════════════════════ */

/* Hero section with background image */
.alumni-resources-page > .alumni-hub-container:first-of-type {
    padding-bottom: 0;
}

.alumni-resources-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.alumni-resources-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.alumni-resources-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alumni-resources-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(25, 25, 22, 0.2) 0%,
        rgba(25, 25, 22, 0.5) 40%,
        rgba(25, 25, 22, 0.85) 100%
    );
}

.alumni-resources-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 0 48px;
}

.alumni-resources-hero-content h1 {
    font-family: var(--ah-font-display);
    font-size: clamp(2.5rem, 6vw, 81px);
    font-weight: 500;
    color: var(--ah-text-light);
    line-height: 1.13;
    margin: 0 0 16px;
}

.alumni-resources-hero-content p {
    color: var(--ah-text-muted);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 500px;
    margin: 0;
}

/* Filter bar */
.alumni-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    padding-top: 32px;
}

.alumni-filter-btn {
    padding: 10px 20px;
    border-radius: var(--ah-radius);
    border: 1px solid var(--ah-text-light);
    background: transparent;
    color: var(--ah-text-light);
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--ah-transition);
    font-family: var(--ah-font-body);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.alumni-filter-btn:hover {
    border-color: var(--ah-blue);
    color: var(--ah-blue);
}

.alumni-filter-btn.active {
    background: var(--ah-blue);
    border-color: var(--ah-blue);
    color: #F2ECE0;
}

/* Tick icon: hidden by default, shown on active */
.alumni-filter-icon-tick {
    display: none;
    flex-shrink: 0;
}

.alumni-filter-btn.active .alumni-filter-icon-tick {
    display: inline-block;
}

/* Resource cards — 2 column masonry */
.alumni-resources-grid {
    columns: 2;
    column-gap: 20px;
}

.alumni-resource-card {
    background: var(--ah-cream);
    border-radius: 20px;
    overflow: hidden;
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    color: var(--ah-text-dark);
    transition: none;
    border: 1px solid rgba(0, 0, 0, 0.15);
    break-inside: avoid;
    margin-bottom: 20px;
}

.alumni-resource-card:hover {
    transform: none;
    box-shadow: none;
}

.alumni-resource-card .alumni-card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.alumni-resource-card .alumni-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.alumni-resource-card .alumni-card-body {
    padding: 28px 28px 20px;
}

.alumni-resource-card .alumni-card-title {
    font-family: var(--ah-font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ah-text-dark);
    margin: 0 0 20px;
    line-height: 1.2;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--ah-text-dark);
}

.alumni-resource-card .alumni-card-description {
    font-size: 0.875rem;
    color: var(--ah-text-dark);
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

/* Footer row: split layout — tag label left, blue CTA right */
.alumni-resource-card .alumni-card-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--ah-text-dark);
}

.alumni-card-footer-tag {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    font-size: 0.75rem;
    font-weight: 500;
    font-family: var(--ah-font-body-medium);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ah-text-dark);
}

.alumni-resource-card .alumni-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: var(--ah-blue);
    color: #F2ECE0;
    padding: 16px 24px;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--ah-font-body-medium);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--ah-transition);
}

.alumni-resource-card .alumni-card-cta:hover {
    background: var(--ah-blue-hover);
}

.alumni-resource-card .alumni-card-cta svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.alumni-badge-featured {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--ah-blue);
    color: #F2ECE0;
    border-radius: 6px;
}

.alumni-resource-card.alumni-card-hidden {
    display: none;
}


/* ══════════════════════════════════════════════════════════
 *  GALLERY
 * ══════════════════════════════════════════════════════════ */
.alumni-gallery-page .alumni-page-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 24px;
}

.alumni-gallery-page .alumni-page-header-left h1 {
    font-family: var(--ah-font-display);
    font-size: clamp(2rem, 4vw, 81px);
    font-weight: 500;
    color: var(--ah-text-light);
    line-height: 1.13;
    margin: 0;
}

.alumni-gallery-page .alumni-page-header-right {
    text-align: right;
}

.alumni-gallery-page .alumni-page-header-right p {
    font-size: 0.85rem;
    color: var(--ah-text-muted);
    margin: 0 0 8px;
    line-height: 1.6;
    margin-left: auto;
    max-width: 320px;
}

.alumni-gallery-page .alumni-page-header-right p strong {
    color: var(--ah-text-light);
}

/* Gallery nav */
.alumni-gallery-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.alumni-gallery-nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ah-text-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--ah-font-body);
    transition: color var(--ah-transition);
}

.alumni-gallery-nav-link:hover {
    color: var(--ah-blue);
}

/* Gallery grid — 4 columns */
.alumni-gallery-wrapper {
    margin-bottom: 40px;
}

.alumni-gallery-carousel {
    overflow: hidden;
}

.alumni-gallery-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.alumni-gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
}

.alumni-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.alumni-gallery-item:hover img {
    transform: scale(1.06);
}

/* Gallery controls (older style kept for JS compatibility) */
.alumni-gallery-controls {
    display: none; /* Using nav links instead */
}

/* Social links */
.alumni-social-links {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 16px;
}

.alumni-social-links .alumni-btn {
    font-size: 0.75rem;
    padding: 10px 18px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.alumni-gallery-footer {
    text-align: left;
}

.alumni-gallery-footer p {
    font-style: normal;
    color: var(--ah-text-muted);
    font-size: 0.875rem;
}


/* ══════════════════════════════════════════════════════════
 *  LIGHTBOX
 * ══════════════════════════════════════════════════════════ */
.alumni-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alumni-lightbox[hidden] {
    display: none;
}

.alumni-lightbox-img {
    max-width: 82vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 20px;
}

.alumni-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #F2ECE0;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.2s;
}

.alumni-lightbox-close:hover { opacity: 1; }

.alumni-lightbox-prev,
.alumni-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #F2ECE0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.alumni-lightbox-prev { left: 24px; }
.alumni-lightbox-next { right: 24px; }
.alumni-lightbox-prev:hover,
.alumni-lightbox-next:hover { background: rgba(255, 255, 255, 0.18); }

.alumni-lightbox-download {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ah-blue);
    color: #F2ECE0;
    padding: 10px 20px;
    border-radius: var(--ah-radius-sm);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    font-family: var(--ah-font-body-medium);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s;
}

.alumni-lightbox-download:hover {
    background: var(--ah-blue-hover);
    color: #F2ECE0;
}


/* ══════════════════════════════════════════════════════════
 *  THEME OVERRIDES — CRITICAL
 * ══════════════════════════════════════════════════════════ */

/* Override parent theme pink hover on buttons */
.alumni-hub-page [type=button]:focus,
.alumni-hub-page [type=button]:hover,
.alumni-hub-page [type=submit]:focus,
.alumni-hub-page [type=submit]:hover,
.alumni-hub-page button:focus,
.alumni-hub-page button:hover {
    background-color: inherit;
    color: inherit;
    text-decoration: none;
}

/* Explicitly re-set hover for our styled buttons */
.alumni-hub-page .alumni-btn-primary:hover {
    background-color: var(--ah-blue-hover);
    color: #F2ECE0;
}

.alumni-hub-page .alumni-btn-outline:hover {
    background-color: transparent;
    color: var(--ah-blue);
}

.alumni-hub-page .alumni-events-month-arrow:hover {
    background-color: transparent;
    color: #F2ECE0;
}

.alumni-hub-page .alumni-submit-arrow:hover,
.alumni-hub-page .alumni-submit-arrow:focus {
    background: none !important;
    background-color: transparent !important;
    color: #F2ECE0 !important;
}

.alumni-hub-page .alumni-filter-btn:hover {
    background-color: transparent;
    color: var(--ah-blue);
}

.alumni-hub-page .alumni-filter-btn.active:hover {
    background-color: var(--ah-blue);
    color: #F2ECE0;
}

.alumni-hub-page .alumni-gallery-nav-link:hover {
    background-color: transparent;
    color: var(--ah-blue);
}

.alumni-hub-page .alumni-lightbox-prev:hover,
.alumni-hub-page .alumni-lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.18);
    color: #F2ECE0;
}

.alumni-hub-page .alumni-lightbox-close:hover {
    background-color: transparent;
    color: #F2ECE0;
}

/* Remove ALL lift animation and box-shadow on hover across the hub */
.alumni-hub-page .alumni-dashboard-card:hover,
.alumni-hub-page .alumni-job-card:hover,
.alumni-hub-page .alumni-event-card:hover,
.alumni-hub-page .alumni-resource-card:hover,
.alumni-hub-page .alumni-gallery-item:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Ensure consistent header spacing — account for fixed site header */
.alumni-signin-page {
    padding-top: 0;
}


/* ══════════════════════════════════════════════════════════
 *  RESPONSIVE
 * ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .alumni-dashboard-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .alumni-jobs-grid,
    .alumni-events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .alumni-dashboard-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .alumni-dashboard-header-text {
        max-width: 600px;
    }

    .alumni-gallery-page .alumni-page-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .alumni-gallery-page .alumni-page-header-right {
        text-align: left;
    }

    .alumni-gallery-page .alumni-page-header-right p {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .alumni-hub-page {
        padding-top: 80px;
    }

    .alumni-dashboard-page {
        padding-top: 0;
    }

    .alumni-hub-container {
        padding: 0 20px 60px;
    }

    .alumni-dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .alumni-jobs-grid,
    .alumni-events-grid {
        grid-template-columns: 1fr;
    }

    .alumni-page-header h1,
    .alumni-signin-header h1 {
        font-size: 2rem;
    }

    .alumni-signin-header {
        padding-top: 0;
    }

    .alumni-dashboard-hero {
        min-height: 60vh;
        padding: 80px 20px 0;
    }

    .alumni-dashboard-nav {
        padding: 24px 20px 12px;
    }

    .alumni-job-card .alumni-card-location-label {
        font-size: 0.8rem;
    }

    .alumni-job-card .alumni-card-title {
        font-size: 1.25rem;
    }

    .alumni-job-card .alumni-meta-item,
    .alumni-job-card .alumni-meta-label,
    .alumni-job-card .alumni-meta-value {
        font-size: 0.8rem;
    }

    .alumni-dashboard-header-text {
        flex-direction: column;
        gap: 16px;
    }

    .alumni-dashboard-header-divider {
        width: 100%;
        height: 1px;
    }

    .alumni-dashboard-header-col {
        padding: 0;
    }

    .alumni-gallery-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .alumni-events-page .alumni-events-content {
        padding: 32px 20px 40px;
    }

    .alumni-resources-hero {
        min-height: 40vh;
    }

    .alumni-resources-grid {
        columns: 1;
    }

    .alumni-filter-bar {
        gap: 6px;
    }

    .alumni-filter-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .alumni-events-month-nav {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 8px;
    }

    .alumni-events-month-label {
        display: none;
    }

    .alumni-social-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .alumni-page-header-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .alumni-page-header-split .alumni-page-header-right {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .alumni-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .alumni-dashboard-card {
        min-height: 160px;
    }

    .alumni-gallery-track {
        grid-template-columns: repeat(2, 1fr);
    }

    .alumni-signin-form {
        padding: 28px 20px;
    }

    .alumni-event-card .alumni-card-day-number {
        font-size: 2.5rem;
    }
}

/* ══════════════════════════════════════════════════════════
 *  ELEMENTOR HEADER OVERRIDES
 * ══════════════════════════════════════════════════════════ */
.elementor-99 .elementor-element.elementor-element-a755452:not(.elementor-motion-effects-element-type-background),
.elementor-99 .elementor-element.elementor-element-a755452 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-color: #0A87BD !important;
}
.elementor-99 .elementor-element.elementor-element-612c618 {
    background: linear-gradient(to left, #0A87BD 50%, #191916 50%) !important;
}
.elementor-99 .elementor-element.elementor-element-cb9c95e:not(.elementor-motion-effects-element-type-background),
.elementor-99 .elementor-element.elementor-element-cb9c95e > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-color: #191916 !important;
}
ul.elementor-nav-menu--dropdown a,
ul.elementor-nav-menu--dropdown a:focus,
ul.elementor-nav-menu--dropdown a:hover {
    background-color: #0a87bd !important;
}
.elementor-nav-menu--dropdown a.elementor-item-active {
    background-color: #0a87bd !important;
}
.elementor-99 .elementor-element.elementor-element-34dbfdb:not(.elementor-motion-effects-element-type-background),
.elementor-99 .elementor-element.elementor-element-9327b02:not(.elementor-motion-effects-element-type-background),
.elementor-99 .elementor-element.elementor-element-789a571:not(.elementor-motion-effects-element-type-background) {
    background-color: #0a87bd !important;
}
.elementor-element-417763a > div > a {
    background-color: #0a87bd !important;
}
.elementor.elementor-5717.elementor-location-popup {
    background-color: #0a87bd;
}

/* ══════════════════════════════════════════════════════════
 *  PAGE-SPECIFIC ELEMENT VISIBILITY
 * ══════════════════════════════════════════════════════════ */

/* Hide main-site nav items on authenticated hub pages (dashboard, jobs, events, resources, gallery) */
body:has(.alumni-dashboard-page) .menu-item-6297,
body:has(.alumni-dashboard-page) .menu-item-6293,
body:has(.alumni-dashboard-page) .menu-item-6311,
body:has(.alumni-dashboard-page) .menu-item-6317,
body:has(.alumni-dashboard-page) .menu-item-6325,
body:has(.alumni-dashboard-page) .menu-item-6327,
body:has(.alumni-dashboard-page) .menu-item-10369,
body:has(.alumni-dashboard-page) .elementor-element-9ccc48c,
body:has(.alumni-dashboard-page) .elementor-element-4cee801,
body:has(.alumni-dashboard-page) .elementor-element-434ce55,
body:has(.alumni-dashboard-page) .elementor-element-ebe5bf0,
body:has(.alumni-dashboard-page) .elementor-element-f12c8f7,
body:has(.alumni-dashboard-page) .elementor-element-181a78d,
body:has(.alumni-dashboard-page) .elementor-element-2ec4965,
body:has(.alumni-dashboard-page) .elementor-element-3a040c8,
body:has(.alumni-jobs-page) .menu-item-6297,
body:has(.alumni-jobs-page) .menu-item-6293,
body:has(.alumni-jobs-page) .menu-item-6311,
body:has(.alumni-jobs-page) .menu-item-6317,
body:has(.alumni-jobs-page) .menu-item-6325,
body:has(.alumni-jobs-page) .menu-item-6327,
body:has(.alumni-jobs-page) .menu-item-10369,
body:has(.alumni-jobs-page) .elementor-element-9ccc48c,
body:has(.alumni-jobs-page) .elementor-element-4cee801,
body:has(.alumni-jobs-page) .elementor-element-434ce55,
body:has(.alumni-jobs-page) .elementor-element-ebe5bf0,
body:has(.alumni-jobs-page) .elementor-element-f12c8f7,
body:has(.alumni-jobs-page) .elementor-element-181a78d,
body:has(.alumni-jobs-page) .elementor-element-2ec4965,
body:has(.alumni-jobs-page) .elementor-element-3a040c8,
body:has(.alumni-events-page) .menu-item-6297,
body:has(.alumni-events-page) .menu-item-6293,
body:has(.alumni-events-page) .menu-item-6311,
body:has(.alumni-events-page) .menu-item-6317,
body:has(.alumni-events-page) .menu-item-6325,
body:has(.alumni-events-page) .menu-item-6327,
body:has(.alumni-events-page) .menu-item-10369,
body:has(.alumni-events-page) .elementor-element-9ccc48c,
body:has(.alumni-events-page) .elementor-element-4cee801,
body:has(.alumni-events-page) .elementor-element-434ce55,
body:has(.alumni-events-page) .elementor-element-ebe5bf0,
body:has(.alumni-events-page) .elementor-element-f12c8f7,
body:has(.alumni-events-page) .elementor-element-181a78d,
body:has(.alumni-events-page) .elementor-element-2ec4965,
body:has(.alumni-events-page) .elementor-element-3a040c8,
body:has(.alumni-resources-page) .menu-item-6297,
body:has(.alumni-resources-page) .menu-item-6293,
body:has(.alumni-resources-page) .menu-item-6311,
body:has(.alumni-resources-page) .menu-item-6317,
body:has(.alumni-resources-page) .menu-item-6325,
body:has(.alumni-resources-page) .menu-item-6327,
body:has(.alumni-resources-page) .menu-item-10369,
body:has(.alumni-resources-page) .elementor-element-9ccc48c,
body:has(.alumni-resources-page) .elementor-element-4cee801,
body:has(.alumni-resources-page) .elementor-element-434ce55,
body:has(.alumni-resources-page) .elementor-element-ebe5bf0,
body:has(.alumni-resources-page) .elementor-element-f12c8f7,
body:has(.alumni-resources-page) .elementor-element-181a78d,
body:has(.alumni-resources-page) .elementor-element-2ec4965,
body:has(.alumni-resources-page) .elementor-element-3a040c8,
body:has(.alumni-gallery-page) .menu-item-6297,
body:has(.alumni-gallery-page) .menu-item-6293,
body:has(.alumni-gallery-page) .menu-item-6311,
body:has(.alumni-gallery-page) .menu-item-6317,
body:has(.alumni-gallery-page) .menu-item-6325,
body:has(.alumni-gallery-page) .menu-item-6327,
body:has(.alumni-gallery-page) .menu-item-10369,
body:has(.alumni-gallery-page) .elementor-element-9ccc48c,
body:has(.alumni-gallery-page) .elementor-element-4cee801,
body:has(.alumni-gallery-page) .elementor-element-434ce55,
body:has(.alumni-gallery-page) .elementor-element-ebe5bf0,
body:has(.alumni-gallery-page) .elementor-element-f12c8f7,
body:has(.alumni-gallery-page) .elementor-element-181a78d,
body:has(.alumni-gallery-page) .elementor-element-2ec4965,
body:has(.alumni-gallery-page) .elementor-element-3a040c8 {
    display: none !important;
}
