/*
Theme Name: CBNA Athletics
Theme URI: https://cbna.example.org
Author: CBNA Athletics
Description: Custom athletics theme for Coe-Brown Northwood Academy.
Version: 1.3.18
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 8.2
Text Domain: cbna-athletics
*/

:root {
  --color-red: #c8102e;
  --color-red-hover: #a50e25;
  --color-white: #ffffff;
  --color-offwhite: #f5f5f5;
  --color-paper: #ffffff;
  --color-black: #111111;
  --color-text: #111111;
  --color-muted: #6b7280;
  --color-border: rgba(17, 17, 17, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(29, 36, 48, 0.06);
  --shadow-md: 0 8px 24px rgba(29, 36, 48, 0.1);
  --max-width: 1600px;
  --transition-fast: 0.2s ease;
  --font-display: "Archivo", "Arial Narrow", Arial, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }
html, body {
  width: 100%;
  max-width: 100%;
}
.site-main,
.site-footer {
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-offwhite) 100%);
}
h1, h2, h3 { color: var(--color-black); line-height: 1.2; margin: 0 0 0.65rem; }
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h3 { font-size: clamp(1.08rem, 1.8vw, 1.25rem); }
p { margin: 0 0 1rem; line-height: 1.5; }
a { color: var(--color-red); transition: color var(--transition-fast); }
a:hover, a:focus-visible { color: var(--color-red-hover); }
.site-main, .site-footer-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 1.2rem 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 0;
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.07);
  margin-bottom: 1.75rem;
}

/* Keep sticky header fully visible when logged in (WP admin bar). */
body.admin-bar .site-header {
  top: 32px;
}

.site-header-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 1.35rem 0.35rem; }
.site-header-top { display: none; }
.site-header-brand {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
}
.site-header-brand .custom-logo {
  max-height: 34px;
  width: auto;
  display: block;
}
.site-header-brand-text { color: #fff; }

.nav-search-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0;
  flex-wrap: nowrap;
  background: var(--color-red);
  border-radius: 14px;
  padding: 0.55rem 0.7rem;
  box-shadow: 0 8px 22px rgba(200, 16, 46, 0.22);
  overflow: visible;
}
.primary-nav { background: transparent; border-radius: var(--radius-sm); padding: 0; flex: 1 1 auto; overflow: visible; }
.mobile-nav-toggle { display: none; }
.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: center;
  white-space: nowrap;
  overflow: visible;
  scrollbar-width: none;
}
.primary-nav ul::-webkit-scrollbar { display: none; }
.primary-nav ul > li.nav-staff-login > a {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
}
.primary-nav a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 800;
  padding: 0.55rem 0.9rem;
  border-radius: 9px;
  display: inline-block;
  font-size: 1.15rem;
  line-height: 1.25;
}
.primary-nav ul > li > a:hover,
.primary-nav ul > li > a:focus-visible,
.primary-nav ul > li.current-menu-item > a,
.primary-nav ul > li.current_page_item > a {
  background: var(--color-white);
  color: var(--color-black);
}
.team-directory-nav-item {
  position: relative;
}
.team-directory-nav-item > a,
.team-directory-nav-item > .team-directory-trigger {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 800;
  padding: 0.55rem 0.9rem;
  border-radius: 9px;
  display: inline-block;
  font-size: 1.15rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  line-height: 1.2;
}
.team-directory-nav-item > a:hover,
.team-directory-nav-item > .team-directory-trigger:hover,
.team-directory-nav-item > .team-directory-trigger:focus-visible {
  background: var(--color-white);
  color: var(--color-black);
}
.primary-nav .team-directory-highlight > a,
.primary-nav .team-directory-highlight > .team-directory-trigger {
  background: #ffffff;
  color: #111111;
  font-weight: 800;
}
.primary-nav .team-directory-highlight > a:hover,
.primary-nav .team-directory-highlight > .team-directory-trigger:hover,
.primary-nav .team-directory-highlight > .team-directory-trigger:focus-visible {
  background: #f3f3f3;
  color: #111111;
}
.team-directory-nav-item .team-directory-dropdown,
.team-directory-nav-item .team-directory-flyout {
  list-style: none;
  margin: 0;
  padding: 0.2rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  min-width: 170px;
  position: absolute;
  z-index: 1000;
  display: none;
}
.team-directory-nav-item .team-directory-dropdown {
  top: calc(100% - 6px);
  left: 0;
  padding-top: 0.55rem;
}
.team-directory-nav-item .team-directory-dropdown > li {
  position: relative;
}
.team-directory-nav-item .team-directory-flyout {
  top: -0.2rem;
  left: calc(100% - 8px);
  min-width: 230px;
  overflow: visible;
}
.team-directory-nav-item .team-directory-flyout::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -14px;
  width: 16px;
}
.team-directory-nav-item:hover > .team-directory-dropdown,
.team-directory-nav-item:focus-within > .team-directory-dropdown,
.team-directory-nav-item.is-open > .team-directory-dropdown,
.team-directory-nav-item .has-flyout:hover > .team-directory-flyout,
.team-directory-nav-item .has-flyout:focus-within > .team-directory-flyout,
.team-directory-nav-item .has-flyout.is-open > .team-directory-flyout {
  display: block;
}
.team-directory-nav-item .team-directory-dropdown a,
.team-directory-nav-item .team-directory-flyout a {
  color: var(--color-black);
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 0.55rem 0.7rem;
  border-radius: 5px;
  line-height: 1.25;
}
.team-directory-nav-item .team-directory-dropdown a:hover,
.team-directory-nav-item .team-directory-flyout a:hover {
  background: var(--color-red);
  color: var(--color-white);
}
/* More / Team Directory section parents: only the open row is fully red.
   Inactive siblings get a light hover so two sections never look selected together. */
.more-nav-item .team-directory-dropdown > .has-flyout:not(.is-open) > a:hover,
.team-directory-highlight .team-directory-dropdown > .has-flyout:not(.is-open) > a:hover {
  background: #f0f0f0;
  color: var(--color-black);
}
.more-nav-item .team-directory-dropdown > .has-flyout.is-open > a,
.team-directory-highlight .team-directory-dropdown > .has-flyout.is-open > a {
  background: var(--color-red);
  color: var(--color-white);
}
.more-nav-item {
  position: relative;
}
.more-nav-item .team-directory-dropdown {
  left: auto;
  right: 0;
  min-width: 16.5rem;
}
.more-nav-item .team-directory-flyout {
  left: auto;
  right: calc(100% - 4px);
  min-width: 16.5rem;
  max-width: min(20rem, calc(100vw - 1.5rem));
}
.more-nav-item .team-directory-flyout::before {
  left: auto;
  right: -10px;
  width: 12px;
}
.more-nav-item .has-flyout.is-open > a {
  background: var(--color-red);
  color: var(--color-white);
}
.team-directory-highlight .team-directory-dropdown,
.team-directory-highlight .team-directory-flyout {
  white-space: normal;
  padding: 0.35rem;
}
.team-directory-highlight .team-directory-dropdown {
  min-width: 15.5rem;
  max-width: min(22rem, calc(100vw - 1.5rem));
  overflow: visible;
}
.team-directory-highlight .team-directory-dropdown > li {
  position: relative;
}
.team-directory-highlight .team-directory-flyout {
  top: 0;
  left: calc(100% - 8px);
  min-width: 12.5rem;
  max-width: min(18rem, calc(100vw - 1.5rem));
  max-height: none;
  overflow: visible;
}
.team-directory-highlight .has-flyout.is-open > a {
  background: var(--color-red);
  color: var(--color-white);
}
@media (min-width: 901px) {
  #primary-nav-list.js-nav-intent .team-directory-nav-item:hover > .team-directory-dropdown {
    display: none;
  }
  #primary-nav-list.js-nav-intent .team-directory-nav-item.is-open > .team-directory-dropdown,
  #primary-nav-list.js-nav-intent .team-directory-nav-item:focus-within > .team-directory-dropdown {
    display: block;
  }
  #primary-nav-list.js-nav-intent .has-flyout:hover > .team-directory-flyout {
    display: none;
  }
  #primary-nav-list.js-nav-intent .has-flyout.is-open > .team-directory-flyout,
  #primary-nav-list.js-nav-intent .has-flyout:focus-within > .team-directory-flyout {
    display: block;
  }
}
.team-directory-highlight .has-flyout:nth-last-child(-n+10) .team-directory-flyout {
  top: auto;
  bottom: 0;
}
.team-directory-highlight .team-directory-flyout ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: normal;
  overflow: visible;
}
.team-directory-flyout-heading {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  padding: 0.5rem 0.75rem 0.15rem;
}
.team-directory-flyout-group + .team-directory-flyout-group .team-directory-flyout-heading {
  margin-top: 0.35rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--color-border);
}
.team-directory-highlight .team-directory-dropdown a,
.team-directory-highlight .team-directory-flyout a {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
  padding: 0.55rem 0.7rem;
  overflow-wrap: break-word;
}
.team-directory-highlight .team-directory-flyout a {
  font-size: 1.12rem;
  padding: 0.62rem 0.75rem;
}
.athletics-search {
  margin-top: 0;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.35rem;
}
.site-header-search {
  display: flex;
  width: fit-content;
  max-width: 18rem;
  min-width: 0;
  margin: 0.35rem 0 0 auto;
  padding: 0;
  justify-content: flex-end;
}
.site-header-search-mobile {
  display: none;
}
.athletics-search input[type="search"] {
  flex: 0 0 12.5rem;
  width: 12.5rem;
  max-width: 12.5rem;
  min-width: 0;
  border: 1px solid #d5d5d5;
  border-radius: var(--radius-sm);
  padding: 0.32rem 0.55rem;
  font-size: 0.85rem;
  background: #f7f7f7;
  color: var(--color-black);
}
.athletics-search button {
  flex: 0 0 auto;
  background: #333;
  color: var(--color-white);
  border: 1px solid #333;
  padding: 0.32rem 0.55rem;
  font-size: 0.75rem;
  line-height: 1.1;
}
.athletics-search button:hover,
.athletics-search button:focus-visible {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}
.screen-reader-text { position: absolute; left: -9999px; }

button, input[type="submit"], .btn-primary, .wp-element-button {
  background: var(--color-red);
  color: var(--color-white);
  border: 1px solid var(--color-red);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}
button:hover, input[type="submit"]:hover, .btn-primary:hover { background: var(--color-red-hover); border-color: var(--color-red-hover); }
.button-secondary { background: var(--color-white); color: var(--color-black); border: 1px solid var(--color-black); border-radius: var(--radius-sm); padding: 0.5rem 0.85rem; text-decoration: none; font-weight: 700; }
.button-secondary:hover { background: var(--color-offwhite); color: var(--color-black); }

/* Homepage hero — dynamic video / slide backdrop with animated headline stack. */
.athletics-hero-video {
  --hero-min-height: clamp(420px, 62vw, 720px);
  --athletics-hero-focal-y: 22%;
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: none;
  margin: 0.15rem calc(50% - 50vw) 1.1rem;
  min-height: var(--hero-min-height);
  background: #10151f;
  color: #fff;
  border-radius: 0;
  box-shadow: 0 18px 48px rgba(16, 21, 31, 0.28);
}
.athletics-hero-video__media {
  position: absolute;
  inset: 0;
}
.athletics-hero-video__banner,
.athletics-hero-video__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center var(--athletics-hero-focal-y);
  transform: none;
}
.athletics-hero-video--has-banner {
  width: 100%;
  max-width: none;
  margin: 0 0 1.1rem;
  aspect-ratio: auto;
  min-height: 0;
  height: auto;
  border-radius: var(--radius-md);
}
.athletics-hero-video--has-video {
  --hero-min-height: 0;
  width: 100%;
  max-width: none;
  margin: 0 0 1.1rem;
  aspect-ratio: 16 / 9;
  min-height: 0;
  height: auto;
  border-radius: var(--radius-md);
}
.athletics-hero-video--has-video .athletics-hero-video__media {
  position: absolute;
  inset: 0;
}
.athletics-hero-video--has-video .athletics-hero-video__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #10151f;
}
.athletics-hero-video--has-banner .athletics-hero-video__media {
  position: relative;
  inset: auto;
}
.athletics-hero-video--has-banner .athletics-hero-video__banner {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  object-fit: unset;
  object-position: center center;
}
.athletics-hero-video--has-banner .athletics-hero-video__mesh,
.athletics-hero-video--has-banner .athletics-hero-video__shine,
.athletics-hero-video--has-video .athletics-hero-video__mesh,
.athletics-hero-video--has-video .athletics-hero-video__shine {
  display: none;
}
.athletics-hero-video--has-banner .athletics-hero-video__inner,
.athletics-hero-video--has-video .athletics-hero-video__inner {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  min-height: 0;
  height: 100%;
  margin: 0;
  gap: 0.5rem;
  justify-content: flex-end;
  padding: 0.85rem 1.15rem 1rem;
  background: linear-gradient(180deg, transparent 38%, rgba(8, 10, 14, 0.62) 100%);
}
.athletics-hero-video--has-banner .athletics-hero-video__eyebrow,
.athletics-hero-video--has-video .athletics-hero-video__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}
.athletics-hero-video--has-banner .athletics-hero-video__eyebrow::before,
.athletics-hero-video--has-video .athletics-hero-video__eyebrow::before {
  width: 1.6rem;
  height: 3px;
  margin-right: 0.45rem;
}
.athletics-hero-video--has-banner .athletics-hero-video__title,
.athletics-hero-video--has-video .athletics-hero-video__title {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  white-space: normal;
}
.athletics-hero-video--has-banner .athletics-hero-video__tagline,
.athletics-hero-video--has-video .athletics-hero-video__tagline {
  margin: 0.2rem 0 0.4rem;
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.athletics-hero-video--has-banner .athletics-hero-video__actions,
.athletics-hero-video--has-video .athletics-hero-video__actions {
  gap: 0.5rem;
  margin: 0.2rem 0;
}
.athletics-hero-video--has-banner .athletics-hero-video__cta,
.athletics-hero-video--has-video .athletics-hero-video__cta {
  font-size: 1rem;
  padding: 0.52rem 0.95rem;
  min-height: 0;
}
.athletics-hero-video--has-banner .athletics-hero-video__next-game,
.athletics-hero-video--has-video .athletics-hero-video__next-game {
  margin-top: 0.45rem;
  padding: 0.4rem 0.7rem 0.4rem 0.4rem;
  gap: 0.5rem;
  max-width: 100%;
}
.athletics-hero-video--has-banner .athletics-hero-video__next-game-badge,
.athletics-hero-video--has-video .athletics-hero-video__next-game-badge {
  font-size: 0.74rem;
  padding: 0.22rem 0.55rem;
}
.athletics-hero-video--has-banner .athletics-hero-video__next-game-text,
.athletics-hero-video--has-video .athletics-hero-video__next-game-text {
  font-size: 0.95rem;
}
.athletics-hero-video__slides {
  position: absolute;
  inset: 0;
}
.athletics-hero-video__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center var(--athletics-hero-focal-y);
  opacity: 0;
  transform: none;
  transition: opacity 1.4s ease;
  filter: brightness(0.68) saturate(1.08);
}
.athletics-hero-video__slide.is-active {
  opacity: 1;
}
.athletics-hero-video__mesh {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.55) 0%, rgba(8, 10, 14, 0.28) 38%, rgba(8, 10, 14, 0.62) 100%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 88% 18%, rgba(200, 16, 46, 0.18), transparent 28%);
  pointer-events: none;
  animation: athletics-hero-mesh-shift 12s ease-in-out infinite alternate;
}
.athletics-hero-video__shine {
  position: absolute;
  inset: -40% auto -40% -20%;
  width: 42%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  animation: athletics-hero-shine 7s ease-in-out infinite;
}
.athletics-hero-video__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  min-height: var(--hero-min-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(1.4rem, 3.5vw, 2.4rem) clamp(1rem, 4vw, 2rem) clamp(1.6rem, 3.5vw, 2.2rem);
}
.athletics-hero-video__footer {
  flex: 0 0 auto;
  margin-top: auto;
  max-width: 54rem;
}
.athletics-hero-video__footer .athletics-hero-video__eyebrow {
  margin-bottom: 0.45rem;
}
.athletics-hero-video__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.55rem;
}
.athletics-hero-video__eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.athletics-hero-video__eyebrow::before {
  content: "";
  display: inline-block;
  width: 2.25rem;
  height: 3px;
  margin-right: 0.6rem;
  vertical-align: middle;
  background: var(--color-red);
  border-radius: 999px;
}
.athletics-hero-video__title,
.hof-page-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 7.2vw, 6rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #fff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.42);
}
.athletics-hero-video__title {
  white-space: nowrap;
}
.athletics-hero-video__tagline,
.hof-page-hero__tagline {
  margin: 0.7rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5.2vw, 3.6rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}
.athletics-hero-video__next-game {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 0.55rem 0.9rem 0.55rem 0.55rem;
  max-width: min(100%, 46rem);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.athletics-hero-video__next-game:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.athletics-hero-video__next-game-badge {
  flex: 0 0 auto;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: var(--color-red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.athletics-hero-video__next-game-text {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}
/* Today's-games ticker — vertical scroll through items. */
.athletics-hero-video__next-game-wrap {
  position: relative;
  overflow: hidden;
  max-width: min(100%, 46rem);
  height: 2.8rem;
}
.athletics-hero-video__next-game-wrap .athletics-hero-video__next-game {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  margin-top: 0;
}
.athletics-hero-video__next-game-wrap .athletics-hero-video__next-game.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.athletics-hero-video__next-game-wrap .athletics-hero-video__next-game.is-leaving {
  position: absolute;
  opacity: 0;
  transform: translateY(-100%);
}
.athletics-hero-video__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1rem, 2.5vw, 1.5rem);
}
.athletics-hero-video__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.athletics-hero-video__cta--primary {
  background: var(--color-red);
  color: #fff;
  border: 1px solid var(--color-red);
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.34);
}
.athletics-hero-video__cta--primary:hover {
  transform: translateY(-2px);
  background: var(--color-red-hover);
  border-color: var(--color-red-hover);
  color: #fff;
  box-shadow: 0 14px 28px rgba(200, 16, 46, 0.4);
}
.athletics-hero-video__cta--ghost {
  background: var(--color-black);
  color: #fff;
  border: 1px solid var(--color-black);
  backdrop-filter: blur(6px);
}
.athletics-hero-video__cta--ghost:hover {
  transform: translateY(-2px);
  background: #2a2a2a;
  border-color: #2a2a2a;
  color: #fff;
}
.athletics-hero-video__accent-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--color-red);
}
.athletics-hero-video__reveal {
  opacity: 0;
  transform: translateY(22px);
}
.athletics-hero-video.is-ready .athletics-hero-video__reveal {
  animation: athletics-hero-reveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--hero-delay, 0ms);
}
@keyframes athletics-hero-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes athletics-hero-mesh-shift {
  from { opacity: 0.94; }
  to { opacity: 1; filter: brightness(1.04); }
}
@keyframes athletics-hero-shine {
  0%, 100% { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  45% { opacity: 0.55; }
  55% { opacity: 0.55; }
  100% { transform: translateX(260%) skewX(-18deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .athletics-hero-video__video,
  .athletics-hero-video__mesh,
  .athletics-hero-video__shine,
  .athletics-hero-video__accent-bar,
  .athletics-hero-video__slide {
    animation: none;
    transition: none;
  }
  .athletics-hero-video__reveal {
    opacity: 1;
    transform: none;
  }
  .athletics-hero-video.is-ready .athletics-hero-video__reveal {
    animation: none;
  }
}
@media (max-width: 700px) {
  .athletics-hero-video {
    --hero-min-height: clamp(480px, 125vw, 620px);
  }
  .athletics-hero-video--has-banner {
    --hero-min-height: 0;
    width: 100%;
    max-width: none;
    min-height: 0;
    aspect-ratio: auto;
  }
  .athletics-hero-video--has-video {
    --hero-min-height: 0;
    width: 100%;
    max-width: none;
    min-height: 0;
    aspect-ratio: auto;
    margin: 0 0 1.1rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
  }
  .athletics-hero-video--has-video .athletics-hero-video__media {
    position: relative;
    inset: auto;
    aspect-ratio: 16 / 9;
    flex: 0 0 auto;
  }
  .athletics-hero-video--has-video .athletics-hero-video__inner {
    position: relative;
    inset: auto;
    min-height: 0;
    height: auto;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.92) 0%, #10151f 100%);
    padding: 0.85rem 1rem 1rem;
    justify-content: flex-start;
  }
  .athletics-hero-video--has-banner .athletics-hero-video__title,
  .athletics-hero-video--has-video .athletics-hero-video__title {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }
  .athletics-hero-video--has-banner .athletics-hero-video__tagline,
  .athletics-hero-video--has-video .athletics-hero-video__tagline {
    font-size: clamp(1.25rem, 5vw, 1.8rem);
    margin: 0.15rem 0 0.3rem;
  }
  .athletics-hero-video__inner {
    gap: 1.25rem;
  }
  .athletics-hero-video__title {
    font-size: clamp(1.85rem, 9.5vw, 3.8rem);
    letter-spacing: -0.04em;
  }
  .athletics-hero-video__next-game {
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--radius-md);
    max-width: 100%;
  }
  .athletics-hero-video__next-game-wrap {
    display: none;
  }
  .athletics-hero-video__actions {
    width: 100%;
  }
  .athletics-hero-video__cta {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 9.5rem;
  }
}
.hero-carousel {
  margin-top: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  max-height: 640px;
  background: #111;
}
.hero-carousel.is-empty {
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, #ffffff, #f3f3f3);
  min-height: 240px;
}
.carousel-empty-state {
  padding: 1.25rem;
}
.carousel-empty-state h2 {
  margin-bottom: 0.4rem;
}
.carousel-empty-state p {
  margin: 0;
}
.welcome-banner {
  margin-top: 0.9rem;
  background: linear-gradient(145deg, #b30f1b 0%, #c1121f 58%, #8f0d17 100%);
  border: 2px solid var(--color-black);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-sm);
}
.welcome-banner-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.welcome-logo-wrap {
  flex: 0 0 auto;
}
.welcome-logo-wrap .custom-logo-link {
  display: inline-flex;
  align-items: center;
}
.welcome-logo-wrap .custom-logo,
.welcome-fallback-logo {
  max-height: 62px;
  width: auto;
  display: block;
}
.welcome-copy {
  min-width: 0;
}
.welcome-title {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--color-white);
  white-space: nowrap;
}
.welcome-title-break { display: inline; }
.welcome-subtitle {
  margin: 0 0 0.35rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: #f4f4f4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
/* Homepage safety override: force subtitle text to CBNA Athletics. */
.home .welcome-subtitle {
  color: transparent;
  position: relative;
}
.home .welcome-subtitle::after {
  content: "CBNA Athletics";
  position: absolute;
  inset: 0 auto auto 0;
  color: #f4f4f4;
}
.welcome-support {
  margin: 0.45rem 0 0;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.35;
  max-width: 54ch;
}
.welcome-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.welcome-actions .btn-primary,
.welcome-actions .button-secondary {
  padding: 0.45rem 0.78rem;
  font-size: 0.8rem;
}
.carousel-slide {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  display: none;
  background: #111;
}
.carousel-slide::after {
  content: none;
}
.carousel-slide.is-active { opacity: 1; visibility: visible; display: block; }
.carousel-image {
  width: 100%;
  height: clamp(360px, 55vw, 640px);
  object-fit: contain;
  object-position: center;
  display: block;
  background: #111;
  filter: brightness(1.1) contrast(1.03);
}
img {
  max-width: 100%;
  height: auto;
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: var(--color-white);
  max-width: 100%;
  padding: 1.4rem;
  z-index: 2;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.9));
}
.carousel-caption h1, .carousel-caption p { color: var(--color-white); }
.carousel-caption h2 {
  color: var(--color-white);
  margin: 0 0 0.35rem;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.carousel-caption p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}
.carousel-caption .button-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  border-color: #fff;
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
}
.carousel-caption .button-secondary:hover {
  background: #fff;
  color: #111;
}
.eyebrow { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.76rem; font-weight: 700; margin-bottom: 0.6rem; }
.cta-row { display: flex; gap: 0.55rem; flex-wrap: wrap; margin-top: 0.8rem; }
.carousel-controls { position: absolute; inset: auto 0 14px auto; right: 14px; display: flex; gap: 0.35rem; z-index: 3; }
.carousel-controls button { border-radius: 999px; width: 38px; height: 38px; padding: 0; }
.carousel-dots { position: absolute; left: 16px; bottom: 16px; display: flex; gap: 0.35rem; z-index: 3; }
.carousel-dots button { width: 10px; height: 10px; border-radius: 999px; border: 0; background: rgba(255, 255, 255, 0.55); padding: 0; }
.carousel-dots button.is-active { background: var(--color-red); }

.section { padding: 1.7rem 0; }
.section-alt {
  background: var(--color-paper);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-left: 0;
  margin-right: 0;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
.section-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 0.7rem; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-black);
}
.subsection-title { margin: 1rem 0 0.7rem; }
.quick-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.8rem; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.upcoming-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.upcoming-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  padding: 0;
  line-height: 1;
  font-size: 1rem;
}
.upcoming-nav-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.cards.cards-games {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cards.cards-games::-webkit-scrollbar {
  display: none;
}
.cards.cards-games .upcoming-game-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 280px;
  scroll-snap-align: start;
  overflow: visible;
}
.card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-paper);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}
.badge { display: inline-block; border: 1px solid var(--color-border); border-radius: 999px; padding: 0.2rem 0.55rem; font-size: 0.75rem; font-weight: 700; background: var(--color-offwhite); }
.badge-red { background: var(--color-red); border-color: var(--color-red); color: var(--color-white); }
.badge-practice { background: #fff4d6; border-color: #d6a800; color: #6b5200; }
.btn-inline { text-decoration: none; font-weight: 700; }
.news-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.feed-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  padding: 0.9rem;
}
.feed-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.8rem;
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, #f7f7f7);
  margin-bottom: 0.7rem;
}
.feed-item:last-child { margin-bottom: 0; }
.feed-thumb img {
  width: 72px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--color-border);
}
.feed-thumb img.feed-fallback-logo {
  object-fit: contain;
  background: #fff;
  padding: 2px;
}
.feed-thumb-fallback {
  width: 72px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-offwhite);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-weight: 700;
}
.feed-copy h3 { margin-bottom: 0.35rem; }
.feed-details__summary {
  cursor: pointer;
  list-style: none;
}
.feed-details__summary::-webkit-details-marker {
  display: none;
}
.feed-details__summary::before {
  content: "▸ ";
  font-weight: 700;
}
.feed-details[open] > .feed-details__summary::before {
  content: "▾ ";
}
.feed-details__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111;
}
.feed-full {
  margin: 0.55rem 0 0.35rem;
  font-size: 0.98rem;
  line-height: 1.5;
}
.feed-full p:last-child {
  margin-bottom: 0;
}
.feed-teaser {
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}
.cbna-announcement-single {
  max-width: 46rem;
  margin: 1.5rem auto 2.5rem;
  padding: 0 1.2rem;
}
.cbna-announcement-single h1 {
  margin: 0.35rem 0 0.75rem;
}
.cbna-announcement-single__image {
  margin: 0 0 1rem;
}
.cbna-announcement-single__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.cbna-announcement-single__body {
  font-size: 1.05rem;
  line-height: 1.6;
}
.feed-priority {
  display: inline-block;
  margin: 0 0.35rem 0 0;
  padding: 0.08rem 0.4rem;
  border-radius: 4px;
  background: var(--color-red, #b11226);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  vertical-align: middle;
}
.feed-copy p { margin-bottom: 0.45rem; font-size: 0.92rem; }
.feed-meta { color: #616161; font-size: 0.82rem; font-weight: 600; }
.upcoming-game-card .sport-header {
  margin: -1rem -1rem 0.75rem;
  padding: 0.55rem 0.8rem;
  background: #111;
  color: #fff;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.upcoming-game-card .event-datetime {
  font-size: 0.93rem;
  font-weight: 800;
  color: #111;
}
.upcoming-practice-card {
  background: linear-gradient(180deg, #fffdf2, #fff6d6);
  border-color: #d6a800;
}
.upcoming-practice-card .sport-header {
  background: #6b5200;
}
.event-type-badge {
  display: inline-block;
  margin: 0 0 0.6rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #f0f0f0;
  color: #333;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.event-card-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.event-card-meta-row .event-type-badge {
  margin: 0;
}
.event-side-badge-wrap {
  margin: 0;
}
.upcoming-practice-card .event-type-badge {
  background: #ffe7a3;
  color: #6b5200;
}
.event-detail-box {
  margin-top: 0.55rem;
  padding-top: 0.45rem;
  border-top: 1px solid #cfcfcf;
}
.event-detail-box__title {
  margin: 0 0 0.38rem;
  font-size: 1.03rem;
  color: #182033;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.event-detail-box:first-of-type .event-detail-box__title::before {
  content: "🏢";
}
.event-detail-box--transport .event-detail-box__title::before {
  content: "🚌";
}
.event-detail-box__line {
  margin: 0;
  color: #333;
  font-size: 0.98rem;
  line-height: 1.45;
}
.cbna-staff-login-wrap,
.cbna-staff-portal-wrap {
  border: 1px solid #c8c8c8;
  border-radius: var(--radius-md);
  background: #fff;
  padding: 1rem;
  box-shadow: var(--shadow-sm);
}
.cbna-staff-jump-nav {
  position: sticky;
  top: 5.75rem;
  z-index: 40;
  margin: 0 0 1rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.cbna-staff-jump-nav__label {
  margin: 0 0 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #646970;
}
.cbna-staff-jump-nav__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.cbna-staff-jump-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid #c8102e;
  border-radius: 8px;
  background: #c8102e;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.cbna-staff-jump-nav__btn:hover,
.cbna-staff-jump-nav__btn:focus-visible {
  background: #111111;
  border-color: #111111;
  color: #fff;
  outline: none;
}
@media (max-width: 700px) {
  .cbna-staff-jump-nav {
    top: 4.5rem;
    margin-left: -0.15rem;
    margin-right: -0.15rem;
  }
  .cbna-staff-jump-nav__buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
  }
  .cbna-staff-jump-nav__btn {
    width: 100%;
    justify-content: center;
  }
}
.cbna-admin-tools-page {
  padding-top: 0.65rem;
}
.cbna-admin-tools-page > h1 {
  margin-bottom: 0.9rem;
}
.cbna-staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 1rem 0;
}
.cbna-staff-working-sport,
.cbna-staff-sport-switcher {
  margin: 0 0 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  background: #f7f7f7;
}
.cbna-staff-sport-switcher label {
  display: inline-block;
  margin-right: 0.4rem;
}
.cbna-staff-program-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
}
.cbna-staff-program-checks label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-weight: 600;
}
.cbna-staff-card {
  border: 1px solid #d5d5d5;
  border-radius: 10px;
  background: #fafafa;
  padding: 0.9rem;
  scroll-margin-top: 9.5rem;
}
.cbna-staff-news-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  grid-column: 1 / -1;
}
.cbna-staff-news-row__side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.cbna-staff-news-row .cbna-staff-card {
  margin: 0;
  min-width: 0;
}
.cbna-staff-news-row--four .cbna-staff-card {
  padding: 0.7rem;
}
.cbna-staff-news-row--four .cbna-staff-card p {
  margin: 0 0 0.5rem;
}
.cbna-staff-camp-list {
  margin: 0;
  padding-left: 1.1rem;
  max-height: 8rem;
  overflow: auto;
}
.cbna-staff-camp-list li {
  margin: 0 0 8px;
}
.cbna-staff-card-roster,
.cbna-staff-card-roster-list {
  scroll-margin-top: 9.5rem;
}
.cbna-staff-card-roster-list {
  max-height: min(70vh, 42rem);
  overflow: auto;
}
.cbna-roster-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: flex-end;
  margin: 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ececec;
}
.cbna-roster-edit-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: flex-end;
  flex: 1 1 auto;
}
.cbna-roster-edit-form input[name="roster_name"] {
  min-width: 8rem;
  flex: 1 1 8rem;
}
.cbna-roster-edit-form input[name="roster_number"],
.cbna-roster-edit-form input[name="roster_grade"] {
  width: 4.5rem;
}
.cbna-roster-delete-form {
  margin: 0;
}
.cbna-staff-admin-lead {
  margin: 0 0 0.75rem;
  padding: 0.75rem 0.9rem;
  background: #fff8f8;
  border: 1px solid rgba(200, 16, 46, 0.22);
  border-left: 4px solid var(--color-red);
  border-radius: 8px;
  max-width: 100%;
}
.cbna-staff-admin-season-bar {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-left: 4px solid var(--color-red);
  border-radius: 8px;
  max-width: 100%;
}
.cbna-staff-admin-season-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
}
.cbna-staff-admin-season-form .cbna-season-year-select {
  min-width: 9rem;
  font-size: 1rem;
  font-weight: 600;
}
.cbna-staff-admin-season-form label {
  margin: 0;
}
.cbna-staff-admin-season-form .description {
  flex: 1 1 100%;
}
.cbna-staff-card-schedules {
  grid-column: 1 / -1;
}
.cbna-staff-schedules-sport {
  margin: 1rem 0 0.45rem;
  padding-bottom: 0.2rem;
  border-bottom: 2px solid var(--color-red);
}
.cbna-staff-schedules-table-wrap {
  overflow-x: auto;
  margin-bottom: 0.75rem;
}
.cbna-staff-schedules-table td:first-child {
  min-width: 11rem;
}
.cbna-staff-schedules-table td:last-child {
  min-width: 12rem;
}
.cbna-staff-notice-warning {
  background: #fff8e5;
  border-left: 4px solid #dba617;
  padding: 0.75rem 1rem;
  margin: 0 0 1rem;
}
.cbna-feed-status {
  display: inline-block;
  font-size: 0.82rem;
  line-height: 1.35;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  white-space: normal;
}
.cbna-feed-ok {
  background: #e7f7ed;
  color: #1e602f;
}
.cbna-feed-warn {
  background: #fff8e5;
  color: #7a5b00;
}
.cbna-feed-error,
.cbna-feed-empty {
  background: #fde8ea;
  color: #8a1f2d;
}
.cbna-staff-schedules-table .cbna-season-year-select,
.cbna-staff-schedules-table select.cbna-season-year-select {
  width: 100%;
  min-width: 7.5rem;
  max-width: 9.5rem;
}
.cbna-staff-card h3 {
  margin-bottom: 0.65rem;
}
.cbna-staff-card .widefat,
.cbna-staff-card input[type="text"],
.cbna-staff-card input[type="url"],
.cbna-staff-card textarea,
.cbna-staff-card select {
  width: 100%;
}
.cbna-staff-card label {
  font-weight: 600;
}
.cbna-staff-card-resource input[type="file"] {
  width: 100%;
}
.cbna-staff-card-results {
  background: linear-gradient(180deg, #fafafa 0%, #f2f2f2 100%);
  display: flex;
  flex-direction: column;
  max-height: min(78vh, 860px);
  overflow: hidden;
}
.cbna-results-batch-form {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}
.cbna-results-filter-form {
  display: grid;
  grid-template-columns: minmax(240px, 360px) auto;
  gap: 0.75rem;
  align-items: end;
  margin: 0 0 0.9rem;
}
.cbna-results-filter-action,
.cbna-results-save-action {
  margin: 0;
}
.cbna-results-table-wrap {
  overflow: auto;
  font-size: 12px;
  flex: 1 1 auto;
  min-height: 220px;
  -webkit-overflow-scrolling: touch;
}
.cbna-results-anchor-hint {
  margin: 0 0 0.55rem;
  font-size: 12px;
}
.cbna-results-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f6f7f7;
  box-shadow: 0 1px 0 #dcdcde;
}
.cbna-results-row--anchor > td {
  background: #fff4f4;
}
.cbna-results-row--anchor > td:first-child {
  box-shadow: inset 3px 0 0 #c8102e;
}
.cbna-results-table th:last-child,
.cbna-results-table td:last-child {
  width: 1%;
}
.cbna-results-opponent-cell strong,
.cbna-results-opponent-cell span,
.cbna-results-opponent-cell small {
  display: block;
}
.cbna-results-opponent-cell span {
  margin-top: 0.18rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #7a7a7a;
}
.cbna-results-opponent-cell small {
  margin-top: 0.22rem;
  font-size: 11px;
  color: #666;
}
.cbna-results-save-form {
  display: grid;
  grid-template-columns: 110px 64px 64px;
  gap: 6px;
  align-items: end;
  font-size: 12px;
}
.notice-success,
.notice-error {
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  font-weight: 700;
}
.notice-success {
  background: #e9f8ee;
  border: 1px solid #8fd1a2;
  color: #1f5d31;
}
.notice-error {
  background: #fdeaea;
  border: 1px solid #e3aaaa;
  color: #842626;
}
.cbna-staff-portal-wrap ul {
  margin: 0 0 1rem;
}
.cbna-staff-portal-wrap li {
  margin-bottom: 0.5rem;
}

@media (max-width: 860px) {
  .cbna-results-filter-form {
    grid-template-columns: 1fr;
  }

  /* === Results: mobile card layout === */
  .cbna-results-table,
  .cbna-results-table thead,
  .cbna-results-table tbody,
  .cbna-results-table tr,
  .cbna-results-table th,
  .cbna-results-table td {
    display: block;
    width: 100%;
  }
  .cbna-results-table thead { display: none; }
  .cbna-results-table tr[data-game-row] {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
    margin-bottom: 0.75rem;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }
  .cbna-results-table td,
  .cbna-results-table td:last-child {
    padding: 0;
    border: none;
    width: 100% !important;
  }
  .cbna-results-opponent-cell {
    margin-bottom: 0.55rem;
    padding-bottom: 0.55rem;
    border-bottom: 1px solid #eee;
  }
  .cbna-results-opponent-cell strong {
    font-size: 15px;
  }
  .cbna-results-opponent-cell span {
    font-size: 12px !important;
  }
  .cbna-results-save-form {
    display: grid !important;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 10px;
    width: 100%;
    max-width: none;
    align-items: stretch;
  }
  .cbna-results-save-form > input[type="hidden"] {
    display: none !important;
  }
  .cbna-results-save-form label {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
  }
  .cbna-results-save-form label::before {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #444;
    margin-bottom: 4px;
  }
  .cbna-results-save-form label:nth-of-type(1)::before { content: "W / L"; }
  .cbna-results-save-form label:nth-of-type(2)::before { content: "Us"; }
  .cbna-results-save-form label:nth-of-type(3)::before { content: "Them"; }
  .cbna-results-save-form select,
  .cbna-results-save-form input[type="text"] {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box;
    font-size: 18px !important;
    padding: 0.7rem 0.55rem;
    min-height: 56px;
    border: 2px solid #bbb;
    border-radius: 8px;
    background: #fafafa;
  }
  .cbna-results-save-form select:focus,
  .cbna-results-save-form input[type="text"]:focus {
    border-color: #c8102e;
    background: #fff;
    outline: none;
  }
  .cbna-staff-card-results { padding: 0.75rem; }
  .cbna-results-save-action .button {
    width: 100%;
    font-size: 16px;
    padding: 0.75rem 1rem;
    min-height: 48px;
  }

  /* === Travel: mobile card layout === */
  .cbna-travel-table,
  .cbna-travel-table thead,
  .cbna-travel-table tbody,
  .cbna-travel-table tr,
  .cbna-travel-table th,
  .cbna-travel-table td {
    display: block;
    width: 100%;
  }
  .cbna-travel-table thead { display: none; }
  .cbna-travel-table tr[data-travel-row] {
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
    margin-bottom: 0.75rem;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }
  .cbna-travel-table td {
    padding: 0.1rem 0;
    border: none;
    font-size: 13px;
  }
  .cbna-travel-table td[data-label]::before {
    content: attr(data-label) ": ";
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    color: #666;
  }
  .cbna-travel-table td:nth-child(4) {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
  }
  .cbna-travel-table td input,
  .cbna-travel-table td select {
    display: block;
    width: 100%;
    font-size: 16px !important;
    padding: 0.5rem 0.4rem;
    min-height: 42px;
    border: 2px solid #ccc;
    border-radius: 6px;
    background: #fafafa;
    margin-top: 3px;
  }
  .cbna-travel-table td input:focus,
  .cbna-travel-table td select:focus {
    border-color: #c8102e;
    background: #fff;
    outline: none;
  }
  #cbna-travel-batch-form > p > .button {
    width: 100%;
    font-size: 16px;
    padding: 0.75rem 1rem;
    min-height: 48px;
  }
}

@media (min-width: 900px) {
  .cbna-staff-news-row {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }
  .cbna-staff-news-row--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .cbna-staff-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .cbna-staff-card-roster,
  .cbna-staff-card-roster-list {
    grid-column: span 2;
  }
  .cbna-staff-card-results {
    grid-column: 1 / span 3;
  }
  .cbna-staff-card-resource {
    grid-column: 4;
  }
}

@media (max-width: 1099px) {
  .cbna-staff-card-results {
    max-height: min(85vh, 720px);
    overflow: hidden;
  }
}

.team-page-wrap {
  display: grid;
  gap: 1.1rem;
  padding-top: 0;
}
.team-page-hero.hof-page-hero {
  --hof-hero-min-height: clamp(420px, 58vw, 680px);
  --hof-hero-focal-y: center;
  margin-bottom: 0.25rem;
}
.team-page-hero.team-page-hero--has-image {
  background: #111111;
}
.team-page-hero--has-image .hof-page-hero__slide {
  background-size: auto 92%;
  background-repeat: no-repeat;
  background-position: center center;
}
.team-page-hero--has-image .hof-page-hero__mesh {
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 72%,
    rgba(17, 17, 17, 0.1) 90%,
    rgba(17, 17, 17, 0.28) 100%
  );
  animation: none;
}
.team-page-hero--has-image .hof-page-hero__shine {
  display: none;
}
.team-page-hero__photo {
  display: none;
}
.team-page-hero.team-page-hero--fallback-logo {
  --hof-hero-min-height: 0;
  width: 100%;
  max-width: none;
  margin: 0 0 0.25rem;
  min-height: 0;
  height: auto;
  background: #0a0a0a;
  border-radius: var(--radius-md);
}
.team-page-hero--fallback-logo .hof-page-hero__media {
  position: relative;
  inset: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1024 / 621;
  padding: 1.1rem 1.1rem 4rem;
  background-image: none;
  background-color: #0a0a0a;
}
.team-page-hero__fallback-logo {
  position: static;
  inset: auto;
  z-index: 0;
  display: block;
  width: auto;
  max-width: 68%;
  max-height: 78%;
  height: auto;
  object-fit: contain;
  object-position: center center;
}
.team-page-hero--fallback-logo .hof-page-hero__inner {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  min-height: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  justify-content: flex-end;
  padding: 0.85rem 1.15rem 1rem;
  background: linear-gradient(180deg, transparent 35%, rgba(8, 10, 14, 0.72) 100%);
}
.team-page-hero--fallback-logo .hof-page-hero__reveal {
  opacity: 1;
  transform: none;
}
.team-page-hero--fallback-logo .hof-page-hero__accent-bar {
  display: none;
}
.team-page-hero .hof-page-hero__eyebrow,
.team-page-hero .hof-page-hero__title,
.team-page-hero .hof-page-hero__tagline {
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.team-meta-row--below-hero {
  margin: 0.15rem 0 0;
}
body.single-team .site-header {
  margin-bottom: 2.25rem;
}
body.single-team .site-main {
  padding-top: 0.65rem;
}
.team-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.65rem 0 0;
}
.team-meta-row--secondary {
  margin-top: 0.55rem;
}
.team-meta-pill {
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-red);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 700;
  background: var(--color-white);
}
.team-meta-pill--coach {
  border-left-color: var(--color-red);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.team-meta-pill--coach .team-meta-pill__name {
  font-weight: 800;
}
.team-picker {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.team-picker__label {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.team-picker__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.team-level-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.team-level-buttons__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  padding: 0.55rem 1.1rem;
  border: 2px solid var(--color-black);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-black);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.team-level-buttons__btn:hover {
  border-color: var(--color-red);
  color: var(--color-red);
}
.team-level-buttons__btn.is-active {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}
.team-year-picker {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}
.team-year-picker__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-black);
  white-space: nowrap;
}
.team-year-picker__select {
  min-width: 9.5rem;
  border: 2px solid var(--color-black);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.65rem;
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--color-white);
  color: var(--color-black);
}
.team-content {
  scroll-margin-top: 7.25rem;
}
body.admin-bar .team-content {
  scroll-margin-top: 8.75rem;
}
.team-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 0.75rem;
}
.team-subnav__link {
  text-decoration: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.85rem;
  color: var(--color-black);
  font-weight: 700;
  font-size: 0.92rem;
  background: var(--color-white);
}
.team-subnav__link.is-active,
.team-subnav__link:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}
.team-get-alerts {
  margin: 0.75rem 0 1rem;
  font-size: 0.95rem;
}
.team-get-alerts a {
  font-weight: 700;
}
.team-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}
.team-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  background: #fff;
}
.team-card-game {
  background: #fff;
}
.team-card-practice {
  background: linear-gradient(180deg, #fffdf2, #fff6d6);
  border-color: #d6a800;
}
.team-card-current {
  border: 3px solid #9b1c20;
  box-shadow: 0 0 0 4px rgba(155, 28, 32, 0.18);
}
.team-card-type {
  display: inline-block;
  margin: 0 0 0.55rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: #f0f0f0;
  color: #333;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.team-card-side {
  margin: 0;
  padding: 0.18rem 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.team-card-side--home {
  background: #e7f5eb;
  border-color: #b8dfc4;
  color: #186535;
}
.team-card-side--away {
  background: #fdecec;
  border-color: #f3c1c1;
  color: #9b1c20;
}
.team-card-side--tbd {
  background: #f5f5f5;
  border-color: #d9d9d9;
  color: #555;
}
.team-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}
.team-card-topline__start {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.team-card-timing {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.team-card-timing--today {
  color: #9b1c20;
}
.team-card-timing--past {
  color: #666;
}
.team-card-timing--upcoming {
  color: #1a5f2a;
}
.team-schedule-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.team-schedule-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.team-schedule-hint {
  margin: 0;
  flex: 1 1 12rem;
  text-align: center;
  color: #666;
  font-size: 0.82rem;
}
.team-schedule-jump {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  color: #111;
  padding: 0.35rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}
.team-schedule-jump:hover,
.team-schedule-jump:focus-visible {
  border-color: #9b1c20;
  color: #9b1c20;
}
.team-schedule-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
  max-height: min(72vh, 42rem);
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-padding-top: 0.5rem;
  overscroll-behavior-y: auto;
  -webkit-overflow-scrolling: touch;
  align-content: start;
}
.team-schedule-scroll.team-cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.team-card-home {
  border-left: 4px solid #1f7a3a;
}
.team-card-away {
  border-left: 4px solid #c8102e;
}
.team-card-tbd {
  border-left: 4px solid #888;
}
.team-card-topline .team-card-type {
  margin: 0;
}
.team-card-result-badge {
  margin: 0;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: #9b1c20;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.team-card .team-card-datetime {
  font-size: 1rem;
  font-weight: 800;
  color: #111;
}
.team-card-practice .team-card-type {
  background: #ffe7a3;
  color: #6b5200;
}
.roster-player-card {
  position: relative;
  overflow: hidden;
  min-height: 130px;
  border: 0;
  border-radius: 18px;
  padding: 0.8rem 0.9rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #7e1217 0%, #9b1c20 45%, #c83035 100%);
  color: #fff;
  box-shadow: 0 12px 24px rgba(107, 10, 15, 0.28);
}
.roster-player-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.roster-player-card__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}
.roster-player-card__number {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
}
.roster-player-card__grade {
  margin: 0;
  padding: 0.28rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.roster-player-card__name {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.team-record-summary {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
}
.team-link-list {
  margin: 0;
  padding-left: 1.1rem;
}
.coach-contact-card {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
  padding: 1.1rem 1.15rem;
}
.coach-contact-card--has-photo {
  grid-template-columns: auto 1fr;
  align-items: start;
}
.coach-contact-card__photo {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: #f3f3f3;
}
.coach-contact-card__body {
  min-width: 0;
}
.coach-contact-card__name {
  margin: 0 0 0.35rem;
  font-size: 1.38rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.coach-contact-card__email {
  margin: 0 0 0.75rem;
  color: var(--color-muted);
  word-break: break-word;
}
.coach-contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.15rem;
}
.coach-contact-card__actions .button-secondary {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}
.coach-contact-card__actions a.button-secondary:hover,
.coach-contact-card__actions a.button-secondary:focus-visible {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}
.coach-contact-card__bio {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-border);
  color: var(--color-text);
}
.coach-contact-card__bio p {
  margin: 0 0 0.65rem;
}
.coach-contact-card__bio p:last-child {
  margin-bottom: 0;
}
.practice-schedule-card__image {
  display: block;
  max-width: min(100%, 720px);
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}
.practice-schedule-card__embed {
  margin: 0 0 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 420px;
}
.practice-schedule-card__embed iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}
.sport-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.sport-program-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  align-items: start;
}
.sport-program-block {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.1rem 1.15rem;
}
.sport-program-block h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.sport-program-teams {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.sport-program-team-card {
  padding: 0;
  overflow: hidden;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.sport-program-team-card__link {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: var(--color-black);
  font-weight: 800;
  transition: color var(--transition-fast);
}
.sport-program-team-card h3 {
  margin: 0;
  font-size: 1.08rem;
}
.sport-program-team-card:hover,
.sport-program-team-card:focus-within {
  background: var(--color-red);
  border-color: var(--color-red);
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.28);
}
.sport-program-team-card:hover .sport-program-team-card__link,
.sport-program-team-card:focus-within .sport-program-team-card__link,
.sport-program-team-card:hover .sport-program-team-card__link:hover,
.sport-program-team-card:focus-within .sport-program-team-card__link:focus-visible {
  color: var(--color-white);
}
.sport-side-menu {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  padding: 0.85rem;
  align-self: start;
}
.sport-side-menu h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}
.sport-side-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.sport-side-menu a {
  display: block;
  text-decoration: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.6rem;
  color: var(--color-black);
  font-weight: 700;
  background: var(--color-offwhite);
}
.sport-side-menu a:hover {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}
.sport-main-content {
  min-width: 0;
}

/* Hall of Fame */
.hall-of-fame-page { overflow-x: clip; }
.hof-page-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8rem 1.2rem 2.5rem;
}

/* Hall of Fame — full-width dynamic banner with rotating photos. */
.hof-page-hero {
  --hof-hero-min-height: clamp(360px, 54vw, 600px);
  /* Landscape ceremony photos (portraits filtered in PHP): ~32% keeps faces in frame. */
  --hof-hero-focal-y: 32%;
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: none;
  margin: 0.15rem calc(50% - 50vw) 1.35rem;
  min-height: var(--hof-hero-min-height);
  background: linear-gradient(135deg, #7f000d 0%, var(--color-red) 55%, #111 100%);
  color: #fff;
  box-shadow: 0 18px 48px rgba(16, 21, 31, 0.22);
}
.hof-page-hero__media {
  position: absolute;
  inset: 0;
}
.hof-page-hero__slides {
  position: absolute;
  inset: 0;
}
.hof-page-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center var(--hof-hero-focal-y);
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hof-page-hero__slide.is-active {
  opacity: 1;
}
.hof-page-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.35) 0%, rgba(17, 17, 17, 0.72) 58%, rgba(17, 17, 17, 0.9) 100%),
    linear-gradient(90deg, rgba(200, 16, 46, 0.28) 0%, transparent 42%, rgba(17, 17, 17, 0.35) 100%);
  animation: athletics-hero-mesh-shift 8s ease-in-out infinite alternate;
}
.hof-page-hero__shine {
  position: absolute;
  inset: -40% auto -40% -20%;
  width: 42%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  animation: athletics-hero-shine 7s ease-in-out infinite;
}
.hof-page-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: var(--hof-hero-min-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(1.5rem, 3.5vw, 2.5rem) clamp(1rem, 4vw, 2rem);
}
.hof-page-hero__eyebrow {
  margin: 0 0 0.45rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}
.hof-page-hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 2.25rem;
  height: 3px;
  margin-right: 0.6rem;
  vertical-align: middle;
  background: var(--color-red);
  border-radius: 999px;
}
.hof-page-hero__accent-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--color-red);
  z-index: 2;
}
.hof-page-hero__reveal {
  opacity: 0;
  transform: translateY(22px);
}
.hof-page-hero.is-ready .hof-page-hero__reveal {
  animation: athletics-hero-reveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--hof-hero-delay, 0ms);
}
@media (prefers-reduced-motion: reduce) {
  .hof-page-hero__mesh,
  .hof-page-hero__shine,
  .hof-page-hero__slide {
    animation: none;
    transition: none;
  }
  .hof-page-hero__reveal {
    opacity: 1;
    transform: none;
  }
  .hof-page-hero.is-ready .hof-page-hero__reveal {
    animation: none;
  }
}
@media (max-width: 700px) {
  .hof-page-hero {
    --hof-hero-min-height: clamp(280px, 72vw, 420px);
  }
  .hof-page-hero__title,
  .athletics-hero-video__title {
    font-size: clamp(1.85rem, 9.5vw, 3.8rem);
    letter-spacing: -0.04em;
  }
  .team-page-hero.hof-page-hero {
    --hof-hero-min-height: clamp(320px, 92vw, 520px);
  }
  .team-page-hero.team-page-hero--has-image {
    --hof-hero-min-height: 0;
    width: 100%;
    min-height: 0;
    height: auto;
    margin-left: 0;
    margin-right: 0;
  }
  .team-page-hero--has-image .hof-page-hero__media {
    position: relative;
    inset: auto;
  }
  .team-page-hero--has-image .hof-page-hero__slides {
    display: none;
  }
  .team-page-hero__photo {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
  }
  .team-page-hero--has-image .hof-page-hero__inner {
    position: absolute;
    inset: auto 0 0 0;
    min-height: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 2.4rem 1rem 0.9rem;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 10, 14, 0.78) 70%);
  }
  .team-page-hero .hof-page-hero__title {
    font-size: clamp(1.35rem, 6.2vw, 2.1rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
  }
  .team-page-hero .hof-page-hero__tagline {
    margin-top: 0.4rem;
    font-size: clamp(1.05rem, 4.4vw, 1.45rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
  }
  .team-page-hero .hof-page-hero__eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.3rem;
  }
  .team-page-hero.team-page-hero--fallback-logo {
    --hof-hero-min-height: 0;
    width: 100%;
    min-height: 0;
  }
  .team-page-hero__fallback-logo {
    max-width: 78%;
  }
}

.hof-spotlight {
  margin-top: 0.15rem;
  margin-bottom: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}
.hof-spotlight__heading {
  font-size: 1.15rem;
  text-transform: none;
  letter-spacing: 0.04em;
  color: #555;
  margin: 0 0 1rem;
  text-align: center;
}
.hof-spotlight__year-value {
  color: var(--color-red);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.hof-spotlight__stage {
  position: relative;
  min-height: 12rem;
}
.hof-spotlight__set[hidden] {
  display: none !important;
}
.hof-spotlight__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  align-items: stretch;
}
.hof-spotlight__card {
  flex: 0 1 320px;
  max-width: 380px;
  min-width: 180px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.hof-spotlight__photo {
  aspect-ratio: 4 / 5;
  background: var(--color-offwhite);
}
.hof-spotlight__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hof-spotlight__photo--empty {
  min-height: 160px;
  background: repeating-linear-gradient(
    135deg,
    #f0f0f0,
    #f0f0f0 12px,
    #e6e6e6 12px,
    #e6e6e6 24px
  );
}
.hof-spotlight__text {
  padding: 0.85rem 0.75rem 1rem;
}
.hof-spotlight__name {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}
.hof-spotlight__year {
  margin: 0;
  font-size: 0.88rem;
  color: var(--color-red);
  font-weight: 600;
}
.hof-spotlight__bio {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #222;
  text-align: left;
}
.hof-spotlight__bio p {
  margin: 0 0 0.5rem;
}
.hof-spotlight__bio p:last-child {
  margin-bottom: 0;
}
.hof-spotlight__placeholder-label {
  margin: 0;
  font-size: 0.88rem;
  color: #777;
  font-style: italic;
}

@media (max-width: 700px) {
  .hof-spotlight__card {
    max-width: none;
    width: 100%;
  }
}

.hof-page-banner {
  position: relative;
  width: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, #a40010 0%, var(--color-red) 70%, #7f000d 100%);
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto 1rem;
  max-width: var(--max-width);
}
.hof-page-banner--image { min-height: 200px; max-height: 320px; }
.hof-page-banner__media {
  width: 100%;
  height: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}
.hof-page-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.2rem;
  background: linear-gradient(180deg, rgba(145, 0, 16, 0.52) 0%, rgba(110, 0, 12, 0.88) 100%);
  color: var(--color-white);
}
.hof-page-banner__overlay--stacked {
  justify-content: center;
}
.hof-page-banner__welcome {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 3.5vw, 1.95rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  max-width: 46rem;
  white-space: nowrap;
}
.hof-page-banner__hof {
  margin: 0;
  font-size: clamp(1.35rem, 4vw, 2.15rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--color-white);
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.hof-page-banner__title {
  color: var(--color-white);
  margin: 0 0 0.35rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.hof-page-banner__subtitle {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.95;
}
.hof-page-banner--plain .hof-page-banner__overlay {
  position: relative;
  background: linear-gradient(135deg, #a40010 0%, var(--color-red) 70%, #7f000d 100%);
  padding: 1.5rem 1.2rem;
  max-width: none;
  margin: 0;
  min-height: 180px;
}
.hof-years-layout {
  display: block;
}
.hof-years-layout > .hof-years-nav-wrap {
  margin-bottom: 0.5rem;
}
.hof-years-layout > .hof-all-sections {
  min-width: 0;
}
.hof-years-nav-wrap {
  position: static;
}
.hof-years-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
}
.hof-years-nav__link {
  display: inline-block;
}
.hof-year-section {
  margin-bottom: 2rem;
}
.hof-year-section[hidden] {
  display: none !important;
}
.hof-year-carousel {
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.hof-year-carousel__chrome {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem 0.65rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  pointer-events: none;
}
.hof-year-carousel__chrome .hof-inductee-carousel__dots,
.hof-year-carousel__chrome .hof-inductee-carousel__controls {
  pointer-events: auto;
  background: transparent;
  padding: 0;
}
.hof-year-carousel__chrome .hof-inductee-carousel__controls {
  gap: 0.35rem;
}
.hof-year-carousel__chrome .hof-inductee-carousel__btn {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 999px;
  font-size: 1.2rem;
  line-height: 1;
}
.hof-year-carousel__zoomable {
  cursor: zoom-in;
}
.hof-year-carousel[data-slides-per-view="1"] .hof-inductee-carousel__slide {
  flex: 0 0 100%;
  max-width: 100%;
}
.hof-year-carousel .hof-inductee-carousel__slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Tall stage so portrait + landscape ceremony photos can show in full. */
  min-height: min(85vh, 880px);
  background: #111;
}
.hof-year-carousel .hof-inductee-carousel__caption {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 3.25rem;
  margin: 0;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
}
.hof-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 10, 0.88);
  display: grid;
  place-items: center;
  padding: 1rem;
}
.hof-lightbox[hidden] {
  display: none !important;
}
.hof-lightbox__inner {
  width: min(98vw, 1400px);
  max-height: 94vh;
  position: relative;
  display: grid;
  gap: 0.5rem;
  justify-items: center;
}
.hof-lightbox__close {
  justify-self: end;
  background: #111;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.38rem 0.65rem;
  font-size: 0.78rem;
}
.hof-lightbox__image {
  max-width: 100%;
  max-height: calc(96vh - 2.5rem);
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}
body.hof-lightbox-open {
  overflow: hidden;
}

.hof-years-nav__link {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.55rem;
  color: var(--color-black);
  text-decoration: none;
  background: var(--color-offwhite);
  font-weight: 700;
}
.hof-years-nav__link:hover {
  border-color: var(--color-red);
}
.hof-years-nav__link.is-active {
  background: var(--color-red);
  border-color: var(--color-red);
  color: var(--color-white);
}
.hof-inductees-intro { margin-top: 2rem; }
.hof-inductees-intro-text { color: #555; margin-bottom: 1.5rem; }
.hof-year-section {
  scroll-margin-top: 110px;
}
.hof-year-heading {
  font-size: 1.35rem;
  border-bottom: 2px solid var(--color-red);
  padding-bottom: 0.35rem;
  margin-bottom: 1rem;
}
.hof-inductee-grid {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.hof-inductee-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hof-inductee-card__media {
  aspect-ratio: 3 / 4;
  height: auto;
  min-height: 0;
  max-height: 360px;
  background: var(--color-offwhite);
  overflow: hidden;
  position: relative;
}
.hof-inductee-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hof-inductee-card__media--placeholder {
  min-height: 200px;
  background: repeating-linear-gradient(
    45deg,
    #eee,
    #eee 8px,
    #e4e4e4 8px,
    #e4e4e4 16px
  );
  display: flex;
  align-items: center;
  justify-content: center;
}
.hof-inductee-card__placeholder-photo {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
}
.hof-inductee-card__placeholder {
  color: #6a6a6a;
  font-style: italic;
  font-size: 0.94rem;
  line-height: 1.45;
}
.hof-inductee-card__name.hof-inductee-card__placeholder {
  font-style: italic;
  color: #555;
}
.hof-inductee-carousel {
  position: relative;
  border-top: 1px solid var(--color-border);
  background: #111;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.hof-year-carousel.hof-inductee-carousel {
  border-top: 0;
}
.hof-inductee-carousel__viewport {
  overflow: hidden;
  width: 100%;
}
.hof-inductee-carousel__track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  transition: transform 0.38s ease;
  will-change: transform;
}
.hof-inductee-carousel__slide {
  margin: 0;
  flex-shrink: 0;
  box-sizing: border-box;
}
/* Full photo visible inside a tall stage (no short crop bar). */
.hof-year-carousel .hof-inductee-carousel__slide > img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(85vh, 880px);
  object-fit: contain;
  object-position: center center;
  background: #111;
}
.hof-inductee-carousel--large .hof-inductee-carousel__viewport {
  min-height: 0;
}
.hof-inductee-carousel__caption {
  margin: 0;
  padding: 0.45rem 0.65rem 0.55rem;
  font-size: 0.84rem;
  line-height: 1.35;
  color: #e8e8e8;
  background: rgba(0, 0, 0, 0.82);
}
.hof-inductee-carousel__controls {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.5rem;
  background: rgba(0,0,0,0.88);
}
.hof-inductee-carousel__controls[hidden] {
  display: none !important;
}
.hof-inductee-carousel__dots[hidden] {
  display: none !important;
}
.hof-inductee-carousel__btn {
  font: inherit;
  font-size: 0.82rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid #444;
  background: #2a2a2a;
  color: var(--color-white);
  cursor: pointer;
}
.hof-inductee-carousel__btn:hover {
  background: var(--color-red);
  border-color: var(--color-red);
}
.hof-inductee-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  padding: 0.35rem 0.5rem 0.65rem;
  background: rgba(0,0,0,0.88);
}
.hof-inductee-carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #666;
  cursor: pointer;
}
.hof-inductee-carousel__dot[aria-selected="true"] {
  background: var(--color-red);
}
@media (max-width: 900px) {
  .hof-page-banner__welcome {
    white-space: normal;
  }
  .hof-years-nav {
    justify-content: flex-start;
  }
}
.hof-inductee-card__body { padding: 1rem; flex: 1; }
.hof-inductee-card__name { margin: 0 0 0.5rem; font-size: 1.12rem; }
.hof-inductee-card__excerpt { font-size: 0.95rem; color: #444; margin: 0 0 0.65rem; }
.hof-inductee-card__details { margin-top: 0.35rem; font-size: 0.92rem; }
.hof-inductee-card__summary { cursor: pointer; font-weight: 600; }
.hof-inductee-card__bio { color: #1f1f1f; line-height: 1.5; }
.hof-inductee-card__bio p { margin: 0 0 0.5rem; }
.hof-inductee-card__bio p:last-child { margin-bottom: 0; }
.hof-empty-state {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--color-offwhite);
  border: 1px dashed var(--color-border);
  text-align: center;
}
.hof-empty-state__title { font-weight: 700; margin-bottom: 0.5rem; }
.hof-empty-state__admin { margin-top: 1rem; }
.hof-empty-state__admin a { display: inline-block; margin: 0.25rem; }

.site-footer { margin-top: 2rem; background: var(--color-black); color: var(--color-white); border-top: 3px solid var(--color-red); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1rem; padding: 1rem 0 0.6rem; }
.site-footer h3 { color: var(--color-white); margin-bottom: 0.55rem; }
.site-footer nav ul, .social-list { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.35rem; }
.site-footer a { color: var(--color-white); }
.site-footer a:hover { color: #ffb8be; }
.footer-meta { border-top: 1px solid #2f2f2f; margin-top: 0.7rem; padding-top: 0.85rem; font-size: 0.88rem; }

@media (max-width: 1320px) {
  .section-alt { padding-left: 1.2rem; padding-right: 1.2rem; }
}

@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .cards.cards-games {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    width: auto;
    gap: 1rem;
    align-items: stretch;
  }
  .cards.cards-games .upcoming-game-card {
    flex: 0 0 calc((100% - 1rem) / 2);
    width: auto;
    min-width: 280px;
    max-width: none;
    scroll-snap-align: start;
  }
  .team-cards-grid {
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .team-schedule-scroll,
  .team-schedule-scroll.team-cards-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    min-width: 0;
    overflow: visible;
  }
  .coach-contact-card--has-photo {
    grid-template-columns: 1fr;
  }
  .coach-contact-card__photo {
    width: 110px;
    height: 110px;
  }
  .team-card-topline {
    flex-wrap: wrap;
  }
  .news-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .sport-program-split { grid-template-columns: 1fr; }
  .site-header-inner {
    padding: 0.55rem 0.85rem 0.6rem;
  }
  .site-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
  }
  .site-header-brand {
    min-width: 0;
  }
  .site-header-brand-text {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70vw;
    display: inline-block;
  }
  .nav-search-row {
    display: flex;
    margin-top: 0.5rem;
    padding: 0.45rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    overflow: visible;
  }
  .site-header.js-mobile-ready .nav-search-row {
    display: none;
  }
  .site-header.js-mobile-ready .nav-search-row.is-open {
    display: flex;
    overflow-y: auto;
    max-height: calc(100dvh - 5.5rem);
    -webkit-overflow-scrolling: touch;
  }
  .primary-nav {
    flex: 0 0 auto;
    min-width: 0;
    display: block;
  }
  .mobile-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 96px;
    background: #111;
    color: #fff;
    border: 1px solid #111;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 800;
    padding: 0.5rem 0.7rem;
  }
  .primary-nav ul {
    display: flex;
    overflow: visible;
    white-space: normal;
    flex-wrap: wrap;
    gap: 0.35rem;
    width: 100%;
  }
  .primary-nav ul > li {
    flex: 1 1 100%;
    min-width: 0;
  }
  .primary-nav ul > li.nav-staff-login {
    margin-top: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding-top: 0.4rem;
  }
  .primary-nav ul > li.nav-staff-login > a {
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    font-weight: 800;
  }
  .primary-nav a,
  .team-directory-nav-item > .team-directory-trigger {
    width: 100%;
    text-align: left;
  }
  .team-directory-nav-item .team-directory-dropdown,
  .team-directory-nav-item .team-directory-flyout {
    position: static;
    min-width: 0;
    margin-top: 0.2rem;
    box-shadow: none;
    left: auto;
    right: auto;
  }
  .team-directory-nav-item .team-directory-flyout {
    margin-left: 0.45rem;
  }
  .more-nav-item .team-directory-flyout {
    margin-left: 0.45rem;
    margin-right: 0;
    max-width: none;
  }
  .team-directory-nav-item .team-directory-flyout::before {
    display: none;
  }
  .team-directory-highlight .team-directory-dropdown,
  .team-directory-highlight .team-directory-flyout {
    max-width: none;
    max-height: none;
    min-width: 0;
    overflow: visible;
  }
  .team-directory-highlight .team-directory-flyout {
    top: auto;
    bottom: auto;
  }
  .team-directory-highlight .has-flyout:nth-last-child(-n+10) .team-directory-flyout {
    top: auto;
    bottom: auto;
  }
  .team-directory-highlight .team-directory-flyout ul {
    display: block;
  }
  .team-directory-nav-item .team-directory-dropdown a,
  .team-directory-nav-item .team-directory-flyout a,
  .team-directory-highlight .team-directory-dropdown a,
  .team-directory-highlight .team-directory-flyout a {
    font-size: 1.12rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.7rem 0.8rem;
  }
  .team-directory-highlight .team-directory-flyout a {
    font-size: 1.14rem;
  }
  .site-header-search {
    display: none;
  }
  .site-header-search-mobile {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0.1rem 0 0;
    padding: 0;
    justify-content: stretch;
  }
  .site-header-search-mobile input[type="search"] {
    flex: 1 1 auto;
    width: auto;
    max-width: none;
    min-width: 0;
    border: 1px solid #ffffff;
    background: var(--color-white);
    padding: 0.38rem 0.5rem;
    font-size: 0.82rem;
  }
  .site-header-search-mobile button {
    background: var(--color-black);
    border-color: var(--color-black);
    padding: 0.38rem 0.55rem;
    font-size: 0.78rem;
  }
  .site-header-search-mobile button:hover,
  .site-header-search-mobile button:focus-visible {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
  }
  .athletics-search input[type="search"] {
    min-width: 0;
  }
  .feed-item {
    grid-template-columns: 1fr;
  }
  .feed-thumb {
    display: none;
  }
  .hall-of-fame-page .hof-spotlight {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #cfcfcf;
  }
  .hall-of-fame-page .hof-year-carousel {
    margin-top: 0.85rem;
    margin-bottom: 1.35rem;
  }
  .hall-of-fame-page .hof-year-carousel .hof-inductee-carousel__slide {
    min-height: min(78vh, 720px);
  }
  .hall-of-fame-page .hof-year-carousel .hof-inductee-carousel__slide > img {
    max-height: min(78vh, 720px);
  }
}

@media (max-width: 700px) {
  .site-main, .site-footer-inner { padding: 0 0.85rem 0.85rem; }
  .site-header { margin-bottom: 1.35rem; }
  body.single-team .site-header { margin-bottom: 1.75rem; }
  body.single-team .site-main { padding-top: 0.5rem; }
  body.single-team .team-page-wrap { padding-top: 0; }
  .section-alt {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
  .news-split {
    gap: 0.65rem;
  }
  .feed-panel {
    padding: 0.65rem;
  }
  .feed-item {
    padding: 0.6rem;
    margin-bottom: 0.55rem;
  }
  .welcome-banner {
    padding: 0.75rem 0.8rem;
  }
  .welcome-banner-inner { flex-direction: column; align-items: flex-start; gap: 0.55rem; }
  .welcome-logo-wrap .custom-logo,
  .welcome-fallback-logo { max-height: 50px; }
  .welcome-subtitle {
    font-size: 0.69rem;
    letter-spacing: 0.03em;
  }
  .welcome-title {
    font-size: clamp(1.02rem, 4.3vw, 1.22rem);
    line-height: 1.14;
    letter-spacing: 0;
    margin-bottom: 0;
    word-break: normal;
    overflow-wrap: normal;
    text-wrap: nowrap;
    white-space: nowrap;
  }
  .welcome-title-break {
    display: inline;
  }
  .welcome-support {
    font-size: 0.84rem;
    line-height: 1.34;
    margin-top: 0.4rem;
  }
  .welcome-actions {
    width: 100%;
    gap: 0.45rem;
    margin-top: 0.6rem;
  }
  .welcome-actions .btn-primary,
  .welcome-actions .button-secondary {
    width: 100%;
    text-align: center;
  }
  .hero-carousel { max-height: none; min-height: 0; }
  .carousel-image { height: clamp(260px, 72vw, 440px); object-position: center center; }
  .carousel-caption { padding: 1rem; }
  .carousel-caption h2 { font-size: 1.35rem; line-height: 1.2; }
  .carousel-caption p { font-size: 0.92rem; line-height: 1.35; }
  .carousel-controls {
    right: 8px;
    bottom: 8px;
    gap: 0.25rem;
  }
  .carousel-controls button {
    width: 34px;
    height: 34px;
  }
  .carousel-dots {
    left: 10px;
    bottom: 10px;
  }
  .upcoming-actions { width: 100%; justify-content: flex-start; }
  .team-picker__controls {
    flex-direction: column;
    align-items: stretch;
  }
  .team-year-picker {
    margin-left: 0;
    width: 100%;
  }
  .team-year-picker__select {
    flex: 1;
    width: 100%;
  }
  .team-level-buttons__btn {
    flex: 1 1 calc(33.333% - 0.35rem);
    min-width: 0;
  }
  .sport-layout { grid-template-columns: 1fr; }
  .sport-program-split { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .hof-inductee-grid { grid-template-columns: 1fr; }
  .hof-spotlight__grid { grid-template-columns: 1fr; }
  .hof-year-carousel .hof-inductee-carousel__slide {
    min-height: min(75vh, 640px);
  }
  .hof-year-carousel .hof-inductee-carousel__slide > img {
    max-height: min(75vh, 640px);
  }
}

.cbna-family-hub {
  max-width: 1080px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem 2rem;
}
.cbna-family-hub__hero {
  margin: 1.25rem 0 1.5rem;
}
.cbna-family-hub__eyebrow {
  margin: 0 0 0.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-red);
  font-size: 0.8rem;
}
.cbna-family-hub__hero h1 {
  margin: 0 0 0.5rem;
}
.cbna-family-hub__welcome-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 1rem;
}
.cbna-family-hub__logout-top .button {
  white-space: nowrap;
}
.cbna-family-hub__notice {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin: 0 0 1rem;
}
.cbna-family-hub__notice--success {
  background: #e8f6ec;
  border: 1px solid #b7e0c2;
}
.cbna-family-hub__notice--error {
  background: #fdecec;
  border: 1px solid #f3c1c1;
}
.cbna-family-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.cbna-family-hub__card {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 1.1rem 1.15rem 1.2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.cbna-family-hub__card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}
.cbna-family-hub input[type="email"],
.cbna-family-hub input[type="password"],
.cbna-family-hub input[type="text"] {
  width: 100%;
  max-width: 100%;
  padding: 0.45rem 0.55rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.cbna-family-hub__pwd {
  position: relative;
  display: block;
}
.cbna-family-hub__pwd input {
  padding-right: 3rem;
}
.cbna-family-hub__pwd-toggle {
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid #d6d6d6;
  border-radius: 999px;
  background: #fff;
  color: #555;
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
}
.cbna-family-hub__pwd-toggle:hover,
.cbna-family-hub__pwd-toggle:focus-visible {
  color: #111;
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.12);
}
.cbna-family-hub__pwd-toggle .cbna-eye-off {
  display: none;
}
.cbna-family-hub__pwd-toggle.is-visible .cbna-eye {
  display: none;
}
.cbna-family-hub__pwd-toggle.is-visible .cbna-eye-off {
  display: block;
}
.cbna-family-hub__login-help {
  margin: 0.4rem 0 0.2rem;
}
.cbna-family-hub__reset {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid #ececec;
}
.cbna-family-hub__reset[hidden] {
  display: none !important;
}
.cbna-family-hub__programs {
  border: 0;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem 1.1rem;
  align-items: start;
}
.cbna-family-hub__programs legend {
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.cbna-family-hub__program-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.cbna-family-hub__program-group strong {
  font-size: 0.92rem;
}
.cbna-family-hub__programs label {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  font-size: 0.95rem;
}
.cbna-family-hub__list {
  margin: 0;
  padding-left: 1.1rem;
}
.cbna-family-hub__list li {
  margin: 0 0 0.7rem;
}
.cbna-family-hub__news-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: #eee;
  color: #444;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.cbna-family-hub__news-badge--important {
  background: #fdecec;
  color: #a31212;
}
.cbna-family-hub__meta {
  color: #555;
  font-size: 0.88rem;
}
.cbna-family-hub__install {
  background: #111;
  color: #fff;
  padding: 1rem 1.15rem 1.15rem;
  border-radius: 12px;
  border-color: #111;
}
.cbna-family-hub__install h2 {
  color: #fff;
  margin: 0 0 0.5rem;
}
.cbna-family-hub__install p {
  margin: 0 0 0.75rem;
}
.cbna-family-hub__install-hint {
  font-size: 0.9rem;
  color: #ddd;
  margin: 0;
}
.cbna-family-hub__install-hint ol {
  margin: 0.35rem 0 0.75rem 1.2rem;
  padding: 0;
}
.cbna-family-hub__install-hint li {
  margin: 0 0 0.35rem;
}
#cbna-install-chrome-steps.is-highlight {
  outline: 2px solid #fff;
  outline-offset: 6px;
  border-radius: 8px;
}
.cbna-family-hub__install .button-primary {
  background: #c8102e;
  border: 0;
  color: #fff;
}
.cbna-family-hub__install.is-installed .button-primary {
  display: none;
}
.cbna-family-hub__logout {
  margin: 0;
}
.cbna-family-hub__account-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0 0 0.85rem;
}
.cbna-family-hub__cancel {
  margin: 0;
  padding-top: 0.35rem;
  border-top: 1px solid #e6e6e6;
}
.cbna-family-hub__reset {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e6e6e6;
}
.cbna-family-hub .button-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--color-red);
  cursor: pointer;
  text-decoration: underline;
  font: inherit;
}
@media (max-width: 720px) {
  .cbna-family-hub__grid {
    grid-template-columns: 1fr;
  }
}

.cbna-family-hub {
  max-width: 1080px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem 2rem;
}
.cbna-family-hub__hero {
  margin: 1.25rem 0 1.5rem;
}
.cbna-family-hub__eyebrow {
  margin: 0 0 0.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-red);
  font-size: 0.8rem;
}
.cbna-family-hub__hero h1 {
  margin: 0 0 0.5rem;
}
.cbna-family-hub__welcome-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0 0 1rem;
}
.cbna-family-hub__logout-top .button {
  white-space: nowrap;
}
.cbna-family-hub__notice {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin: 0 0 1rem;
}
.cbna-family-hub__notice--success {
  background: #e8f6ec;
  border: 1px solid #b7e0c2;
}
.cbna-family-hub__notice--error {
  background: #fdecec;
  border: 1px solid #f3c1c1;
}
.cbna-family-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.cbna-family-hub__card {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 1.1rem 1.15rem 1.2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.cbna-family-hub__card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}
.cbna-family-hub__card .widefat,
.cbna-family-hub input[type="email"],
.cbna-family-hub input[type="password"],
.cbna-family-hub input[type="text"] {
  width: 100%;
  max-width: 100%;
  padding: 0.45rem 0.55rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.cbna-family-hub__pwd {
  position: relative;
  display: block;
}
.cbna-family-hub__pwd input {
  padding-right: 2.5rem;
}
.cbna-family-hub__pwd-toggle {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: #555;
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
}
.cbna-family-hub__pwd-toggle:hover,
.cbna-family-hub__pwd-toggle:focus-visible {
  color: #111;
}
.cbna-family-hub__pwd-toggle .cbna-eye-off {
  display: none;
}
.cbna-family-hub__pwd-toggle.is-visible .cbna-eye {
  display: none;
}
.cbna-family-hub__pwd-toggle.is-visible .cbna-eye-off {
  display: block;
}
.cbna-family-hub__programs {
  border: 0;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem 1.1rem;
  align-items: start;
}
.cbna-family-hub__programs legend {
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.cbna-family-hub__program-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.cbna-family-hub__program-group strong {
  font-size: 0.92rem;
}
.cbna-family-hub__programs label {
  display: flex;
  gap: 0.4rem;
  align-items: flex-start;
  font-size: 0.95rem;
}
.cbna-family-hub__list {
  margin: 0;
  padding-left: 1.1rem;
}
.cbna-family-hub__list li {
  margin: 0 0 0.7rem;
}
.cbna-family-hub__news-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: #eee;
  color: #444;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.cbna-family-hub__news-badge--important {
  background: #fdecec;
  color: #a31212;
}
.cbna-family-hub__meta {
  color: #555;
  font-size: 0.88rem;
}
.cbna-family-hub__install {
  background: #111;
  color: #fff;
  padding: 1rem 1.15rem 1.15rem;
  border-radius: 12px;
  border-color: #111;
}
.cbna-family-hub__install h2 {
  color: #fff;
  margin: 0 0 0.5rem;
}
.cbna-family-hub__install p {
  margin: 0 0 0.75rem;
}
.cbna-family-hub__install-hint {
  font-size: 0.9rem;
  color: #ddd;
  margin: 0;
}
.cbna-family-hub__install-hint ol {
  margin: 0.35rem 0 0.75rem 1.2rem;
  padding: 0;
}
.cbna-family-hub__install-hint li {
  margin: 0 0 0.35rem;
}
#cbna-install-chrome-steps.is-highlight {
  outline: 2px solid #fff;
  outline-offset: 6px;
  border-radius: 8px;
}
.cbna-family-hub__install .button-primary {
  background: #c8102e;
  border: 0;
  color: #fff;
}
.cbna-family-hub__install.is-installed .button-primary {
  display: none;
}
.cbna-family-hub__logout {
  margin: 0;
}
.cbna-family-hub__account-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin: 0 0 0.85rem;
}
.cbna-family-hub__cancel {
  margin: 0;
  padding-top: 0.35rem;
  border-top: 1px solid #e6e6e6;
}
.cbna-family-hub__reset {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e6e6e6;
}
.cbna-family-hub .button-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--color-red);
  cursor: pointer;
  text-decoration: underline;
  font: inherit;
}
@media (max-width: 720px) {
  .cbna-family-hub__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.cbna-family-hub__card--schedule {
  margin: 0 0 1rem;
}
.cbna-family-hub__schedule-team {
  margin: 0 0 0.75rem;
  font-weight: 700;
}
.cbna-family-hub__team-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
  margin: 0 0 1rem;
}
.cbna-family-hub__team-picker select {
  min-width: min(100%, 280px);
  max-width: 100%;
  padding: 0.5rem 0.6rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
}
.cbna-family-hub__schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cbna-family-hub__schedule-list li {
  display: grid;
  gap: 0.15rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid #ececec;
}
.cbna-family-hub__side {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 0.1rem;
  padding: 0.14rem 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cbna-family-hub__side--home {
  background: #e7f5eb;
  border-color: #b8dfc4;
  color: #186535;
}
.cbna-family-hub__side--away {
  background: #fdecec;
  border-color: #f3c1c1;
  color: #9b1c20;
}
.cbna-family-hub__schedule-list li:first-child {
  padding-top: 0;
}
.cbna-family-hub__travel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.75rem;
  font-size: 0.82rem;
  color: #c8102e;
  font-weight: 600;
  padding: 0.2rem 0 0;
}
.cbna-family-hub__result {
  font-weight: 700;
}
.cbna-family-hub__subhead {
  margin: 1.1rem 0 0.4rem;
  font-size: 1rem;
}
.cbna-family-hub__schedule-more {
  margin: 0.9rem 0 0;
}
.cbna-family-hub__board {
  margin: 0 0 1.25rem;
}
.cbna-family-hub__board-head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 0.85rem;
}
.cbna-family-hub__board-head h2 {
  margin: 0;
}
.cbna-family-hub__record {
  margin: 0.25rem 0 0;
  font-weight: 700;
}
.cbna-family-hub__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.cbna-family-hub__split,
.cbna-family-hub__row {
  display: grid;
  gap: 1rem;
  margin: 0 0 1rem;
  align-items: start;
}
.cbna-family-hub__row--top,
.cbna-family-hub__row--bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.cbna-family-hub__practice {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  max-width: 16rem;
}
.cbna-family-hub__practice .button {
  white-space: nowrap;
}
.cbna-family-hub__practice-empty {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
  text-align: right;
}
.cbna-family-hub__practice-notes {
  margin: 0;
  font-size: 0.9rem;
  text-align: right;
}
.cbna-family-hub__row > .cbna-family-hub__card {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 0;
}
.cbna-family-hub__card--fit {
  overflow: hidden;
}
.cbna-family-hub__card--roster {
  height: auto;
}
.cbna-family-hub__row h3,
.cbna-family-hub__board > .cbna-family-hub__card h3 {
  margin: 0 0 0.65rem;
  flex: 0 0 auto;
}
.cbna-family-hub__roster-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2.4rem;
  gap: 0.45rem;
  align-items: baseline;
  margin: 0 0 0.5rem;
  flex: 0 0 auto;
  padding-right: 0.35rem;
}
.cbna-family-hub__roster-head h3 {
  margin: 0;
}
.cbna-family-hub__roster-head-grade {
  color: #555;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: right;
}
.cbna-family-hub__card-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  scrollbar-gutter: stable;
}
.cbna-family-hub__roster {
  list-style: none;
  margin: 0;
  padding: 0 0.85rem 0 0;
}
.cbna-family-hub__roster li {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr);
  gap: 0.45rem;
  align-items: baseline;
  padding: 0.35rem 0.35rem 0.35rem 0;
  border-bottom: 1px solid #ececec;
}
.cbna-family-hub__roster--grades li {
  grid-template-columns: 2.6rem minmax(0, 1fr) 2.4rem;
}
.cbna-family-hub__player-name {
  min-width: 0;
  overflow-wrap: anywhere;
}
.cbna-family-hub__jersey {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.cbna-family-hub__grade {
  color: #555;
  font-size: 0.9em;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}
.cbna-family-hub__tabs {
  display: none;
}
.cbna-family-hub__tab {
  flex: 1 1 0;
  margin: 0;
  padding: 0.55rem 0.4rem;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}
.cbna-family-hub__tab.is-active {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
}
.cbna-family-hub__tab {
  position: relative;
}
.cbna-family-hub__tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.15rem;
  height: 1.15rem;
  margin-left: 0.35rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: #fff;
  color: var(--color-red);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  vertical-align: middle;
}
.cbna-family-hub__tab.is-active .cbna-family-hub__tab-badge {
  background: #111;
  color: #fff;
}
.cbna-family-hub__tab--has-news:not(.is-active) {
  border-color: #c8102e;
}
.cbna-family-hub__heading-badge {
  display: inline-block;
  margin-left: 0.45rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: var(--color-red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}
.cbna-family-hub__news-alert {
  margin: 0 0 0.75rem;
}
.cbna-family-hub__news-alert-btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.65rem 0.85rem;
  border: 1px solid #f0b4b4;
  border-radius: 8px;
  background: #fdecec;
  color: #8f0d17;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.cbna-family-hub__list li.is-new a {
  font-weight: 800;
}
.cbna-family-hub__item-new {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.08rem 0.4rem;
  border-radius: 999px;
  background: var(--color-red);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}
@media (max-width: 782px) {
  .cbna-family-hub__tabs {
    display: flex;
    gap: 0.4rem;
    position: sticky;
    top: 0;
    z-index: 6;
    margin: 0 0 0.75rem;
    padding: 0.45rem 0;
    background: var(--color-offwhite, #f5f5f5);
  }
  body.admin-bar .cbna-family-hub__tabs {
    top: 46px;
  }
  .cbna-family-hub__row--top,
  .cbna-family-hub__row--bottom {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
  }
  .cbna-family-hub__row > .cbna-family-hub__card {
    display: none;
  }
  .cbna-family-hub__row > .cbna-family-hub__card.is-active {
    display: flex;
    max-height: 65vh;
    overflow: hidden;
    margin: 0 0 1rem;
  }
  .cbna-family-hub__row > .cbna-family-hub__card.is-active .cbna-family-hub__card-scroll {
    overflow: auto;
    padding-right: 0.85rem;
  }
  .cbna-family-hub__row > .cbna-family-hub__card--roster.is-active .cbna-family-hub__card-scroll {
    padding-right: 1.1rem;
  }
  .cbna-family-hub__roster-head {
    padding-right: 1.35rem;
  }
  .cbna-family-hub__roster {
    padding-right: 0.35rem;
  }
  .cbna-family-hub__roster li,
  .cbna-family-hub__roster--grades li {
    grid-template-columns: 2.2rem minmax(0, 1fr);
    padding-right: 0.15rem;
  }
  .cbna-family-hub__roster--grades li {
    grid-template-columns: 2.2rem minmax(0, 1fr) 2.1rem;
  }
  .cbna-family-hub__practice {
    align-items: flex-start;
    max-width: none;
  }
  .cbna-family-hub__practice-empty,
  .cbna-family-hub__practice-notes {
    text-align: left;
  }
}

.cbna-search-page {
  max-width: 48rem;
  margin: 0 auto 2rem;
}
.cbna-search-page__form {
  flex: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 0 1.5rem;
  justify-content: flex-start;
}
.cbna-search-page__form input[type="search"] {
  width: auto;
  max-width: none;
  flex: 1 1 auto;
  font-size: 1rem;
  padding: 0.55rem 0.7rem;
  background: var(--color-white);
}
.cbna-search-hits {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cbna-search-hit {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--color-border);
}
.cbna-search-hit__type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 0.15rem;
}
.cbna-search-hit__title {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-black);
  text-decoration: none;
}
.cbna-search-hit__title:hover,
.cbna-search-hit__title:focus-visible {
  color: var(--color-red);
}
.cbna-search-hit__excerpt {
  margin: 0.35rem 0 0;
  color: #444;
}
.cbna-search-empty {
  color: #444;
}

/* —— Mission page —— */
body.page-athletics-mission .site-main {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.cbna-mission-page {
  margin: 0;
}
.cbna-mission-hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(200, 16, 46, 0.35), transparent 55%),
    linear-gradient(165deg, #0a0a0a 0%, #1a1a1a 45%, #0f0f0f 100%);
  color: var(--color-white);
  padding: 2.75rem 1.25rem 2.5rem;
  text-align: center;
  overflow: hidden;
}
.cbna-mission-hero::before,
.cbna-mission-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-red);
  z-index: 1;
}
.cbna-mission-hero::before { top: 0; }
.cbna-mission-hero::after { bottom: 0; }
.cbna-mission-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.cbna-mission-hero__logo {
  display: block;
  width: min(200px, 48vw);
  height: auto;
  margin: 0 auto 1.15rem;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45));
}
.cbna-mission-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.cbna-mission-hero__tagline {
  display: inline-block;
  margin: 1rem 0 0;
  padding: 0.4rem 0.95rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-red);
}
.cbna-mission-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.25rem 1.25rem 3.25rem;
}
.cbna-mission-panel {
  margin: 0 0 2.25rem;
}
.cbna-mission-panel p {
  margin: 0 0 1.15rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--color-text);
}
.cbna-mission-panel p:last-child {
  margin-bottom: 0;
}
.cbna-mission-values__head {
  margin: 0 0 1.15rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--color-red);
}
.cbna-mission-values__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--color-black);
}
.cbna-mission-values__head p {
  margin: 0.35rem 0 0;
  color: var(--color-muted);
  font-size: 0.98rem;
}
.cbna-mission-values__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.cbna-mission-values__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--color-black);
}
.cbna-mission-values__list li:last-child {
  border-bottom: 0;
}
.cbna-mission-values__mark {
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.45rem;
  background: var(--color-red);
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .cbna-mission-hero {
    padding: 3.5rem 1.5rem 3.15rem;
  }
  .cbna-mission-hero__logo {
    width: 220px;
  }
  .cbna-mission-body {
    padding: 2.75rem 1.5rem 4rem;
  }
  .cbna-mission-panel p {
    font-size: 1.12rem;
  }
}

/* —— Contacts page —— */
body.page-athletics-contacts .site-main {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.cbna-contacts-page {
  margin: 0;
}
.cbna-contacts-hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(200, 16, 46, 0.35), transparent 55%),
    linear-gradient(165deg, #0a0a0a 0%, #1a1a1a 45%, #0f0f0f 100%);
  color: var(--color-white);
  padding: 1.75rem 1.25rem 1.5rem;
  text-align: center;
  overflow: hidden;
}
.cbna-contacts-hero::before,
.cbna-contacts-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-red);
  z-index: 1;
}
.cbna-contacts-hero::before { top: 0; }
.cbna-contacts-hero::after { bottom: 0; }
.cbna-contacts-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.cbna-contacts-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.cbna-contacts-hero__lede {
  margin: 0.65rem 0 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
.cbna-contacts-body {
  max-width: 920px;
  margin: 0 auto;
  padding: 1.35rem 1.25rem 3.5rem;
}
.cbna-contacts-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}
.cbna-contact-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.15rem;
  align-items: center;
  padding: 1.15rem;
  border-top: 4px solid var(--color-red);
  background: var(--color-offwhite);
}
.cbna-contact-card__photo {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-red);
}
.cbna-contact-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.cbna-contact-card__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--color-black);
}
.cbna-contact-card__role {
  margin: 0.3rem 0 0.95rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-muted);
}
.cbna-contact-card__email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.5rem;
  padding: 0.55rem 1.15rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white) !important;
  background: var(--color-red);
  border: 1px solid var(--color-red);
}
.cbna-contact-card__email:hover,
.cbna-contact-card__email:focus-visible {
  background: var(--color-red-hover);
  border-color: var(--color-red-hover);
  color: var(--color-white) !important;
}
@media (min-width: 640px) {
  .cbna-contacts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
  }
  .cbna-contact-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 1.75rem 1.35rem 1.85rem;
  }
  .cbna-contact-card__photo {
    width: 168px;
    height: 168px;
  }
  .cbna-contact-card__name {
    font-size: 1.45rem;
  }
}
@media (min-width: 768px) {
  .cbna-contacts-hero {
    padding: 2.15rem 1.5rem 1.85rem;
  }
  .cbna-contacts-body {
    padding: 1.65rem 1.5rem 4rem;
  }
}

/* —— Varsity Letterman Jacket page —— */
body.page-order-varsity-letterman-jacket .site-main {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.cbna-varsity-page {
  margin: 0;
}
.cbna-varsity-hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(200, 16, 46, 0.35), transparent 55%),
    linear-gradient(165deg, #0a0a0a 0%, #1a1a1a 45%, #0f0f0f 100%);
  color: var(--color-white);
  padding: 2.5rem 1.25rem 2.25rem;
  text-align: center;
  overflow: hidden;
}
.cbna-varsity-hero::before,
.cbna-varsity-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-red);
  z-index: 1;
}
.cbna-varsity-hero::before { top: 0; }
.cbna-varsity-hero::after { bottom: 0; }
.cbna-varsity-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.cbna-varsity-hero__eyebrow {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.cbna-varsity-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.cbna-varsity-hero__lede {
  margin: 0.85rem 0 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}
.cbna-varsity-body {
  max-width: 980px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
  display: grid;
  gap: 1.75rem;
}
.cbna-varsity-photo {
  margin: 0;
  background: #0a0a0a;
}
.cbna-varsity-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(72vh, 820px);
  object-fit: cover;
  object-position: center top;
}
.cbna-varsity-cta {
  text-align: center;
  padding: 0.25rem 0 0.5rem;
}
.cbna-varsity-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--color-black);
}
.cbna-varsity-cta p {
  margin: 0.55rem auto 1.25rem;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--color-muted);
}
.cbna-varsity-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white) !important;
  background: var(--color-red);
  border: 1px solid var(--color-red);
}
.cbna-varsity-cta__button:hover,
.cbna-varsity-cta__button:focus-visible {
  background: var(--color-red-hover);
  border-color: var(--color-red-hover);
  color: var(--color-white) !important;
}
@media (min-width: 860px) {
  .cbna-varsity-body {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 2.5rem;
    padding: 2.5rem 1.5rem 4rem;
  }
  .cbna-varsity-cta {
    text-align: left;
  }
  .cbna-varsity-cta p {
    margin-left: 0;
    margin-right: 0;
  }
  .cbna-varsity-photo img {
    max-height: 640px;
  }
}
@media (min-width: 768px) {
  .cbna-varsity-hero {
    padding: 3.25rem 1.5rem 2.85rem;
  }
}

/* —— State Championships & Awards —— */
body.page-state-championships-and-awards .site-main {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.cbna-awards-page {
  margin: 0;
}
.cbna-awards-hero {
  position: relative;
  min-height: clamp(220px, 38vw, 420px);
  overflow: hidden;
  background: #0a0a0a;
}
.cbna-awards-hero__media {
  position: absolute;
  inset: 0;
}
.cbna-awards-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cbna-awards-hero__overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(220px, 38vw, 420px);
  padding: 2rem 1.25rem 1.75rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.72) 62%, rgba(0, 0, 0, 0.88) 100%);
  color: var(--color-white);
  border-bottom: 4px solid var(--color-red);
}
.cbna-awards-hero__title {
  margin: 0;
  max-width: 920px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.2vw, 2.6rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.cbna-awards-hero__school {
  margin: 0.45rem 0 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
}
.cbna-awards-body {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.75rem 1.25rem 3.5rem;
  display: grid;
  gap: 2rem;
}
.cbna-awards-section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  margin: 0 0 0.85rem;
  padding: 0.85rem 1rem;
  color: var(--color-white);
}
.cbna-awards-section__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
}
.cbna-awards-section__head p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}
.cbna-awards-section__head--champ {
  background: var(--color-red);
}
.cbna-awards-section__head--runner {
  background: var(--color-black);
}
.cbna-awards-section__head--sportsmanship {
  background: #1f7a3a;
  border-left: 0;
}
.cbna-awards-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
}
.cbna-awards-table-wrap--champ {
  border-top: 0;
}
.cbna-awards-table-wrap--runner {
  border-top: 0;
}
.cbna-awards-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}
.cbna-awards-table th,
.cbna-awards-table td {
  padding: 0.7rem 0.95rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.cbna-awards-table th {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  background: var(--color-offwhite);
}
.cbna-awards-table td:first-child {
  font-weight: 700;
  color: var(--color-black);
}
.cbna-awards-table td:last-child {
  width: 6.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-red);
}
.cbna-awards-table-wrap--runner .cbna-awards-table td:last-child {
  color: var(--color-black);
}
.cbna-awards-table tbody tr:nth-child(even) {
  background: rgba(17, 17, 17, 0.03);
}
.cbna-awards-table tbody tr:last-child td {
  border-bottom: 0;
}
.cbna-awards-years {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.65rem;
}
.cbna-awards-years li {
  padding: 0.85rem 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-white);
  background: #1f7a3a;
  border-bottom: 3px solid #145c2a;
}
@media (min-width: 768px) {
  .cbna-awards-hero__overlay {
    padding: 2.5rem 1.5rem 2rem;
  }
  .cbna-awards-body {
    padding: 2.25rem 1.5rem 4rem;
    gap: 2.5rem;
  }
  .cbna-awards-table th,
  .cbna-awards-table td {
    padding: 0.8rem 1.15rem;
  }
}

/* —— Concussion Policy —— */
body.page-concussion-policy .site-main {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.cbna-concussion-page {
  margin: 0;
}
.cbna-concussion-hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(200, 16, 46, 0.35), transparent 55%),
    linear-gradient(165deg, #0a0a0a 0%, #1a1a1a 45%, #0f0f0f 100%);
  color: var(--color-white);
  padding: 2.25rem 1.25rem 2rem;
  text-align: center;
  overflow: hidden;
}
.cbna-concussion-hero::before,
.cbna-concussion-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-red);
  z-index: 1;
}
.cbna-concussion-hero::before { top: 0; }
.cbna-concussion-hero::after { bottom: 0; }
.cbna-concussion-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.cbna-concussion-hero__logo {
  display: block;
  width: min(180px, 42vw);
  height: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45));
}
.cbna-concussion-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.cbna-concussion-hero__subtitle {
  margin: 0.65rem 0 0;
  font-size: 1.08rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}
.cbna-concussion-hero__school {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
}
.cbna-concussion-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
}
.cbna-concussion-definition {
  margin: 0;
  padding: 1.15rem 1.25rem;
  border-left: 4px solid var(--color-red);
  background: var(--color-offwhite);
  font-size: 1.08rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--color-text);
}
.cbna-concussion-section {
  margin-top: 2rem;
}
.cbna-concussion-section > h2,
.cbna-concussion-steps + .cbna-concussion-section h2 {
  margin: 0 0 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 3px solid var(--color-red);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--color-black);
}
.cbna-concussion-section > p,
.cbna-concussion-steps p {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-text);
}
.cbna-concussion-steps {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
  counter-reset: concussion-step;
}
.cbna-concussion-steps > li {
  padding: 1.15rem 1.15rem 1.15rem 1.25rem;
  border-top: 4px solid var(--color-red);
  background: var(--color-offwhite);
}
.cbna-concussion-steps h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--color-black);
}
.cbna-concussion-steps p:last-child {
  margin-bottom: 0;
}
.cbna-concussion-split {
  display: grid;
  gap: 1rem;
}
.cbna-concussion-list-block {
  padding: 1.1rem 1.15rem 1.2rem;
  background: var(--color-offwhite);
  border-top: 4px solid var(--color-black);
}
.cbna-concussion-list-block--urgent {
  border-top-color: var(--color-red);
}
.cbna-concussion-list-block h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--color-black);
}
.cbna-concussion-list-block--urgent h3 {
  color: var(--color-red);
}
.cbna-concussion-list-block ul {
  margin: 0;
  padding: 0 0 0 1.15rem;
}
.cbna-concussion-list-block li {
  margin: 0 0 0.45rem;
  line-height: 1.45;
}
.cbna-concussion-list-block li:last-child {
  margin-bottom: 0;
}
.cbna-concussion-protocol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.cbna-concussion-protocol li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  background: var(--color-offwhite);
  border-left: 4px solid var(--color-red);
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 600;
}
.cbna-concussion-protocol__num {
  flex: 0 0 auto;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--color-white);
  background: var(--color-red);
}
.cbna-concussion-refs ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cbna-concussion-refs li {
  margin: 0 0 0.75rem;
  padding-left: 0.9rem;
  border-left: 3px solid var(--color-border);
  font-size: 0.95rem;
  line-height: 1.55;
  color: #444;
}
.cbna-concussion-refs li:last-child {
  margin-bottom: 0;
}
@media (min-width: 760px) {
  .cbna-concussion-hero {
    padding: 2.85rem 1.5rem 2.5rem;
  }
  .cbna-concussion-hero__logo {
    width: 200px;
  }
  .cbna-concussion-body {
    padding: 2.5rem 1.5rem 4rem;
  }
  .cbna-concussion-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

/* —— NCAA Eligibility Guide —— */
body.page-ncaa-eligibility-guide .site-main {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.cbna-ncaa-page {
  margin: 0;
}
.cbna-ncaa-hero {
  position: relative;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(200, 16, 46, 0.35), transparent 55%),
    linear-gradient(165deg, #0a0a0a 0%, #1a1a1a 45%, #0f0f0f 100%);
  color: var(--color-white);
  padding: 2.25rem 1.25rem 2rem;
  text-align: center;
  overflow: hidden;
}
.cbna-ncaa-hero::before,
.cbna-ncaa-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-red);
  z-index: 1;
}
.cbna-ncaa-hero::before { top: 0; }
.cbna-ncaa-hero::after { bottom: 0; }
.cbna-ncaa-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.cbna-ncaa-hero__logo {
  display: block;
  width: min(180px, 42vw);
  height: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45));
}
.cbna-ncaa-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.45rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-white);
}
.cbna-ncaa-hero__lede {
  margin: 0.75rem 0 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}
.cbna-ncaa-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
}
.cbna-ncaa-cta {
  text-align: center;
  padding: 1.5rem 1.25rem;
  border-top: 4px solid var(--color-red);
  background: var(--color-offwhite);
}
.cbna-ncaa-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-black);
}
.cbna-ncaa-cta p {
  margin: 0.65rem auto 1.25rem;
  max-width: 34rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--color-muted);
}
.cbna-ncaa-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-white) !important;
  background: var(--color-red);
  border: 1px solid var(--color-red);
}
.cbna-ncaa-cta__button:hover,
.cbna-ncaa-cta__button:focus-visible {
  background: var(--color-red-hover);
  border-color: var(--color-red-hover);
  color: var(--color-white) !important;
}
@media (min-width: 768px) {
  .cbna-ncaa-hero {
    padding: 2.85rem 1.5rem 2.5rem;
  }
  .cbna-ncaa-hero__logo {
    width: 200px;
  }
  .cbna-ncaa-body {
    padding: 2.5rem 1.5rem 4rem;
  }
}

.team-roster-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin: 0 0 0.85rem;
}
.team-roster-toolbar h2 {
  margin: 0;
}
.team-roster-print-btn {
  appearance: none;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
}
.team-roster-print-btn:hover,
.team-roster-print-btn:focus-visible {
  background: #7e1217;
  border-color: #7e1217;
  color: #fff;
}
.team-roster-print-sheet,
.team-roster-print-table {
  display: none;
}

@media print {
  @page {
    margin: 0.6in;
  }
  body {
    background: #fff !important;
    color: #000 !important;
  }
  .site-header,
  .site-footer,
  .team-page-hero,
  .hof-page-hero,
  .team-meta-row,
  .team-picker,
  .team-subnav,
  .team-get-alerts,
  .team-roster-print-btn,
  .team-roster-cards,
  .mobile-nav-toggle,
  .cbna-staff-jump-nav {
    display: none !important;
  }
  .site-main {
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .team-page-wrap,
  .team-content,
  .team-panel {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }
  .team-roster-toolbar h2 {
    display: none;
  }
  .team-roster-print-sheet {
    display: block !important;
    margin: 0 0 0.85rem;
  }
  .team-roster-print-sheet__school {
    margin: 0 0 0.2rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .team-roster-print-sheet__title {
    margin: 0 0 0.35rem;
    font-size: 1.45rem;
    font-weight: 900;
  }
  .team-roster-print-sheet__meta {
    margin: 0 0 0.75rem;
    font-size: 0.98rem;
  }
  .team-roster-print-table {
    display: table !important;
    width: 100%;
    border-collapse: collapse;
    font-size: 12pt;
  }
  .team-roster-print-table th,
  .team-roster-print-table td {
    border: 1px solid #222;
    padding: 0.35rem 0.5rem;
    text-align: left;
    vertical-align: top;
  }
  .team-roster-print-table th {
    background: #f0f0f0;
    font-weight: 800;
  }
  .team-roster-print-table td:first-child,
  .team-roster-print-table th:first-child {
    width: 3.5rem;
    text-align: center;
  }
  .team-roster-print-table td:last-child,
  .team-roster-print-table th:last-child {
    width: 5rem;
    text-align: center;
  }
}
