/* ── Shared styles ── */
:root {
  --alumni-primary: #005691;
  --alumni-primary-dark: #0077be;
  --alumni-red: #ee3124;
  --alumni-red-dark: #c41f0f;
  --alumni-surface: #f4f4f4;
  --alumni-surface-blue: #e6f1f8;
  --alumni-text: #1a1a1b;
  --alumni-muted: #212529;
  --alumni-outline: #e9ecef;
  --alumni-radius: 0.5rem;
  --alumni-section-py: 80px;
  --alumni-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  --alumni-shadow-hover: 0 8px 32px rgba(0, 86, 145, 0.12);
}

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════ */

.alumni-hero-section {
  position: relative;
  height: 440px;
  max-height: 440px;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background-color: #0077be;
}

.alumni-hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.alumni-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.alumni-hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.14) 55%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.06) 55%, rgba(0, 0, 0, 0.52) 100%);
  z-index: 2;
}

.alumni-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 80px;
  padding-bottom: 2rem;
}

.alumni-hero-brand {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 20px;
  padding-left: var(--bs-gutter-x, 0.75rem);
  z-index: 4;
}

.alumni-hero-brand-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  max-width: 140px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.alumni-hero-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.alumni-hero-cta .btn,
.alumni-prefooter-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 14px;
  font-weight: 600;
}

.alumni-hero-cta {
  margin-top: 15px;
}

.alumni-hero-cta .alumni-cta-arrow,
.alumni-prefooter-cta .alumni-cta-arrow {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   SHARED SECTION STYLES
   ═══════════════════════════════════════════════════════════════════ */

.alumni-intro-section,
.alumni-metrics-section,
.alumni-video-section,
.alumni-faq-section {
  padding: var(--alumni-section-py) 0;
}

.alumni-section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: #fff;
  text-align: center;
  width: max-content;
  justify-self: center;
  background: #0077be;
  padding: 3px 6px;
  border-radius: 30px;
}

/* ═══════════════════════════════════════════════════════════════════
   INTRO SECTION
   ═══════════════════════════════════════════════════════════════════ */

.alumni-intro-section {
  background: #fff;
}

.alumni-intro-logo {
  max-width: 400px;
  margin-bottom: 32px;
}

.alumni-intro-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.alumni-intro-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--alumni-primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.alumni-intro-text {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  /* color: var(--alumni-muted); */
  font-weight: 400;
}

.alumni-intro-text p {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  /* color: var(--alumni-muted); */
  margin-bottom: 16px;
}

.alumni-intro-link {
  margin-top: 24px;
}

.alumni-link-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--alumni-red);
  text-decoration: none;
  transition: color 0.2s ease;
}

.alumni-link-red:hover {
  color: var(--alumni-red-dark);
  text-decoration: none;
}

.alumni-link-arrow {
  transition: transform 0.2s ease;
}

.alumni-link-red:hover .alumni-link-arrow {
  transform: translate(3px, -3px);
}

/* ═══════════════════════════════════════════════════════════════════
   MEMBERSHIP BENEFITS SECTION
   ═══════════════════════════════════════════════════════════════════ */

.alumni-benefits-section {
  padding: 5rem 0;
  background: #f4f4f4;
}

.alumni-metrics-title,
.alumni-video-title,
.alumni-faq-title,
.alumni-benefits-title,
.alumni-prefooter-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--alumni-primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 40px;
  text-align: center;
}

.alumni-benefits-grid {
  row-gap: 1.5rem;
}

.alumni-metrics-grid {
  row-gap: 24px;
}

.alumni-benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 51, 102, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.alumni-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 51, 102, 0.1);
}

.alumni-benefit-number {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  background: #ffe2e2;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #d34a4a;
}

.alumni-benefit-title {
  font-size: 18px;
  font-weight: 700;
  color: #0077be;
  margin-bottom: 0.75rem;
}

.alumni-benefit-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   BY THE NUMBERS SECTION
   ═══════════════════════════════════════════════════════════════════ */

.alumni-metrics-section {
  background: var(--alumni-surface-blue);
}

.alumni-metric-card {
  text-align: center;
  padding: 32px 24px;
  background: transparent;
}

.alumni-metric-value {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #0077be;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.alumni-metric-label {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--alumni-primary-dark);
  margin-bottom: 4px;
}

.alumni-metric-sublabel {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  color: var(--alumni-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   VIDEO SECTION
   ═══════════════════════════════════════════════════════════════════ */

.alumni-video-section {
  background: #fff;
}

.alumni-video-subtext {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--alumni-muted);
  margin-bottom: 32px;
}

.alumni-video-player {
  position: relative;
  display: block;
  border-radius: 32px;
  border: solid 0.0058vw #0077be;
  overflow: hidden;
  background: var(--alumni-surface);
  box-shadow: var(--alumni-shadow);
  aspect-ratio: 16 / 9;
  text-decoration: none;
}

.alumni-video-poster {
  position: absolute;
  inset: 0;
}

.alumni-video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.alumni-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--alumni-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  padding-left: 4px;
  z-index: 2;
}

.alumni-video-player:hover .alumni-video-play {
  transform: translate(-50%, -50%) scale(1.05);
  background: #fff;
}

/* ═══════════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════════ */

.alumni-faq-section {
  background: var(--alumni-surface);
}

.alumni-faq-list {
  background: #fff;
  border-radius: var(--alumni-radius);
  box-shadow: var(--alumni-shadow);
  overflow: hidden;
}

.alumni-faq-item {
  border-bottom: 1px solid var(--alumni-outline);
}

.alumni-faq-item:last-child {
  border-bottom: none;
}

.alumni-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border: none;
  text-align: left;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--alumni-text);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.alumni-faq-question:hover {
  color: var(--alumni-primary);
}

.alumni-faq-item.is-open .alumni-faq-question,
.alumni-faq-question[aria-expanded="true"] {
  /* background: var(--alumni-surface); */
  color: var(--alumni-primary);
}

.alumni-faq-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--alumni-primary);
  transition: transform 0.2s ease;
}

.alumni-faq-item.is-open .alumni-faq-icon {
  transform: rotate(180deg);
}

.alumni-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease-out;
}

.alumni-faq-answer:not([hidden]) {
  grid-template-rows: 1fr;
}

.alumni-faq-answer-inner {
  overflow: hidden;
  padding: 0 24px 20px;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--alumni-muted);
}

.alumni-faq-answer-inner p {
  margin-bottom: 12px;
}

.alumni-faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   MOMENTS SECTION
   ═══════════════════════════════════════════════════════════════════ */

.alumni-moments-section {
  padding: 5rem 0;
  background: #fff;
}

.alumni-moments-title {
  font-size: 28px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 2rem;
  line-height: 1.3;
  text-align: center;
}

/* Slider nav buttons */
.alumni-moments-nav {
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.alumni-moments-prev,
.alumni-moments-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #0077be;
  background: #fff;
  color: #0077be;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.alumni-moments-prev:hover,
.alumni-moments-next:hover {
  background: #0077be;
  color: #fff;
}

.alumni-moments-slider .owl-stage {
  display: flex;
}

/* Fallback when Owl Carousel is not loaded */
.alumni-moments-slider:not(.owl-loaded) {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.alumni-moments-slider:not(.owl-loaded) .alumni-moment-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 260px;
}

/* Moment card */
.alumni-moment-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.alumni-moment-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
  aspect-ratio: 4 / 3;
}

.alumni-moment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.alumni-moment-card:hover .alumni-moment-image img {
  transform: scale(1.05);
}

.alumni-moment-title {
  font-size: 16px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.alumni-moment-intro {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 0;
}

/* Owl dots override for moments */
.alumni-moments-slider.owl-carousel .owl-dots {
  margin-top: 24px;
}

.alumni-moments-slider.owl-carousel .owl-dot span {
  background: rgba(0, 86, 145, 0.25) !important;
  transition: background 0.2s ease;
}

.alumni-moments-slider.owl-carousel .owl-dot.active span,
.alumni-moments-slider.owl-carousel .owl-dot:hover span {
  background: var(--alumni-primary) !important;
}

/* ═══════════════════════════════════════════════════════════════════
   PRE-FOOTER SECTION
   ═══════════════════════════════════════════════════════════════════ */

.alumni-prefooter-section {
  padding: 5rem 0;
  background: #fff;
  color: #003366;
  text-align: center;
}

.alumni-prefooter-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: #0077be;
}

.alumni-prefooter-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.75rem;
}

.alumni-prefooter-cta .btn {
  background: #ff3333;
  border-color: #ff3333;
  color: #fff;
}

.alumni-prefooter-cta .btn:hover {
  background: #e62e2e;
  border-color: #e62e2e;
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
  :root {
    --alumni-section-py: 60px;
  }

  .alumni-hero-section {
    height: 440px;
    max-height: 440px;
    min-height: 440px;
  }

  .alumni-hero-content h1 {
    font-size: 36px;
  }

  .alumni-benefits-section,
  .alumni-moments-section,
  .alumni-prefooter-section {
    padding: 3.5rem 0;
  }

  .alumni-benefits-title,
  .alumni-moments-title {
    font-size: 24px;
  }

  .alumni-prefooter-title {
    font-size: 28px;
  }

  .alumni-moments-slider:not(.owl-loaded) .alumni-moment-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 767px) {
  :root {
    --alumni-section-py: 48px;
  }

  .alumni-hero-section {
    height: 440px;
    max-height: 440px;
    min-height: 440px;
  }

  .section-h-text {
    padding: 10px 1.3rem;
  }
  .alumni-intro-logo {
    max-width: 100%;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .alumni-intro-logo img {
    width: 200px !important;
  }

  .alumni-hero-content {
    max-width: 100%;
  }

  .alumni-hero-content h1 {
    font-size: 28px;
  }

  .alumni-hero-brand-text {
    font-size: 11px;
    max-width: 120px;
  }

  .alumni-benefits-section,
  .alumni-moments-section,
  .alumni-prefooter-section {
    padding: 2.5rem 1rem;
  }

  .alumni-benefits-title,
  .alumni-moments-title {
    font-size: 22px;
  }

  .alumni-prefooter-title {
    font-size: 24px;
  }

  .alumni-benefit-card {
    padding: 1.25rem;
  }

  .alumni-moments-nav {
    display: none !important;
  }

  .alumni-moments-slider .owl-dots {
    margin-top: 1.5rem;
  }

  .alumni-metrics-title,
  .alumni-video-title,
  .alumni-faq-title {
    margin-bottom: 24px;
  }

  .alumni-metric-card {
    padding: 24px 20px;
  }

  .alumni-video-play {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 575px) {
  .alumni-moments-slider:not(.owl-loaded) .alumni-moment-card {
    flex: 0 0 100%;
  }
}

.justify-center {
  justify-content: center;
}

