/* 2026-05-25b route extraction: Airwaves card, calendar, studio, and transcript base. */
.media-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 20, 27, 0.78);
  box-shadow: var(--shadow-tight);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.media-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-brass);
  background: rgba(23, 29, 37, 0.86);
}

.media-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--brass);
  background: rgba(23, 29, 37, 0.92);
}

.media-card:hover .media-visual img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.06);
}

.media-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0) 48%, rgba(7, 8, 10, 0.72) 100%),
    linear-gradient(90deg, rgba(244, 239, 230, 0.12) 1px, transparent 1px);
  background-size: auto, 28px 28px;
  pointer-events: none;
}
.media-visual {
  position: relative;
  min-height: 190px;
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(90deg, rgba(244, 239, 230, 0.08) 0 2px, transparent 2px 20px),
    linear-gradient(135deg, rgba(40, 95, 146, 0.32), rgba(127, 29, 45, 0.16)),
    #101721;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.media-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease), filter 520ms var(--ease);
}

.airwaves-calendar-tools {
  justify-content: flex-end;
}

.airwaves-calendar-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 22px;
  margin-top: 26px;
}

.calendar-board,
.calendar-agenda {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 20, 27, 0.76);
  box-shadow: var(--shadow);
}

.calendar-toolbar,
.calendar-agenda-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.calendar-toolbar strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 10, 0.36);
}

.calendar-weekdays span {
  padding: 10px;
  color: var(--quiet);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.calendar-grid {
  padding: 10px;
  gap: 7px;
}

.calendar-day {
  position: relative;
  display: grid;
  min-height: 72px;
  align-content: space-between;
  justify-items: start;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(7, 8, 10, 0.42);
  color: var(--paper);
  padding: 9px;
  text-align: left;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.calendar-day:not(.is-blank):hover,
.calendar-day.is-selected {
  transform: translateY(-2px);
  border-color: var(--brass);
  background: rgba(199, 164, 90, 0.12);
}

.calendar-day.is-blank {
  min-height: 72px;
  border-color: transparent;
  background: transparent;
}

.calendar-day.is-today {
  border-color: rgba(224, 196, 124, 0.66);
}

.calendar-day.has-events::after {
  content: "";
  position: absolute;
  right: 9px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 16px rgba(40, 95, 146, 0.8);
}

.calendar-day span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
}

.calendar-day strong {
  color: var(--brass-2);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.calendar-agenda {
  max-height: 760px;
  overflow-y: auto;
}

.calendar-agenda-header {
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgba(16, 20, 27, 0.94);
  backdrop-filter: blur(12px);
}

.calendar-agenda-header h3 {
  margin-top: 10px;
}

.calendar-selected-list,
.calendar-all-list {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.calendar-all-list {
  padding-top: 0;
}

.calendar-event-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 8, 10, 0.34);
}

.calendar-event-card.compact {
  background: rgba(40, 95, 146, 0.12);
}

.calendar-event-card[data-scope="sju"] {
  border-left: 3px solid var(--oxblood);
}

.calendar-event-card[data-scope="around"] {
  border-left: 3px solid var(--brass);
}

.calendar-event-card[data-scope="epigram"] {
  border-left: 3px solid var(--cobalt);
}

.calendar-event-date {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(244, 239, 230, 0.05);
}

.calendar-event-date strong {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.calendar-event-date span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.calendar-event-card h3 {
  margin-top: 9px;
  font-size: 1.1rem;
}

.calendar-event-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.airwaves-studio-hero,
.airwaves-channel-hero {
  background:
    linear-gradient(90deg, rgba(244, 239, 230, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(244, 239, 230, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(127, 29, 45, 0.22), transparent 34%),
    linear-gradient(225deg, rgba(40, 95, 146, 0.24), transparent 36%),
    #07090d;
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
}

.studio-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: 40px;
  align-items: center;
}

.studio-hero-copy {
  max-width: 760px;
}

.airwaves-channel-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 720px);
  margin-top: 28px;
}

.airwaves-channel-strip a {
  min-height: 76px;
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0.055), rgba(244, 239, 230, 0.022)),
    rgba(8, 10, 13, 0.72);
  padding: 14px;
  display: grid;
  align-content: space-between;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease);
}

.airwaves-channel-strip a:hover,
.airwaves-channel-strip a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(224, 196, 124, 0.38);
  background:
    linear-gradient(180deg, rgba(40, 95, 146, 0.14), rgba(244, 239, 230, 0.032)),
    rgba(8, 10, 13, 0.82);
}

.airwaves-channel-strip span,
.media-episode-code {
  color: var(--brass-2);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.airwaves-channel-strip strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.studio-monitor {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 230, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0.06), rgba(244, 239, 230, 0.025)),
    #0a0d12;
  box-shadow: 0 26px 82px rgba(0, 0, 0, 0.34);
}

.studio-monitor.compact {
  max-width: 430px;
  justify-self: end;
}

.studio-monitor header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
}

.monitor-screen {
  position: relative;
  min-height: 320px;
  display: grid;
  align-content: center;
  gap: 28px;
  overflow: hidden;
  padding: 30px;
  background:
    linear-gradient(115deg, rgba(224, 196, 124, 0.11), transparent 30%),
    linear-gradient(245deg, rgba(47, 125, 102, 0.13), transparent 32%),
    #080b10;
}

.studio-monitor.compact .monitor-screen {
  min-height: 260px;
}

.monitor-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 239, 230, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(244, 239, 230, 0.045) 1px, transparent 1px),
    repeating-linear-gradient(180deg, transparent 0 8px, rgba(255, 255, 255, 0.026) 8px 9px);
  background-size: 38px 38px, 38px 38px, auto;
  mask-image: linear-gradient(180deg, transparent, black 18%, black 82%, transparent);
}

.monitor-title {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.monitor-title span {
  color: var(--brass-2);
  font-family: var(--font-mono);
  font-weight: 700;
}

.monitor-title strong {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.9;
}

.monitor-wave,
.media-waveform {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 54px;
}

.monitor-wave span,
.media-waveform span {
  width: 4px;
  min-height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brass-2), var(--cobalt));
  transform-origin: 50% 100%;
  animation: airwave-pulse 1200ms ease-in-out infinite;
  animation-delay: calc(var(--wave-i, 1) * 65ms);
}

.monitor-wave span:nth-child(2n),
.media-waveform span:nth-child(2n) {
  --wave-i: 2;
  background: linear-gradient(180deg, var(--jade), var(--brass));
}

.monitor-wave span:nth-child(3n),
.media-waveform span:nth-child(3n) {
  --wave-i: 4;
}

.monitor-wave span:nth-child(1),
.media-waveform span:nth-child(1) { --wave-i: 0; }

.monitor-wave span:nth-child(2),
.media-waveform span:nth-child(2) { --wave-i: 1; }

.monitor-wave span:nth-child(3),
.media-waveform span:nth-child(3) { --wave-i: 2; }

.monitor-wave span:nth-child(4),
.media-waveform span:nth-child(4) { --wave-i: 3; }

.monitor-wave span:nth-child(5),
.media-waveform span:nth-child(5) { --wave-i: 4; }

.monitor-wave span:nth-child(6),
.media-waveform span:nth-child(6) { --wave-i: 5; }

.monitor-wave span:nth-child(7),
.media-waveform span:nth-child(7) { --wave-i: 6; }

.monitor-wave span:nth-child(8),
.media-waveform span:nth-child(8) { --wave-i: 7; }

.media-waveform span:nth-child(9) { --wave-i: 8; }
.media-waveform span:nth-child(10) { --wave-i: 9; }
.media-waveform span:nth-child(11) { --wave-i: 10; }
.media-waveform span:nth-child(12) { --wave-i: 11; }
.media-waveform span:nth-child(13) { --wave-i: 12; }
.media-waveform span:nth-child(14) { --wave-i: 13; }
.media-waveform span:nth-child(15) { --wave-i: 14; }
.media-waveform span:nth-child(16) { --wave-i: 15; }
.media-waveform span:nth-child(17) { --wave-i: 16; }
.media-waveform span:nth-child(18) { --wave-i: 17; }

.monitor-readout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(244, 239, 230, 0.1);
}

.monitor-readout div {
  padding: 16px;
  border-right: 1px solid rgba(244, 239, 230, 0.1);
}

.monitor-readout div:last-child {
  border-right: 0;
}

.monitor-readout span {
  display: block;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.monitor-readout strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 2rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 30px;
  border: 1px solid rgba(244, 239, 230, 0.14);
  border-radius: 999px;
  background: rgba(244, 239, 230, 0.055);
  color: var(--paper);
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.live-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brass-2);
  box-shadow: 0 0 14px rgba(224, 196, 124, 0.7);
}

.live-pill[data-state="live"]::before {
  background: #f06a6a;
  box-shadow: 0 0 18px rgba(240, 106, 106, 0.92);
  animation: live-blink 1200ms ease-in-out infinite;
}

.live-pill[data-state="scheduled"]::before,
.live-pill[data-state="ready"]::before {
  background: var(--jade);
  box-shadow: 0 0 14px rgba(47, 125, 102, 0.82);
}

.live-pill[data-state="draft"]::before {
  background: var(--cobalt);
  box-shadow: 0 0 14px rgba(40, 95, 146, 0.82);
}

.airwaves-live-section {
  background:
    linear-gradient(90deg, rgba(40, 95, 146, 0.12), transparent 42%),
    rgba(6, 7, 9, 0.8);
}

.studio-state-grid,
.studio-episode-grid,
.season-arc-grid,
.calendar-radar-grid {
  display: grid;
  gap: 18px;
}

.studio-state-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.studio-episode-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.season-arc-grid,
.calendar-radar-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.airwaves-episode-panel {
  border-color: rgba(244, 239, 230, 0.13);
  background:
    linear-gradient(135deg, rgba(40, 95, 146, 0.13), transparent 42%),
    linear-gradient(180deg, rgba(244, 239, 230, 0.055), rgba(244, 239, 230, 0.024)),
    rgba(8, 10, 13, 0.78);
}

.studio-episode-grid > .airwaves-episode-panel.featured-media {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.airwaves-episode-panel .media-visual {
  min-height: 250px;
  border-bottom-color: rgba(244, 239, 230, 0.1);
}

.studio-episode-grid > .airwaves-episode-panel.featured-media .media-visual {
  min-height: 100%;
  border-right: 1px solid rgba(244, 239, 230, 0.1);
  border-bottom: 0;
}

.media-broadcast-chrome {
  position: absolute;
  inset: 12px 12px auto;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(244, 239, 230, 0.78);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.media-waveform {
  position: absolute;
  inset: auto 18px 18px;
  height: 34px;
}

.media-waveform span {
  width: 3px;
}

.media-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.media-people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.media-person-card {
  display: grid;
  gap: 2px;
  min-height: 58px;
  border: 1px solid rgba(244, 239, 230, 0.1);
  border-radius: 8px;
  background: rgba(244, 239, 230, 0.045);
  padding: 10px;
}

.media-person-card b {
  color: var(--brass-2);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.media-person-card strong {
  font-size: 0.9rem;
  line-height: 1.2;
}

.media-embed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.media-embed-frame,
.media-embed-placeholder {
  min-height: 152px;
  border: 1px solid rgba(244, 239, 230, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(7, 8, 10, 0.48);
}

.media-embed-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 152px;
  border: 0;
}

.media-embed-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  padding: 18px;
  color: var(--muted);
  text-align: center;
}

.media-embed-placeholder span {
  color: var(--brass-2);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.media-embed-placeholder strong {
  color: var(--paper);
  font-size: 0.88rem;
}

.arc-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(127, 29, 45, 0.16), transparent 38%),
    linear-gradient(225deg, rgba(47, 125, 102, 0.12), transparent 36%),
    rgba(8, 10, 13, 0.72);
  padding: 22px;
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.arc-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.arc-progress {
  height: 8px;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 230, 0.12);
  border-radius: 999px;
  background: rgba(244, 239, 230, 0.04);
}

.arc-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cobalt), var(--brass-2), var(--jade));
}

.transcript-sheet {
  display: grid;
  gap: 20px;
}

.transcript-sheet header {
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.transcript-sheet header p {
  color: var(--muted);
  margin: 0;
}

.transcript-lines {
  display: grid;
  gap: 12px;
}

.transcript-lines p {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 239, 230, 0.04);
  padding: 14px;
  color: var(--paper-2);
}

.transcript-lines span {
  color: var(--brass-2);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
}

@keyframes airwave-pulse {
  0%, 100% {
    height: 12px;
    opacity: 0.62;
  }
  50% {
    height: 46px;
    opacity: 1;
  }
}

@keyframes live-blink {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.45);
    opacity: 0.64;
  }
}

.play-glyph {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(7, 8, 10, 0.46);
}

.play-glyph::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--paper);
  margin-left: 4px;
}

/* 2026-05-25 route extraction: Airwaves studio, channel, media, and calendar shell. */
@media (max-width: 1180px) {
  .studio-hero-layout,
  .studio-episode-grid > .airwaves-episode-panel.featured-media {
    grid-template-columns: 1fr;
  }

  .studio-monitor.compact {
    justify-self: stretch;
    max-width: none;
  }

  .studio-episode-grid > .airwaves-episode-panel.featured-media .media-visual {
    min-height: 280px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 239, 230, 0.1);
  }

  .studio-state-grid,
  .season-arc-grid,
  .calendar-radar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .airwaves-channel-strip,
  .studio-state-grid,
  .studio-episode-grid,
  .season-arc-grid,
  .calendar-radar-grid,
  .media-embed-grid,
  .media-people-grid {
    grid-template-columns: 1fr;
  }

  .studio-episode-grid > .airwaves-episode-panel.featured-media {
    grid-column: span 1;
  }

  .monitor-title strong {
    font-size: 3rem;
  }

  .monitor-screen {
    min-height: 260px;
    padding: 24px;
  }

  .airwaves-channel-strip {
    margin-top: 22px;
  }

  .media-embed-frame,
  .media-embed-placeholder,
  .media-embed-frame iframe {
    min-height: 190px;
  }
}

@media (max-width: 560px) {
  .monitor-readout {
    grid-template-columns: 1fr;
  }

  .monitor-readout div {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 239, 230, 0.1);
  }

  .monitor-readout div:last-child {
    border-bottom: 0;
  }

  .transcript-lines p {
    grid-template-columns: 1fr;
  }

  .calendar-day {
    min-height: 54px;
    padding: 7px;
  }
}

/* Airwaves visual QA refinements: calmer, denser, more control-room than splash screen. */
.airwaves-studio-hero,
.airwaves-channel-hero {
  min-height: clamp(560px, 74svh, 680px) !important;
  align-items: center !important;
  padding-top: clamp(90px, 7vw, 112px) !important;
  padding-bottom: clamp(26px, 4vw, 42px) !important;
  background:
    radial-gradient(circle, rgba(244, 237, 221, 0.07) 0 1px, transparent 1.3px) 0 0 / 22px 22px,
    linear-gradient(90deg, transparent 0 7.5%, rgba(210, 177, 95, 0.105) 7.58% 7.66%, transparent 7.74% 100%),
    linear-gradient(180deg, rgba(6, 7, 9, 0.1), #050607 94%),
    #050607 !important;
}

.airwaves-studio-hero::before,
.airwaves-channel-hero::before {
  opacity: 0.45 !important;
}

.airwaves-studio-hero .studio-hero-layout,
.airwaves-channel-hero .studio-hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px) !important;
  gap: clamp(34px, 5vw, 58px) !important;
}

.airwaves-studio-hero .display-medium,
.airwaves-channel-hero .display-medium {
  max-width: 780px !important;
  font-size: clamp(3rem, 5.6vw, 4.7rem) !important;
  line-height: 0.99 !important;
}

.airwaves-channel-hero .display-medium {
  max-width: 760px !important;
  font-size: clamp(2.75rem, 5vw, 4.25rem) !important;
}

.airwaves-studio-hero .body-lg,
.airwaves-channel-hero .body-lg,
.studio-hero-copy .body-lg {
  max-width: 620px !important;
  color: rgba(244, 237, 221, 0.7) !important;
  font-size: clamp(0.98rem, 1.22vw, 1.06rem) !important;
  line-height: 1.62 !important;
}

.airwaves-studio-hero .hero-actions,
.airwaves-channel-hero .hero-actions {
  margin-top: 26px !important;
}

.airwaves-channel-strip {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  width: min(100%, 700px) !important;
  margin-top: 22px !important;
}

.airwaves-channel-strip a {
  flex: 1 1 150px !important;
  min-height: 52px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 12px !important;
  background: rgba(8, 9, 10, 0.78) !important;
  box-shadow: none !important;
}

.airwaves-channel-strip strong {
  font-size: 0.98rem !important;
}

.airwaves-channel-strip span {
  min-width: 24px !important;
}

.studio-monitor,
.opening-crest-theatre,
.arena-control {
  min-height: 0 !important;
  box-shadow: none !important;
}

.studio-monitor {
  align-self: center !important;
  border-color: rgba(244, 237, 221, 0.12) !important;
  background:
    linear-gradient(180deg, rgba(244, 237, 221, 0.045), rgba(244, 237, 221, 0.016)),
    rgba(9, 10, 11, 0.78) !important;
}

.studio-monitor header {
  padding: 14px 16px !important;
}

.monitor-screen {
  min-height: 214px !important;
  padding: 24px !important;
}

.studio-monitor.compact .monitor-screen {
  min-height: 204px !important;
}

.monitor-title strong {
  font-size: clamp(2.8rem, 4.8vw, 3.85rem) !important;
}

.monitor-readout div {
  padding: 13px 16px !important;
}

.monitor-readout strong {
  font-size: 1.75rem !important;
}

.monitor-wave,
.media-waveform {
  opacity: 0.82 !important;
}

.monitor-wave span,
.media-waveform span {
  animation-duration: 1800ms !important;
}

.airwaves-live-section,
.airwaves-studio-hero + .section,
.airwaves-channel-hero + .section {
  padding-top: clamp(62px, 7vw, 82px) !important;
}

.archive-command.compact {
  background: rgba(8, 9, 10, 0.58) !important;
  box-shadow: none !important;
}

.airwaves-episode-panel,
.arc-card,
.calendar-board,
.calendar-agenda,
.calendar-event-card {
  box-shadow: none !important;
}

@media (max-width: 1180px) {
  .airwaves-studio-hero .studio-hero-layout,
  .airwaves-channel-hero .studio-hero-layout {
    grid-template-columns: 1fr !important;
  }

  .airwaves-studio-hero,
  .airwaves-channel-hero {
    min-height: auto !important;
  }
}

@media (max-width: 820px) {
  .airwaves-studio-hero .display-medium,
  .airwaves-channel-hero .display-medium {
    font-size: clamp(2.2rem, 10.5vw, 3rem) !important;
    overflow-wrap: anywhere !important;
  }

  .airwaves-studio-hero .studio-monitor,
  .airwaves-channel-hero .studio-monitor {
    display: none !important;
  }

  .airwaves-studio-hero .hero-copy,
  .airwaves-channel-hero .hero-copy,
  .airwaves-studio-hero .body-lg,
  .airwaves-channel-hero .body-lg {
    max-width: calc(100vw - 32px) !important;
    overflow-wrap: anywhere !important;
  }

  .airwaves-live-section .title-xl,
  .airwaves-studio-hero + .section .title-xl,
  .airwaves-channel-hero + .section .title-xl {
    font-size: clamp(2rem, 9vw, 2.65rem) !important;
    line-height: 1.04 !important;
    overflow-wrap: anywhere !important;
  }

  .airwaves-channel-strip {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .monitor-screen {
    min-height: 214px !important;
  }
}
