/* ==========================================================================
   Midtown Radio — stylesheet
   Mobile-first: base rules target small screens; min-width queries layer on
   larger-screen enhancements. Breakpoints: 600px, 768px, 960px.
   ========================================================================== */

@import url('https://fonts.cdnfonts.com/css/neue-haas-grotesk-display-pro');
@import url('https://fonts.cdnfonts.com/css/aktiv-grotesk-cd-trial');

:root {
  --charcoal:   #4F5152;
  --charcoal-2: #454748;
  --charcoal-3: #3C3E3F;
  --grey:       #D9D9D8;
  --coral:      #F05959;
  --teal-d:     #005C5F;
  --teal-m:     #00989D;
  --cyan:       #33CCCC;
  --bar:        #2B2D2D;
  --bar-line:   #3F4242;
  --display: 'Neue Haas Grotesk Display Pro', 'Helvetica Neue', Arial, sans-serif;
  --body:    'Aktiv Grotesk Trial', 'Helvetica Neue', Arial, sans-serif;
  --bar-h: 82px;
  --maxw: 1100px;
}

/* ---------- base / reset ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  padding-bottom: var(--bar-h);
  background: var(--charcoal);
  color: var(--grey);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
::selection { background: var(--coral); color: #fff; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 4px; }

.label {
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.muted { color: #9aa0a0; }

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(240,89,89,.5); }
  50%      { opacity: .5; box-shadow: 0 0 0 8px rgba(240,89,89,0); }
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
@keyframes vu {
  0%, 100% { height: 6px; }
  50%      { height: 28px; }
}

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 40;
  background: rgba(63,66,67,.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #3a3c3d;
}

.header-bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 20px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand { display: flex; align-items: center; }
.brand-logo { height: 46px; width: auto; display: block; }
.mic { width: .92em; height: .92em; flex: none; }

.header-right { display: flex; align-items: center; gap: 14px; }

.localaf {
  display: none;                 /* hidden on small screens */
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -.01em;
  color: var(--coral);
}
.localaf .af { color: #f7a3a3; }

.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(240,89,89,.45);
  transition: transform .12s, background .15s;
}
.support-btn:hover { transform: translateY(-1px); background: #ff6b6b; }

.main-nav { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.nav-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 2px 0 10px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--teal-m);
  font-family: var(--body);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: color .15s;
}
.nav-link:hover { color: var(--cyan); }
.nav-toggle.active,
.nav-link.active { color: var(--cyan); }

.caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: .8;
  transition: transform .2s;
}
.nav-toggle[aria-expanded="true"] .caret { transform: rotate(180deg); }

/* in-flow expanding panel (the header grows to hold it) */
.dropdown-panel {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 26px;
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  border-top: 1px solid transparent;
  transition: max-height .28s ease, padding .28s ease;
}
.dropdown-panel.open {
  max-height: 200px;
  padding: 12px 16px 16px;
  border-top-color: var(--bar-line);
}
.dropdown-link {
  padding: 2px;
  color: var(--grey);
  font-weight: 700;
  font-size: .86rem;
  white-space: nowrap;
  transition: color .12s;
}
.dropdown-link:hover { color: var(--coral); }

@media (min-width: 600px) {
  .localaf { display: inline-block; }
  .nav-link { padding: 8px 16px; gap: 7px; font-size: .82rem; letter-spacing: .05em; }
}
@media (min-width: 960px) {
  .brand-logo { height: 60px; }
  .header-bar { padding: 14px 22px 4px; }
}

/* ==========================================================================
   Main / typography
   ========================================================================== */
main { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

.page { padding: 30px 0 48px; animation: pageIn .32s cubic-bezier(.2,.7,.2,1) both; }
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

.kicker {
  margin-bottom: 12px;
  color: var(--coral);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section {
  margin-bottom: 10px;
  color: var(--cyan);
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  letter-spacing: -.02em;
  line-height: .95;
  text-transform: uppercase;
}
.lead { max-width: 56ch; margin-bottom: 26px; color: var(--grey); opacity: .85; }
.hint { margin-top: 18px; color: var(--grey); font-size: .9rem; opacity: .8; }
.hint b { color: var(--cyan); opacity: 1; }

/* ==========================================================================
   Home — on-air widget + app callout + episodes + news
   ========================================================================== */

/* two-up top row: on-air widget beside the app callout (stacked on mobile) */
.home-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 34px;
}

/* on-air widget with its own play button */
.airstrip {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  text-align: left;
  background: var(--charcoal-2);
  border: 1px solid var(--bar-line);
  border-radius: 12px;
  color: var(--grey);
  cursor: pointer;
  transition: background .15s;
}
.airstrip:hover { background: #4d4f50; }

.airstrip-play {
  flex: none;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--coral);
  display: grid;
  place-items: center;
}
.airstrip-play .tri {
  width: 0; height: 0;
  border-left: 18px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.airstrip-play .pause { display: none; gap: 5px; }
.airstrip-play .pause span { width: 5px; height: 20px; background: #fff; border-radius: 1px; }
.airstrip.playing-live .airstrip-play .tri { display: none; }
.airstrip.playing-live .airstrip-play .pause { display: flex; }

.airstrip-info { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.airstrip-live { display: flex; align-items: center; gap: 7px; }
.airstrip .dot { width: 9px; height: 9px; border-radius: 50%; background: #6b6b6b; flex: none; }
.airstrip.playing-live .dot { background: #fff; }
.airstrip .l {
  color: var(--coral);
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.airstrip .s {
  color: var(--cyan);
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.airstrip .t {
  color: #9aa0a0;
  font-size: .85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* app download callout */
.appcta {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  gap: 14px 16px;
  padding: 22px;
  background: var(--teal-d);
  border-radius: 16px;
}
.appcta-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--coral);
  display: grid;
  place-items: center;
  flex: none;
}
.appcta-icon svg { width: 32px; height: 32px; color: #fff; }
.appcta-title {
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.appcta-text { margin-top: 5px; max-width: 42ch; color: #cfeced; font-size: .92rem; }
.appcta-buttons { grid-column: 2; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.appcta-buttons a { display: inline-block; line-height: 0; }
.appcta-buttons img { height: 46px; width: auto; display: block; }

/* episode cards — tap to hand off to the bottom player */
.stack { display: flex; flex-direction: column; gap: 14px; margin-top: 6px; }
.ep {
  width: 100%;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  text-align: left;
  background: var(--charcoal-2);
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--grey);
  cursor: pointer;
  transition: transform .14s, border-color .15s;
}
.ep:hover { transform: translateY(-2px); }
.ep.playing { border-color: var(--coral); }
.ep .ethumb {
  width: 56px;
  height: 56px;
  border: 2px solid var(--coral);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #5c5e5f 0 8px, #535556 8px 16px);
  flex: none;
}
.ep .ethumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ep .ethumb .mic { position: absolute; inset: 0; margin: auto; width: 30px; height: 30px; color: #cfcfcf; opacity: .5; }
.ep-show { color: var(--teal-m); font-weight: 800; font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; }
.ep-title { color: var(--cyan); font-family: var(--body); font-weight: 700; font-size: 1.02rem; line-height: 1.15; margin: 3px 0 6px; }
.card-meta { display: flex; gap: 14px; color: var(--teal-m); font-size: .78rem; font-weight: 700; letter-spacing: .04em; }
.ep-cta { width: 46px; height: 46px; border-radius: 50%; background: var(--coral); display: grid; place-items: center; flex: none; }
.ep-cta .tri { width: 0; height: 0; border-left: 13px solid #fff; border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 3px; }
.ep-cta .pause { display: none; gap: 4px; }
.ep-cta .pause span { width: 4px; height: 14px; background: #fff; border-radius: 1px; }
.ep.playing .ep-cta .tri { display: none; }
.ep.playing .ep-cta .pause { display: flex; }

/* news + section headers */
.section-gap { margin-top: 42px; }
.block-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.morelink { display: inline-block; color: var(--coral); font-weight: 700; font-size: .85rem; letter-spacing: .02em; }
.morelink:hover { text-decoration: underline; }
.ep-more { margin-top: 14px; }
.show-group { margin-bottom: 30px; }
.show-name { color: var(--cyan); font-family: var(--display); font-weight: 900; font-size: 1.2rem; letter-spacing: -.01em; text-transform: uppercase; }

.news-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.newsblock {
  display: flex;
  flex-direction: column;
  align-self: start;
  overflow: hidden;
  background: var(--charcoal-2);
  border: 1px solid var(--bar-line);
  border-radius: 12px;
  color: var(--grey);
  transition: transform .14s;
}
.newsblock:hover { transform: translateY(-2px); }
.news-thumb { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; background: var(--bar); }
.news-body { padding: 16px 18px; }
.news-date { color: var(--teal-m); font-weight: 700; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase; }
.news-title { color: var(--cyan); font-family: var(--body); font-weight: 800; font-size: 1.15rem; line-height: 1.2; margin: 5px 0 6px; }
.news-excerpt { color: #bfc3c3; font-size: .9rem; }
.news-cta { display: inline-block; margin-top: 10px; color: var(--coral); font-weight: 700; font-size: .85rem; }
.substack-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 10px 20px;
  background: none;
  border: 1.5px solid var(--coral);
  border-radius: 999px;
  color: var(--coral);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .02em;
  transition: background .15s, color .15s;
}
.substack-btn:hover { background: var(--coral); color: #fff; }

/* WEPLAYLOCALMUSIC lockup */
.lockup {
  display: block;
  box-sizing: border-box;
  margin: 24px auto 0;
  padding: 0 20px;
  max-width: 320px;
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .home-top { grid-template-columns: 0.82fr 1.18fr; align-items: stretch; }
  .news-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
  .stack { display: grid; grid-template-columns: 1fr 1fr; }
  .stack .ep:only-child { grid-column: 1 / -1; }
  .ep { grid-template-columns: 68px 1fr auto; gap: 16px; }
  .ep .ethumb { width: 68px; height: 68px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-foot { margin-top: 10px; border-top: 1px solid var(--bar-line); }
.foot-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.foot-top { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot-social { display: flex; gap: 12px; }
.foot-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--charcoal-2);
  color: var(--cyan);
  transition: background .15s, color .15s;
}
.foot-social-link:hover { background: var(--coral); color: #fff; }
.foot-social .ic { width: 20px; height: 20px; }
.foot-email { color: var(--grey); font-weight: 600; }
.foot-localaf { color: var(--coral); font-weight: 800; }
.foot-localaf .af { color: #f7a3a3; }

.foot-funders { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 4px; }
.foot-funders-label { color: #9aa0a0; font-weight: 700; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }
.funder-logo { height: 48px; width: auto; background: #fff; padding: 7px 11px; border-radius: 7px; object-fit: contain; }

@media (min-width: 600px) {
  .foot-inner { flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; }
}

/* ==========================================================================
   Persistent player bar
   ========================================================================== */
.transmitter {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  height: var(--bar-h);
  background: var(--bar);
  border-top: 1px solid var(--bar-line);
  color: var(--grey);
  box-shadow: 0 -10px 30px rgba(0,0,0,.28);
}
.transmitter::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,89,89,.7) 50%, transparent);
}
.tx-inner { max-width: var(--maxw); margin: 0 auto; height: 100%; padding: 0 20px; display: flex; align-items: center; gap: 16px; }

.playbtn {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--coral);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform .12s;
}
.playbtn:hover { transform: scale(1.06); }
.playbtn:active { transform: scale(.95); }
.playbtn .tri { width: 0; height: 0; border-left: 15px solid #fff; border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 3px; }
.playbtn .pause { display: none; gap: 4px; }
.playbtn .pause span { width: 4px; height: 15px; background: #fff; border-radius: 1px; }
.transmitter.playing .playbtn .tri { display: none; }
.transmitter.playing .playbtn .pause { display: flex; }

.vu { display: none; align-items: flex-end; gap: 3px; height: 32px; flex: none; }
.vu span { width: 4px; height: 6px; background: #4a4d4d; border-radius: 1px; }
.transmitter.playing .vu span { background: var(--cyan); animation: vu 900ms ease-in-out infinite; }
.transmitter.playing .vu span:nth-child(2) { animation-delay: .12s; animation-duration: 680ms; }
.transmitter.playing .vu span:nth-child(3) { animation-delay: .05s; animation-duration: 1100ms; }
.transmitter.playing .vu span:nth-child(4) { animation-delay: .20s; animation-duration: 820ms; }
.transmitter.playing .vu span:nth-child(5) { animation-delay: .09s; animation-duration: 600ms; }
.transmitter.playing .vu span:nth-child(6) { animation-delay: .15s; animation-duration: 960ms; }
.transmitter.playing .vu span:nth-child(7) { animation-delay: .02s; animation-duration: 740ms; }

.tx-meta { flex: 1; min-width: 0; }
.tx-meta .now { display: flex; align-items: center; gap: 8px; color: var(--coral); }
.tx-meta .now .live-dot { width: 7px; height: 7px; border-radius: 50%; background: #6b6b6b; }
.transmitter.playing .tx-meta .now .live-dot { background: var(--coral); animation: pulse 1.6s ease-in-out infinite; }
.tx-meta .title { color: var(--cyan); font-weight: 700; margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tx-meta .sub { color: #9aa0a0; font-size: .82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.popout-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  background: none;
  border: 1px solid var(--bar-line);
  border-radius: 8px;
  color: var(--grey);
  font: inherit;
  font-size: .74rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.popout-btn:hover { border-color: var(--coral); color: #fff; }

.vol { display: none; align-items: center; gap: 8px; flex: none; color: var(--teal-m); }
.vol input { accent-color: var(--coral); width: 88px; }

@media (min-width: 768px) {
  .vu { display: flex; }
  .vol { display: flex; }
  .popout-btn { display: inline-flex; }
}

/* ==========================================================================
   Musician catalogue
   ========================================================================== */
.m-count { color: #9aa0a0; font-size: .85rem; margin-top: 6px; }
.m-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
.m-tile {
  display: flex;
  flex-direction: column;
  background: var(--charcoal-2);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .12s, box-shadow .12s;
}
.m-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.3); }
.m-tile img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: var(--bar); display: block; }
.m-info { padding: 10px 12px; }
.m-name { color: #fff; font-weight: 800; font-size: .95rem; line-height: 1.15; }
.m-genre { color: var(--coral); font-weight: 700; font-size: .8rem; margin: 4px 0 2px; }

@media (min-width: 600px) {
  .m-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
}

/* ==========================================================================
   Schedule
   ========================================================================== */
.sched-imgs { display: grid; grid-template-columns: 1fr; gap: 18px; margin: 24px 0 36px; }
.sched-imgs img { width: 100%; height: auto; border-radius: 12px; }
.sched-day { margin-bottom: 24px; }
.sched-day-title { color: var(--cyan); font-family: var(--display); font-weight: 900; font-size: 1.2rem; letter-spacing: -.01em; text-transform: uppercase; margin-bottom: 10px; }
.slot { display: grid; grid-template-columns: 100px 1fr; gap: 12px; align-items: baseline; padding: 10px 12px; background: var(--charcoal-2); border-radius: 10px; margin-bottom: 8px; }
.slot-time { color: var(--coral); font-weight: 700; font-size: .82rem; letter-spacing: .03em; white-space: nowrap; }
.slot-show { color: var(--grey); font-weight: 700; }
.slot-host { color: #9aa0a0; font-size: .85rem; margin-left: 6px; }

@media (min-width: 600px) {
  .sched-imgs { grid-template-columns: 1fr 1fr; }
  .slot { grid-template-columns: 120px 1fr; gap: 14px; }
}

/* ==========================================================================
   Prose / secondary content pages
   ========================================================================== */
.prose { max-width: 62ch; color: var(--grey); }
.prose p { margin-bottom: 14px; }
.prose a { color: var(--cyan); font-weight: 600; }

.infoblock { max-width: 64ch; margin: 0 0 12px; padding: 16px 18px; background: var(--charcoal-2); border-radius: 12px; }
.infoblock-title { color: #fff; font-family: var(--display); font-weight: 800; font-size: 1.06rem; margin-bottom: 6px; }
.infoblock-text { color: var(--grey); font-size: .92rem; line-height: 1.55; }
.infoblock-text a { color: var(--cyan); font-weight: 600; }
.page .lead + .infoblock { margin-top: 8px; }

.stub { max-width: 60ch; color: var(--grey); }
.stub .tag { display: inline-block; margin-top: 14px; padding: 5px 12px; border: 1px solid var(--bar-line); border-radius: 999px; color: #9aa0a0; font-weight: 700; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }


/* ==========================================================================
   Schedule — day-grid tables (mirrors the schedule graphics)
   ========================================================================== */
.sched-tables { margin: 24px 0 36px; }
.sched-table-wrap {
  overflow-x: auto;
  margin-bottom: 26px;
  border: 1px solid var(--bar-line);
  border-radius: 12px;
}
.sched-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.sched-table th,
.sched-table td {
  padding: 11px 12px;
  text-align: left;
  border-bottom: 1px solid var(--bar-line);
  border-right: 1px solid var(--bar-line);
}
.sched-table thead th {
  background: var(--bar);
  color: var(--cyan);
  font-family: var(--body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.sched-table tbody th.time {
  background: var(--charcoal-3);
  color: var(--coral);
  font-weight: 700;
  font-size: .8rem;
  white-space: nowrap;
}
.sched-table td { background: var(--charcoal-2); color: var(--grey); font-size: .86rem; line-height: 1.3; }
.sched-table td.all { color: var(--cyan); font-weight: 700; text-align: center; }
.sched-table .wh { color: #9aa0a0; font-weight: 400; font-size: .82em; }
.sched-table tr:last-child th,
.sched-table tr:last-child td { border-bottom: none; }
.sched-table th:last-child,
.sched-table td:last-child { border-right: none; }

/* ==========================================================================
   Shows page — episodes as a vertical list of long pills
   ========================================================================== */
body[data-page="shows"] .stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body[data-page="shows"] .ep {
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  padding: 9px 14px 9px 9px;
  border-radius: 999px;
}
body[data-page="shows"] .ep .ethumb {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}
body[data-page="shows"] .ep-title { margin: 2px 0 3px; }
body[data-page="shows"] .ep-cta { width: 44px; height: 44px; }

/* Shows page — "More past episodes" link sits below each show's list */
.morelink-foot { display: inline-block; margin: 12px 0 0 6px; }

/* screen-reader-only (accessible page title on the home page, visually hidden) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Supascribe feed — rebuilt into vertical cards matching the site's cards.
   Colours come from the widget's dashboard theme; here we fix the grid
   (3 across, stacked on mobile), flip each card to image-on-top, match radius.
   ========================================================================== */
.supascribe-wrap { margin-top: 4px; }

/* feed container: our own grid — 1 col on mobile, 3 across on desktop */
.supascribe-wrap .sfw-layout-center,
.supascribe-wrap .sfw-layout-right {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}
@media (min-width: 768px) {
  .supascribe-wrap .sfw-layout-center,
  .supascribe-wrap .sfw-layout-right { grid-template-columns: repeat(3, 1fr) !important; }
}

/* each post card: vertical stack with our card surface + radius */
.supascribe-wrap .sfw-layout-center > a,
.supascribe-wrap .sfw-layout-right > a {
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  padding: 0 !important;
  background: var(--charcoal-2) !important;
  border: 1px solid var(--bar-line) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
}
.supascribe-wrap .sfw-layout-center > a:hover,
.supascribe-wrap .sfw-layout-right > a:hover { background: #4d4f50 !important; }

/* image: full-width banner on top (override the fixed thumbnail) */
.supascribe-wrap .sfw-layout-center > a > div:first-child,
.supascribe-wrap .sfw-layout-right > a > div:first-child {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  border-radius: 0 !important;
}

/* text block: card padding */
.supascribe-wrap .sfw-layout-center > a > div:last-child,
.supascribe-wrap .sfw-layout-right > a > div:last-child { padding: 14px 16px 16px !important; }

/* title / excerpt / date sized to match our cards */
.supascribe-wrap .sfw-title { font-size: 1.05rem !important; line-height: 1.2 !important; font-weight: 700 !important; }
.supascribe-wrap .line-clamp-3 { color: #bfc3c3 !important; font-size: .9rem !important; }
.supascribe-wrap .tracking-wider { color: var(--teal-m) !important; font-weight: 700 !important; }

/* show only the latest 3 (backup to the dashboard limit) */
body[data-page="home"] .supascribe-wrap .sfw-layout-center > a:nth-child(n+4),
body[data-page="home"] .supascribe-wrap .sfw-layout-right > a:nth-child(n+4) { display: none; }

/* News page: smaller, more spaced cards (and no 3-item cap) */
body[data-page="news"] .supascribe-wrap .sfw-layout-center,
body[data-page="news"] .supascribe-wrap .sfw-layout-right {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
  gap: 22px !important;
}
body[data-page="news"] .supascribe-wrap .sfw-title { font-size: .95rem !important; line-height: 1.25 !important; }
body[data-page="news"] .supascribe-wrap .line-clamp-3 { font-size: .82rem !important; }
body[data-page="news"] .supascribe-wrap .sfw-layout-center > a > div:last-child,
body[data-page="news"] .supascribe-wrap .sfw-layout-right > a > div:last-child { padding: 12px 14px 14px !important; }

/* About / The Station page */
.about-img { display: block; width: 100%; max-width: 760px; height: auto; border-radius: 14px; margin: 8px 0 32px; }
.about-sub { font-size: clamp(1.4rem, 3.5vw, 2rem); margin-top: 10px; }

/* ==========================================================================
   Musician catalogue — A–Z index + per-letter sections
   ========================================================================== */
.az-index { display: flex; flex-wrap: wrap; gap: 6px; margin: 18px 0 30px; }
.az-link {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 6px;
  border-radius: 7px;
  background: var(--charcoal-2);
  color: var(--cyan);
  font-weight: 800;
  font-size: .85rem;
  text-decoration: none;
  transition: background .12s, color .12s;
}
a.az-link:hover { background: var(--coral); color: #fff; }
.az-off { background: transparent; color: #6b6e6e; font-weight: 700; }

.m-letter { margin-bottom: 36px; scroll-margin-top: 18px; }
.m-letter-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--bar-line);
}
.m-letter-title { font-family: var(--display); font-weight: 900; font-size: 1.8rem; line-height: 1; color: var(--coral); }
.az-top { color: var(--teal-m); font-weight: 700; font-size: .78rem; }
a.az-top:hover { color: var(--cyan); }

/* ==========================================================================
   Artist Resources page
   ========================================================================== */
.res-intro { max-width: 62ch; }
.res-jump { display: flex; flex-wrap: wrap; gap: 8px 6px; margin: 20px 0 4px; }
.res-jump a {
  padding: 6px 12px;
  background: var(--charcoal-2);
  border-radius: 999px;
  color: var(--cyan);
  font-weight: 700;
  font-size: .78rem;
  transition: background .12s, color .12s;
}
.res-jump a:hover { background: var(--coral); color: #fff; }

.res-section { margin: 40px 0; scroll-margin-top: 18px; }
.res-section-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  line-height: 1;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 4px;
}
.res-section-sub {
  color: var(--coral);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.res-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
.res-card {
  display: flex;
  flex-direction: column;
  background: var(--charcoal-2);
  border: 1px solid var(--bar-line);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .12s, box-shadow .12s;
}
.res-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.3); }
.res-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: var(--bar); display: block; }
.res-card.logo img { object-fit: contain; background: #fff; padding: 14px; }
.res-card-body { padding: 12px 14px; }
.res-name { color: #fff; font-weight: 800; font-size: .95rem; line-height: 1.15; }
.res-role { color: var(--teal-m); font-weight: 700; font-size: .82rem; margin-top: 4px; }
.res-desc { color: #bfc3c3; font-size: .85rem; margin-top: 6px; line-height: 1.4; }

.studio-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 700px) { .studio-grid { grid-template-columns: 1fr 1fr; } }
.studio-card { background: var(--charcoal-2); border: 1px solid var(--bar-line); border-radius: 12px; padding: 16px 18px; }
.studio-name { color: var(--cyan); font-family: var(--body); font-weight: 800; font-size: 1.1rem; }
.studio-meta { color: var(--teal-m); font-weight: 700; font-size: .82rem; margin: 3px 0 8px; }
.studio-desc { color: #bfc3c3; font-size: .88rem; line-height: 1.5; }
.studio-services { color: var(--grey); font-size: .82rem; margin-top: 8px; }
.studio-services b { color: #fff; }
.res-link { display: inline-block; margin-top: 8px; color: var(--coral); font-weight: 700; font-size: .85rem; }

/* ==========================================================================
   Services page — service cards
   ========================================================================== */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 26px; }
@media (min-width: 700px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
.svc-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--charcoal-2);
  border: 1px solid var(--bar-line);
  border-radius: 14px;
}
.svc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--coral);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.svc-icon svg { width: 26px; height: 26px; color: #fff; }
.svc-title {
  color: var(--cyan);
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.05;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.svc-desc { color: #cfd3d3; font-size: .92rem; line-height: 1.55; flex: 1; }
.svc-cta {
  align-self: flex-start;
  margin-top: 18px;
  padding: 9px 18px;
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform .12s, background .15s;
}
.svc-cta:hover { transform: translateY(-1px); background: #ff6b6b; }

/* ==========================================================================
   About page — alternating text / image rows
   ========================================================================== */
.about-tagline {
  color: var(--cyan);
  font-weight: 800;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  margin-bottom: 4px;
}
.about-row { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; margin: 30px 0; }
.about-row.no-img { grid-template-columns: 1fr; }
@media (min-width: 800px) {
  .about-row { grid-template-columns: minmax(0, 1fr) 260px; align-items: start; }
  .about-row.flip { grid-template-columns: 260px minmax(0, 1fr); }
  .about-row.flip .about-row-text { order: 2; }
  .about-row.flip .about-img { order: 1; }
  .about-row.no-img { grid-template-columns: 1fr !important; }
}
.about-row .about-img { width: 100%; max-width: none; height: auto; border-radius: 14px; margin: 0; }
.about-row-text p { margin-bottom: 14px; }
.support-cta { display: inline-block; margin-top: 6px; }
.about-leadline { color: var(--coral); font-weight: 800; font-size: 1.1rem; margin: 4px 0 12px; }
.about-sub { margin-bottom: 10px; }
