/* 2 Triple B FM — public website (MiE-inspired Valley Broadcast) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-radius: 0 !important; }

:root {
  --cream: #fff8e8;
  --navy: #1a2d4a;
  --blue: #3a6575;
  --green: #649256;
  --shell: #446371;
  --green-light: #d4e8c4;
  --sun: #f7df4b;
  --honey: #ffe08a;
  --blush: #ffc5d1;
  --text-on-dark: #fff8e8;
  --text-on-light: #141414;
  --ink: #141414;
  --muted: #4a5f66;
  --link: var(--navy);
  --link-hover: var(--green);
  --border: 0.2rem solid var(--ink);
  --border-thin: 2px solid var(--ink);
  --shadow: 4px 4px 0 var(--ink);
  --shadow-sm: 2px 2px 0 var(--ink);
  --text-body: 1rem;
  --text-cms-small: 0.75rem;
  --text-cms-large: 1.75rem;
  --font-body-emphasis: "Space Grotesk", Arial, sans-serif;
  --section-padding-y: 2rem;
  --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --noise-tile-size: 80px;
  --noise-strong-opacity: 0.14;
  --noise-strong-opacity-dark: 0.1;
  --noise-strong-opacity-light: 0.16;
  /* legacy aliases */
  --bg: var(--cream);
  --paper: var(--cream);
  --surface: var(--cream);
  --surface-alt: var(--honey);
  --header-bg: var(--cream);
  --accent: var(--green);
  --accent-orange: var(--green);
  --accent-blue: var(--blue);
  --accent-pink: var(--blush);
  --accent-purple: var(--navy);
  --accent-green: var(--green);
  --accent-yellow: var(--sun);
  --accent-cream-glow: var(--honey);
  --hero-gradient-start: rgba(26, 45, 74, 0.9);
  --hero-gradient-mid: rgba(58, 101, 117, 0.5);
  --hero-gradient-end: transparent;
  --warning: var(--green);
  --danger: #b00020;
  --text: var(--ink);
  --heading: var(--ink);
  --secondary: var(--link);
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: multiply;
  z-index: 9999;
  background-image: var(--noise);
  background-repeat: repeat;
  background-size: 100px 100px;
}

/* Colour-block grain texture (stronger than page overlay) */
.surface-textured {
  position: relative;
}

.surface-textured::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: var(--noise);
  background-repeat: repeat;
  background-size: var(--noise-tile-size) var(--noise-tile-size);
  opacity: var(--noise-strong-opacity);
  mix-blend-mode: multiply;
}

.surface-textured--dark::after {
  opacity: var(--noise-strong-opacity-dark);
  mix-blend-mode: soft-light;
}

.surface-textured--light::after {
  opacity: var(--noise-strong-opacity-light);
  mix-blend-mode: multiply;
}

.surface-textured > * {
  position: relative;
  z-index: 2;
}

body.has-player-dock {
  --player-dock-height: 4.75rem;
  padding-bottom: var(--player-dock-height);
}

body.has-player-dock.player-dock-collapsed {
  --player-dock-height: 3.25rem;
}

h1, h2, h3, h4, .heading {
  font-family: "Space Grotesk", "Arial Black", Arial, sans-serif;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); }

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 10002;
  padding: 0.5rem 0.75rem;
  background: var(--sun);
  color: var(--ink);
  font-weight: 700;
  border: var(--border-thin);
  box-shadow: var(--shadow-sm);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}

.error-page {
  max-width: 36rem;
  margin: 2.5rem 0 4rem;
}

.error-page h1 {
  margin-bottom: 0.75rem;
}

.error-page .btn {
  margin-top: 0.5rem;
}

/* Site shell — sticky player + header stack */
.site-shell {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: var(--border);
  box-shadow: none;
  background: var(--cream);
}

/* Top stream player */
.stream-player {
  position: relative;
  overflow: hidden;
  background: var(--shell);
  color: var(--text-on-dark);
  border-bottom: var(--border-thin);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.stream-player::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: var(--noise);
  background-repeat: repeat;
  background-size: var(--noise-tile-size) var(--noise-tile-size);
  opacity: var(--noise-strong-opacity-dark);
  mix-blend-mode: soft-light;
}
.stream-player > * {
  position: relative;
  z-index: 2;
}
.player-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  /* Block-only padding so .container keeps its side gutters on narrow screens */
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  flex-wrap: nowrap;
}
.player-btn.player-btn-listen {
  width: auto;
  height: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0 0.75rem;
  gap: 0.4rem;
  font-size: 0.75rem;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.player-listen-label {
  white-space: nowrap;
}
.player-btn-listen .player-icon-pause {
  display: none;
}
.player-btn-listen.is-live-active .player-icon-play {
  display: none;
}
.player-btn-listen.is-live-active .player-icon-pause {
  display: inline;
}
.player-btn-ondemand-play .player-icon-pause {
  display: none;
}
.player-btn-ondemand-play.is-playing .player-icon-play {
  display: none;
}
.player-btn-ondemand-play.is-playing .player-icon-pause {
  display: inline;
}
.player-btn-listen.is-live-active {
  background: var(--green);
  color: var(--text-on-dark);
}
.player-btn-listen.is-live-active:hover {
  background: var(--sun);
  color: var(--text-on-light);
}
.player-live-status {
  flex: 1;
  min-width: 0;
}
.player-ondemand-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  flex: 1;
  min-width: 0;
}
.player-ondemand-strip[hidden] {
  display: none !important;
}
.player-bar-utils {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
}
.player-eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 1.35rem;
  flex-shrink: 0;
  padding: 0 0.15rem;
  opacity: 0.35;
  transition: opacity 0.2s ease;
}
.player-eq.is-active {
  opacity: 1;
}
.player-eq span {
  display: block;
  width: 3px;
  height: 35%;
  background: var(--sun);
  box-shadow: 1px 1px 0 var(--ink);
  transform-origin: bottom center;
  animation: none;
}
.player-eq.is-active span {
  animation: player-eq-bounce 0.9s ease-in-out infinite;
}
.player-eq.is-active span:nth-child(1) { animation-duration: 0.75s; animation-delay: -0.1s; }
.player-eq.is-active span:nth-child(2) { animation-duration: 0.95s; animation-delay: -0.35s; }
.player-eq.is-active span:nth-child(3) { animation-duration: 0.7s; animation-delay: -0.55s; }
.player-eq.is-active span:nth-child(4) { animation-duration: 1.05s; animation-delay: -0.2s; }
.player-eq.is-active span:nth-child(5) { animation-duration: 0.8s; animation-delay: -0.45s; }
.player-eq.is-active span:nth-child(6) { animation-duration: 0.9s; animation-delay: -0.05s; }
.player-eq.is-active span:nth-child(7) { animation-duration: 0.85s; animation-delay: -0.6s; }
@keyframes player-eq-bounce {
  0%, 100% { height: 22%; }
  35% { height: 100%; }
  70% { height: 45%; }
}
@media (prefers-reduced-motion: reduce) {
  .player-eq.is-active span {
    animation: none;
    height: 55%;
  }
}
.player-station-select {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
}
button.player-station-badge {
  appearance: none;
  cursor: pointer;
}
.player-station-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  background: var(--surface);
  border: var(--border-thin);
  color: var(--ink);
  padding: 0.2rem 0.45rem;
  font-size: 0.6875rem;
  font-weight: 700;
  font-family: "Space Grotesk", Arial, sans-serif;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
  line-height: 1.2;
}
.player-station-badge:hover {
  background: var(--blush);
  color: var(--text-on-light);
  transform: none;
  box-shadow: none;
}
.player-station-badge.is-active {
  background: var(--sun);
  color: var(--text-on-light);
}
.player-status {
  flex: 1;
  min-width: 0;
  font-size: 0.8125rem;
  line-height: 1.35;
}
.player-now-playing .show-on-air {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sun);
  line-height: 1.2;
}
.player-now-playing .show-name {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-now-playing .show-song {
  font-size: 0.75rem;
  color: rgba(255, 248, 232, 0.82);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-now-playing .show-meta {
  font-size: 0.75rem;
  color: rgba(255, 248, 232, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-now-playing a,
.player-now-playing .show-link {
  color: inherit;
  text-decoration: none;
}
.player-now-playing a:hover { color: var(--link); }
.stream-player .player-unavailable {
  font-size: 0.8125rem;
  color: rgba(255, 248, 232, 0.78);
}

/* On-demand strip in header player */
.stream-player.is-ondemand .player-live-status {
  display: none;
}
.player-ondemand-photo {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
  border: var(--border-thin);
  border-color: rgba(255, 248, 232, 0.55);
  flex-shrink: 0;
  background: rgba(255, 248, 232, 0.12);
}
.player-ondemand-photo[hidden] {
  display: none !important;
}
.player-ondemand-meta {
  min-width: 0;
  flex: 1 1 12rem;
}
.player-ondemand-show {
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 248, 232, 0.75);
}
.player-ondemand-title {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player-ondemand-progress {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 22rem;
}
.player-ondemand-progress-wrap {
  flex: 1 1 auto;
  min-width: 5rem;
}
.player-ondemand-progress-wrap input[type="range"] {
  width: 100%;
  accent-color: var(--sun);
}
.player-ondemand-times {
  display: flex;
  justify-content: space-between;
  font-size: 0.625rem;
  color: rgba(255, 248, 232, 0.75);
}
.player-btn-skip {
  appearance: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.05rem;
  flex-shrink: 0;
  background: transparent;
  border: var(--border-thin);
  border-color: rgba(255, 248, 232, 0.45);
  color: var(--text-on-dark);
  padding: 0.15rem 0.3rem;
  min-width: 2.35rem;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
}
.player-skip-icon {
  width: 0.9rem;
  height: 0.9rem;
  display: block;
}
.player-btn-skip:hover {
  background: var(--sun);
  border-color: var(--ink);
  color: var(--text-on-light);
}
.player-btn-skip:active {
  transform: translate(1px, 1px);
}
@media (max-width: 720px) {
  .player-inner {
    flex-wrap: nowrap;
    cursor: pointer;
  }
  .player-btn.player-btn-listen {
    height: 2.25rem;
    min-height: 2.25rem;
    min-width: max-content;
    padding: 0 0.65rem;
    gap: 0.35rem;
    font-size: 0.625rem;
  }
  .stream-player.is-ondemand .player-btn-listen {
    display: none;
  }
  .player-ondemand-strip {
    flex: 1 1 auto;
    order: 0;
  }
  .player-ondemand-progress {
    flex: 0 0 auto;
    max-width: none;
  }
  .player-inner .player-ondemand-progress-wrap,
  .player-inner .player-skip-forward {
    display: none;
  }
  .player-bar-utils {
    display: none;
  }
  .player-eq {
    display: none;
  }
}
.player-btn-stop {
  appearance: none;
  background: var(--surface);
  border: var(--border-thin);
  color: var(--ink);
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}

/* Expanded player sheet (RRR layout, 2BBB look) */
body.player-sheet-open {
  overflow: hidden;
}
body.player-sheet-open .site-shell {
  z-index: 400;
}
body.player-sheet-open .stream-player {
  z-index: 600;
}
.player-sheet[hidden] {
  display: none !important;
}
.player-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 4.5rem;
  z-index: 500;
  background: var(--cream);
  color: var(--ink);
  overflow: auto;
  padding: 1.25rem 1.5rem calc(2.5rem + env(safe-area-inset-bottom, 0px));
}
.player-sheet-inner {
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.player-sheet-header {
  appearance: none;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.player-sheet-header-copy {
  min-width: 0;
  flex: 1;
}
.player-sheet-kicker {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.player-sheet-heading {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
  display: block;
}
.player-sheet-volume {
  display: flex;
  align-items: center;
}
.player-sheet-volume[hidden] {
  display: none !important;
}
.player-sheet-volume input {
  width: 100%;
  accent-color: var(--green);
}
.player-sheet-photo {
  width: min(100%, 16rem);
  aspect-ratio: 1;
  object-fit: cover;
  align-self: center;
  border: var(--border-thin);
  box-shadow: var(--shadow);
  background: var(--cream);
}
.player-sheet-photo[hidden] {
  display: none !important;
}
.player-sheet-pill {
  appearance: none;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  text-align: left;
  background: var(--cream);
  border: var(--border-thin);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 0.85rem 1rem;
  cursor: pointer;
}
.player-sheet-pill:hover {
  transform: translate(1px, 1px);
  box-shadow: 3px 3px 0 var(--ink);
}
.player-sheet-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  background: var(--sun);
  border: var(--border-thin);
  font-size: 0.875rem;
}
.player-sheet-pill-icon .player-icon-pause {
  display: none;
}
.player-sheet-pill.is-playing .player-icon-play {
  display: none;
}
.player-sheet-pill.is-playing .player-icon-pause {
  display: inline;
}
.player-sheet-pill-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.player-sheet-pill-kicker {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--shell);
}
.player-sheet-pill-title {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.player-sheet-song {
  font-size: 0.9375rem;
  color: var(--muted);
}
.player-sheet-ondemand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.player-sheet-ondemand .player-ondemand-progress-wrap {
  flex: 1;
  min-width: 0;
}
.player-sheet-ondemand .player-ondemand-progress-wrap input[type="range"] {
  accent-color: var(--green);
}
.player-sheet-ondemand .player-ondemand-times {
  color: var(--muted);
}
.player-sheet .player-btn-skip {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--cream);
  box-shadow: var(--shadow-sm);
}
.player-sheet .player-btn-skip:hover {
  background: var(--sun);
  color: var(--text-on-light);
}
.player-sheet-next-label {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.player-sheet-next-show {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.player-sheet-next-show a {
  color: var(--ink);
}
.player-sheet-next-show a:hover {
  color: var(--green);
}
.player-sheet-listen-again {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink);
  border: var(--border-thin);
  box-shadow: var(--shadow-sm);
  padding: 0.65rem 1rem;
  text-align: center;
}
.player-sheet-listen-again:hover {
  color: var(--ink);
  background: var(--green-light);
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}
.player-sheet-live-return {
  width: 100%;
  text-align: center;
}
.player-sheet-live-return[hidden],
.player-sheet-ondemand[hidden],
.player-sheet-next[hidden],
.player-sheet-song[hidden],
.player-sheet-listen-again[hidden] {
  display: none !important;
}
@media (min-width: 721px) {
  .player-sheet {
    display: none !important;
  }
}

/* On-demand episodes on show pages */
.listen-show-block {
  margin-bottom: 1.5rem;
}
.listen-show-heading {
  font-size: 1.125rem;
  margin: 0 0 0.85rem;
}
.listen-episode-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.listen-episode-kicker {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.listen-episode-title {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.listen-episode-bar {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.listen-play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1 1 8rem;
  padding: 0.75rem 1.25rem;
  border: var(--border);
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow);
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.listen-play-button:hover,
.listen-play-button.is-active {
  background: var(--sun);
  color: var(--ink);
}
.listen-play-button:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}
.listen-play-icon { font-size: 1rem; line-height: 1; }
.listen-episode-select-wrap {
  position: relative;
  display: flex;
  flex: 1 1 8rem;
  min-width: 7.5rem;
  min-height: 3.25rem;
  align-items: stretch;
  border: var(--border);
  background: var(--sun);
  box-shadow: var(--shadow);
  cursor: pointer;
}
.listen-episode-select {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  border: 0;
  cursor: pointer;
}
.listen-episode-select:focus {
  outline: none;
}
.listen-episode-select-wrap:focus-within {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}
.listen-episode-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  padding: 0 0.85rem;
  color: var(--ink);
  pointer-events: none;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.listen-episode-caret-icon {
  font-size: 1rem;
  line-height: 1;
}
.listen-episode-select-wrap:hover {
  background: var(--honey);
}
.listen-episode-meta {
  display: block;
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0;
}
.listen-empty {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}
.show-detail-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0.25rem 0 1.5rem;
  font-weight: 700;
}
@media (max-width: 720px) {
  .show-detail .card {
    padding: 1.1rem 1.15rem;
  }
  .listen-episode-bar {
    flex-direction: column;
    gap: 0.65rem;
  }
  .listen-play-button,
  .listen-episode-select-wrap {
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
  }
  .listen-track {
    grid-template-columns: 4.25rem 1fr;
    gap: 0.5rem;
  }
  .show-detail-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }
}
.listen-tracks-panel {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: var(--border-thin);
}
.listen-tracks-heading {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.listen-tracks-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.listen-track {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.75rem;
  font-size: 0.875rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.listen-track-time {
  color: var(--muted);
  font-size: 0.8125rem;
}

/* Fixed bottom broadcast dock (site theme) */
.player-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: var(--surface);
  border-top: var(--border);
  box-shadow: 0 -4px 0 var(--ink);
}
.player-dock-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: var(--player-dock-height, 4.5rem);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.player-dock-segment {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1 1 0;
}
.player-dock-now { flex: 1.2 1 0; }
.player-dock-next {
  flex: 1 1 0;
  justify-content: flex-end;
  text-align: right;
}
.player-dock-photo {
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border: var(--border-thin);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  background: var(--bg);
}
.player-dock-photo--placeholder {
  background: linear-gradient(135deg, var(--blush) 0%, var(--sun) 100%);
}
.player-dock-copy { min-width: 0; }
.player-dock-kicker {
  font-size: 0.5625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  color: var(--green);
}
.player-dock-show {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--ink);
}
.player-dock-show a {
  color: inherit;
  text-decoration: none;
}
.player-dock-show a:hover { color: var(--link); }
.player-dock-brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-dock-logo {
  display: block;
  height: 2.25rem;
  width: auto;
}

/* Shared player controls (top bar) */
.player-btn {
  background: var(--sun);
  border: var(--border-thin);
  color: var(--text-on-light);
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-family: "Space Grotesk", Arial, sans-serif;
}
.player-btn.player-btn-listen {
  width: max-content;
  max-width: none;
  height: 2.5rem;
  min-width: max-content;
  min-height: 2.5rem;
  padding: 0 0.85rem;
  gap: 0.45rem;
  font-size: 0.7rem;
  letter-spacing: 0.03em;
}
.player-btn:hover {
  background: var(--green);
  color: var(--text-on-dark);
  transform: none;
  box-shadow: none;
}
.player-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: var(--shadow-sm);
}
.player-volume {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.player-volume[hidden] {
  display: none !important;
}
.player-volume input {
  width: 64px;
  accent-color: var(--green);
  cursor: pointer;
}

@media (max-width: 900px) {
  .player-dock-brand { display: none; }
}

@media (max-width: 720px) {
  .player-dock {
    display: none;
  }
  body.has-player-dock {
    --player-dock-height: 0px;
    padding-bottom: 0;
  }
  .player-station-select { display: none; }
  .player-volume { display: none; }
}

@media (max-width: 540px) {
  .player-dock-next { display: none; }
}

/* Header */
.site-header {
  background: var(--header-bg);
  color: var(--ink);
  border-bottom: var(--border-thin);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
@media (max-width: 720px) {
  .header-inner {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  display: block;
  height: 2.75rem;
  width: auto;
}
@media (max-width: 720px) {
  .logo-mark { height: 2.25rem; }
}
@media (max-width: 430px) {
  .logo-mark { height: 2rem; }
}

.header-utils {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-textline {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0.375rem 0.75rem;
  background: var(--sun);
  border: var(--border-thin);
  box-shadow: var(--shadow-sm);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  font-family: "Space Grotesk", Arial, sans-serif;
  text-decoration: none;
}
.header-textline-label {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.header-textline:hover {
  color: var(--ink);
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}
.header-textline:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}
/* Tablet + phone: stack the label over the number so the button fits beside
   the logo (and desktop nav from 768px). Sizes live on the spans so the home
   theme's .header-textline font-size override cannot blow the width back out. */
@media (max-width: 1100px) {
  .header-textline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.3rem 0.5rem;
    line-height: 1.25;
  }
  .header-textline-label { font-size: 0.625rem; }
  .header-textline-number { font-size: 0.75rem; }
}

/* Desktop nav + dropdowns */
.nav-desktop { display: none; align-items: center; gap: 0.125rem; }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: var(--cream);
  border: var(--border-thin);
  color: var(--ink);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-transform: uppercase;
  transition: background-color 0.15s, color 0.15s;
}
.nav-dropdown-toggle::after {
  content: "";
  border: 4px solid transparent;
  border-top-color: var(--ink);
  margin-top: 3px;
}
.nav-desktop .nav-dropdown:nth-child(1) .nav-dropdown-toggle:hover,
.nav-desktop .nav-dropdown:nth-child(1).is-open .nav-dropdown-toggle {
  background: var(--shell);
  color: var(--text-on-dark);
}

.nav-desktop .nav-dropdown:nth-child(2) .nav-dropdown-toggle:hover,
.nav-desktop .nav-dropdown:nth-child(2).is-open .nav-dropdown-toggle {
  background: var(--green);
  color: var(--text-on-dark);
}

.nav-desktop .nav-dropdown:nth-child(3) .nav-dropdown-toggle:hover,
.nav-desktop .nav-dropdown:nth-child(3).is-open .nav-dropdown-toggle {
  background: var(--blush);
  color: var(--text-on-light);
}

.nav-desktop .nav-dropdown:nth-child(4) .nav-dropdown-toggle:hover,
.nav-desktop .nav-dropdown:nth-child(4).is-open .nav-dropdown-toggle {
  background: var(--sun);
  color: var(--text-on-light);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--cream);
  border: var(--border-thin);
  padding: 0.375rem 0;
  box-shadow: var(--shadow);
  z-index: 300;
  overflow: hidden;
}
.nav-dropdown.is-open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: "Space Grotesk", Arial, sans-serif;
  text-transform: uppercase;
}

.nav-dropdown-menu a:hover {
  background: var(--blush);
  color: var(--text-on-light);
}
.nav-dropdown-menu--caps a {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.75rem;
}

/* Mobile nav toggle */
.nav-toggle {
  background: var(--surface);
  border: var(--border-thin);
  padding: 0.4rem 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  box-shadow: 2px 2px 0 var(--ink);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

/* Mobile nav drawer */
.nav-mobile {
  background: var(--shell);
  border-top: var(--border-thin);
  padding: 0.75rem 0 1rem;
  /* The sticky shell must stay shorter than the viewport, or the lower menu
     items can only be reached by scrolling the page behind it. JS sets
     --nav-mobile-max to the space left below the header when opening. */
  max-height: var(--nav-mobile-max, none);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.nav-mobile-inner { display: flex; flex-direction: column; }
.nav-mobile-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sun);
  margin: 1.1rem 0 0.35rem;
  font-family: "Space Grotesk", Arial, sans-serif;
}
.nav-mobile-label:first-child { margin-top: 0; }
.nav-mobile a {
  padding: 0.7rem 0;
  color: var(--text-on-dark);
  font-weight: 700;
  font-size: 1rem;
  font-family: "Space Grotesk", Arial, sans-serif;
  border-bottom: 2px solid rgba(255, 248, 232, 0.35);
}
.nav-mobile a:hover { color: var(--sun); }
.nav-mobile-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: var(--border-thin);
}
.nav-mobile-social a {
  border: none;
  font-size: 0.875rem;
  color: var(--cream);
  padding: 0;
  font-weight: 700;
  font-family: "Space Grotesk", Arial, sans-serif;
}
.nav-mobile-social a:hover { color: var(--sun); }

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
}

/* Hero */
.hero {
  background: var(--cream);
  padding: 1rem;
  border-bottom: var(--border);
}
.hero-media {
  position: relative;
  min-height: clamp(360px, 42vw, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border: var(--border);
  box-shadow: var(--shadow);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--blue) 40%,
    var(--green) 72%,
    var(--sun) 100%
  );
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: var(--noise);
  background-repeat: repeat;
  background-size: var(--noise-tile-size) var(--noise-tile-size);
  opacity: var(--noise-strong-opacity-dark);
  mix-blend-mode: soft-light;
}
.hero-bg.has-image {
  background-color: var(--navy);
  background-size: cover;
  background-position: center 35%;
}
.hero-bg.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    var(--hero-gradient-start) 0%,
    var(--hero-gradient-mid) 32%,
    rgba(100, 146, 86, 0.22) 68%,
    var(--hero-gradient-end) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  max-width: 640px;
}
.hero h1 {
  color: var(--text-on-dark);
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 0.5rem;
}
.hero-sub {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 520px;
  color: rgba(255, 248, 232, 0.9);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--cream);
  color: var(--ink) !important;
  padding: 0.5rem 1rem;
  font-weight: 700;
  font-size: 0.8125rem;
  font-family: "Space Grotesk", Arial, sans-serif;
  border: var(--border-thin);
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-align: center;
  transition: background-color 0.15s, color 0.15s, transform 0.1s, box-shadow 0.1s;
}
.btn:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--ink);
  background: var(--green);
  color: var(--text-on-dark) !important;
}
.btn:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}
.btn-secondary {
  background: var(--cream);
  border: var(--border-thin);
  color: var(--ink) !important;
}
.btn-secondary:hover { background: var(--blush); color: var(--text-on-light) !important; }
.btn-outline {
  background: var(--cream);
  border: var(--border-thin);
  color: var(--ink) !important;
}
.btn-outline:hover { background: var(--sun); color: var(--text-on-light) !important; }
.btn-cta {
  background: var(--sun);
  color: var(--ink) !important;
}
.btn-cta:hover {
  background: var(--blush);
  color: var(--ink) !important;
}

/* Main content */
main { padding: 2rem 0 3rem; }
.page-header { margin-bottom: 1.25rem; }
.page-header h1 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: 0; }
.intro { font-size: 0.9375rem; color: var(--muted); max-width: 720px; }
.page-intro { margin-bottom: 1.5rem; }
.page-intro p:first-child { margin-top: 0; }
.page-intro p:last-child { margin-bottom: 0; }
.card {
  background: var(--cream);
  border: var(--border-thin);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.5rem;
}
.card + .card { margin-top: 1rem; }

.messages-wrap { padding-top: 1rem; }

/* Promo grid */
.promo-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .promo-grid { grid-template-columns: repeat(2, 1fr); } }
.promo-card h3 { margin-bottom: 0.5rem; }

/* News teaser */
.news-teaser { margin-top: 3rem; }
.news-teaser h2 { margin-bottom: 1rem; }
.news-list { display: grid; gap: 1rem; }
@media (min-width: 640px) { .news-list { grid-template-columns: repeat(3, 1fr); } }
.news-item h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.news-item time { font-size: 0.8125rem; color: var(--muted); }

/* Supported events teaser — poster grid + sliding detail panel */
.events-teaser { margin-top: 3rem; }
.events-teaser h2 { margin-bottom: 1rem; }
.event-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .event-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .event-list { grid-template-columns: repeat(4, 1fr); }
}
.event-card {
  padding: 0;
  overflow: visible;
}
.event-card:focus-within {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}
.event-list .event-card + .event-card {
  margin-top: 0;
}
.event-card-frame {
  position: relative;
  overflow: hidden;
}
.event-poster img,
.event-poster--placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border: 0;
  box-shadow: none;
}
.event-poster--placeholder {
  background: var(--surface-alt);
}
.event-card-rest {
  display: none;
}
.event-card-panel {
  position: relative;
  padding: 1.1rem 1.15rem 1.25rem;
}
.event-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.35rem;
}
.event-card-panel h3,
.event-card-rest h3 {
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
  line-height: 1.15;
  text-transform: uppercase;
}
.event-meta,
.event-venue,
.event-card-date {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 0.45rem;
  line-height: 1.45;
}
.event-card-blurb {
  font-size: 0.9rem;
  margin: 0 0 1rem;
  line-height: 1.4;
}
.event-card-cta {
  margin-top: 0.25rem;
}

@media (hover: hover) and (pointer: fine) and (min-width: 720px) {
  .event-card-frame {
    aspect-ratio: 3 / 4;
  }
  .event-poster,
  .event-poster img,
  .event-poster--placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
  .event-card-rest {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 0.9rem 1rem 1rem;
    background: var(--cream);
  }
  .event-card-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 12%;
    bottom: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .event-card:hover .event-card-panel,
  .event-card:focus-within .event-card-panel {
    transform: translateY(0);
  }
  .event-card-cta {
    margin-top: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-card-panel {
    transition: none;
  }
}

/* Footer advert */
.footer-ad {
  margin-top: 1.25rem;
  padding: 0.85rem 0 1rem;
  background: var(--cream);
  border-top: var(--border-thin);
}
.footer-ad + .site-footer {
  margin-top: 0;
}
.footer-ad-inner {
  display: flex;
  justify-content: center;
}
.footer-ad-link {
  display: block;
  max-width: 100%;
  line-height: 0;
}
.footer-ad-link:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}
.footer-ad-image {
  display: block;
  width: 100%;
  max-width: 1100px;
  max-height: 90px;
  object-fit: contain;
  margin: 0 auto;
  border: var(--border-thin);
  box-shadow: var(--shadow-sm);
  background: var(--cream);
}
@media (max-width: 639px) {
  .footer-ad {
    margin-top: 0.75rem;
    padding: 0.6rem 0 0.65rem;
  }
  .footer-ad-image {
    max-height: 180px;
  }
  main {
    padding-bottom: 1.25rem;
  }
  .guide-container {
    padding-bottom: 0.75rem;
  }
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--shell);
  color: var(--text-on-dark);
  padding: 2rem 0 1.5rem;
  margin-top: 2rem;
  border-top: var(--border-thin);
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: var(--noise);
  background-repeat: repeat;
  background-size: var(--noise-tile-size) var(--noise-tile-size);
  opacity: var(--noise-strong-opacity-dark);
  mix-blend-mode: soft-light;
}
.site-footer > * {
  position: relative;
  z-index: 2;
}
.footer-inner {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) auto;
    gap: 2.5rem;
  }
}
.footer-station {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  color: var(--text-on-dark);
}
.footer-tagline {
  font-size: 0.8125rem;
  line-height: 1.5;
  max-width: 34rem;
  color: rgba(255, 248, 232, 0.82);
}
.footer-subscribe-heading {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sun);
}
.footer-subscribe-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.footer-subscribe-form input[type="text"],
.footer-subscribe-form input[type="email"] {
  min-width: 0;
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: var(--border);
  background: var(--surface);
  font: inherit;
  box-shadow: var(--shadow-sm);
}
.footer-subscribe-form input[type="email"],
.footer-subscribe-form .btn {
  grid-column: 1 / -1;
}
.footer-subscribe-form .btn {
  justify-self: start;
}
@media (max-width: 539px) {
  .footer-subscribe-form {
    grid-template-columns: 1fr;
  }
}
.footer-subscribe-message {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
}
.footer-subscribe-message--success {
  font-weight: 700;
  font-family: "Space Grotesk", Arial, sans-serif;
}
.footer-subscribe-message--error {
  color: var(--danger, #b00020);
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.site-footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}
.site-footer .footer-social a:hover {
  background: var(--sun);
  color: var(--text-on-light);
}
.footer-social svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}
.footer-partners {
  background: #d9e4ec;
  color: var(--ink);
  border-top: var(--border-thin);
  border-bottom: var(--border-thin);
  padding: 1.75rem 0;
  margin-bottom: 1.25rem;
}
.footer-partners-inner {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
.footer-partners-logos {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 560px) {
  .footer-partners-logos {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}
@media (min-width: 900px) {
  .footer-partners-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 2.5rem;
  }
}
.footer-partner--acknowledgement .footer-acknowledgement {
  max-width: none;
}
.footer-partner-heading {
  margin: 0 0 0.85rem;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3d4a52;
}
.footer-partner-logo {
  display: block;
  line-height: 0;
  width: 100%;
  max-width: 11rem;
}
.footer-partner-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer-partner-logo--cbf {
  max-width: 9rem;
}
.footer-acknowledgement {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #3d4a52;
  max-width: 28rem;
}
.footer-acknowledgement p {
  margin: 0 0 0.65rem;
  color: inherit;
  font-size: inherit;
}
.footer-acknowledgement p:last-child {
  margin-bottom: 0;
}
.footer-bottom {
  padding-top: 0.25rem;
  font-size: 0.8125rem;
  color: rgba(255, 248, 232, 0.85);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.footer-bottom a {
  color: var(--text-on-dark);
  font-weight: 700;
  font-family: "Space Grotesk", Arial, sans-serif;
}
.footer-bottom a:hover { color: var(--sun); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Footer legacy selectors kept for compatibility */
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer h3 {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.site-footer a { color: var(--text-on-dark); font-weight: 700; font-family: "Space Grotesk", Arial, sans-serif; font-size: 0.8125rem; }
.site-footer a:hover { color: var(--sun); }
.site-footer p { font-size: 0.8125rem; margin-bottom: 0.35rem; color: rgba(255, 248, 232, 0.82); }
.footer-partners a {
  color: inherit;
  font-weight: inherit;
  font-family: inherit;
  font-size: inherit;
}
.footer-partners a:hover {
  color: inherit;
  opacity: 0.85;
}
.footer-partners .footer-acknowledgement p {
  margin: 0 0 0.65rem;
  color: #3d4a52;
  font-size: 0.8125rem;
}
.footer-partners .footer-acknowledgement p:last-child {
  margin-bottom: 0;
}

/* Program guide — weekly grid */
.main.guide-page { padding-top: 1.5rem; }
.guide-container { padding: 0 1rem 2rem; }
@media (min-width: 768px) { .guide-container { padding: 0 1.5rem 2rem; } }
body.has-sponsor-carousel main.guide-page .guide-container {
  padding-bottom: 0;
}
main.guide-page + .container .sponsor-carousel {
  margin-top: 1.25rem;
}
.guide-grid-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--surface);
  border: var(--border);
  box-shadow: var(--shadow);
}
.guide-grid-container { position: relative; min-width: 720px; }
.guide-grid {
  display: grid;
  grid-template-columns: 48px repeat(7, minmax(96px, 1fr));
}
.guide-grid-head {
  position: sticky;
  top: 0;
  z-index: 3;
  box-sizing: border-box;
  height: var(--guide-header-height, 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--text-on-dark);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-right: 1px solid rgba(255, 240, 102, 0.25);
}
.guide-grid-head.corner {
  background: var(--header-bg);
  color: var(--ink);
  border-right: var(--border-thin);
}
.guide-grid-time {
  grid-column: 1;
  box-sizing: border-box;
  font-size: 0.625rem;
  font-weight: 700;
  font-family: "Space Grotesk", Arial, sans-serif;
  color: var(--muted);
  padding: 0.25rem 0.375rem 0;
  text-align: right;
  border-right: var(--border-thin);
  border-bottom: 1px dashed #ccc;
  background: var(--bg);
  height: var(--guide-hour-height, 80px);
}
.guide-grid-cell {
  box-sizing: border-box;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px dashed #e8e8e8;
  background: var(--bg);
  height: var(--guide-hour-height, 80px);
}
.guide-blocks-layer {
  position: absolute;
  left: 48px;
  right: 0;
  z-index: 4;
  pointer-events: none;
}
.guide-block {
  position: absolute;
  box-sizing: border-box;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  border: var(--border-thin);
  box-shadow: 2px 2px 0 var(--ink);
  font-size: 0.6875rem;
  line-height: 1.25;
  text-decoration: none;
  overflow: hidden;
  min-height: 22px;
  padding: 0.3125rem 0.4375rem;
}
/* Solid fills — alternate by day (no broadcast-type colours on the public site) */
.guide-block--day-0,
.guide-block--day-2,
.guide-block--day-4,
.guide-block--day-6 {
  background: var(--accent-yellow);
}
.guide-block--day-1,
.guide-block--day-3,
.guide-block--day-5 {
  background: var(--blush);
}
.guide-block:hover {
  z-index: 5;
  background: var(--green);
  color: var(--text-on-dark);
}
.guide-block-title {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.guide-block-meta {
  font-size: 0.625rem;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  color: var(--link);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.125rem;
}
.guide-block--day-1 .guide-block-meta,
.guide-block--day-3 .guide-block-meta,
.guide-block--day-5 .guide-block-meta {
  color: var(--navy);
}
.guide-block:hover .guide-block-meta {
  color: rgba(255, 248, 232, 0.85);
}
.guide-block--tiny {
  padding: 0.125rem 0.25rem;
}
.guide-block--tiny .guide-block-title {
  font-size: 0.625rem;
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.guide-block--short .guide-block-title {
  white-space: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 0.6875rem;
}

/* Mobile: Excel-style freeze — time column + day headers inside the grid pane */
@media (max-width: 767px) {
  .guide-grid-scroll {
    overflow: auto;
    max-height: calc(100dvh - 12.5rem);
  }
  .guide-grid-head {
    z-index: 6;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
  }
  .guide-grid-time {
    position: sticky;
    left: 0;
    z-index: 5;
    box-shadow: 2px 0 0 rgba(0, 0, 0, 0.08);
  }
  .guide-grid-head.corner {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 7;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.12);
  }
}

/* Legacy list-style guide */
.guide-day { margin-bottom: 2rem; }
.guide-day h2 { font-size: 1.125rem; margin-bottom: 0.75rem; }
.guide-slot {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #ccc;
}
.guide-slot-time { font-weight: 700; font-size: 0.8125rem; color: var(--muted); font-family: "Space Grotesk", Arial, sans-serif; }
.guide-show-list { display: grid; gap: 0.75rem; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); margin-top: 2rem; }

/* Program list — layout lives inline in guide/list.html to avoid stale-cache breakage */
.program-list-header { margin-bottom: 1.5rem; }
.show-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.show-detail-photo {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  overflow: hidden;
  background: var(--header-bg);
  border: var(--border);
  box-shadow: var(--shadow);
}
.show-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.show-detail-body {
  flex: 1;
  min-width: 0;
}
.show-detail-schedule p {
  margin: 0;
  line-height: 1.45;
}
.show-detail-schedule p + p {
  margin-top: 0.35rem;
}
.show-detail-description {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.show-detail-description p,
.show-detail-description li {
  font-weight: 400;
}
.show-detail-description > *:first-child {
  margin-top: 0;
}
.show-detail-description > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 639px) {
  .show-detail-header--with-photo {
    flex-direction: column;
  }
  .show-detail-photo {
    width: 160px;
    height: 160px;
  }
}
.program-meta {
  font-size: 0.8125rem;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.5;
}
.program-presenters { font-weight: 700; font-family: "Space Grotesk", Arial, sans-serif; }
.program-genres {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin: 0;
  padding: 0;
}
.program-genres li {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border: 2px solid var(--ink);
  background: var(--accent-pink);
  color: var(--ink);
  font-family: "Space Grotesk", Arial, sans-serif;
}
/* Forms */
.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: 0.8125rem;
  font-family: "Space Grotesk", Arial, sans-serif;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: var(--border-thin);
  font: inherit;
  background: var(--surface);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: 3px solid var(--sun);
  outline-offset: 0;
}
.week-cal {
  border: var(--border-thin);
  box-shadow: var(--shadow-sm);
  background: var(--cream);
  padding: 0.75rem;
  max-width: 22rem;
}
.week-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}
.week-cal-header h3 {
  margin: 0;
  font-size: 0.95rem;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
}
.week-cal-header .btn:disabled {
  opacity: 0.35;
  pointer-events: none;
  box-shadow: none;
  transform: none;
}
.week-cal-dow,
.week-cal-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.week-cal-dow {
  margin-bottom: 0.35rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: "Space Grotesk", Arial, sans-serif;
  color: var(--muted);
  text-align: center;
}
.week-cal-week {
  margin-bottom: 2px;
}
.week-cal-week.is-selected {
  background: var(--sun);
  outline: 2px solid var(--ink);
}
.week-cal-week.is-disabled .week-cal-day {
  color: #b7c0c4;
}
.week-cal-day {
  appearance: none;
  border: 0;
  background: transparent;
  min-height: 2.1rem;
  padding: 0;
  font: inherit;
  font-size: 0.8125rem;
  color: var(--ink);
  cursor: pointer;
}
.week-cal-day.is-outside {
  color: var(--muted);
}
.week-cal-week.is-selected .week-cal-day.is-outside {
  color: var(--ink);
}
.week-cal-day:disabled {
  cursor: not-allowed;
}
.week-cal-week:not(.is-disabled):hover {
  background: var(--honey);
}
.week-cal-choice {
  min-height: 1.2rem;
  margin: 0.55rem 0 0;
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: "Space Grotesk", Arial, sans-serif;
}
.form-errors { color: var(--danger); font-size: 0.875rem; margin-bottom: 1rem; font-weight: 700; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.announcement-guide {
  margin: 0 0 0.75rem;
  padding: 1rem 1.15rem;
  background: var(--green-light);
  border: var(--border);
  box-shadow: var(--shadow);
}
.announcement-guide-heading {
  margin: 0 0 0.65rem;
  padding-bottom: 0.55rem;
  border-bottom: var(--border-thin);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
.announcement-guide p {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.announcement-guide ul {
  margin: 0;
  padding-left: 1.25rem;
}
.announcement-guide li {
  margin: 0.35rem 0;
  color: var(--ink);
  font-size: 0.9375rem;
  line-height: 1.45;
}
.form-field--announcement {
  margin-top: 0.25rem;
}
.form-field--announcement .announcement-guide {
  margin-bottom: 1rem;
}
.form-field--announcement textarea {
  min-height: 9rem;
}
.messages { list-style: none; margin-bottom: 1rem; }
.messages li {
  padding: 0.75rem 1rem;
  margin-bottom: 0.5rem;
  border: var(--border-thin);
  box-shadow: 2px 2px 0 var(--ink);
}
.messages .success { background: var(--green-light); color: var(--ink); }
.messages .error { background: var(--blush); color: var(--ink); }

/* Public flow pages */
.public-main { padding: 2rem 0 3rem; }
.public-main .card { margin-bottom: 1.5rem; }
.info-box {
  background: var(--green-light);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.info-box p, .info-box li { color: var(--ink); }
.text-muted { color: var(--muted); }
.section-heading {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: var(--border-thin);
}
.section-heading.spaced { margin-top: 1.5rem; }
.back-link {
  color: var(--muted);
  font-size: 0.875rem;
  text-decoration: none;
}
.back-link:hover { color: var(--ink); }
form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-family: "Space Grotesk", Arial, sans-serif;
}
form input, form select, form textarea {
  width: 100%;
  background: var(--surface);
  border: var(--border-thin);
  color: var(--ink);
  padding: 0.5rem 0.75rem;
  font-family: Verdana, sans-serif;
  font-size: 0.8125rem;
}
form input:focus, form select:focus, form textarea:focus {
  outline: 3px solid var(--sun);
  outline-offset: 0;
}
form select { appearance: auto; cursor: pointer; }
.enquiry-type-select-wrap {
  position: relative;
}
.enquiry-type-select,
.form-field select.enquiry-type-select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--honey);
  padding-right: 2.5rem;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
}
.enquiry-type-select-wrap::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 0.45rem solid transparent;
  border-right: 0.45rem solid transparent;
  border-top: 0.55rem solid var(--ink);
  margin-top: -0.1rem;
  pointer-events: none;
}
form textarea { min-height: 100px; resize: vertical; }
.form-section { border: none; margin: 0 0 1.5rem; padding: 0; }
.form-section legend {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  padding: 0;
}
.required-tag { color: var(--danger); font-weight: 700; font-size: 0.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row .form-field { margin-bottom: 0; }
.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 400;
  cursor: pointer;
}
.radio-option input[type="radio"],
.radio-option input[type="checkbox"] {
  width: auto;
  flex-shrink: 0;
}
.form-field .radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.form-field .radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
  font-weight: 400;
}
.form-field .radio-option--card {
  padding: 0.625rem 0.875rem;
  border: var(--border-thin);
  background: var(--surface);
  font-size: 0.9375rem;
  cursor: pointer;
}
.form-field .radio-option--card input[type="radio"] {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  accent-color: var(--ink);
}
.form-field .radio-option--card:hover {
  background: var(--surface-alt);
}
.form-field .radio-option--card:has(input:checked) {
  background: var(--sun);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}
.form-field .radio-option--card:focus-within {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.error { color: var(--danger); font-size: 0.875rem; margin-bottom: 1rem; font-weight: 700; }
.success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.success-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto 0.75rem;
  background: var(--green-light);
  color: var(--ink);
  border: var(--border-thin);
  box-shadow: var(--shadow-sm);
  flex: 0 0 auto;
}
.success-mark svg {
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  max-width: 0.7rem;
  max-height: 0.7rem;
  flex: 0 0 auto;
}
.tier-card { transition: transform 0.1s; }
.tier-card:hover { transform: translate(1px, 1px); }

/* Membership tiles — square cards + colour bands, same language as shows/sponsors */
.subscribe-tiers {
  width: 100%;
  max-width: none;
}
.subscribe-tiers-back {
  margin: 0 0 1.25rem;
}
.subscribe-tier-list {
  list-style: none;
  display: grid;
  gap: 1rem 1.15rem;
  grid-template-columns: repeat(2, minmax(0, 10rem));
  margin: 0;
  padding: 0;
  align-items: stretch;
}
.subscribe-tier-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.subscribe-tier-frame {
  flex: 1;
  display: grid;
  grid-template-areas: "photo" "band";
  grid-template-rows: auto 1fr;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--cream);
  color: inherit;
  text-decoration: none;
  text-align: left;
}
.subscribe-tier-frame:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}
.subscribe-tier-frame:hover {
  transform: translate(1px, 1px);
  box-shadow: 3px 3px 0 var(--ink);
}
.subscribe-tier-frame:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}
.subscribe-tier-logo-wrap {
  grid-area: photo;
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem;
  overflow: hidden;
}
.subscribe-tier-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.02em;
  text-align: center;
  line-height: 0.92;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.subscribe-tier-logo-mark {
  font-size: 2.75rem;
}
.subscribe-tier-logo-name {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.subscribe-tier-logo-fm {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.subscribe-tier-band {
  grid-area: band;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
  box-sizing: border-box;
  padding: 0.4rem 0.45rem 0.5rem;
  border-top: 2px solid var(--ink);
}
.subscribe-tier-card:nth-child(3n + 1) .subscribe-tier-logo-wrap,
.subscribe-tier-card:nth-child(3n + 1) .subscribe-tier-band { background: var(--honey); }
.subscribe-tier-card:nth-child(3n + 2) .subscribe-tier-logo-wrap,
.subscribe-tier-card:nth-child(3n + 2) .subscribe-tier-band { background: var(--blush); }
.subscribe-tier-card:nth-child(3n) .subscribe-tier-logo-wrap,
.subscribe-tier-card:nth-child(3n) .subscribe-tier-band { background: var(--green-light); }
.subscribe-tier-name {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.subscribe-tier-price {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}
.subscribe-tier-support {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
}
.subscribe-tier-support h2 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.125rem;
  margin: 0 0 0.75rem;
}
.subscribe-tier-support p {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.55;
}
.subscribe-tier-support p:last-child {
  margin-bottom: 0;
}
.subscribe-tiers-empty {
  text-align: center;
}
.subscribe-tiers-signin {
  text-align: center;
  margin: 1.75rem 0 0;
}
.subscribe-tiers-signin a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
}
.subscribe-tiers-signin a:hover {
  color: var(--ink);
}
body.has-sponsor-carousel main {
  padding-bottom: 0;
}
.sponsor-carousel {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1.1rem 1.25rem 1.25rem;
  background: var(--cream);
  border: var(--border-thin);
  box-shadow: var(--shadow);
}
.sponsor-carousel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
.sponsor-carousel-head h2 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.125rem;
  margin: 0;
}
.sponsor-carousel-head a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}
.sponsor-carousel-head a:hover {
  color: var(--ink);
}
.sponsor-carousel-viewport {
  /* Clip the marquee here — never on the raised panel, so the hard shadow stays visible */
  overflow: hidden;
}
.sponsor-carousel-track {
  list-style: none;
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
  width: max-content;
  margin: 0;
  padding: 0.25rem 0 0.45rem;
  animation: sponsor-carousel-scroll var(--sponsor-scroll-duration, 24s) linear infinite;
}
.sponsor-carousel-viewport:hover .sponsor-carousel-track {
  animation-play-state: paused;
}
.sponsor-carousel-item {
  flex: 0 0 auto;
}
.sponsor-carousel-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 6.5rem;
  height: 6.5rem;
  padding: 0.45rem;
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-decoration: none;
}
.sponsor-carousel-logo:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}
.sponsor-carousel-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.sponsor-carousel-fallback {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@keyframes sponsor-carousel-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .sponsor-carousel-viewport {
    overflow-x: auto;
  }
  .sponsor-carousel-track {
    animation: none;
  }
}
@media (min-width: 640px) {
  .subscribe-tier-list {
    grid-template-columns: repeat(auto-fill, 10rem);
    gap: 1.15rem 1.25rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .subscribe-tier-frame:hover,
  .subscribe-tier-frame:active { transform: none; }
}

/* Embed */
.gig-guide-credit {
  margin: 0 0 1.25rem;
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink);
}
.gig-guide-credit a {
  color: var(--navy);
  font-weight: 700;
}
.embed-frame { width: 100%; min-height: 600px; border: var(--border); box-shadow: var(--shadow); }

/* Sponsor directory — square tiles + colour bands (see template inline styles) */
.sponsor-list {
  list-style: none;
  display: grid;
  gap: 1rem 1.15rem;
  margin: 1.5rem 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.sponsor-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.sponsor-card-frame {
  flex: 1;
  display: grid;
  grid-template-areas: "photo" "band";
  grid-template-rows: auto 1fr;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--cream);
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.sponsor-card-frame:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}
.sponsor-card-frame:hover {
  transform: translate(1px, 1px);
  box-shadow: 3px 3px 0 var(--ink);
}
.sponsor-card-frame:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}
.sponsor-card-photo-wrap,
.sponsor-photo-wrap {
  grid-area: photo;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
}
.sponsor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sponsor-photo--placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--sun) 100%);
}
.sponsor-card-band {
  grid-area: band;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  box-sizing: border-box;
  font-size: 0.75rem;
  min-height: calc(2 * 1.15em + 0.45rem + 0.55rem);
  padding: 0.45rem 0.5rem 0.55rem;
  border-top: 2px solid var(--ink);
}
.sponsor-card:nth-child(3n + 1) .sponsor-card-band { background: var(--honey); }
.sponsor-card:nth-child(3n + 2) .sponsor-card-band { background: var(--blush); }
.sponsor-card:nth-child(3n) .sponsor-card-band { background: var(--green-light); }
.sponsor-card-frame .sponsor-title {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1em;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sponsor-directory-cta,
.our-people-volunteer-cta {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
}
.sponsor-directory-cta p,
.our-people-volunteer-cta p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.55;
}
.sponsor-directory-cta .btn {
  margin-top: 0.25rem;
}
.our-people-volunteer-cta .btn {
  margin-top: 0.25rem;
}
.site-modal-panel.sponsor-modal-panel {
  position: relative;
  padding: 2.25rem;
  width: min(100%, 34rem);
}
.sponsor-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}
.sponsor-modal-top {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-right: 3.25rem;
}
.sponsor-modal-photo {
  flex-shrink: 0;
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  border: var(--border-thin);
  box-shadow: var(--shadow-sm);
  background: var(--cream);
}
.sponsor-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.sponsor-modal-photo--placeholder {
  background: var(--accent-blue);
  opacity: 0.65;
}
.sponsor-modal-name {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.25;
}
.sponsor-modal-blurb {
  margin: 1.75rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.sponsor-modal-actions {
  margin: 1.75rem 0 0;
}
@media (min-width: 640px) {
  .sponsor-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem 1.5rem;
  }
  .sponsor-card-band {
    font-size: 0.9375rem;
    min-height: calc(2 * 1.15em + 0.65rem + 0.75rem);
    padding: 0.65rem 0.75rem 0.75rem;
  }
}
@media (min-width: 960px) {
  .sponsor-list { grid-template-columns: repeat(4, 1fr); gap: 1.5rem 1.75rem; }
  .sponsor-card-band { font-size: 1rem; }
}
@media (prefers-reduced-motion: reduce) {
  .sponsor-card-frame:hover,
  .sponsor-card-frame:active { transform: none; }
}

.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}
.policy-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border: var(--border-thin);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
}
.policy-link:hover {
  color: inherit;
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--ink);
}
.policy-link:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}
.policy-name {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
}
.policy-meta {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  border: 2px solid var(--ink);
  background: var(--sun);
  color: var(--ink);
  font-family: "Space Grotesk", Arial, sans-serif;
}
/* Rich text from Wagtail */
.rich-text p + p { margin-top: 1rem; }
.rich-text h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}
.rich-text h2:first-child { margin-top: 0; }
.rich-text h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
}
.rich-text h4 {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
}
.rich-text ul, .rich-text ol { margin: 1rem 0 1rem 1.5rem; }
.rich-text b,
.rich-text strong {
  font-weight: 700;
}
.rich-text hr {
  border: 0;
  border-top: var(--border-thin);
  margin: 1.5rem 0;
}

.rich-text .richtext-emphasis,
.page-body .richtext-emphasis {
  font-family: var(--font-body-emphasis);
  font-style: italic;
  font-weight: 500;
}

.rich-text .richtext-size-small,
.page-body .richtext-size-small {
  font-size: var(--text-cms-small);
  line-height: 1.45;
}

.rich-text .richtext-size-medium,
.page-body .richtext-size-medium {
  font-size: var(--text-body);
  line-height: 1.6;
}

.rich-text .richtext-size-large,
.page-body .richtext-size-large {
  font-size: var(--text-cms-large);
  line-height: 1.35;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
}

.rich-text p.richtext-align-left,
.rich-text .richtext-align-left,
.page-body p.richtext-align-left,
.page-body .richtext-align-left {
  text-align: left;
}

.rich-text p.richtext-align-center,
.rich-text .richtext-align-center,
.page-body p.richtext-align-center,
.page-body .richtext-align-center {
  text-align: center;
}

.rich-text p.richtext-align-right,
.rich-text .richtext-align-right,
.page-body p.richtext-align-right,
.page-body .richtext-align-right {
  text-align: right;
}

.page-block--lead .block-lead {
  font-family: var(--font-body-emphasis);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.45;
}

.page-block--lead .block-lead p:last-child {
  margin-bottom: 0;
}

.page-block--divider {
  margin: 0.5rem 0;
}

.content-divider {
  border: 0;
  border-top: var(--border-thin);
  margin: 0;
}

.page-block--heading-center {
  text-align: center;
}

.page-block--heading-center .section-subheading {
  margin-left: auto;
  margin-right: auto;
}

.page-block--home-tile-heading {
  display: flex;
  justify-content: center;
}

.home-tile-heading {
  display: block;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0.4rem 1.1rem 0.45rem;
  font-size: clamp(1.05rem, 2.8vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
  border: var(--border-thin);
  box-shadow: var(--shadow);
  background-image: var(--noise);
  background-repeat: repeat;
  background-size: var(--noise-tile-size) var(--noise-tile-size);
  background-blend-mode: overlay;
}

.home-tile-heading--green {
  background-color: var(--green);
  color: var(--text-on-dark);
}

.home-tile-heading--yellow {
  background-color: var(--sun);
  color: var(--text-on-light);
}

.home-tile-heading--pink {
  background-color: var(--blush);
  color: var(--text-on-light);
}

.home-tile-heading--blue {
  background-color: var(--blue);
  color: var(--text-on-dark);
}

.home-tile-heading--navy {
  background-color: var(--navy);
  color: var(--text-on-dark);
}

/* Standard page block layout */
.page-body { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }

/* Full-bleed page banner — image edge-to-edge; title bar overlaps bottom */
.page-banner-slot {
  margin-bottom: 0.75rem;
  overflow: visible;
}
.page-banner-slot .page-block--banner-hero {
  overflow: visible;
}
.page-banner-slot .banner-hero-frame {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}
.page-banner-slot .banner-hero-title-wrap {
  left: max(1.5rem, calc(50% - 550px + 1.5rem));
  max-width: min(540px, calc(100% - 3rem));
}
.banner-hero-stack {
  /* How deep the title bar bites into the photo. Everything below it stays in
     flow, so the clearance holds no matter how many lines the title wraps to. */
  --banner-title-overlap: 2.25rem;
  --banner-title-clearance: 2rem;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  margin-bottom: var(--banner-title-clearance);
}
.banner-hero-frame {
  background: var(--surface);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 0.75rem;
  overflow: visible;
}
.banner-hero-media {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 220px;
  height: clamp(260px, 34vw, 420px);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.banner-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-hero-title-wrap {
  --banner-title-tilt: -1.35deg;
  position: relative;
  z-index: 5;
  left: calc(0.75rem - 0.55rem);
  margin-top: calc(-1 * var(--banner-title-overlap));
  transform-origin: 0 100%;
  max-width: min(540px, calc(100% - 0.75rem));
  overflow: visible;
  pointer-events: none;
  filter: drop-shadow(4px 4px 0 var(--ink));
}
.banner-hero-title-shell {
  display: inline-block;
  border: var(--border);
  box-shadow: none;
  transform: rotate(var(--banner-title-tilt));
  transform-origin: 0 100%;
  pointer-events: auto;
}
.banner-hero-title {
  display: block;
  margin: 0;
  padding: 0.95rem 1.85rem 1.05rem 1.55rem;
}
.banner-hero-title--show {
  display: flex;
  align-items: center;
  gap: 0.85rem 1.15rem;
}
.banner-hero-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-hero-meta,
.banner-hero-schedule {
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}
.banner-hero-presenters {
  font-weight: 700;
}
.banner-hero-dot {
  margin: 0 0.35rem;
}
.banner-hero-genres {
  font-style: italic;
}
.banner-hero-socials {
  display: flex;
  flex-shrink: 0;
  gap: 0.4rem;
  align-items: center;
}
.banner-hero-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: var(--border-thin);
  color: inherit;
  background: transparent;
}
.banner-hero-socials a:hover {
  background: var(--sun);
  color: var(--ink);
}
.banner-hero-socials svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}
.banner-hero-title--pink .banner-hero-meta,
.banner-hero-title--pink .banner-hero-schedule {
  color: var(--text-on-light);
}
.banner-hero-title--yellow .banner-hero-meta,
.banner-hero-title--yellow .banner-hero-schedule {
  color: var(--ink);
}
.page-banner-slot .banner-hero-title-wrap--show {
  max-width: min(720px, calc(100% - 3rem));
}
.banner-hero-stack--show {
  --show-photo-size: 140px;
  /* 1.5rem matches .card rhythm. Collapses with .page-banner-slot’s
     0.75rem bottom margin (max, not sum), so do not split across both. */
  --banner-title-clearance: 1.5rem;
}
.banner-hero-title-wrap--has-photo {
  --show-photo-size: 140px;
}
.banner-show-photo {
  position: absolute;
  z-index: 6;
  left: 0.35rem;
  bottom: 0.55rem;
  width: var(--show-photo-size, 140px);
  height: var(--show-photo-size, 140px);
  transform: translateY(-6%) rotate(-4deg);
  transform-origin: center center;
  overflow: hidden;
  background: var(--header-bg);
  border: var(--border);
  box-shadow: var(--shadow);
  pointer-events: none;
}
.banner-show-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner-hero-title-wrap--has-photo .banner-hero-title {
  padding-left: calc(var(--show-photo-size) + 1.1rem);
  min-height: calc(var(--show-photo-size) * 0.9);
}
.page-banner-slot--title-only {
  margin: 0.75rem 0 1.5rem;
}
.page-banner-slot--title-only .banner-hero-title-wrap {
  position: relative;
  left: 0;
  margin-top: 0;
  max-width: min(720px, 100%);
  filter: drop-shadow(4px 4px 0 var(--ink));
}
.page-banner-slot--title-only .banner-show-photo {
  transform: translateY(2%) rotate(-4deg);
}
.banner-hero-heading {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.15;
  color: #fff;
}
.page-back-link {
  margin-bottom: 0.75rem;
}
.news-article-date {
  display: block;
  margin-bottom: 1rem;
  color: var(--muted);
}
.banner-hero-sub {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}
.banner-hero-title--green { background: var(--green); }
.banner-hero-title--blue { background: var(--blue); }
.banner-hero-title--pink { background: var(--blush); color: var(--text-on-light); }
.banner-hero-title--pink .banner-hero-heading,
.banner-hero-title--pink .banner-hero-sub { color: var(--text-on-light); }
.banner-hero-title--navy { background: var(--navy); }
.banner-hero-title--yellow {
  background: var(--sun);
}
.banner-hero-title--yellow .banner-hero-heading,
.banner-hero-title--yellow .banner-hero-sub {
  color: var(--ink);
}
.main--has-banner-hero {
  padding-top: 0;
  overflow: visible;
}
.main--has-banner-hero .page-body {
  margin-top: 0;
}
.page-body > .page-block--banner-hero {
  margin-bottom: 2.75rem;
}
.page-body > .page-block--banner-hero .banner-hero-stack {
  margin-bottom: 0;
}
@media (max-width: 720px) {
  .banner-hero-title-wrap {
    --banner-title-tilt: -0.85deg;
    left: calc(0.75rem - 0.25rem);
    max-width: calc(100% - 0.5rem);
  }
  .page-banner-slot .banner-hero-title-wrap {
    left: 1rem;
    max-width: calc(100% - 2rem);
  }
  .page-banner-slot .banner-hero-title-wrap--show {
    max-width: calc(100% - 2rem);
  }
  .banner-hero-title {
    padding: 0.8rem 1.25rem 0.95rem 1.2rem;
  }
  .banner-hero-title-wrap--has-photo .banner-hero-title {
    padding-left: calc(var(--show-photo-size) + 0.85rem);
  }
  .banner-hero-stack--show,
  .banner-hero-title-wrap--has-photo {
    --show-photo-size: 104px;
  }
  .banner-show-photo {
    left: 0.2rem;
    bottom: 0.4rem;
    transform: translateY(-2%) rotate(-4deg);
  }
  .banner-hero-title--show {
    flex-wrap: wrap;
  }
  .banner-hero-socials {
    width: 100%;
    justify-content: flex-end;
  }
}

.page-block--heading .section-heading {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}
.page-block--heading .section-subheading {
  color: var(--muted);
  font-size: 1rem;
  max-width: 48rem;
}
.page-block--image .content-image {
  border: var(--border-thin);
  box-shadow: var(--shadow-sm);
  width: 100%;
}
.image-block-panel {
  background: var(--surface);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 0.75rem;
}
.image-block-panel--medium {
  max-width: 700px;
  margin: 0 auto;
}
.page-block--image-medium .content-image {
  max-width: none;
}
.image-caption {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  padding: 0 0.25rem;
}
.page-block--split .split-panel {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--surface);
  border: var(--border);
  box-shadow: var(--shadow);
}
.page-block--split .split-media {
  margin: 0;
  display: flex;
  flex-direction: column;
  /* Mobile stacks text first, image below */
  order: 2;
}
.page-block--split .split-image {
  width: 100%;
  height: auto;
  border: var(--border-thin);
  box-shadow: var(--shadow-sm);
  display: block;
}
.page-block--split .split-text {
  order: 1;
  padding: 0;
}
.page-block--split .split-text > *:first-child {
  margin-top: 0;
}
.page-block--split .split-text > *:last-child {
  margin-bottom: 0;
}
.page-block--split .split-media .image-caption {
  padding: 0.5rem 0 0;
}
@media (min-width: 768px) {
  /* Media column matches the wrap layout's percentages so "Small" means the
     same thing whichever layout the editor picks. */
  .page-block--split-small .split-panel { --split-media-width: 30%; }
  .page-block--split-medium .split-panel { --split-media-width: 45%; }
  .page-block--split-large .split-panel { --split-media-width: 55%; }
  .page-block--split .split-panel {
    grid-template-columns: minmax(180px, var(--split-media-width, 45%)) 1fr;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }
  .page-block--split .split-media,
  .page-block--split .split-text {
    order: initial;
  }
  /* Image on the right moves to the second track, so the sized track has to
     move with it — otherwise the media column takes the 1fr remainder. */
  .page-block--split-right .split-panel {
    grid-template-columns: 1fr minmax(180px, var(--split-media-width, 45%));
  }
  .page-block--split-right .split-media {
    order: 2;
  }
  .page-block--split .split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.page-block--image-wrap .image-wrap-panel {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.5rem;
  overflow: auto;
}
.page-block--image-wrap .image-wrap-media {
  order: 2;
  margin: 1rem 0 0;
}
.page-block--image-wrap .image-wrap-text {
  order: 1;
}
.page-block--image-wrap .image-wrap-image {
  width: 100%;
  height: auto;
  display: block;
  border: var(--border-thin);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 768px) {
  .page-block--image-wrap .image-wrap-panel {
    display: block;
  }
  .page-block--image-wrap .image-wrap-media,
  .page-block--image-wrap .image-wrap-text {
    order: initial;
  }
  .page-block--image-wrap .image-wrap-media {
    margin: 0 0 1rem;
  }
  .page-block--image-wrap-left .image-wrap-media {
    float: left;
    margin: 0.25rem 1.5rem 1rem 0;
  }
  .page-block--image-wrap-right .image-wrap-media {
    float: right;
    margin: 0.25rem 0 1rem 1.5rem;
  }
  .page-block--image-wrap-small .image-wrap-media {
    max-width: 30%;
  }
  .page-block--image-wrap-medium .image-wrap-media {
    max-width: 45%;
  }
  .page-block--image-wrap-large .image-wrap-media {
    max-width: 55%;
  }
}
.page-block--promo .promo-card--page {
  padding: 0;
  overflow: hidden;
}
.page-block--promo .promo-card-media {
  line-height: 0;
}
.page-block--promo .promo-card-image {
  width: 100%;
  display: block;
  border-bottom: var(--border-thin);
}
.page-block--promo .promo-card-body {
  padding: 1.25rem 1.5rem;
}
.page-block--promo .promo-card-body h3 {
  margin-bottom: 0.5rem;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.page-block--embed .embed-wrap {
  border: var(--border-thin);
  box-shadow: var(--shadow-sm);
  background: var(--paper);
  padding: 0.5rem;
}
.page-block--embed .embed-title {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.callout {
  border: var(--border-thin);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.25rem;
}
.callout--info { background: var(--green-light); border-left: 6px solid var(--blue); }
.callout--tip { background: var(--honey); border-left: 6px solid var(--green); }
.callout--quote { background: var(--blush); border-left: 6px solid var(--navy); font-style: italic; }

/* Subscribe page */
.subscribe-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: none;
  margin: 0;
}
.subscribe-page > .card {
  margin-bottom: 0;
}
.subscribe-page > .card + .card {
  margin-top: 0;
}
.subscribe-intro {
  grid-column: 1 / -1;
  padding: 2rem 2.25rem;
}
.subscribe-intro h2 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.subscribe-intro p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.subscribe-intro-cta {
  margin-bottom: 1.5rem !important;
}
.subscribe-reasons-open {
  background: var(--sun);
  border: var(--border-thin);
  color: var(--text-on-light) !important;
  box-shadow: 3px 3px 0 var(--ink);
}
.subscribe-reasons-open:hover {
  background: var(--blush);
  color: var(--text-on-light) !important;
}
.subscribe-action-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  min-height: 100%;
}
.subscribe-action-card-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  padding: 1.75rem;
}
.subscribe-action-card h3 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}
.subscribe-action-text {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 0;
}
.subscribe-action-foot {
  margin-top: auto;
  padding-top: 1.5rem;
  min-height: 8.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.subscribe-signin-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.subscribe-signin-form .form-field {
  margin-bottom: 0;
}
.subscribe-action-btn {
  width: 100%;
  text-align: center;
}
.site-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.site-modal.is-open {
  display: flex;
}
.site-modal[hidden] {
  display: none !important;
}
.site-modal.is-open[hidden] {
  display: flex !important;
}
.site-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 45, 74, 0.72);
}
.site-modal-panel {
  position: relative;
  width: min(100%, 32rem);
  max-height: calc(100vh - 3rem);
  overflow: auto;
  margin: 0;
  padding: 0;
}
.site-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem 0;
}
.site-modal-header h3 {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.35;
}
.site-modal-close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: var(--border-thin);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
.site-modal-body {
  padding: 1rem 1.5rem 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.site-modal-body p {
  margin-bottom: 0.75rem;
}
.site-modal-body ul {
  margin: 0;
  padding-left: 1.25rem;
}
.site-modal-body li {
  margin-bottom: 0.5rem;
}
.site-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  padding: 1rem 1.5rem 1.25rem;
}
body.site-modal-open {
  overflow: hidden;
}
@media (max-width: 720px) {
  .subscribe-page {
    grid-template-columns: 1fr;
  }
  .subscribe-intro {
    padding: 1.5rem;
  }
  .subscribe-action-foot {
    min-height: 0;
  }
}

/* Donate page */
.donate-page {
  width: 100%;
  max-width: none;
}
.public-main .donate-page > .card {
  margin-bottom: 0;
}
.donate-intro {
  padding: 2rem 2.25rem;
}
.donate-intro h2 {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.donate-intro p {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.donate-intro-cta {
  margin-bottom: 1.5rem !important;
}
.donate-intro a:not(.btn) {
  font-weight: 700;
}
.donate-form-wrap {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: var(--border-thin);
}
.donate-form-heading {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}
.donate-form {
  max-width: 32rem;
}
.donate-amount-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.65rem;
}
.donate-amount-option {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.7rem 0.95rem;
  border: var(--border-thin);
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 0.9375rem;
  cursor: pointer;
  white-space: nowrap;
}
.donate-amount-option input[type="radio"] {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--ink);
}
.donate-amount-option:hover {
  background: var(--honey);
}
.donate-amount-option:has(input:checked) {
  background: var(--sun);
}
.donate-amount-option:focus-within {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}
.donate-form .form-field {
  margin-bottom: 1.25rem;
}
.donate-amount-field {
  border: 0;
  margin: 0 0 1.25rem;
  padding: 0;
  min-width: 0;
}
.donate-amount-field legend {
  padding: 0;
  margin-bottom: 0.25rem;
  font-weight: 700;
  font-size: 0.8125rem;
  font-family: "Space Grotesk", Arial, sans-serif;
}
.donate-form .btn {
  width: auto;
  min-width: 12rem;
}
.donate-form #custom_amount {
  max-width: 12rem;
}
@media (max-width: 720px) {
  .donate-intro {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-transparency: reduce) {
  body::before {
    opacity: 0;
  }
  .surface-textured::after,
  .stream-player::after,
  .site-footer::after,
  .hero-bg::before {
    display: none;
  }
  .hero-bg.has-image::after {
    background: rgba(26, 45, 74, 0.85);
  }
}
tn {
  width: auto;
  min-width: 12rem;
}
.donate-form #custom_amount {
  max-width: 12rem;
}
@media (max-width: 720px) {
  .donate-intro {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-transparency: reduce) {
  body::before {
    opacity: 0;
  }
  .surface-textured::after,
  .stream-player::after,
  .site-footer::after,
  .hero-bg::before {
    display: none;
  }
  .hero-bg.has-image::after {
    background: rgba(26, 45, 74, 0.85);
  }
}
