:root {
  /* Brand colors */
  --moa-red: #b3202d;
  --moa-red-dark: #8d1722;
  --moa-red-soft: #f8e8ea;

  /* Neutrals */
  --moa-black: #111111;
  --moa-ink: #172033;
  --moa-muted: #5f6b7a;
  --moa-border: #d9dee7;
  --moa-gray: #f4f6f9;
  --moa-gray-2: #edf1f6;
  --moa-white: #ffffff;

  /* Shared lighter hero colors */
  --moa-hero-left: #7f2f3a;
  --moa-hero-mid: #9b3b45;
  --moa-hero-right: #b8525b;

  /* Layout */
  --max-width: 1120px;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(15, 23, 42, .12);
}

/* =========================================================
   01. Base / Reset
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--moa-ink);
  background: var(--moa-white);
  line-height: 1.6;
  opacity: 0;
  transition: opacity 220ms ease-in-out;
}

body.page-ready {
  opacity: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--moa-red-dark);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--moa-red);
}

/* =========================================================
   02. Global Transitions
   ========================================================= */

a,
.button,
.card,
.resource-list a,
.minutes-list a,
.site-nav a {
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

/* =========================================================
   03. Layout Helpers
   ========================================================= */

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.inner-page {
  background: #fff;
}

.page-section {
  padding: 4.2rem 0;
}

.page-section-tight {
  padding: 2.7rem 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -.05em;
}

.section-intro p {
  margin: 0;
  color: var(--moa-muted);
}

.two-column {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr;
  gap: 1.5rem;
  align-items: start;
}

/* =========================================================
   04. Header / Navigation
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--moa-border);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-decoration: none;
  color: var(--moa-ink);
}

.site-brand img {
  width: 74px;
  height: auto;
}

.brand-kicker {
  display: block;
  font-size: .68rem;
  letter-spacing: .2em;
  color: var(--moa-red);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.brand-name {
  display: block;
  font-size: 1.38rem;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.04em;
  color: var(--moa-black);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .25rem;
  flex-wrap: nowrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: .72rem .88rem;
  border-radius: 999px;
  color: var(--moa-ink);
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--moa-red);
  color: var(--moa-white);
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: .65rem .9rem;
  background: var(--moa-red);
  color: #fff;
  font-weight: 900;
}

/* =========================================================
   05. Buttons / Labels / Shared Components
   ========================================================= */

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin: 0 0 .85rem;
  color: var(--moa-red);
  font-weight: 900;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .78rem 1.1rem;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}

.button-primary {
  background: var(--moa-red);
  color: #fff;
}

.button-primary:hover {
  background: var(--moa-red-dark);
  color: #fff;
}

.button-secondary {
  background: #fff;
  color: var(--moa-ink);
}

.button-secondary:hover {
  background: var(--moa-gray);
  color: var(--moa-red-dark);
}

.button-outline {
  background: transparent;
  border-color: var(--moa-border);
  color: var(--moa-ink);
}

.button-outline:hover {
  border-color: var(--moa-red);
  color: var(--moa-red);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.7rem;
}

/* =========================================================
   06. Cards / Grids / Lists
   ========================================================= */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cards-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

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

.card,
.content-block,
.utility-block {
  background: #fff;
  border: 1px solid var(--moa-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15,23,42,.07);
}

.card {
  padding: 1.35rem;
}

.content-block {
  padding: 2rem;
}

.card:hover,
.resource-list a:hover,
.minutes-list a:hover {
  transform: translateY(-2px);
}

.card h3 {
  margin: .35rem 0 .4rem;
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.card p {
  color: var(--moa-muted);
  margin: 0 0 1rem;
}

.card .tag {
  color: var(--moa-red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .68rem;
}

.card-link {
  display: inline-flex;
  margin-top: .5rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}

.card-link-list {
  display: grid;
  gap: .55rem;
  margin-top: 1rem;
}

.card-link-list a {
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  color: var(--moa-red-dark);
}

.card-link-list a:hover {
  color: var(--moa-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.resource-list,
.minutes-list {
  display: grid;
  gap: .75rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.resource-list a,
.minutes-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .95rem 1rem;
  border: 1px solid var(--moa-border);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  font-weight: 500;
  color: var(--moa-ink);
}

.resource-list a span:first-child,
.minutes-list a span:first-child {
  color: var(--moa-ink);
  font-weight: 500;
}

.resource-action,
.resource-list a span:last-child,
.minutes-list a span:last-child {
  color: var(--moa-red-dark);
  font-weight: 600;
  white-space: nowrap;
}

.resource-list a:hover,
.minutes-list a:hover {
  border-color: var(--moa-red);
  box-shadow: 0 10px 20px rgba(179,32,45,.09);
}

/* =========================================================
   07. Hero Sections
   ========================================================= */

.page-hero {
  background: linear-gradient(
    135deg,
    var(--moa-hero-left) 0%,
    var(--moa-hero-mid) 48%,
    var(--moa-hero-right) 100%
  );
  color: #fff;
  padding: 3.75rem 0;
  border-bottom: 4px solid var(--moa-red);
}

.page-hero-large {
  padding: 4.5rem 0;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -.01em;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.88);
  font-size: 1.12rem;
}

.page-hero .eyebrow {
  color: #fff;
}

.basketball-hero,
.football-hero {
  background: linear-gradient(
    135deg,
    var(--moa-hero-left) 0%,
    var(--moa-hero-mid) 48%,
    var(--moa-hero-right) 100%
  );
}

/* =========================================================
   08. Homepage
   ========================================================= */

.home-hero {
  background: linear-gradient(
      135deg,
      rgba(17,17,17,.94),
      rgba(141,23,34,.9)
    ),
    url('../images/placeholders/home-hero.svg') center/cover;
  color: #fff;
  padding: 5rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .75fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-card {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.09);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.quick-list {
  display: grid;
  gap: .75rem;
}

.quick-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: .8rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
}

.quick-list a:hover {
  background: rgba(255,255,255,.18);
}

.home-hero .eyebrow {
  color: #ffd8dc;
}

.home-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.3rem);
  line-height: .94;
  letter-spacing: -.07em;
  max-width: 760px;
}

.home-hero p {
  max-width: 680px;
  margin: 1.2rem 0 0;
  font-size: 1.18rem;
  color: rgba(255,255,255,.9);
}

.home-hero-simple {
  background: linear-gradient(
    135deg,
    var(--moa-hero-left) 0%,
    var(--moa-hero-mid) 48%,
    var(--moa-hero-right) 100%
  );
  color: #fff;
  padding: 3.75rem 0;
}

.home-hero-simple .hero-content {
  max-width: 760px;
  padding: 0;
}

.home-hero-simple .eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(179,32,45,.92);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  padding: .4rem .75rem;
  color: #fff;
}

.home-hero-simple h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 5.4vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -.01em;
  max-width: 820px;
}

.home-hero-simple p {
  margin: 0 0 1.5rem;
  max-width: 650px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  color: rgba(255,255,255,.92);
}

.home-hero-simple .hero-actions {
  margin-top: 0;
}

.split-section {
  background: linear-gradient(180deg, var(--moa-gray) 0%, #fff 100%);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.feature-card {
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--moa-border);
  box-shadow: var(--shadow);
}

.feature-card img {
  border-radius: 14px;
  margin-bottom: 1rem;
}

.calendar-placeholder,
.embed-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--moa-gray);
  border: 2px dashed var(--moa-border);
  border-radius: 16px;
  color: var(--moa-muted);
}

.info-band {
  background: linear-gradient(135deg, var(--moa-red-dark), var(--moa-red));
  color: #fff;
}

.info-band .card {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}

.info-band .card p,
.info-band .card a {
  color: rgba(255,255,255,.88);
}

.info-band .card h3 {
  color: #fff;
}

/* =========================================================
   09. Homepage Objective / Leadership Section
   ========================================================= */

.objective-section {
  background: linear-gradient(
    135deg,
    var(--moa-hero-left) 0%,
    var(--moa-hero-mid) 48%,
    var(--moa-hero-right) 100%
  );
  color: #fff;
}

.objective-section .eyebrow {
  color: rgba(255,255,255,.88);
}

.objective-copy {
  max-width: 980px;
  margin-bottom: 2.5rem;
}

.objective-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -.015em;
}

.objective-copy p {
  max-width: 1000px;
  margin: 0 0 1.25rem;
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
  line-height: 1.65;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 1rem;
}

.leadership-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 16px 38px rgba(15,23,42,.12);
}

.leadership-card h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.15;
}

.leadership-card h3 span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  opacity: .9;
}

.leadership-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.leadership-card li {
  margin: 0 0 .55rem;
  color: rgba(255,255,255,.92);
  font-size: .98rem;
  line-height: 1.35;
}

.leadership-card a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.leadership-card a:hover {
  color: #ffd8dc;
}

.leadership-card li span {
  color: rgba(255,255,255,.82);
}

.leader-role {
  display: inline-block;
  margin-right: .35rem;
  color: rgba(255,255,255,.9);
}

/* =========================================================
   10. Inner Page Content
   ========================================================= */

.content-block h2:first-child,
.utility-block h1:first-child {
  margin-top: 0;
}

.callout {
  background: var(--moa-red-soft);
  border-left: 5px solid var(--moa-red);
  padding: 1.25rem;
  border-radius: 14px;
}

.hub-actions {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.utility-block {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem;
}

.utility-content {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--moa-border);
}

/* =========================================================
   11. Sport Pages
   ========================================================= */

.sport-page .page-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-top: 1px solid rgba(15, 23, 42, .04);
}

.sport-page .page-section-tight {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.sport-page .page-section:first-of-type {
  border-top: 0;
}

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

.sport-section-white {
  background: #fff;
}

.sport-section-alt {
  background: linear-gradient(
    180deg,
    #f5f7fa 0%,
    #f8fafc 100%
  );
}

.sport-page .content-block h2 {
  margin-top: 0;
}

.sport-page .hub-actions {
  grid-template-columns: repeat(2, 1fr);
}

.sport-page .cards-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

/* =========================================================
   12. Sport Photo Slideshow
   ========================================================= */

.basketball-intro-grid {
  align-items: stretch;
}

.sport-image-card {
  padding: 0;
  overflow: hidden;
}

.officials-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111827;
}

.slideshow-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
  object-position: center 10%;
}

.slide img.slide-img-position-top {
  object-position: center 18%;
}

.slideshow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, .72);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  transition: background .2s ease, transform .2s ease;
}

.slideshow-arrow:hover {
  background: rgba(15, 23, 42, .9);
  transform: translateY(-50%) scale(1.04);
}

.slideshow-arrow-prev {
  left: 1rem;
}

.slideshow-arrow-next {
  right: 1rem;
}

.slideshow-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: .45rem;
  z-index: 4;
}

.slideshow-dots .dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .55);
  cursor: pointer;
  padding: 0;
}

.slideshow-dots .dot.active {
  background: #fff;
}

/* =========================================================
   13. State Tournament Officials
   ========================================================= */

.state-tournament-grid {
  align-items: start;
}

.state-tournament-card {
  height: 100%;
}

.officials-list {
  columns: 2;
  column-gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.officials-list li {
  break-inside: avoid;
  margin: 0 0 .45rem;
  color: var(--moa-ink);
  font-weight: 550;
  line-height: 1.35;
}
/* Football State Tournament Crew Recognition */
.football-state-section .section-intro {
  margin-bottom: 1rem;
}

.football-state-intro {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.football-state-intro p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-ink);
  margin: 0;
}

.football-crew-showcase {
  display: grid;
  gap: 3.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.football-crew-card {
  text-align: center;
}

.football-crew-card img {
  display: block;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  border-radius: 14px;
  border: 3px solid #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  object-fit: cover;
}

.football-crew-content {
  max-width: 700px;
  margin: 1rem auto 0;
}

.football-crew-content h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--color-ink);
}

.football-crew-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-muted);
}

@media (max-width: 700px) {
  .football-crew-showcase {
    gap: 2.5rem;
  }

  .football-crew-card img {
    border-radius: 12px;
  }

  .football-crew-content h3 {
    font-size: 1.02rem;
  }
}
/* =========================================================
   14. Page-Specific: Join MOA
   ========================================================= */

.join-moa-page {
  max-width: 960px;
}

.join-moa-page h1 {
  font-size: clamp(2.5rem, 4.2vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -.015em;
  margin-bottom: 1.75rem;
}

.join-moa-page p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--moa-black);
  margin: 0 0 1.35rem;
}

.join-moa-page .utility-content {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.join-moa-page a {
  font-weight: 700;
}

.join-moa-actions {
  margin-top: 2rem;
}

/* =========================================================
   15. Page-Specific: Gear
   ========================================================= */

.gear-page {
  max-width: 980px;
  margin: 0 auto;
}

.gear-copy {
  margin-bottom: 1.75rem;
}

.gear-page h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -.015em;
  margin: 0 0 1.4rem;
  color: var(--moa-ink);
}

.gear-page p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--moa-black);
  margin: 0 0 1.2rem;
}

.gear-intro {
  font-weight: 800;
}

.gear-feature {
  margin: 1.75rem auto 2rem;
  display: flex;
  justify-content: center;
}

.gear-feature-link {
  display: block;
  width: min(100%, 760px);
  text-decoration: none;
}

.gear-feature img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
}

.gear-note {
  margin-top: 2rem;
}

.gear-note h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.gear-note p {
  margin-bottom: 0;
}

/* =========================================================
   16. Page-Specific: FAQ
   ========================================================= */

.faq-page {
  max-width: 980px;
  margin: 0 auto;
}

.faq-intro {
  margin-bottom: 1.75rem;
}

.faq-intro h2 {
  margin: 0 0 .75rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}

.faq-intro p {
  margin: 0;
  color: var(--moa-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: .85rem;
}

.faq-item {
  border: 1px solid var(--moa-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 900;
  color: var(--moa-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--moa-red-soft);
  color: var(--moa-red-dark);
  font-weight: 900;
}

.faq-item[open] summary {
  color: var(--moa-red-dark);
  border-bottom: 1px solid var(--moa-border);
}

.faq-item[open] summary::after {
  content: "–";
  background: var(--moa-red);
  color: #fff;
}

.faq-answer {
  padding: 1rem 1.15rem 1.15rem;
}

.faq-answer p {
  margin: 0 0 .85rem;
  color: var(--moa-black);
  line-height: 1.65;
}

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

.faq-section-heading {
  margin: 2rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--moa-border);
}

.faq-section-heading h2 {
  margin: 0 0 .35rem;
  font-size: 1.6rem;
  letter-spacing: -.02em;
}

.faq-section-heading p {
  margin: 0;
  color: var(--moa-muted);
}

.faq-callout {
  margin-top: 2rem;
}

.faq-callout h2 {
  margin-top: 0;
  font-size: 1.4rem;
}

.faq-callout p {
  margin-bottom: 1rem;
}

/* =========================================================
   17. Page-Specific: NASO
   ========================================================= */

.naso-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: start;
}

.naso-flyer-card {
  position: sticky;
  top: 110px;
}

.naso-flyer-card a {
  display: block;
  text-decoration: none;
}

.naso-flyer-card img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--moa-border);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
}

.naso-flyer-caption {
  margin: .85rem 0 0;
  color: var(--moa-muted);
  font-size: .95rem;
  text-align: center;
}

.naso-content {
  background: #fff;
  border: 1px solid var(--moa-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .07);
  padding: 2rem;
}

.naso-content h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--moa-ink);
}

.naso-content h2:not(:first-child) {
  margin-top: 2rem;
}

.naso-content p {
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--moa-black);
}

.naso-content a {
  font-weight: 700;
}

.naso-contact-card {
  margin: 1.5rem 0;
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid var(--moa-border);
  background: var(--moa-gray);
}

.naso-contact-card h3 {
  margin: 0 0 .75rem;
  font-size: 1.25rem;
  color: var(--moa-ink);
}

.naso-contact-card p {
  margin-bottom: .5rem;
}

.naso-benefit-group {
  margin: 1.2rem 0;
}

.naso-benefit-group h3 {
  margin: 0 0 .35rem;
  font-size: 1.15rem;
  color: var(--moa-ink);
}

.naso-benefit-group ul {
  margin: .35rem 0 0;
  padding-left: 1.25rem;
}

.naso-benefit-group li {
  margin-bottom: .4rem;
  line-height: 1.55;
}

.naso-note {
  margin-top: 2rem;
}

.naso-note h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.naso-note p {
  margin-bottom: 0;
}

/* =========================================================
   18. Video Catalog Starter
   ========================================================= */

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.video-card {
  overflow: hidden;
}

.video-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1f2937, var(--moa-red-dark));
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
}

/* =========================================================
   19. Narrow Resource Blocks
   ========================================================= */

.narrow-resource-block {
  max-width: 550px;
}

/* =========================================================
   20. Footer
   ========================================================= */

.site-footer {
  background: #101010;
  color: #fff;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-logo {
  width: 82px;
  margin-bottom: .8rem;
}

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
}

.site-footer a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  display: block;
  margin: .35rem 0;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.65);
  font-size: .9rem;
}
/* =========================================================
   22. News Feature
   ========================================================= */

.news-feature-section {
  background: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--moa-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.news-card:hover {
  transform: translateY(-2px);
  border-color: rgba(179, 32, 45, .45);
  box-shadow: 0 16px 36px rgba(15, 23, 42, .11);
}

.news-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--moa-red-dark), var(--moa-red));
  text-decoration: none;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: #fff;
  font-weight: 900;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  text-align: center;
}

.news-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .7rem;
  color: var(--moa-red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.news-card-meta time {
  color: var(--moa-muted);
  white-space: nowrap;
}

.news-card h3 {
  margin: 0 0 .55rem;
  color: var(--moa-ink);
  font-size: 1.25rem;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.news-card p {
  margin: 0 0 1rem;
  color: var(--moa-muted);
  line-height: 1.55;
}

.news-card .card-link {
  margin-top: auto;
}

.news-empty {
  grid-column: 1 / -1;
  padding: 1.5rem;
  background: var(--moa-gray);
  border: 1px dashed var(--moa-border);
  border-radius: var(--radius);
  text-align: center;
}

.news-empty h3 {
  margin: 0 0 .4rem;
}

.news-empty p {
  margin: 0;
  color: var(--moa-muted);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

/* News Archive Page */

.news-archive-layout {
  display: grid;
  gap: 1.1rem;
}

.news-archive-layout .news-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* =========================================================
   22. News Feature / News Builder
   ========================================================= */

.news-feature-section {
  background: #fff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.news-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--moa-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.news-card:hover {
  transform: translateY(-2px);
  border-color: rgba(179, 32, 45, .45);
  box-shadow: 0 16px 36px rgba(15, 23, 42, .11);
}

.news-card-media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--moa-red-dark), var(--moa-red));
  text-decoration: none;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.news-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: #fff;
  font-weight: 900;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  text-align: center;
}

.news-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .7rem;
  color: var(--moa-red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.news-card-meta time {
  color: var(--moa-muted);
  white-space: nowrap;
}

.news-card h3 {
  margin: 0 0 .55rem;
  color: var(--moa-ink);
  font-size: 1.25rem;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.news-card p {
  margin: 0 0 1rem;
  color: var(--moa-muted);
  line-height: 1.55;
}

.news-card .card-link {
  margin-top: auto;
}

.news-empty {
  grid-column: 1 / -1;
  padding: 1.5rem;
  background: var(--moa-gray);
  border: 1px dashed var(--moa-border);
  border-radius: var(--radius);
  text-align: center;
}

.news-empty h3 {
  margin: 0 0 .4rem;
}

.news-empty p {
  margin: 0;
  color: var(--moa-muted);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.news-archive-layout {
  display: grid;
  gap: 1.1rem;
}

.news-archive-layout .news-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* News Article Pages */

.page-hero-compact {
  padding: 3.2rem 0;
}

.news-article-back {
  margin-bottom: 1.25rem;
}

.news-article {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--moa-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}

.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-bottom: 1.25rem;
  color: var(--moa-muted);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.news-article-type {
  color: var(--moa-red);
}

.news-article-hero-media,
.news-article-inline-media {
  margin: 1.2rem 0;
}

.news-article-hero-image,
.news-article-inline-image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--moa-border);
  box-shadow: 0 14px 32px rgba(15, 23, 42, .11);
}

.news-article-body {
  margin-top: 1.4rem;
}

.news-article-body p {
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--moa-black);
}

.news-article-body h2 {
  margin: 2rem 0 .75rem;
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.news-article-body h3 {
  margin: 1.6rem 0 .65rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.news-article-body ul,
.news-article-body ol {
  margin: 0 0 1.2rem;
  padding-left: 1.35rem;
}

.news-article-body li {
  margin-bottom: .45rem;
  line-height: 1.65;
}

.news-article-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--moa-border);
}

/* News Builder */

.news-builder-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.news-builder-heading {
  margin-bottom: 1.75rem;
}

.news-builder-heading h1 {
  margin: 0 0 .75rem;
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--moa-ink);
}

.news-builder-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--moa-muted);
}

.news-builder-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
  gap: 1.5rem;
  align-items: start;
}

.news-builder-panel,
.news-builder-output-card {
  background: #fff;
  border: 1px solid var(--moa-border);
  border-radius: var(--radius);
  box-shadow: 0 14px 35px rgba(15, 23, 42, .08);
  padding: 1.4rem;
}

.news-builder-panel {
  box-shadow: none;
  border-color: transparent;
  padding-left: 0;
}

.news-builder-panel h2,
.news-builder-output-card h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  line-height: 1.15;
}

.news-builder-form {
  display: grid;
  gap: .95rem;
}

.builder-field {
  display: grid;
  gap: .35rem;
}

.builder-field label {
  color: var(--moa-ink);
  font-weight: 900;
  font-size: .92rem;
}

.builder-field input,
.builder-field textarea,
.builder-field select {
  width: 100%;
  min-height: 46px;
  padding: .8rem .9rem;
  border: 1px solid var(--moa-border);
  border-radius: 12px;
  font: inherit;
  color: var(--moa-ink);
  background: #fff;
}

.builder-field textarea {
  min-height: 96px;
  resize: vertical;
}

.builder-help {
  margin: .15rem 0 0;
  color: var(--moa-muted);
  font-size: .86rem;
}

.builder-file-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .6rem;
}

.builder-small-button {
  min-height: 46px;
  white-space: nowrap;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding: .65rem;
  border: 1px solid var(--moa-border);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: var(--moa-gray);
}

.editor-btn,
.editor-select {
  min-height: 34px;
  border: 1px solid var(--moa-border);
  border-radius: 8px;
  background: #fff;
  color: var(--moa-ink);
  font-weight: 800;
  font-size: .82rem;
  padding: .35rem .55rem;
  cursor: pointer;
}

.editor-select {
  min-width: 86px;
}

.editor-btn:hover,
.editor-select:hover {
  border-color: var(--moa-red);
}

.article-body-editor {
  min-height: 260px;
  padding: 1rem;
  border: 1px solid var(--moa-border);
  border-radius: 0 0 14px 14px;
  background: #fff;
  color: var(--moa-black);
  outline: none;
  line-height: 1.7;
}

.article-body-editor:focus {
  border-color: var(--moa-red);
  box-shadow: 0 0 0 3px rgba(179, 32, 45, .12);
}

.article-body-editor p {
  margin: 0 0 1rem;
}

.article-body-editor h2,
.article-body-editor h3 {
  margin: 1rem 0 .5rem;
  line-height: 1.15;
}

.builder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .35rem;
}

.news-builder-output-stack {
  display: grid;
  gap: 1rem;
}

.builder-output-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .75rem;
}

.builder-output-heading h2 {
  margin: 0;
}

.builder-output-heading button {
  border: 0;
  background: transparent;
  color: var(--moa-red-dark);
  font-weight: 900;
  cursor: pointer;
}

.news-builder-output-card textarea {
  width: 100%;
  min-height: 150px;
  padding: .9rem;
  border: 1px solid var(--moa-border);
  border-radius: 12px;
  resize: vertical;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: .82rem;
  line-height: 1.5;
  color: var(--moa-ink);
  background: #fff;
}

#htmlOutput {
  min-height: 420px;
}

@media (max-width: 1000px) {
  .news-builder-grid {
    grid-template-columns: 1fr;
  }

  .news-builder-panel {
    padding-left: 1.4rem;
    border-color: var(--moa-border);
    box-shadow: 0 14px 35px rgba(15, 23, 42, .08);
  }
}

@media (max-width: 900px) {
  .news-grid,
  .news-archive-layout .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: .25rem;
  }
}

@media (max-width: 640px) {
  .builder-file-row {
    grid-template-columns: 1fr;
  }

  .news-article {
    padding: 1.25rem;
  }
}
/* =========================================================
   21. Responsive
   ========================================================= */

@media (max-width: 1060px) {
  .header-inner {
    flex-wrap: wrap;
    padding: .75rem 0;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: .35rem;
  }

  .site-nav a {
    flex: 0 0 auto;
  }
}

@media (max-width: 900px) {
  .leadership-grid,
  .naso-layout,
  .basketball-intro-grid {
    grid-template-columns: 1fr;
  }

  .naso-flyer-card {
    position: static;
    max-width: 620px;
    margin: 0 auto;
  }

  .officials-slideshow,
  .slideshow-track,
  .slide img {
    min-height: 260px;
  }
}

@media (max-width: 800px) {
  .hero-grid,
  .section-intro,
  .feature-grid,
  .two-column,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .cards-grid.three,
  .cards-grid.two,
  .video-grid,
  .hub-actions,
  .sport-page .hub-actions,
  .sport-page .cards-grid.two {
    grid-template-columns: 1fr;
  }

  .home-hero,
  .home-hero-simple,
  .page-hero,
  .page-hero-large {
    padding: 3rem 0;
  }

  .site-brand img {
    width: 62px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .page-section,
  .sport-page .page-section {
    padding: 3rem 0;
  }

  .sport-page .page-section-tight {
    padding: 3rem 0;
  }

  .gear-page h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .gear-feature-link {
    width: 100%;
  }

  .gear-feature img {
    border-radius: 10px;
  }

  .faq-item summary {
    align-items: flex-start;
  }

  .resource-list a,
  .minutes-list a {
    grid-template-columns: 1fr;
    gap: .35rem;
  }

  .resource-action,
  .resource-list a span:last-child,
  .minutes-list a span:last-child {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .officials-list {
    columns: 1;
  }
}