:root {
  --ink: #101522;
  --ink-2: #1f2a3b;
  --paper: #f6f5f1;
  --white: #ffffff;
  --mist: #e8edf0;
  --line: #cbd2d9;
  --red: #e10600;
  --red-dark: #aa100c;
  --denim: #1f5b70;
  --green: #254b3c;
  --gold: #d49a28;
  --shadow: 0 18px 50px rgba(16, 21, 34, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:target,
#contact-form {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  padding-bottom: 86px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
}

#content {
  transition: opacity 160ms ease;
}

body[data-page-loading="true"] #content {
  opacity: 0.5;
  pointer-events: none;
}

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

.logo-on-dark {
  border: 1px solid rgba(16, 21, 34, 0.16);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

.logo-on-light {
  background: transparent;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  min-height: 90px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px clamp(18px, 4vw, 52px);
  color: var(--white);
  background: rgba(16, 21, 34, 0.6);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header[data-elevated="true"] {
  background: rgba(16, 21, 34, 0.95);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

.brand-mark,
.site-nav a,
.site-footer a,
.text-link,
.footer-brand {
  text-decoration: none;
}

.brand-mark {
  display: flex;
  align-items: center;
  min-width: 94px;
  color: var(--white);
  line-height: 1;
}

.brand-logo {
  width: 94px;
  height: 70px;
  flex: 0 0 auto;
  padding: 3px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px clamp(10px, 1.8vw, 18px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav .menu-item {
  position: relative;
  list-style: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 0;
}

.site-nav .menu-item-has-children > a::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.site-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 45;
  min-width: 178px;
  display: grid;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(16, 21, 34, 0.98);
  box-shadow: var(--shadow);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  visibility: hidden;
  transition: opacity 120ms ease, transform 120ms ease, visibility 120ms ease;
}

.site-nav .sub-menu .menu-item {
  display: block;
}

.site-nav .sub-menu a {
  display: block;
  padding: 7px 4px;
  white-space: nowrap;
}

.site-nav .menu-item:hover > .sub-menu,
.site-nav .menu-item:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.site-nav a:hover,
.site-nav a[data-current="true"],
.site-footer a:hover,
.text-link:hover {
  color: var(--gold);
}

.call-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
}

.call-button {
  background: var(--red);
  color: var(--white);
}

.nav-toggle {
  display: none;
}

.home-hero,
.page-hero {
  position: relative;
  color: var(--white);
  background-color: var(--ink);
  background-image:
    linear-gradient(120deg, rgba(16, 21, 34, 0.99) 0%, rgba(16, 21, 34, 0.96) 54%, rgba(170, 16, 12, 0.74) 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.home-hero {
  min-height: clamp(620px, 72vh, 720px);
  display: grid;
  align-items: center;
  padding: 112px clamp(22px, 5vw, 72px) 64px;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: clamp(40px, 5vw, 84px);
  align-items: center;
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 132px clamp(22px, 7vw, 90px) 68px;
}

.page-hero::after,
.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 10px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--denim));
}

.podcast-hero {
  background-color: var(--ink);
  background-image:
    linear-gradient(120deg, rgba(16, 21, 34, 0.99) 0%, rgba(16, 21, 34, 0.9) 54%, rgba(170, 16, 12, 0.58) 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.julio-hero {
  background-color: var(--ink);
  background-image:
    linear-gradient(90deg, rgba(16, 21, 34, 0.99) 0%, rgba(16, 21, 34, 0.84) 58%, rgba(16, 21, 34, 0.28) 100%),
    url("julio.jpg");
  background-position: center, right 18% center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, auto 74%;
}

.profile-hero {
  background-color: var(--ink);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.home-hero .hero-content {
  width: auto;
  max-width: 680px;
}

.brand-lockup {
  display: grid;
  gap: 6px;
  width: fit-content;
  margin-bottom: 28px;
}

.brand-lockup strong {
  display: block;
  color: var(--white);
  font-size: clamp(2.25rem, 7vw, 5.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.brand-lockup span {
  color: var(--gold);
  font-size: clamp(1rem, 2.2vw, 1.42rem);
  font-weight: 1000;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker,
.live-dot {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 900;
}

.eyebrow,
.section-kicker {
  color: var(--red);
}

.home-hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.home-hero h1 {
  font-size: 5.6rem;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-broadcast-dashboard {
  position: relative;
  display: grid;
  gap: 20px;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(10, 14, 24, 0.88);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.hero-dashboard-watermark {
  position: absolute;
  top: -24px;
  right: -34px;
  width: 230px;
  height: 180px;
  object-fit: contain;
  opacity: 0.07;
  pointer-events: none;
}

.hero-dashboard-topline,
.hero-up-next,
.hero-dashboard-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-dashboard-topline {
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-dashboard-topline .live-dot {
  margin: 0;
  color: #ffdf6b;
}

.hero-dashboard-topline a,
.hero-up-next .text-link {
  color: var(--white);
  font-weight: 900;
}

.hero-program {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.hero-program-art {
  width: 108px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.hero-program-art.is-station-mark {
  padding: 9px;
  border-color: rgba(16, 21, 34, 0.16);
  background: var(--white);
}

.hero-program-art.is-station-mark img {
  object-fit: contain;
}

.hero-program-art img,
.hero-program-art .song-cover-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-program-art .song-cover-fallback {
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  font-size: 1.7rem;
  font-weight: 1000;
}

.hero-program-copy {
  min-width: 0;
}

.hero-program-copy .card-meta,
.hero-song-detail .card-meta,
.hero-up-next .card-meta {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.62);
}

.hero-program-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.02;
}

.hero-program-time {
  margin: 7px 0 0;
  color: var(--gold);
  font-weight: 1000;
}

.hero-program-description {
  display: -webkit-box;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.hero-song-detail {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-song-detail strong {
  font-size: 1.16rem;
  line-height: 1.15;
}

.hero-song-detail > span:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.hero-up-next > div {
  display: grid;
  min-width: 0;
}

.hero-up-next strong {
  line-height: 1.2;
}

.hero-up-next span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.hero-dashboard-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.button-small {
  min-height: 40px;
  color: var(--white);
  background: var(--ink);
}

.button-invert {
  background: var(--white);
  color: var(--red-dark);
}

.section,
.listen-panel {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.listen-panel {
  transform: translateY(-42px);
  display: grid;
  grid-template-columns: 1fr minmax(300px, 480px);
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.listen-panel.full-listen {
  transform: none;
  margin-top: 48px;
  margin-bottom: 38px;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1.25fr);
}

.listen-panel h2,
.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.inline-player {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: var(--mist);
  border-radius: var(--radius);
}

.cirrus-inline-status {
  grid-template-columns: 1fr;
}

.home-live-stack {
  display: grid;
  gap: 12px;
}

.home-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-quick-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 900;
}

.home-quick-actions a:hover {
  border-color: var(--red);
  color: var(--red-dark);
}

.track-stack {
  display: grid;
  gap: 2px;
}

.live-dot {
  width: fit-content;
  margin: 0;
  padding: 3px 7px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
  font-size: 0.68rem;
}

.section {
  padding: 72px 0;
}

.section.compact {
  padding-top: 36px;
}

.split-section,
.two-column {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 40px;
  align-items: start;
}

.section-intro {
  max-width: 760px;
}

.section-intro p:not(.section-kicker),
.section-heading-row p,
.podcast-copy p,
.detail-list p,
.rich-copy p,
.intro-copy,
.source-note {
  color: #56606f;
  font-size: 1.05rem;
}

.source-note {
  margin-top: 16px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

.text-link {
  color: var(--red-dark);
  font-weight: 900;
}

.home-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 26px;
}

.events-action-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 24px;
}

.podcast-action-grid {
  margin-bottom: 0;
}

.action-card {
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 152px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(16, 21, 34, 0.08);
}

.action-card:hover {
  outline: 2px solid var(--gold);
}

.action-card span {
  color: var(--red-dark);
  font-size: 0.76rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.action-card strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.1;
}

.action-card em {
  color: #56606f;
  font-style: normal;
  font-size: 0.95rem;
}

.show-grid,
.news-grid,
.sponsor-grid,
.person-grid,
.package-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}

.show-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sunday-show-grid {
  align-items: start;
}

.show-card-no-media {
  grid-template-rows: 1fr;
}

.home-schedule-section .section-heading-row > div {
  max-width: 760px;
}

.home-show-grid {
  grid-template-columns: repeat(2, minmax(360px, 1fr));
}

.on-air-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.on-air-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(16, 21, 34, 0.08);
}

.on-air-card.is-current {
  min-height: 330px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 21, 34, 0.96), rgba(32, 73, 73, 0.91)),
    linear-gradient(135deg, var(--ink), var(--green));
}

.on-air-card h3 {
  margin: 0;
  line-height: 1.05;
  font-size: clamp(1.35rem, 3vw, 2.75rem);
}

.on-air-card:not(.is-current) h3 {
  font-size: 1.35rem;
}

.on-air-card p {
  margin: 0;
  color: #56606f;
}

.on-air-card.is-current p,
.on-air-card.is-current .card-meta {
  color: rgba(255, 255, 255, 0.78);
}

.on-air-card.is-current .on-air-time {
  color: var(--gold);
}

.on-air-time {
  color: var(--ink-2);
  font-weight: 1000;
}

.on-air-metadata {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.on-air-metadata strong {
  line-height: 1.08;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}

.on-air-metadata span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.on-air-card.is-current .on-air-metadata .text-link {
  color: var(--gold);
}

.on-air-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

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

.sponsor-grid,
.person-grid,
.package-grid,
.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-person-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-business-feature {
  display: grid;
  max-width: 720px;
}

.show-card,
.news-card,
.sponsor-card,
.person-card,
.event-card,
.demo-form,
.wmoq-form,
.package-card,
.feature-card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(16, 21, 34, 0.08);
  overflow: hidden;
}

.show-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
}

.show-card-media {
  display: grid;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  background: #edf1f3;
}

.show-card-media img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-height: 100%;
}

.show-card-media.is-contain {
  padding: clamp(12px, 2vw, 24px);
  background: var(--white);
}

.show-card-media.is-contain img {
  object-fit: contain;
}

.show-card-media.is-cover img {
  object-fit: cover;
}

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

.show-card-media .image-fallback {
  width: 100%;
  min-height: 100%;
}

.image-fallback {
  display: grid;
  place-items: center;
  min-height: 160px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--denim));
  font-size: 2rem;
  font-weight: 1000;
}

.show-body,
.news-card,
.sponsor-card,
.event-body,
.person-body,
.package-card,
.feature-card {
  padding: 18px;
}

.show-card h3,
.news-card h3,
.sponsor-card h3,
.event-card h3,
.person-card h3,
.demo-form h3,
.package-card h3,
.feature-card h3 {
  margin: 0 0 8px;
  line-height: 1.15;
}

.show-time,
.card-meta,
.event-date,
.person-role,
.sponsor-category,
.package-meta {
  color: var(--red-dark);
  font-weight: 900;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.show-card p,
.news-card p,
.sponsor-card p,
.event-card p,
.person-card p,
.package-card p,
.feature-card p {
  color: #56606f;
}

.person-meta {
  margin: 0 0 10px;
  color: var(--ink-2) !important;
  font-weight: 900;
  font-size: 0.92rem;
}

.compact-person-card .person-body {
  display: grid;
  align-content: start;
  gap: 8px;
}

.compact-person-card .text-link {
  margin-top: 4px;
}

.is-source-headline {
  border-top: 5px solid var(--gold);
}

.two-column .package-grid {
  grid-template-columns: 1fr;
}

.advertise-package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 22px 0;
}

.source-media {
  display: grid;
  gap: 18px;
}

.source-image-card {
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(16, 21, 34, 0.08);
}

.source-image-card img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  border-radius: 6px;
  background: var(--paper);
}

.source-image-card h3 {
  margin: 14px 0 6px;
}

.source-image-card p {
  margin: 0;
  color: #56606f;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr) minmax(240px, 0.55fr);
  gap: 34px;
  align-items: start;
}

.profile-layout-no-media {
  grid-template-columns: minmax(420px, 1fr) minmax(250px, 0.42fr);
}

.profile-photo-card img {
  max-height: 460px;
  object-fit: cover;
}

.podcast-series-layout .profile-photo-card img {
  height: auto;
  aspect-ratio: auto;
  max-height: none;
  object-fit: contain;
  background: var(--white);
}

.profile-photo-card.show-art-contain img {
  height: auto;
  max-height: none;
  object-fit: contain;
}

.podcast-series-layout {
  width: min(1480px, calc(100% - 64px));
  grid-template-columns: minmax(250px, 0.3fr) minmax(0, 1fr);
  grid-template-areas:
    "series-media series-content"
    "series-links series-content";
  grid-template-rows: auto 1fr;
  gap: 34px 44px;
}

.podcast-series-layout > .profile-photo-card {
  grid-area: series-media;
}

.podcast-series-layout > .rich-copy {
  grid-area: series-content;
  min-width: 0;
  max-width: none;
}

.podcast-series-layout > .profile-facts {
  grid-area: series-links;
  align-self: start;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.profile-facts {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--mist);
}

.profile-facts h3 {
  margin: 0 0 14px;
}

.profile-facts ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: #56606f;
}

.band-light {
  width: 100%;
  max-width: none;
  padding: 72px max(22px, calc((100vw - var(--max)) / 2)) 78px;
  background: var(--mist);
}

.band-red {
  width: 100%;
  max-width: none;
  padding: 72px max(22px, calc((100vw - var(--max)) / 2)) 78px;
  color: var(--white);
  background: linear-gradient(120deg, var(--red-dark), var(--red) 54%, #7d150f);
}

.band-red .section-kicker,
.band-red p {
  color: rgba(255, 255, 255, 0.84);
}

.event-list {
  display: grid;
  gap: 14px;
}

.event-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.event-filter-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
}

.event-filter-tabs a:hover,
.event-filter-tabs a.is-active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.remote-workflow-panel {
  margin-bottom: 30px;
  padding-bottom: 6px;
}

.remote-workflow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.remote-public-panel,
.host-remote-panel,
.business-remote-cta {
  border: 1px solid rgba(16, 21, 34, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(16, 21, 34, 0.08);
}

.remote-public-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
  padding: 20px;
}

.remote-public-panel article,
.host-remote-panel {
  display: grid;
  align-content: start;
  gap: 8px;
}

.remote-public-panel h3,
.host-remote-panel h3 {
  margin: 0;
  line-height: 1.16;
}

.remote-public-panel p,
.host-remote-panel p {
  margin: 0;
}

.host-remote-panel {
  margin: 22px 0;
  padding: 20px;
  border-left: 6px solid var(--red);
}

.business-remote-cta {
  margin-bottom: 0;
  padding-top: 36px;
  padding-bottom: 36px;
}

@media (min-width: 761px) {
  #news-preview .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.business-remote-cta .section-heading-row {
  margin-bottom: 0;
}

.event-card {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
}

.event-date {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--white);
  background: var(--green);
  text-align: center;
}

.event-action {
  padding: 18px;
}

.event-highlight {
  margin-top: 8px;
  color: var(--red-dark) !important;
  font-weight: 800;
}

.remote-meta-line {
  margin-top: 8px;
  color: var(--ink-2) !important;
  font-weight: 900;
}

.podcast-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(520px, 1.25fr);
  gap: 44px;
  align-items: center;
}

.podcast-lineup-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.podcast-lineup-item {
  min-width: 0;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 94px;
  padding: 9px;
  border: 1px solid #dde1e7;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.podcast-lineup-item:hover {
  transform: translateY(-2px);
  border-color: var(--red);
}

.podcast-lineup-art {
  width: 82px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 5px;
  color: var(--ink);
  background: var(--white);
  font-weight: 1000;
}

.podcast-lineup-art img {
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
}

.podcast-lineup-art.is-fallback img {
  object-fit: contain;
  padding: 9px;
}

.podcast-lineup-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.podcast-lineup-copy small {
  color: var(--red-dark);
  font-weight: 900;
}

.podcast-lineup-copy strong,
.podcast-lineup-copy span {
  overflow-wrap: anywhere;
}

.podcast-lineup-copy strong {
  line-height: 1.14;
}

.podcast-lineup-copy span {
  color: #56606f;
  font-size: 0.88rem;
}

.podcast-video-section {
  padding-bottom: 42px;
}

.youtube-playlist-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.youtube-playlist-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.podcast-art {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.podcast-art img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  background: var(--white);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 24px 0;
}

.workflow span {
  padding: 12px 10px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  text-align: center;
  font-size: 0.88rem;
  font-weight: 900;
}

.recently-played-now {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin: 0 0 22px;
  padding: 20px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.recently-played-now img,
.song-history-card img,
.song-cover-fallback {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
}

.recently-played-now img,
.song-history-card img {
  object-fit: cover;
  background: var(--paper);
}

.recently-played-now h3 {
  margin: 4px 0 4px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.recently-played-now p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.song-cover-fallback {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 20%, rgba(212, 154, 40, 0.55), transparent 30%),
    linear-gradient(135deg, var(--ink) 0%, var(--red-dark) 58%, var(--gold) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(16, 21, 34, 0.2);
  font-size: 1.45rem;
  font-weight: 1000;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.38);
}

.song-cover-fallback::after {
  content: "";
  position: absolute;
  inset: auto 10% 12% 10%;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.song-history-list {
  display: grid;
  gap: 12px;
}

.song-history-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(16, 21, 34, 0.08);
}

.song-history-card h3 {
  margin: 4px 0 4px;
  line-height: 1.12;
}

.song-history-card p {
  margin: 0;
  color: #56606f;
}

.sponsor-card {
  color: var(--ink);
}

.business-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.business-feature-card {
  display: grid;
  grid-template-columns: minmax(120px, 0.55fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(16, 21, 34, 0.08);
}

.business-feature-card img,
.business-card-image {
  width: 100%;
  border-radius: 6px;
  background: var(--paper);
  object-fit: cover;
}

.business-image-fallback {
  display: grid;
  place-items: center;
  min-height: 150px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--denim));
  font-size: 2rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.business-feature-card img {
  height: 100%;
  min-height: 160px;
}

.business-supporter-card {
  display: grid;
  align-content: start;
}

.business-card-image {
  height: 150px;
  margin: -18px -18px 16px;
  width: calc(100% + 36px);
  border-radius: var(--radius) var(--radius) 0 0;
}

.business-meta-line {
  margin: -2px 0 8px;
  color: var(--ink-2) !important;
  font-weight: 900;
}

.business-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.related-remotes {
  margin-top: 42px;
}

.related-remotes h2 {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
}

.compact-event-list .event-card {
  grid-template-columns: 116px 1fr auto;
}

.compact-event-list .event-date,
.compact-event-list .event-action {
  padding: 14px;
}

.sponsor-category {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--white);
  background: var(--denim);
  font-size: 0.72rem;
}

.person-card {
  display: grid;
  grid-template-rows: 210px auto;
}

.person-roster {
  grid-template-columns: 1fr;
  gap: 22px;
}

.person-roster .person-card {
  grid-template-columns: 190px minmax(0, 1fr);
  grid-template-rows: auto;
  align-items: start;
}

.person-roster .person-card img {
  height: auto;
  min-height: 190px;
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.person-bio p:first-child {
  margin-top: 0;
}

.person-bio p:last-child {
  margin-bottom: 14px;
}

.memorial-card {
  grid-template-rows: minmax(210px, auto) auto;
}

.memorial-card img {
  object-position: center top;
}

.episode-card h3 {
  min-height: 3.4em;
}

.podcast-archive-heading {
  margin-bottom: 28px;
}

.podcast-archive-heading > div {
  max-width: 760px;
}

.podcast-archive-heading p:last-child {
  margin-bottom: 0;
  color: #56606f;
}

.podcast-program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.podcast-program-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(16, 21, 34, 0.08);
}

.podcast-program-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  color: var(--white);
  background: var(--white);
  text-decoration: none;
}

.podcast-program-media.is-fallback {
  background: var(--white);
}

.podcast-program-media img {
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
}

.podcast-program-media.is-fallback img {
  object-fit: contain;
  padding: 22px;
}

.podcast-program-media.is-fallback span {
  font-weight: 1000;
  text-transform: uppercase;
}

.podcast-program-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 19px;
}

.podcast-program-body h3 {
  margin: 7px 0 9px;
  line-height: 1.14;
  font-size: 1.25rem;
}

.podcast-program-body h3 a {
  color: var(--ink);
  text-decoration: none;
}

.podcast-program-body p {
  margin: 0 0 12px;
  color: #56606f;
}

.podcast-program-body .text-link {
  margin-top: auto;
}

.podcast-filter-tabs {
  margin-bottom: 26px;
}

.series-video-section,
.series-episode-section {
  margin-top: 36px;
}

.podcast-series-episode-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.podcast-series-episode-grid .podcast-episode-body {
  padding: 18px;
}

.podcast-series-episode-grid .podcast-episode-body h3 {
  margin-bottom: 18px;
  font-size: 1.18rem;
}

.podcast-series-episode-grid .episode-links {
  margin-top: auto;
}

.podcast-episode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.podcast-episode-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(16, 21, 34, 0.08);
}

.podcast-episode-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
}

.podcast-episode-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podcast-episode-media.is-program-art {
  background: var(--white);
}

.podcast-episode-media.is-program-art img {
  padding: 12px;
  object-fit: contain;
}

.podcast-episode-media.no-media span {
  font-weight: 1000;
  text-transform: uppercase;
}

.podcast-episode-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
}

.podcast-episode-body h3 {
  min-height: 0;
  margin: 6px 0 14px;
  line-height: 1.16;
  font-size: 1.35rem;
}

.podcast-episode-body h3 a {
  color: var(--ink);
  text-decoration: none;
}

.podcast-episode-body h3 a:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

.podcast-episode-body p {
  margin: 0 0 14px;
  color: #56606f;
}

.podcast-episode-body .source-note {
  margin-bottom: 10px;
}

.podcast-episode-body .episode-links {
  margin-top: auto;
  padding-top: 8px;
}

.archive-results-grid .news-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.archive-results-grid .news-card h3 a {
  color: inherit;
  text-decoration: none;
}

.archive-results-grid .news-card h3 a:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

.archive-results-grid .news-card .text-link {
  margin-top: auto;
}

.archive-pagination {
  margin-top: 30px;
}

.archive-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.archive-pagination .page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 12px;
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.archive-pagination .page-numbers.current {
  color: var(--white);
  background: var(--red-dark);
}

.archive-empty-state {
  max-width: 720px;
  padding: 28px;
}

.archive-empty-state .search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.episode-links,
.episode-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.episode-links {
  margin-top: 14px;
}

.episode-actions {
  margin: 22px 0;
}

.forms-section {
  padding-bottom: 120px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.demo-form,
.wmoq-form {
  padding: 24px;
}

.demo-form label {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
  font-weight: 800;
}

.demo-form input,
.demo-form textarea,
.demo-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  font: inherit;
  background: var(--white);
}

.form-note {
  margin: 12px 0 0;
  color: #687281;
  font-size: 0.88rem;
}

.wmoq-form .form-wide,
.wmoq-form button {
  grid-column: 1 / -1;
}

.wmoq-form button {
  justify-self: start;
}

.contact-hub {
  display: grid;
  gap: 12px;
}

.contact-hub > p:not(.section-kicker),
.inquiry-form-heading > p:not(.section-kicker),
.inquiry-entry-band > div:first-child > p:not(.section-kicker) {
  max-width: 760px;
  margin: 0;
  color: #56606f;
  font-size: 1.02rem;
}

.contact-hub h2,
.inquiry-form-heading h2,
.inquiry-entry-band h2 {
  font-size: clamp(1.9rem, 3vw, 2.65rem);
}

.contact-purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.contact-purpose {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--denim);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
}

.contact-purpose strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.16rem;
  line-height: 1.2;
}

.contact-purpose span {
  color: #56606f;
  font-size: 0.9rem;
}

.contact-purpose:hover,
.contact-purpose:focus-visible,
.contact-purpose.is-active {
  border-color: var(--red-dark);
  border-left-color: var(--red);
  outline: none;
}

.contact-purpose.is-active {
  box-shadow: inset 0 0 0 1px var(--red-dark);
}

#contact-form {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
}

#contact-form > aside {
  position: sticky;
  top: 118px;
}

.inquiry-form-shell {
  min-width: 0;
}

.inquiry-form-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.inquiry-form-heading .required-note {
  color: #687281;
  font-size: 0.86rem;
  font-weight: 700;
}

.inquiry-form-notice {
  padding: 12px 14px;
  border-left: 5px solid var(--gold);
  background: #fff7df;
  color: var(--ink) !important;
  font-weight: 750;
}

.inquiry-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.inquiry-form-grid > label {
  align-content: start;
  min-width: 0;
}

.wmoq-form button[type="submit"]:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.inquiry-turnstile [data-turnstile-status]:empty {
  display: none;
}

.field-required {
  margin-left: 5px;
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wmoq-form small {
  color: #687281;
  font-size: 0.82rem;
  font-weight: 650;
}

.wmoq-form input[type="file"] {
  padding: 10px;
  background: var(--mist);
}

.inquiry-checkbox-group {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.inquiry-checkbox-group legend {
  margin-bottom: 9px;
  font-weight: 900;
}

.inquiry-checkbox-group > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.wmoq-form .inquiry-checkbox-group label,
.wmoq-form .inquiry-consent {
  display: flex;
  gap: 9px;
  align-items: center;
  font-weight: 700;
}

.wmoq-form .inquiry-checkbox-group input[type="checkbox"],
.wmoq-form .inquiry-consent input[type="checkbox"] {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--red);
}

.wmoq-form .inquiry-checkbox-group label > span,
.wmoq-form .inquiry-consent > span {
  min-width: 0;
}

.inquiry-consent {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.form-response {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-left: 5px solid var(--denim);
  background: var(--mist);
}

.form-response.is-success {
  border-left-color: var(--green);
  background: #e9f4ed;
}

.form-response.is-error {
  border-left-color: var(--red);
  background: #fff0ef;
}

.form-response ul {
  margin-bottom: 0;
}

.inquiry-entry-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.inquiry-entry-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: center;
}

.inquiry-entry-band .button-outline,
.host-remote-panel .button-outline {
  border-color: var(--ink);
  color: var(--ink);
}

.detail-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.detail-list div {
  padding-left: 18px;
  border-left: 5px solid var(--red);
}

.detail-list dt {
  margin: 0 0 4px;
  font-weight: 1000;
  font-size: 1.05rem;
}

.detail-list dd {
  margin: 0;
}

.content-band {
  width: 100%;
  max-width: none;
  padding: 72px max(22px, calc((100vw - var(--max)) / 2));
}

.content-band.dark {
  color: var(--white);
  background: var(--ink);
}

.content-band.dark .section-kicker,
.content-band.dark p {
  color: rgba(255, 255, 255, 0.76);
}

.rich-copy {
  max-width: 760px;
}

.cta-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto 78px;
  padding: 30px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
}

.cta-strip h2 {
  margin: 0 0 8px;
  line-height: 1;
}

.cta-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(150px, auto) 1fr;
  gap: 18px 28px;
  align-items: center;
  padding: 34px clamp(22px, 7vw, 90px) 128px;
  color: var(--white);
  background: var(--ink);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.footer-logo {
  width: 150px;
  height: 130px;
  padding: 6px;
  object-fit: contain;
}

.hero-station-logo {
  width: min(340px, 72vw);
  max-height: 230px;
  margin-bottom: 20px;
  object-fit: contain;
  object-position: left center;
}

.site-footer div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer .footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-copy {
  max-width: 78ch;
  margin-inline: auto;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

.legal-copy h2 {
  margin: 1.75em 0 0.6em;
  font-size: 1.5rem;
  line-height: 1.3;
}

.legal-copy li {
  margin-block: 0.4em;
}

.legal-copy a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.site-footer p {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer .bigmt-credit {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--white);
  font-weight: 800;
}

.station-player {
  position: fixed;
  z-index: 1000;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: #080c14;
  box-shadow: 0 -10px 32px rgba(8, 12, 20, 0.24);
}

.station-player audio {
  display: none;
}

.station-player-inner {
  display: grid;
  grid-template-columns: 48px minmax(180px, 1fr) auto minmax(150px, auto);
  gap: 16px;
  align-items: center;
  width: min(var(--max), calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
}

.player-toggle,
.player-mute {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  color: var(--white);
  cursor: pointer;
}

.player-toggle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
}

.player-toggle:hover {
  background: #ff211a;
}

.player-toggle-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 20px;
}

.player-toggle-icon::before {
  position: absolute;
  top: 2px;
  left: 5px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid currentColor;
  content: "";
}

.station-player[data-playing="true"] .player-toggle-icon::before {
  top: 2px;
  left: 3px;
  width: 4px;
  height: 16px;
  border: 0;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor;
}

.player-track-copy {
  display: grid;
  min-width: 0;
  line-height: 1.15;
}

.player-live-state {
  display: flex;
  gap: 7px;
  align-items: center;
  color: #ffaaa7;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.player-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.2);
}

.player-track-copy strong,
.player-track-copy > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-track-copy strong {
  margin-top: 3px;
  font-size: 1rem;
}

.player-track-copy > span:last-child {
  margin-top: 2px;
  color: #bfc8d5;
  font-size: 0.8rem;
}

.player-history-link {
  color: #e8edf5;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.player-volume {
  display: grid;
  grid-template-columns: 36px 104px;
  gap: 8px;
  align-items: center;
}

.player-mute {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
}

.player-mute:hover {
  background: rgba(255, 255, 255, 0.1);
}

.player-volume-icon {
  position: relative;
  display: block;
  width: 22px;
  height: 18px;
}

.player-volume-icon > span::before {
  position: absolute;
  top: 5px;
  left: 1px;
  width: 8px;
  height: 8px;
  background: currentColor;
  clip-path: polygon(0 25%, 42% 25%, 100% 0, 100% 100%, 42% 75%, 0 75%);
  content: "";
}

.player-volume-icon > span::after {
  position: absolute;
  top: 3px;
  right: 1px;
  width: 8px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.player-mute.is-muted .player-volume-icon::after {
  position: absolute;
  top: 8px;
  right: 0;
  width: 12px;
  height: 2px;
  background: var(--red);
  content: "";
  transform: rotate(-45deg);
}

.player-volume input {
  width: 104px;
  margin: 0;
  accent-color: var(--red);
  cursor: pointer;
}

.player-toggle:focus-visible,
.player-mute:focus-visible,
.player-volume input:focus-visible,
.player-history-link:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .home-hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 58px;
  }

  .home-hero-inner {
    width: min(760px, 100%);
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius);
    background: transparent;
  }

  .nav-toggle span {
    width: 22px;
    height: 3px;
    border-radius: 999px;
    background: var(--white);
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 6px);
    padding: 18px;
    border-radius: var(--radius);
    background: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav .menu-item {
    width: 100%;
  }

  .site-nav a {
    width: 100%;
    justify-content: space-between;
    padding: 8px 0;
  }

  .site-nav .sub-menu {
    position: static;
    min-width: 0;
    display: grid;
    transform: none;
    margin: 0 0 6px 12px;
    padding: 3px 0 3px 12px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .site-nav .sub-menu a {
    white-space: normal;
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav-list {
    display: grid;
    justify-content: stretch;
    gap: 0;
  }

  .call-button {
    justify-self: end;
  }

  .listen-panel,
  .listen-panel.full-listen,
  .split-section,
  .two-column,
  .profile-layout,
  .podcast-section,
  .form-grid,
  .cta-strip {
    grid-template-columns: 1fr;
  }

  .podcast-series-layout {
    grid-template-columns: minmax(220px, 0.3fr) minmax(0, 1fr);
  }

  .podcast-series-episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #contact-form,
  .inquiry-entry-band {
    grid-template-columns: 1fr;
  }

  #contact-form > aside {
    position: static;
  }

  .contact-purpose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-grid,
  .sponsor-grid,
  .business-feature-grid,
  .person-grid,
  .show-grid,
  .package-grid,
  .feature-grid,
  .remote-workflow-grid,
  .remote-public-panel,
  .home-action-grid,
  .events-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-show-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .on-air-dashboard {
    grid-template-columns: 1fr;
  }

  .podcast-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .on-air-card.is-current {
    grid-row: auto;
    min-height: 0;
  }

  .person-roster {
    grid-template-columns: 1fr;
  }

  .person-roster .person-card {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .person-roster .person-card img {
    min-height: 160px;
  }

  .event-card,
  .compact-event-list .event-card {
    grid-template-columns: 110px 1fr;
  }

  .event-action {
    grid-column: 2;
    padding-top: 0;
  }
}

@media (max-width: 820px) {
  .podcast-series-layout {
    width: min(var(--max), calc(100% - 44px));
    grid-template-columns: 1fr;
    grid-template-areas:
      "series-media"
      "series-content"
      "series-links";
    grid-template-rows: auto;
  }

  .podcast-series-layout > .profile-photo-card {
    width: min(460px, 100%);
  }

  .podcast-series-episode-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .contact-purpose-grid,
  .inquiry-form-grid,
  .inquiry-checkbox-group > div {
    grid-template-columns: 1fr;
  }

  .contact-purpose {
    min-height: 0;
  }

  .inquiry-entry-links .button,
  .inquiry-form-grid button {
    width: 100%;
  }

  body {
    padding-bottom: 92px;
  }

  .station-player,
  .station-player-inner {
    min-height: 82px;
  }

  .station-player-inner {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 10px;
    width: calc(100% - 20px);
  }

  .player-toggle {
    width: 42px;
    height: 42px;
  }

  .player-history-link {
    display: none;
  }

  .player-track-copy strong {
    font-size: 0.9rem;
  }

  .player-track-copy > span:last-child {
    font-size: 0.72rem;
  }

  .player-volume {
    grid-template-columns: 32px 64px;
    gap: 4px;
  }

  .player-mute {
    width: 32px;
    height: 32px;
  }

  .player-volume input {
    width: 64px;
  }

  .site-header {
    min-height: 82px;
    gap: 12px;
    padding: 8px 14px;
  }

  .brand-mark {
    min-width: 76px;
  }

  .brand-logo {
    width: 76px;
    height: 64px;
    padding: 3px;
  }

  .footer-logo {
    width: 138px;
    height: 120px;
  }

  .call-button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.82rem;
  }

  .home-hero,
  .page-hero {
    padding-left: 22px;
    padding-right: 22px;
    background-image:
      linear-gradient(180deg, rgba(16, 21, 34, 0.98) 0%, rgba(16, 21, 34, 0.9) 56%, rgba(170, 16, 12, 0.56) 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .julio-hero {
    background-image:
      linear-gradient(180deg, rgba(16, 21, 34, 0.98) 0%, rgba(16, 21, 34, 0.9) 56%, rgba(16, 21, 34, 0.58) 100%),
      url("julio.jpg");
    background-position: center, center bottom;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, auto 62%;
  }

  .profile-hero {
    background-position: center, center bottom;
    background-size: cover, auto 66%;
  }

  .home-hero {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 48px;
  }

  .page-hero {
    min-height: 390px;
    padding-top: 112px;
    padding-bottom: 56px;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .home-hero h1 {
    font-size: 3.6rem;
  }

  .home-hero-inner {
    gap: 28px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-broadcast-dashboard {
    gap: 17px;
    padding: 18px;
  }

  .hero-dashboard-watermark {
    width: 170px;
    height: 130px;
  }

  .hero-program {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 14px;
  }

  .hero-program-art {
    width: 84px;
  }

  .hero-program-copy h2 {
    font-size: 1.55rem;
  }

  .hero-program-description {
    -webkit-line-clamp: 3;
  }

  .hero-up-next {
    align-items: flex-end;
  }

  .hero-dashboard-actions .button {
    flex: 1 1 150px;
  }

  .brand-lockup strong {
    font-size: clamp(2.45rem, 16vw, 4.5rem);
  }

  .listen-panel {
    width: calc(100% - 24px);
    padding: 18px;
  }

  .inline-player,
  .show-card,
  .event-card,
  .recently-played-now,
  .song-history-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .recently-played-now img,
  .song-history-card img,
  .song-cover-fallback {
    max-width: 150px;
  }

  .show-grid,
  .news-grid,
  .sponsor-grid,
  .business-feature-grid,
  .person-grid,
  .package-grid,
  .feature-grid,
  .remote-workflow-grid,
  .remote-public-panel,
  .home-action-grid,
  .events-action-grid {
    grid-template-columns: 1fr;
  }

  .home-show-grid {
    grid-template-columns: 1fr;
  }

  .podcast-lineup-list,
  .podcast-program-grid {
    grid-template-columns: 1fr;
  }

  .podcast-series-episode-grid {
    grid-template-columns: 1fr;
  }

  .on-air-card {
    min-height: 0;
    padding: 18px;
  }

  .on-air-card.is-current {
    padding: 22px;
  }

  .on-air-actions .button {
    width: 100%;
  }

  .person-roster .person-card {
    grid-template-columns: 1fr;
  }

  .person-roster .person-card img {
    max-width: 220px;
    min-height: auto;
  }

  .event-action {
    grid-column: 1;
    padding-top: 0;
  }

  .business-feature-card {
    grid-template-columns: 1fr;
  }

  .section-heading-row {
    display: grid;
    align-items: start;
  }

  .workflow {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer p {
    grid-column: 1;
  }
}
