/*
Theme Name: Club Hockey - Divi Child
Theme URI: https://github.com/connormesec/club-hockey-theme
Template: Divi
Author: Connor Mesec
Author URI: https://github.com/connormesec
Description: Dark-themed Divi child theme for collegiate club hockey teams. Integrates with Puck Press for roster, schedule, stats, and news.
Version: 1.0.0

*/

/* ==============================================
   Global Variables
   ============================================== */
:root {
  --content-width: 100%;
  --content-max-width: 1280px;

  /* Palette */
  --bg: #00112a;
  --navy: #00214c;
  --navy-mid: #002a5e;
  --gold: #b9975b;
  --gold-bright: #d4b06e;
  --white: #ffffff;

  /* Team colors */
  --primary: var(--gold);
  --primary-dark: #9a7a3e;
  --secondary: var(--white);
  --on-primary: var(--bg);
  --on-secondary: var(--bg);

  /* Surfaces */
  --surface: var(--navy);
  --surface-raised: var(--navy-mid);
  --bg-drop: #000d20;
  --border: rgba(185, 151, 91, 0.15);

  /* Text */
  --text: #c8bfa8;
  --text-muted: #5a6e8a;
  --text-faint: #2d3f57;
}

/*
 * All styles are loaded from css/ via wp_enqueue_style in inc/enqueue.php.
 * See CLAUDE.md or README.md for the full list.
 */

/* ==============================================
   Staff page additions
   (appended per request — HTML references --navy-dark
   and .sec-label which did not exist in the theme)
   ============================================== */
:root {
  --navy-dark: var(--bg);
}

/* Smooth scroll for in-page anchor links (e.g. CTA → #interest-form).
   scroll-padding-top keeps the target clear of the sticky nav. */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Section eyebrow label used above each staff section */
.sec-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b9975b;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.sec-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #b9975b;
  display: block;
}

/* ----- Section 1: Head coach feature card ----- */
.staff-feature {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: var(--navy);
  border: 1px solid var(--border);
  overflow: hidden;
}

.staff-feature-img {
  position: relative;
  min-height: 380px;
  background-color: var(--bg-drop);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.staff-feature-num {
  position: absolute;
  left: 14px;
  bottom: -10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 180px;
  line-height: 0.85;
  color: var(--gold);
  opacity: 0.08;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.staff-feature-body {
  position: relative;
  padding: 40px 44px;
  border-left: 3px solid var(--gold);
}
.staff-feature-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--gold) 0%,
    rgba(185, 151, 91, 0) 70%
  );
}

.staff-role {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.staff-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.01em;
  margin: 0 0 20px;
}

.staff-bio {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 28px;
}

.staff-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}
.staff-detail-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
}
.staff-detail-lbl {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.staff-detail-val {
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  color: var(--white);
  text-align: right;
}

.staff-email {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.15s;
}
.staff-email:hover {
  color: var(--gold-bright);
}

@media (max-width: 860px) {
  .staff-feature {
    grid-template-columns: 1fr;
  }
  .staff-feature-body {
    padding: 32px 24px;
  }
  .staff-feature-img {
    min-height: 320px;
  }
}

/* ----- Section 2: Assistant coaches / staff grid
   (also reused by Section 3 — do not duplicate) ----- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  align-items: start;
}

.staff-card {
  background: var(--navy);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.staff-card-img {
  position: relative;
  height: 340px;
  background-color: var(--bg-drop);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 17, 42, 0) 55%,
    rgba(0, 17, 42, 0.85) 100%
  );
  pointer-events: none;
}

.staff-card-initials {
  font-family: "Bebas Neue", sans-serif;
  font-size: 72px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.35;
  letter-spacing: 0.04em;
  z-index: 1;
}

.staff-card-body {
  padding: 22px 22px 24px;
  border-top: 2px solid var(--gold);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.staff-card-role {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.staff-card-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.staff-card-detail {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.staff-card-bio {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(185, 151, 91, 0.08);
  flex: 1;
}

.staff-card-email {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.15s;
  margin-top: auto;
}
.staff-card-email:hover {
  color: var(--gold-bright);
}

@media (max-width: 900px) {
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .staff-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================================
   Staff page — Build Physio partner section
   (reuses .sec-label; mirrors .ch-explore-grid's 5/3/2 responsive pattern)
   ============================================== */
.partner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}

.partner-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  margin-bottom: 40px;
}

.partner-intro {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0;
}

.partner-logo-link {
  text-decoration: none;
  display: inline-block;
}

.partner-logo-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 28px;
  border: 1px solid rgba(185, 151, 91, 0.35);
  background: rgba(0, 13, 32, 0.4);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.partner-logo-link:hover .partner-logo-badge {
  border-color: var(--gold-bright);
  background: rgba(0, 13, 32, 0.6);
}

.partner-logo-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--white);
}
.partner-logo-name span {
  color: var(--gold);
}

.partner-logo-url {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Variant: real logo image on white card */
.partner-logo-badge--image {
  background: #ffffff;
  padding: 16px 22px 12px;
  gap: 8px;
}
.partner-logo-link:hover .partner-logo-badge--image {
  background: #ffffff;
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 2px rgba(212, 176, 110, 0.25);
}
.partner-logo-img {
  display: block;
  max-width: 200px;
  width: 100%;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}
.partner-logo-badge--image .partner-logo-url {
  color: #6a7385;
}

/* Showcase row: big action shot next to a clean white logo panel */
.partner-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3px;
  margin-bottom: 40px;
}

/* --- Action shot --- */
.partner-action {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background-color: var(--bg-drop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.partner-action::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 17, 42, 0.75) 0%,
    rgba(0, 17, 42, 0.2) 45%,
    rgba(0, 17, 42, 0) 70%
  );
  pointer-events: none;
}
.partner-action-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 560px;
}
.partner-action-eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.partner-action-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
}

/* --- White logo panel --- */
.partner-logo-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 40px 28px;
  background: #ffffff;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.partner-logo-panel:hover {
  background: #fbf9f3;
  box-shadow: inset 0 0 0 2px rgba(185, 151, 91, 0.35);
}
.partner-logo-panel-img {
  display: block;
  width: 100%;
  max-width: 240px;
  max-height: 140px;
  height: auto;
  object-fit: contain;
}
.partner-logo-panel-url {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6a7385;
  transition: color 0.15s ease;
}
.partner-logo-panel:hover .partner-logo-panel-url {
  color: var(--navy);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .partner-showcase {
    grid-template-columns: 1fr;
  }
  .partner-action { aspect-ratio: 16 / 10; }
  .partner-logo-panel {
    padding: 36px 24px;
    min-height: 200px;
  }
}
@media (max-width: 540px) {
  .partner-action { aspect-ratio: 4 / 3; }
  .partner-action-caption { left: 20px; right: 20px; bottom: 18px; }
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}

.partner-card {
  position: relative;
  background: #00112a;
  border: 1px solid rgba(185, 151, 91, 0.12);
  padding: 28px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s ease;
}
.partner-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-card-dept {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.partner-card-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-top: 2px;
}

.partner-card-creds {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.partner-card-role {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 10px;
}

@media (max-width: 1100px) {
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .partner-header { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==============================================
   Staff page — Behind the Scenes crew
   Compact row of small headshot + role + name + optional link.
   Reuses .sec-label.
   ============================================== */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.crew-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--navy-dark);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease;
}
.crew-item:hover {
  border-color: rgba(185, 151, 91, 0.45);
}

.crew-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: var(--bg-drop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--gold);
  overflow: hidden;
}

.crew-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.crew-role {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.crew-name {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.crew-link {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.15s ease;
}
.crew-link:hover {
  color: var(--gold);
}

@media (max-width: 980px) {
  .crew-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .crew-grid { grid-template-columns: 1fr; }
}

/* ==============================================
   Staff card — collapsible bio (checkbox-based)
   Each card has a unique #id so toggles are fully independent.
   Pure CSS, no JS, no <details> (which some Divi modules
   can interfere with).
   ============================================== */
.staff-bio-toggle {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 0 0 16px;
  border-top: 1px solid rgba(185, 151, 91, 0.12);
}

/* Visually hide the checkbox but keep it accessible */
.staff-bio-toggle-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.staff-bio-toggle-label {
  display: block;
  text-align: center;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 14px 12px;
  transition: color 0.15s ease, background 0.2s ease;
  user-select: none;
}
.staff-bio-toggle-label:hover {
  color: var(--gold-bright);
  background: rgba(185, 151, 91, 0.05);
}
.staff-bio-toggle-label::after {
  content: " ▾";
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.25s ease;
}

/* Label text swaps via CSS based on checkbox state */
.staff-bio-toggle-input:not(:checked) + .staff-bio-toggle-label::before {
  content: "Read Bio";
}
.staff-bio-toggle-input:checked + .staff-bio-toggle-label::before {
  content: "Hide Bio";
}
.staff-bio-toggle-input:checked + .staff-bio-toggle-label::after {
  transform: rotate(180deg);
}

/* Keyboard focus ring (checkbox is visually hidden, so surface it on the label) */
.staff-bio-toggle-input:focus-visible + .staff-bio-toggle-label {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Collapsible region */
.staff-bio-toggle-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.staff-bio-toggle-input:checked ~ .staff-bio-toggle-content {
  max-height: 2000px;
}

/* Strip the bio's own hairline/padding when it's inside a toggle —
   the toggle wrapper provides separation. */
.staff-bio-toggle-content > .staff-card-bio {
  border-top: none;
  padding: 4px 0 0;
  margin: 0;
  flex: none;
}

/* ==============================================
   About page
   Reuses: --navy-dark, --navy-mid, --navy, --gold, --gold-bright,
           --white, --text, --text-muted, --border, --bg-drop, .sec-label
   ============================================== */

/* ----- Section 1: Mission ----- */
.about-mission-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-mission-inner > * {
  position: relative;
  z-index: 1;
}

.mission-statement {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
}
.mission-statement em {
  font-style: normal;
  color: var(--gold);
}

.mission-body p {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}

.mission-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  opacity: 0.35;
  margin: 24px 0;
}

@media (max-width: 860px) {
  .about-mission-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ----- Section 2: Pillars ----- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 32px;
}

.pillar {
  position: relative;
  background: var(--navy);
  border: 1px solid rgba(185, 151, 91, 0.18);
  padding: 40px 32px 34px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.pillar-num {
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.07;
  pointer-events: none;
  letter-spacing: 0.02em;
}

.pillar-title {
  position: relative;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 18px;
}
.pillar-title span {
  color: var(--gold);
}

.pillar-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

@media (max-width: 720px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Section 3: History ----- */
.about-history-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.history-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}

.history-aside-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.history-aside-title em {
  font-style: normal;
  color: var(--gold);
}

.history-aside-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 32px;
  padding-left: 16px;
  border-left: 2px solid rgba(185, 151, 91, 0.25);
}

.history-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.history-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 16px;
  border-right: 1px solid var(--border);
}
.history-stat:last-child {
  border-right: none;
}
.history-stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.history-stat-lbl {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.history-img {
  aspect-ratio: 4 / 3;
  background-color: var(--bg-drop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(185, 151, 91, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
.history-img-placeholder {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
}
.tl-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
}
.tl-year-col {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 10px;
}
.tl-year {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin: 10px 0 0 1px;
  flex-shrink: 0;
}
.tl-line {
  width: 2px;
  flex: 1;
  background: rgba(185, 151, 91, 0.2);
  margin: 6px 0 0 5px;
  min-height: 40px;
}
.tl-body {
  padding-bottom: 36px;
}
.tl-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.tl-desc {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}
.tl-item.tl-last .tl-line {
  display: none;
}
.tl-item.tl-last .tl-body {
  padding-bottom: 0;
}

@media (max-width: 860px) {
  .history-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ----- Section 4: Home Ice ----- */
.about-arena-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

.arena-img {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: var(--bg-drop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(185, 151, 91, 0.22);
  overflow: hidden;
}
.arena-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 17, 42, 0.7) 0%,
    rgba(0, 17, 42, 0) 45%
  );
  pointer-events: none;
}
.arena-img-label {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg-drop);
}

.arena-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 8px 0 18px;
}
.arena-title em {
  font-style: normal;
  color: var(--gold);
}

.arena-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 28px;
}

/* Label/value rows — mirrors the .staff-detail-row pattern in structure
   but uses border-row separators for the arena details block. */
.arena-details {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.arena-detail-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.arena-detail-lbl {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.arena-detail-val {
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  color: var(--white);
  text-align: right;
}

@media (max-width: 900px) {
  .about-arena-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ----- Section 5: CTA Cards ----- */
.about-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 48px 40px 44px;
  background: var(--navy-mid);
  border: 1px solid rgba(185, 151, 91, 0.18);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.cta-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-card:hover {
  border-color: var(--gold);
}
.cta-card:hover::after {
  transform: scaleX(1);
}

.cta-card-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.cta-card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 18px;
}

.cta-card-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 28px;
}

.cta-card-link {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  transition: color 0.2s ease;
}
.cta-card:hover .cta-card-link {
  color: var(--gold-bright);
}

@media (max-width: 720px) {
  .about-cta-inner {
    grid-template-columns: 1fr;
  }
  .cta-card {
    padding: 36px 28px 32px;
  }
}

/* ==============================================
   Recruiting page
   Reuses: --navy, --navy-mid, --navy-dark, --bg-drop, --gold,
           --gold-bright, --white, --text, --text-muted, --border,
           .sec-label. Mirrors patterns from .cta-card (hover scaleX),
           .pillar (num watermark), .mission-statement em (gold em),
           .history-aside-body (2px left-border body).
   ============================================== */

/* ----- Shared buttons (no .btn-gold / .btn-ghost exist in theme;
   the only buttons are .ch-btn-primary / .ch-btn-ghost in css/hero.css,
   scoped to hero-only --h-* variables) ----- */
.btn-gold,
.btn-ghost {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 30px;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, transform 0.2s ease;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--navy-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ----- Section 1: Intro ----- */
.recruit-intro-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.recruit-intro-body {
  margin-top: 18px;
}
.recruit-intro-img {
  width: 100%;
  max-height: 500px;
  aspect-ratio: 4 / 5;
  background-color: var(--bg-drop);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(185, 151, 91, 0.22);
}
.recruit-intro-body p {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 18px;
}
.recruit-intro-body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 860px) {
  .recruit-intro-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ----- Section 2: Hype Video ----- */
.recruit-video-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}
.video-aside-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 18px;
}
.video-aside-title em {
  font-style: normal;
  color: var(--gold);
}
.video-aside-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--navy-dark);
  border: 1px solid rgba(185, 151, 91, 0.22);
  overflow: hidden;
}
.video-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--gold) 0%,
    rgba(185, 151, 91, 0) 80%
  );
  z-index: 1;
  pointer-events: none;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 860px) {
  .recruit-video-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ----- Section 3: Fast Facts (gold strip) ----- */
.recruit-facts-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.fact-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 1.6rem 1rem;
  border-right: 1px solid rgba(0, 17, 42, 0.18);
  text-align: center;
}
.fact-cell:last-child {
  border-right: none;
}
.fact-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--navy-dark);
}
.fact-lbl {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 17, 42, 0.7);
}
@media (max-width: 900px) {
  .recruit-facts-inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .fact-cell:nth-child(3n) {
    border-right: none;
  }
  .fact-cell:nth-child(3n + 1),
  .fact-cell:nth-child(3n + 2) {
    border-right: 1px solid rgba(0, 17, 42, 0.18);
  }
}
@media (max-width: 540px) {
  .recruit-facts-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .fact-cell {
    border-right: 1px solid rgba(0, 17, 42, 0.18);
  }
  .fact-cell:nth-child(2n) {
    border-right: none;
  }
}

/* ----- Section 4: Why Join ----- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 32px;
}
.why-card {
  position: relative;
  background: var(--navy);
  border: 1px solid rgba(185, 151, 91, 0.18);
  padding: 40px 32px 34px;
  overflow: hidden;
}
.why-card-num {
  position: absolute;
  top: 2px;
  right: 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 96px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.06;
  letter-spacing: 0.02em;
  pointer-events: none;
}
.why-card-title {
  position: relative;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 18px;
}
.why-card-title span {
  color: var(--gold);
}
.why-card-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}
@media (max-width: 860px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Section 5: Player Perks ----- */
.perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 32px;
}
.perk-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px;
  background: var(--navy);
  border: 1px solid rgba(185, 151, 91, 0.18);
}
.perk-badge {
  flex-shrink: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(52px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--gold);
}
.perk-info {
  flex: 1;
  min-width: 0;
}
.perk-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.perk-detail {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}
@media (max-width: 640px) {
  .perks-grid {
    grid-template-columns: 1fr;
  }
  .perk-card {
    gap: 20px;
    padding: 28px 24px;
  }
}

/* ----- Section 6: Eligibility ----- */
.recruit-eligibility-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}
.eligibility-aside-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 5.5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.eligibility-aside-title em {
  font-style: normal;
  color: var(--gold);
}
.eligibility-aside-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 28px;
  padding-left: 16px;
  border-left: 2px solid rgba(185, 151, 91, 0.25);
}
.eligibility-aside-img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 1px solid rgba(185, 151, 91, 0.22);
  background: var(--bg-drop);
}
.eligibility-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.eligibility-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  background: var(--navy);
  border: 1px solid rgba(185, 151, 91, 0.18);
}
.eligibility-check {
  position: relative;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(185, 151, 91, 0.12);
  border: 1px solid var(--gold);
  margin-top: 2px;
  font-size: 0;
  color: transparent;
}
.eligibility-check::after {
  content: "\2713\0020";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Arial", "Helvetica", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}
.eligibility-text {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}
.eligibility-text strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
@media (max-width: 860px) {
  .recruit-eligibility-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ----- Section 7: Tryouts CTA ----- */
.recruit-cta-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.cta-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 28px;
}
.cta-heading em {
  font-style: normal;
  color: var(--gold);
}
.cta-detail-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.cta-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 24px 4px 0;
}
.cta-detail:first-child {
  padding-left: 0;
}
.cta-detail-lbl {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cta-detail-val {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}
.cta-divider {
  width: 1px;
  background: rgba(185, 151, 91, 0.25);
  margin: 4px 24px 4px 0;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 260px;
}
@media (max-width: 720px) {
  .recruit-cta-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cta-divider {
    display: none;
  }
  .cta-detail {
    flex-basis: 50%;
    padding-right: 12px;
    padding-bottom: 10px;
  }
  .cta-actions {
    min-width: 0;
  }
}

/* ==============================================
   Recruiting page — Interest form section
   Reuses: --navy, --navy-dark, --bg-drop, --gold, --gold-bright,
           --white, --text, --text-muted, .sec-label. Mirrors
           .eligibility-aside-* layout. Divi overrides are scoped
           under .ch-form and use !important to beat Divi defaults.
   ============================================== */
.recruit-form-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: center;
}
.form-aside-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 5.5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.form-aside-title em {
  font-style: normal;
  color: var(--gold);
}
.form-aside-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  padding-left: 16px;
  border-left: 2px solid rgba(185, 151, 91, 0.25);
}
.form-aside-body strong {
  color: var(--white);
  font-weight: 600;
}

/* ----- Divi 5 contact form overrides (scoped to .ch-form) ----- */
.ch-form .et_pb_contact_form_label {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}
.ch-form .et_pb_contact_field {
  padding: 0 !important;
  margin: 0 0 16px !important;
  background: transparent !important;
  border: 0 !important;
}
.ch-form input[type="text"],
.ch-form input[type="email"],
.ch-form textarea,
.ch-form .input {
  width: 100% !important;
  font-family: "Barlow", sans-serif !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  color: var(--white) !important;
  background: var(--bg-drop) !important;
  border: 1px solid rgba(185, 151, 91, 0.22) !important;
  border-radius: 0 !important;
  padding: 16px 18px !important;
  box-shadow: none !important;
  transition: border-color 0.2s ease, background 0.2s ease !important;
}
.ch-form input[type="text"]:focus,
.ch-form input[type="email"]:focus,
.ch-form textarea:focus,
.ch-form .input:focus {
  outline: none !important;
  border-color: var(--gold) !important;
  background: var(--navy) !important;
}
.ch-form input::placeholder,
.ch-form textarea::placeholder {
  color: var(--text-muted) !important;
  font-family: "Barlow Condensed", sans-serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  font-size: 13px !important;
  opacity: 1 !important;
}
.ch-form textarea {
  min-height: 180px !important;
  resize: vertical !important;
  line-height: 1.6 !important;
}
.ch-form .et_pb_contact_field_description,
.ch-form .et_pb_contact_field_description p {
  font-family: "Barlow", sans-serif !important;
  font-weight: 300 !important;
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin: 6px 0 0 !important;
  line-height: 1.5 !important;
}
.ch-form .et_contact_bottom_container,
.ch-form .et_pb_contact_right {
  margin-top: 8px !important;
}
.ch-form .et_pb_contact_submit,
.ch-form button[type="submit"] {
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  padding: 9px 26px 9px 26px !important;
  margin-top: 8px;
  margin-bottom: 8px;
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  border: 1px solid var(--gold) !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: background 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease, padding 0.2s ease !important;
}
.ch-form .et_pb_contact_submit:hover,
.ch-form button[type="submit"]:hover {
  background: var(--gold-bright) !important;
  border-color: var(--gold-bright) !important;
  color: var(--navy-dark) !important;
  transform: translateY(-1px) !important;
  padding-right: 42px !important;
}
.ch-form .et-pb-contact-message,
.ch-form p.et_pb_contact_error_text {
  font-family: "Barlow Condensed", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  color: var(--text) !important;
  padding: 12px 16px !important;
  margin: 0 0 16px !important;
  background: var(--navy) !important;
  border-left: 2px solid var(--gold) !important;
}
.ch-form .et-pb-contact-message:empty,
.ch-form .et-pb-contact-message:not(:has(*:not(:empty))) {
  display: none !important;
}
.ch-form .et-pb-contact-message ul:empty {
  display: none !important;
  margin: 0 !important;
}
@media (max-width: 860px) {
  .recruit-form-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==============================================
   Recruiting page — FAQ section
   Uses native <details>/<summary> for accessibility.
   Reuses .sec-label + aside pattern from eligibility.
   ============================================== */
.recruit-faq-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 5rem;
  align-items: start;
}
.faq-aside-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(42px, 5.5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.faq-aside-title em {
  font-style: normal;
  color: var(--gold);
}
.faq-aside-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 28px;
  padding-left: 16px;
  border-left: 2px solid rgba(185, 151, 91, 0.25);
}
.faq-aside-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(185, 151, 91, 0.22);
  background: var(--bg-drop);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.faq-item {
  background: var(--navy);
  border: 1px solid rgba(185, 151, 91, 0.18);
}
.faq-q {
  position: relative;
  display: block;
  padding: 20px 56px 20px 24px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s ease;
}
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-q:hover {
  color: var(--gold);
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Barlow", sans-serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-q {
  color: var(--gold);
}
.faq-item[open] .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-a {
  padding: 0 24px 22px;
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}
@media (max-width: 860px) {
  .recruit-faq-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==============================================
   Watch Live page
   Reuses: --navy-dark, --gold, --gold-bright, --white, --text-muted,
           .btn-gold. Mirrors the .video-wrap faint-gold-border + gold
           gradient top-rule pattern but without iframe-specific sizing.
   ============================================== */

/* ----- Section 2: BlueFrame player wrapper ----- */
.blueframe-wrap {
  position: relative;
  background: var(--navy-dark);
  border: 1px solid rgba(185, 151, 91, 0.22);
  overflow: hidden;
}
.blueframe-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--gold) 0%,
    rgba(185, 151, 91, 0) 80%
  );
  z-index: 1;
  pointer-events: none;
}
.blueframe-wrap blueframe-app {
  display: block;
  min-height: 600px;
}

/* ----- Section 3: Schedule CTA ----- */
.watch-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.watch-cta-text h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 10px;
}
.watch-cta-text p {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  max-width: 560px;
}
@media (max-width: 720px) {
  .watch-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==============================================
   Contact page
   Reuses: --navy, --navy-mid, --navy-dark, --gold, --gold-bright,
           --white, --text, --text-muted, .sec-label. Aside mirrors
           eligibility-aside structure. Form wrapper top-rule mirrors
           .partner-card::before. Submit button clip-path mirrors
           .ch-btn-primary from css/hero.css.
   ============================================== */

/* ----- Sidebar (left column Code module) ----- */
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-aside-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
}
.contact-aside-title em {
  font-style: normal;
  color: var(--gold);
}
.contact-aside-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-detail-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 22px;
  background: var(--navy-mid);
  border: 1px solid rgba(185, 151, 91, 0.15);
}
.contact-detail-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.contact-detail-card:hover::before {
  opacity: 1;
}
.contact-detail-lbl {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-detail-val {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}
.contact-detail-val a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-detail-val a:hover {
  color: var(--gold-bright);
}
.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: 1px solid rgba(185, 151, 91, 0.3);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease,
    background 0.2s ease;
}
.contact-social-link svg {
  flex-shrink: 0;
}
.contact-social-link:hover {
  color: var(--navy-dark);
  background: var(--gold);
  border-color: var(--gold);
}

/* ----- Contact page form wrapper only (fields/labels/submit inherit from .ch-form).
   Apply BOTH classes to the Divi module: `ch-form contact-form-styled`. ----- */
.contact-form-styled.et_pb_contact_form_container {
  background: var(--navy-mid);
  border: 1px solid rgba(185, 151, 91, 0.1);
  padding: 2.5rem;
  position: relative;
}
.contact-form-styled.et_pb_contact_form_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold) 30%,
    var(--gold-bright) 50%,
    var(--gold) 70%,
    transparent
  );
}
/* Select dropdown needs explicit option bg/text (Divi doesn't inherit it) */
.contact-form-styled .et_pb_contact_field select option {
  background: var(--navy-dark);
  color: var(--white);
}

/* ==============================================
   Honored Jerseys
   Reuses: --navy, --navy-mid, --navy-dark, --gold, --gold-bright,
           --white, --text, --text-muted, --border, .sec-label.
           Banner top accent mirrors .contact-form-styled::before.
   ============================================== */
.honors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.honor-card {
  display: flex;
  flex-direction: column;
}

/* ----- Banner ----- */
.honor-banner {
  position: relative;
  background: var(--navy);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem 2.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
}
.honor-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold) 30%,
    var(--gold-bright) 50%,
    var(--gold) 70%,
    transparent
  );
}

.honor-banner-stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  height: 18px;
}
.honor-banner-stripe .s-white { flex: 1; background: var(--white); }
.honor-banner-stripe .s-gold  { flex: 1; background: var(--gold-bright); }
.honor-banner-stripe .s-navy  { flex: 1; background: var(--navy); }

.honor-arch-svg {
  width: 100%;
  max-width: 200px;
  height: 60px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.honor-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(72px, 11vw, 110px);
  line-height: 0.88;
  color: var(--gold);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 20px rgba(185, 151, 91, 0.2);
}

.honor-logo {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  flex-shrink: 0;
}

.honor-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ----- Years strip under banner ----- */
.honor-years {
  background: var(--white);
  text-align: center;
  padding: 28px 12px 9px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
  border: 1px solid var(--border);
  border-top: none;
}

/* ----- Photo section ----- */
.honor-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: var(--bg-drop);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border: 1px solid var(--border);
  border-top: none;
  overflow: hidden;
}
.honor-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----- Bio block ----- */
.honor-bio {
  background: var(--navy-mid);
  border: 1px solid rgba(185, 151, 91, 0.08);
  border-top: none;
  padding: 1.6rem;
  flex: 1;
}

/* When wrapped in the shared .staff-bio-toggle dropdown, strip the
   upper border/margin so it butts cleanly against the toggle label. */
.staff-bio-toggle-content > .honor-bio {
  border-top: none;
  margin: 0;
}

/* Variant of the shared toggle tuned for the honor card:
   full-width strip with navy-mid background so it matches the bio. */
.honor-card .staff-bio-toggle {
  margin: 0;
  border: 1px solid rgba(185, 151, 91, 0.08);
  border-top: none;
  background: var(--navy-mid);
}
.honor-card .staff-bio-toggle-label {
  padding: 14px 12px;
  font-size: 12px;
  letter-spacing: 0.2em;
}
.honor-bio-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.honor-bio-text {
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
}
.honor-bio-stats {
  display: flex;
  margin-top: 1.2rem;
  border-top: 1px solid rgba(185, 151, 91, 0.08);
  padding-top: 1rem;
}
.honor-stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(185, 151, 91, 0.08);
}
.honor-stat:last-child {
  border-right: none;
}
.honor-stat-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 24px;
  color: var(--white);
  display: block;
  line-height: 1;
}
.honor-stat-lbl {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .honors-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .honors-grid { grid-template-columns: 1fr; }
}

/* Player Card */
tr.pp-career-row {
  background-color: #cfcfcf;
}

/* Stats */
.pp-stats-filter-toolbar {
  margin-bottom: 15px;
}

/* ==============================================
   Community page
   Reuses: --navy, --navy-mid, --navy-dark, --bg-drop, --gold,
           --gold-bright, --white, --text, --text-muted, --border,
           .sec-label.
   Mirrors:
     S1 layout  -> .about-mission-inner
     S1 title em / rule -> .mission-statement em / .mission-rule
     S1 quote   -> .staff-feature-body (3px gold left border + faint border)
     S2 grid    -> .pillars-grid + .pillar (+ .cta-card::after scaleX hover)
     S3 layout  -> .about-arena-inner
     S3 rows    -> .arena-detail-row/lbl/val
     S3 top-rule-> .contact-form-styled::before gold gradient
     S4 layout  -> .history-layout + .history-aside-title/body
     S5 grid+card -> .about-cta-inner + .cta-card pattern
   ============================================== */

/* ----- Shared image placeholder (used by every section) ----- */
.img-placeholder {
  background: var(--navy-mid);
  border: 1px solid rgba(185, 151, 91, 0.12);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.img-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold) 30%,
    var(--gold-bright) 50%,
    var(--gold) 70%,
    transparent
  );
}
.img-placeholder-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(185, 151, 91, 0.25);
  text-align: center;
  padding: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.img-placeholder.tall   { aspect-ratio: 3 / 4; }
.img-placeholder.wide   { aspect-ratio: 16 / 9; }
.img-placeholder.square { aspect-ratio: 1 / 1; }

/* ----- Section 1: Intro ----- */
.comm-intro-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.comm-intro-inner > * {
  position: relative;
  z-index: 1;
}

.comm-intro-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0;
}
.comm-intro-title em {
  font-style: normal;
  color: var(--gold);
}

.comm-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  opacity: 0.35;
  margin: 24px 0;
}

.comm-intro-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}

.comm-quote {
  position: relative;
  background: var(--navy-mid);
  border: 1px solid rgba(185, 151, 91, 0.18);
  border-left: 3px solid var(--gold);
  padding: 38px 40px 34px;
  overflow: hidden;
}
.comm-quote-mark {
  position: absolute;
  top: -22px;
  left: 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 180px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}
.comm-quote-text {
  position: relative;
  font-family: "Barlow", sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 18px;
}
.comm-quote-attr {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.comm-intro-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.comm-intro-mosaic > .img-placeholder.wide {
  grid-column: 1 / -1;
}

@media (max-width: 860px) {
  .comm-intro-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .comm-intro-mosaic {
    grid-template-columns: 1fr;
  }
}

/* ----- Section 2: Pillars (mirrors .pillar; adds .cta-card scaleX hover) ----- */
.comm-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 32px;
}

.comm-pillar {
  position: relative;
  background: var(--navy);
  border: 1px solid rgba(185, 151, 91, 0.18);
  padding: 40px 32px 34px;
  overflow: hidden;
}

.comm-pillar-num {
  position: absolute;
  top: 6px;
  right: 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 80px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.07;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.comm-pillar-title {
  position: relative;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 18px;
}
.comm-pillar-title span {
  color: var(--gold);
}

.comm-pillar-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.comm-img-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 3px;
}

@media (max-width: 720px) {
  .comm-pillar-grid,
  .comm-img-row {
    grid-template-columns: 1fr;
  }
}

/* ----- Section 3: Signature Events (3-up feature cards)
   Mirrors .pillar look (navy bg, faint gold border) + .cta-card scaleX
   bottom hover. Image at top, body below. ----- */
.comm-events-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.comm-events-header {
  max-width: 720px;
  margin: 0 0 48px;
}

.comm-events-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 18px;
}
.comm-events-title em {
  font-style: normal;
  color: var(--gold);
}

.comm-events-intro {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.comm-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.comm-event-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  border: 1px solid rgba(185, 151, 91, 0.18);
  overflow: hidden;
}

/* Strip the placeholder's own border (the card already has one) and
   replace its top gradient rule with a clean separator under the image. */
.comm-event-feature .img-placeholder {
  border: none;
  border-bottom: 1px solid rgba(185, 151, 91, 0.18);
}

.comm-event-feature-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px 28px 32px;
}

.comm-event-feature-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.comm-event-feature-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 16px;
}
.comm-event-feature-title em {
  font-style: normal;
  color: var(--gold);
}

.comm-event-feature-text {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 24px;
  flex: 1;
}

.comm-event-feature-meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(185, 151, 91, 0.12);
}
.comm-event-feature-meta-lbl {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.comm-event-feature-meta-val {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--gold);
}

@media (max-width: 900px) {
  .comm-events-grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Section 4: Youth Development (mirrors .history-layout + .history-aside-*) ----- */
.comm-youth-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
}

.comm-youth-aside-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(44px, 5.5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 24px;
}
.comm-youth-aside-title em {
  font-style: normal;
  color: var(--gold);
}

.comm-youth-aside-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
  padding-left: 16px;
  border-left: 2px solid rgba(185, 151, 91, 0.25);
}

.comm-youth-activities {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.comm-activity {
  position: relative;
  display: flex;
  align-items: stretch;
  background: var(--navy);
  border: 1px solid rgba(185, 151, 91, 0.18);
  overflow: hidden;
}
.comm-activity-marker {
  flex-shrink: 0;
  width: 2px;
  background: var(--gold);
}
.comm-activity-content {
  padding: 22px 26px;
  flex: 1;
  min-width: 0;
}
.comm-activity-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.comm-activity-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

@media (max-width: 860px) {
  .comm-youth-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ----- Section 5: Get Involved CTA (mirrors .about-cta-inner + .cta-card) ----- */
.comm-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.comm-cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 48px 40px 44px;
  background: var(--navy-mid);
  border: 1px solid rgba(185, 151, 91, 0.18);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.comm-cta-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.comm-cta-card:hover {
  border-color: var(--gold);
}
.comm-cta-card:hover::after {
  transform: scaleX(1);
}

.comm-cta-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.comm-cta-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 18px;
}

.comm-cta-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 28px;
}

.comm-cta-link {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  transition: color 0.2s ease;
}
.comm-cta-card:hover .comm-cta-link {
  color: var(--gold-bright);
}

@media (max-width: 720px) {
  .comm-cta-inner {
    grid-template-columns: 1fr;
  }
  .comm-cta-card {
    padding: 36px 28px 32px;
  }
}

/* ==============================================
   Community page — MSU Figure Skating partner
   Mirrors:
     layout       -> .about-arena-inner (1fr/420px)
     action shot  -> .partner-action + .partner-action::after gradient
     caption      -> .partner-action-caption + eyebrow/title pattern
     body intro   -> .history-aside-body (2px gold left border)
     role nums    -> .pillar-num style (Bebas Neue gold)
   ============================================== */
.comm-fs-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Right column — content */
.comm-fs-content {
  display: flex;
  flex-direction: column;
}

.comm-fs-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 20px;
}
.comm-fs-title em {
  font-style: normal;
  color: var(--gold);
}

.comm-fs-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 20px;
  padding-left: 16px;
  border-left: 2px solid rgba(185, 151, 91, 0.25);
}

/* Inline thumbnail wrapper — image stretches to match body height */
.comm-fs-intro {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 20px;
}
.comm-fs-intro-img {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  background-color: var(--navy-dark);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.comm-fs-intro .comm-fs-body {
  margin: 0;
  padding-left: 0;
  border-left: none;
  flex: 1;
}

.comm-fs-link {
  display: inline-block;
  align-self: flex-start;
  margin: 0 0 28px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}
.comm-fs-link:hover {
  color: var(--gold-bright);
}

/* Roles list */
.comm-fs-roles {
  display: flex;
  flex-direction: column;
}
.comm-fs-role {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(185, 151, 91, 0.12);
}
.comm-fs-role:first-child {
  border-top: none;
  padding-top: 0;
}
.comm-fs-role:last-child {
  padding-bottom: 0;
}
.comm-fs-role-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--gold);
  opacity: 0.85;
}
.comm-fs-role-text {
  display: flex;
  flex-direction: column;
}
.comm-fs-role-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.comm-fs-role-body {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

@media (max-width: 900px) {
  .comm-fs-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}