/* supe-section  */

:root {
  --bg: #0b1220;
  --surface: #ffffff;
  --surface-soft: #f3f4ff;
  --text: #0f172a;
  --muted: #475569;

  --brand-1: #0b3a9b;
  /* deep blue */
  --brand-2: #1d4ed8;
  /* blue */
  --brand-3: #60a5fa;
  /* sky */
  --accent: #fbbf24;
  /* gold */

  --ring: rgba(59, 130, 246, 0.45);

  --r-xl: 8px;
  --r-lg: 10px;
  --r-md: 7px;

  --shadow-lg: 0 28px 80px rgba(2, 6, 23, 0.35);
  --shadow-md: 0 16px 40px rgba(2, 6, 23, 0.12);
  --shadow-sm: 0 10px 25px rgba(2, 6, 23, 0.1);

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Page backdrop */
.superintendent-wrap {
  /* background:
  radial-gradient(1100px 700px at 18% -10%, rgba(96,165,250,.18), transparent 60%),
  radial-gradient(900px 600px at 95% 15%, rgba(251,191,36,.14), transparent 55%),
  radial-gradient(700px 520px at 45% 110%, rgba(29,78,216,.14), transparent 60%); */
}

/* =========================
  SECTION CONTAINER
========================= */
.superintendent-section {
  max-width: 1240px;
  margin: 0 auto 5rem;
  /* padding: clamp(1.25rem, 2.5vw, 2rem); */
  padding: 0 1em 0 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
}

/* =========================
  HERO
========================= */
.supe-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(2.2rem, 4.5vw, 4.2rem);
  display: grid;
  grid-template-columns: 1.75fr 1fr;
  gap: clamp(1.75rem, 3vw, 3.5rem);
  align-items: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #28354f 0%, #254f85 38%, #d2aa31 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.7em;
}

/* hero background image (per your update) */
.supe-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.scsk12.org/superintendent/img/25/hero-1.webp")
    center / cover;
  opacity: 0.16;
  filter: saturate(1.05) contrast(1.05);
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* soft “glass” highlight */
.supe-hero::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(
      900px 450px at 20% 10%,
      rgba(255, 255, 255, 0.16),
      transparent 55%
    ),
    radial-gradient(
      700px 450px at 90% 70%,
      rgba(96, 165, 250, 0.12),
      transparent 60%
    );
  pointer-events: none;
}

.supe-hero__content {
  position: relative;
  z-index: 2;
}

.supe-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  opacity: 0.92;
  margin: 0 0 1rem;
}

.supe-eyebrow .dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(251, 191, 36, 0.18);
}

.supe-hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 4.2vw, 3.9rem);
  line-height: 1.06;
  margin: 0 0 0.85rem;
}

/* ============ TAGLINE ============ */
.supe-tagline {
  display: block;
  margin: 0 0 1.5rem;
  /* font-family: "Fraunces", "Playfair Display", serif; */
  font-size: clamp(1.25rem, 2.3vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fef3c7;
  /* warm, soft gold */
  text-shadow: 0 2px 10px rgba(15, 23, 42, 0.55);
  max-width: 20ch;
  /* gives it a wider line, similar footprint to “Superintendent” */
}

.supe-tagline span {
  color: #fff7ce;
  /* subtle emphasis on “Grows” without gradient */
  font-weight: 600;
}

/* TAGS (non-button look) */
.supe-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 2.1rem;
}

.supe-pill {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.4rem 0.9rem;
  border-radius: 2em;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  cursor: default;
}

.supe-hero p {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.75;
  opacity: 0.95;
  max-width: 46rem;
  margin: 0 0 2rem;
}

/* =========================
  BUTTONS (top CTAs)
========================= */
.supe-cta-group {
  display: flex;
  flex-wrap: nowrap;
  /* keep all 3 on one line (desktop width) */
  gap: 0.9rem;
  align-items: stretch;
}

.supe-cta-group .btn:hover {
  color: #fffde8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.9rem;
  border-radius: 9999px;
  border-radius: 0.9em;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease),
    color 0.2s var(--ease);
  will-change: transform;
  position: relative;
  border: 2px solid transparent;
  font-size: 0.95rem;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.25), 0 0 0 8px var(--ring);
}

.btn-primary {
  background: radial-gradient(
    circle at 0% 0%,
    #fffbeb 0%,
    #f9e3ab 35%,
    #ffecbc 70%,
    #fbecd1 100%
  );
  background: #fff;
  color: #111827;
  border-color: #afaeab;
  /* text-shadow: 0 1px 1px rgba(255, 255, 255, .7); */
}

.btn-primary:hover {
  /* transform: translateY(-4px); */
  /* box-shadow: 0 26px 55px rgba(251,191,36,.6); */
  /* background: linear-gradient(135deg, #ffe27a 0%, var(--accent) 55%, #f59e0b 100%); */
}

.btn:hover {
  color: #3c3b3b;
}

/* higher-contrast secondary vs background */
.btn-secondary {
  background: rgba(15, 23, 42, 0.88);
  color: #e5e7eb;
  border-color: rgba(248, 250, 252, 0.92);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: #2556e0;
  color: #ffffff !important;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.75);
}

/* optional arrow “pop” */
.btn .arrow {
  display: inline-block;
  transform: translateY(1px);
  font-weight: 900;
  opacity: 0.9;
}

/* =========================
  PORTRAIT
========================= */
.supe-portrait {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.supe-portrait img {
  width: 100%;
  max-width: 360px;
  border-radius: var(--r-lg);
  border-radius: 0.5em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.55);
}

/* subtle frame glow */
.supe-portrait::before {
  content: "";
  position: absolute;
  width: min(420px, 92%);
  aspect-ratio: 1 / 1.12;
  border-radius: calc(var(--r-lg) + 10px);
  background: radial-gradient(
      circle at 30% 20%,
      rgba(96, 165, 250, 0.25),
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 75%,
      rgba(251, 191, 36, 0.18),
      transparent 60%
    );
  filter: blur(18px);
  opacity: 0.8;
  z-index: -1;
}

/* =========================
    BIO SECTION
  ========================= */
.supe-bio {
  margin-top: clamp(2.4rem, 4vw, 3rem);
  padding: clamp(1.9rem, 3vw, 2.6rem);
  border-radius: var(--r-xl);
  background: radial-gradient(
      circle at 0 0,
      rgba(219, 234, 254, 0.85),
      transparent 60%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgb(255 255 255 / 72%),
      transparent 55%
    ),
    var(--surface);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(148, 163, 184, 0.3);
  position: relative;
  overflow: hidden;
  display: block;
}

.supe-bio::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand-2), var(--accent));
  opacity: 0.9;
}

.supe-bio__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1e293b;
  background: rgba(219, 234, 254, 0.9);
}

.supe-bio__label-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
}

.supe-bio h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  margin: 0.85rem 0 0.4rem;
  color: #0b1f4b;
}

.supe-bio__subtitle {
  margin: 0 0 1.1rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--muted);
}

.supe-bio__body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.2rem;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.supe-bio__body p {
  margin: 0 0 0.85rem;
}

.supe-bio__body p:last-child {
  margin-bottom: 0;
}

/* expanded state shows full content */
.supe-bio.supe-bio--expanded .supe-bio__body {
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* toggle button */
.supe-bio__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
    transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.supe-bio__toggle:hover {
  background: #eff6ff;
  border-color: rgba(37, 99, 235, 0.7);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
  transform: translateY(-1px);
}

/* =========================
  TRUST GRID
========================= */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.9rem;
  margin: clamp(2.4rem, 4vw, 4.2rem) 0;
}

.trust-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  /* border: 1px solid rgba(15,23,42,.06); */
}

.trust-card:hover {
  /* transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(2, 6, 23, .18); */
}

.trust-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.03);
}

.trust-card__body {
  padding: 1.2rem 1.1rem 1.15rem;
  text-align: center;
  font-weight: 500;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.35;
}

/* =========================
  ARCHIVE
========================= */
.archive-section {
  margin-top: clamp(2.8rem, 4.5vw, 5rem);
}

.archive-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.3vw, 2.8rem);
  text-align: center;
  margin: 0 0 2.3rem;
  color: var(--text);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 0.7rem;
}

.archive-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.archive-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(29, 78, 216, 0.18);
  border-color: rgba(29, 78, 216, 0.22);
}

.archive-card__date {
  padding: 0.5rem 1.4rem 0.4rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: #0b2f7a;
  background: linear-gradient(135deg, #c2ddff 0%, #cde3ff 100%);
  position: relative;
  cursor: pointer;
}

.archive-card__date::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.archive-card__title {
  padding: 0.3rem 1.4rem 1.3rem;
  margin: 0;
}

.archive-card__link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  line-height: 1.35;
  padding: 0.65rem 0 0.1rem;
  transition: color 0.2s var(--ease);
}

.archive-card__link span {
  display: inline-block;
  min-width: 1.2rem;
  opacity: 0.7;
  transform: translateY(2px);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.archive-card__link:hover {
  color: #1d4ed8;
}

.archive-card__link:hover span {
  opacity: 1;
  transform: translate(3px, 2px);
}

.archive-cta {
  text-align: center;
  margin-top: 2.6rem;
}

.archive-cta a {
  font-weight: 600;
}
.archive-cta .btn:hover {
  color: #f6f6f6;
}
/* =========================
    BIO SECTION
  ========================= */
.supe-bio {
  margin-top: clamp(2.4rem, 4vw, 3rem);
  padding: clamp(1.9rem, 3vw, 2.6rem);
  border-radius: var(--r-xl);
  background: radial-gradient(
      circle at 0 0,
      rgba(219, 234, 254, 0.85),
      transparent 60%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(254, 249, 195, 0.72),
      transparent 55%
    ),
    var(--surface);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(148, 163, 184, 0.3);
  position: relative;
  overflow: hidden;
}

.supe-bio::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--brand-2), var(--accent));
  opacity: 0.9;
}

.supe-bio__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1e293b;
  background: rgba(219, 234, 254, 0.9);
}

.supe-bio__label-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
}

.supe-bio h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  margin: 0.85rem 0 0.4rem;
  color: #0b1f4b;
}

.supe-bio__subtitle {
  margin: 0 0 1.1rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--muted);
}

/* Collapsing body (fills container, then clamps lines) */
.supe-bio__body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.2rem;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  /* adjust this number to show more/less lines */
  overflow: hidden;
}

.supe-bio__body p {
  margin: 0 0 0.85rem;
}

.supe-bio__body p:last-child {
  margin-bottom: 0;
}

/* expanded state shows full content */
.supe-bio.supe-bio--expanded .supe-bio__body {
  -webkit-line-clamp: unset;
  overflow: visible;
}

/* toggle button */
.supe-bio__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.95);
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
    transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.supe-bio__toggle:hover {
  background: #eff6ff;
  border-color: rgba(37, 99, 235, 0.7);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
  transform: translateY(-1px);
}

/* =========================
  RESPONSIVE
========================= */
@media (max-width: 992px) {
  .supe-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .supe-cta-group {
    justify-content: center;
    flex-wrap: wrap;
    /* allow wrapping on smaller screens */
  }

  .supe-pills {
    justify-content: center;
  }

  .supe-bio {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
    padding: 1rem 1.1rem;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
  REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
  .trust-card,
  .archive-card,
  .btn {
    transition: none !important;
  }

  .trust-card:hover,
  .archive-card:hover,
  .btn:hover {
    transform: none !important;
  }
}

/* recaps-archive css */
:root {
  --bg: #0b1220;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;

  --brand-1: #0b3a9b;
  --brand-2: #1d4ed8;
  --brand-3: #60a5fa;
  --accent: #fbbf24;

  --r-md: 14px;
  --r-lg: 20px;
  --shadow-sm: 0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 16px 40px rgba(15, 23, 42, 0.12);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

.supe-archives-wrap {
  background: radial-gradient(
      900px 600px at 10% -10%,
      rgba(96, 165, 250, 0.18),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at 100% 0%,
      rgba(251, 191, 36, 0.14),
      transparent 60%
    ),
    linear-gradient(180deg, #0b1220 0%, #020617 100%);
  background: #1f211f;
  padding: 2.5rem 0 3.5rem;
}

.supe-archives-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 2.5vw, 2rem);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
}

/* Header */
.supe-archives-header {
  text-align: center;
  margin-bottom: 2.8rem;
  color: #e5e7eb;
}

.supe-archives-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #c7d2fe;
  background: #3f51b5;
  border-radius: 0.2em;
  padding: 0.2em 1em;
}

.supe-archives-eyebrow span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
}

.supe-archives-header h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 3.2vw, 2.8rem);
  margin: 0.9rem 0 0.45rem;
}

.supe-archives-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.98rem;
  color: #cbd5f5;
}

/* Main card */
.supe-archives-card {
  background: radial-gradient(
      circle at 0 0,
      rgba(219, 234, 254, 0.9),
      transparent 60%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(254, 249, 195, 0.8),
      transparent 55%
    ),
    var(--surface);
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1.8rem 1.6rem 2rem;
}

/* Year block */
.supe-archives-year {
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
}

.supe-archives-year:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0.4rem;
}

.supe-archives-year-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
}

.supe-archives-year-header h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #4b5563;
}

.supe-archives-year-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.9), transparent);
}

/* GRID of month cards */
.supe-archives-months-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
}

.supe-archives-month-group {
  /* background: #f9fafb; */
  border-radius: 10px;
  border: 1px solid rgba(209, 213, 219, 0.85);
  padding: 0.85rem 0.9rem 0.95rem;
  /* box-shadow: var(--shadow-sm); */
}

.supe-archives-month {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
  color: #475569;
}

.supe-archives-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.supe-archives-date-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.55rem;
  border-radius: 0.45em;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  /* border: 1px solid rgb(219 228 241 / 70%); */
  color: #111827;
  /* background: #ffffff; */
  transition: background 0.18s var(--ease), color 0.18s var(--ease),
    border-color 0.18s var(--ease), transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}

.supe-archives-date-link:hover {
  background: #eff6ff;
  border-color: #1d4ed8;
  color: #1d4ed8;
  /* transform: translateY(-1px); */
  /* box-shadow: 0 10px 28px rgba(15, 23, 42, .14); */
}

.supe-archives-date-link span {
  margin-left: 0.25rem;
  font-size: 0.9em;
  transform: translateY(1px);
}

.supe-archives-back {
  margin-top: 2rem;
  text-align: center;
}

.supe-archives-back a {
  font-size: 0.9rem;
  text-decoration: none;
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.supe-archives-back a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .supe-archives-card {
    padding: 1.4rem 1.1rem 1.6rem;
  }
}

/* =========================
   ABOUT THE WEEKLY RECAP
========================= */
.supe-recaps-info {
  margin-top: clamp(2.4rem, 4vw, 3.2rem);
  padding: clamp(1.7rem, 3vw, 2.3rem);
  border-radius: var(--r-xl);
  background: #1f211f;
  box-shadow: var(--shadow-md);
  color: #e5e7eb;
  margin-top: 0;
}

.supe-recaps-info__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.85);
  background: #3f51b5;
}

.supe-recaps-info__label-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
}

.supe-recaps-info h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin: 0.85rem 0 0.6rem;
  color: #fef3c7;
}

.supe-recaps-info p {
  margin: 0 0 0.9rem;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #f9fafb;
  /* “white” text for readability */
}

.supe-recaps-info p:last-child {
  margin-bottom: 0;
}

.archive-cta .btn:hover {
  color: #fff;
}
/* =========================
  PATHWAY TO GREATNESS
========================= */
.supe-pathway {
  margin-top: clamp(2.4rem, 4vw, 3.2rem);
}

.supe-pathway__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 3vw, 2.4rem);
  align-items: center;
  padding: clamp(1.9rem, 3vw, 2.4rem);
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 0 0, rgba(219, 234, 254, .9), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(254, 249, 195, .8), transparent 55%),
    #ffffff;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(148, 163, 184, .35);
}

.supe-pathway__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.3vw, 2rem);
  margin: 0 0 .6rem;
  color: #0b1533;
}

.supe-pathway__content p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.75;
  color: var(--text);
}

.supe-pathway__media {
  position: relative;
}

.supe-pathway__media a {
  display: inline-block;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .28);
  border: 1px solid rgba(15, 23, 42, .18);
  background: #000;
}

.supe-pathway__media img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* subtle hover effect on graphic */
.supe-pathway__media a:hover img {
  transform: scale(1.02);
  transition: transform .22s var(--ease);
}
.supe-pathway__button {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .8rem 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, .7);
    background: #111827;
    color: #f9fafb;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
}
/* stack on small screens */
@media (max-width: 768px) {
  .supe-pathway__inner {
    grid-template-columns: 1fr;
  }

  .supe-pathway__media {
    order: -1;
  }
}

.supe-pathway {
  margin-top: clamp(2.5rem, 4vw, 3.2rem);
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.supe-pathway__innerD {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.15fr);
  gap: clamp(1.8rem, 3vw, 2.8rem);
  align-items: center;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  border-radius: 0.9rem;
  background:
    radial-gradient(circle at 0 0, rgba(219, 234, 254, .9), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(254, 249, 195, .85), transparent 55%),
    #ffffff;
  border: 1px solid rgba(148, 163, 184, .35);
  box-shadow: 0 20px 45px rgba(15, 23, 42, .12);
}

/* IMAGE SIDE */
.supe-pathway__media {
  position: relative;
}

.supe-pathway__image-frame {
  margin: 0;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .4);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .18);
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, .06), transparent 60%);
}

.supe-pathway__media img {
  display: block;
  width: 100%;
  height: auto;
}

/* CONTENT SIDE */
.supe-pathway__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  margin: 0 0 0.5rem;
  color: #0b1f4b;
}

.supe-pathway__tag {
  display: block;
  margin-top: 0.25rem;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #b45309; /* warm gold/brown */
}

.supe-pathway__content p {
  margin: 0.85rem 0 1.6rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #1f2933;
  max-width: 38rem;
}

/* BUTTON */
.supe-pathway__button {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    border: 1px solid rgb(118 151 167);
    background: #FFF;
    font-size: 0.96rem;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    box-shadow: 0 14px 32px rgb(143 141 136 / 45%);
    transition: transform .18s cubic-bezier(.2, .8, .2, 1), box-shadow .18s cubic-bezier(.2, .8, .2, 1), background .18s cubic-bezier(.2, .8, .2, 1);
}

.supe-pathway__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(251, 191, 36, .6);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 40%, #facc15 100%);
}

.supe-pathway__button-arrow {
  display: inline-block;
  transform: translateY(1px);
}


.supe-pathway a {
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .supe-pathway__innerD {
    grid-template-columns: 1fr;
  }

  .supe-pathway__media {
    order: -1; /* image on top for mobile */
  }
}

.supe-families {
  margin-top: clamp(2.4rem, 4vw, 3.1rem);
}

.supe-families__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.7rem, 3vw, 2.2rem);
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 0 0, rgba(219, 234, 254, .9), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(254, 249, 195, .75), transparent 55%),
    #ffffff;
  border: 1px solid rgba(148, 163, 184, .35);
  box-shadow: var(--shadow-md);
}

.supe-families__content {
  max-width: 620px;
}

.supe-families__content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  margin: 0 0 .6rem;
  color: #0b1f4b;
}

.supe-families__content p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.75;
  color: var(--text);
}

.supe-families__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
}

.supe-families__button {
  padding-inline: 2.2rem;
  font-size: .95rem;
}

/* Mobile stacking */
@media (max-width: 768px) {
  .supe-families__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .supe-families__actions {
    justify-content: flex-start;
    width: 100%;
  }

  .supe-families__button {
    width: 100%;
    justify-content: center;
  }
}
h2, h3, h4:not(.major-heading) {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
}

/* Header button base */
.supe-families__heading {
  width: 100%;
  text-align: left;
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
  padding: 1rem 1.2rem 1rem 1rem;
  font-weight: 700;
  font-size: 1.02rem;
  background: #ffffff;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}

/* PLUS / MINUS ICON */
.supe-families__heading::after {
  content: "+";
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #eff6ff;
  color: #1d4ed8;
}

/* When expanded, switch to MINUS */
.supe-families__heading[aria-expanded="true"]::after {
  content: "–";
  background: #1d4ed8;
  color: #f9fafb;
  border-color: #1d4ed8;
}

/* Optional hover state */
.supe-families__heading:hover {
  border-color: #cbd5f5;
  background: #f8fafc;
  box-shadow: 0 10px 25px rgba(15, 23, 42, .08);
}

/* Panel body (you already have something like this) */
.supe-families__panel {
  border-radius: 0.85rem;
  padding: 1.2rem 1.4rem 1.4rem;
  background: radial-gradient(circle at 0 0, #e5edff 0, transparent 60%),
              #ffffff;
  margin-top: .65rem;
  border: 1px solid #e5e7eb;
}
