:root {
  --charcoal: #050505;
  --ink: #171717;
  --soft-ink: #545454;
  --paper: #f5f5f5;
  --white: #ffffff;
  --line: #dddddd;
  --copper: #ed1c24;
  --copper-dark: #a90008;
  --teal: #ed1c24;
  --teal-dark: #a90008;
  --olive: #151515;
  --rose: #ed1c24;
  --gold: #6d6d6d;
  --blue: #303030;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px 5vw;
  color: var(--white);
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
  text-decoration: none;
}

.brand-logo-wrap {
  display: grid;
  place-items: center;
  width: 96px;
  height: 54px;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 6px;
  background: #000;
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 11px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 34%, rgba(237, 28, 36, 0.34), rgba(237, 28, 36, 0) 35%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.88) 42%, rgba(0, 0, 0, 0.42) 78%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.8));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 90vw);
  padding: 64px 0 72px 5vw;
}

.hero-logo-panel {
  display: grid;
  place-items: center;
  width: min(440px, 84vw);
  aspect-ratio: 16 / 9;
  margin: 0 0 22px;
  overflow: hidden;
  background: #000;
}

.hero-logo-panel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--copper);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: 4.2rem;
  line-height: 1;
}

.hero-tagline {
  margin: 18px 0 4px;
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 650px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.22rem;
}

.live-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.live-pill,
.on-air-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(184, 79, 93, 0.92);
  font-size: 0.86rem;
  font-weight: 800;
}

.live-pill.offline {
  background: rgba(18, 18, 18, 0.92);
  border: 1px solid rgba(237, 28, 36, 0.55);
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.16);
}

.countdown {
  color: rgba(255, 255, 255, 0.82);
}

.hero-player {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: min(600px, 100%);
  margin: 30px 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(15, 17, 20, 0.46);
  box-shadow: var(--shadow);
}

.play-button,
.large-play,
.mini-play,
.icon-link {
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
}

.play-button,
.large-play {
  color: var(--charcoal);
  background: var(--white);
}

.play-button {
  width: 56px;
  height: 56px;
}

.play-button svg,
.large-play svg,
.mini-play svg,
.button svg,
.icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.button svg,
.icon-link svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.player-copy strong,
.player-copy span {
  display: block;
}

.player-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.signal-bars {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 34px;
}

.signal-bars span {
  width: 5px;
  border-radius: 999px;
  background: var(--copper);
  animation: signal 1.15s ease-in-out infinite;
}

.signal-bars span:nth-child(1) { height: 10px; }
.signal-bars span:nth-child(2) { height: 18px; animation-delay: 0.1s; }
.signal-bars span:nth-child(3) { height: 28px; animation-delay: 0.2s; }
.signal-bars span:nth-child(4) { height: 16px; animation-delay: 0.3s; }

@keyframes signal {
  0%, 100% { opacity: 0.38; transform: scaleY(0.62); }
  45% { opacity: 1; transform: scaleY(1); }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
}

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

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

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--copper-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.button.light {
  color: var(--charcoal);
  background: var(--white);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.feature-strip div {
  padding: 26px 5vw;
  background: var(--white);
}

.feature-strip strong,
.feature-strip span {
  display: block;
}

.feature-strip strong {
  color: var(--copper);
  font-size: 2rem;
  line-height: 1;
}

.feature-strip span {
  color: var(--soft-ink);
  font-size: 0.95rem;
}

.section-shell {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 88px 0;
}

.section-band {
  color: var(--white);
  background: #0d0d0d;
}

.section-band .section-heading h2,
.section-band .two-column h2,
.section-band .guest-layout h2,
.section-band .about-layout h2,
.section-band .contact-layout h2 {
  color: var(--white);
}

.section-band .section-heading p,
.section-band .two-column p,
.section-band .guest-layout p,
.section-band .about-layout p,
.section-band .contact-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.section-band .episode-item h3,
.section-band .episode-item p,
.section-band .schedule-table td,
.section-band .calendar-view strong,
.section-band .calendar-view small,
.section-band .mission-grid h3,
.section-band .mission-grid p,
.section-band .host-profile h3,
.section-band .host-profile p,
.section-band .article-card h3,
.section-band .article-card p,
.section-band .site-form label {
  color: var(--ink);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.two-column h2,
.listen-layout h2,
.guest-layout h2,
.about-layout h2,
.member-layout h2,
.contact-layout h2 {
  margin: 0 0 14px;
  color: var(--charcoal);
  font-size: 2.55rem;
  line-height: 1.12;
}

.section-heading p,
.two-column p,
.listen-layout p,
.guest-layout p,
.about-layout p,
.member-layout p,
.contact-layout p {
  color: var(--soft-ink);
}

.program-grid,
.podcast-grid,
.package-grid,
.testimonial-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-card,
.podcast-card,
.package-card,
.article-card,
.testimonial-grid blockquote,
.host-profile,
.membership-plans article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 17, 20, 0.06);
}

.program-card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--copper);
}

.program-card.accent-teal::before { background: var(--charcoal); }
.program-card.accent-olive::before { background: #3a3a3a; }
.program-card.accent-rose::before { background: var(--copper); }
.program-card.accent-gold::before { background: #8a8a8a; }
.program-card.accent-blue::before { background: #222; }

.program-time,
.podcast-card span,
.article-card span,
.host-profile span {
  color: var(--copper-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.program-card h3,
.podcast-card h3,
.package-card h3,
.article-card h3,
.host-profile h3,
.membership-plans h3,
.episode-item h3 {
  margin: 10px 0 10px;
  color: var(--charcoal);
  line-height: 1.2;
}

.program-card p,
.podcast-card p,
.article-card p,
.host-profile p,
.membership-plans p,
.episode-item p {
  margin: 0;
  color: var(--soft-ink);
}

.two-column,
.listen-layout,
.guest-layout,
.about-layout,
.member-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: start;
}

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

.episode-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background: var(--white);
}

.mini-play,
.icon-link {
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--teal);
}

.icon-link {
  color: var(--copper-dark);
  background: #ffe6e7;
}

.listen-layout {
  align-items: center;
}

.listen-stack {
  display: grid;
  gap: 18px;
}

.broadcast-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.broadcast-flow span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--white);
  background: var(--charcoal);
  font-weight: 800;
}

.broadcast-flow span:not(:last-child)::after {
  content: "";
  width: 22px;
  height: 2px;
  margin-left: 13px;
  background: var(--copper);
}

.share-row,
.speaker-tags,
.category-row,
.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.share-row a,
.speaker-tags span,
.category-row button,
.social-list a {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-ink);
  background: var(--white);
  text-decoration: none;
}

.category-row {
  justify-content: center;
  margin-bottom: 28px;
}

.category-row button {
  color: var(--ink);
}

.category-row button.active,
.category-row button:hover,
.share-row a:hover,
.social-list a:hover {
  color: var(--white);
  border-color: var(--copper);
  background: var(--copper);
}

.live-console {
  padding: 24px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.28), rgba(255, 255, 255, 0.04)),
    var(--charcoal);
  box-shadow: var(--shadow);
}

.tiktok-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(237, 28, 36, 0.34);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.18), rgba(255, 255, 255, 0.03)),
    #080808;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 8%, rgba(237, 28, 36, 0.28), rgba(237, 28, 36, 0) 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(237, 28, 36, 0.14)),
    #060606;
}

.platform-badge {
  width: fit-content;
  min-height: 32px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--white);
  background: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tiktok-panel h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.tiktok-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.tiktok-panel .section-kicker {
  margin-bottom: 8px;
}

.tiktok-frame {
  width: 100%;
  min-height: 180px;
  border: 0;
  border-radius: 8px;
  background: var(--white);
}

.tiktok-placeholder {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.tiktok-placeholder strong {
  color: var(--white);
}

.tiktok-placeholder span {
  color: rgba(255, 255, 255, 0.72);
}

.tiktok-placeholder.attention {
  border-color: var(--copper);
  background: rgba(237, 28, 36, 0.2);
}

.tiktok-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.setup-note {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}

.console-top,
.console-main,
.volume-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.console-top {
  justify-content: space-between;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.console-main {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.large-play {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
}

.console-main h3 {
  margin: 0 0 4px;
  font-size: 1.6rem;
}

.console-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.volume-row {
  margin-top: 22px;
}

.volume-row input {
  width: 100%;
  accent-color: var(--copper);
}

.schedule-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 17, 20, 0.06);
}

.schedule-table th,
.schedule-table td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.schedule-table th {
  color: var(--white);
  background: var(--charcoal);
}

.schedule-table tr:last-child td {
  border-bottom: 0;
}

.calendar-view {
  display: grid;
  gap: 12px;
}

.calendar-view article {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-left: 5px solid var(--copper);
  border-radius: 8px;
  background: var(--white);
}

.calendar-view span {
  color: var(--copper-dark);
  font-weight: 800;
}

.calendar-view small {
  color: var(--soft-ink);
}

.podcast-card,
.article-card {
  padding: 24px;
}

.audio-workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
  margin-top: 30px;
  padding: 24px;
  border: 1px solid rgba(237, 28, 36, 0.22);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.2), rgba(255, 255, 255, 0.04)),
    var(--charcoal);
  box-shadow: var(--shadow);
}

.audio-workflow h3 {
  margin: 0 0 8px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.audio-workflow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.audio-workflow ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.audio-workflow li {
  padding-left: 4px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.card-actions button,
.card-actions a,
.package-card a,
.membership-plans a,
.newsletter button {
  min-height: 38px;
  padding: 8px 12px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--copper);
  font-weight: 800;
  text-decoration: none;
}

.card-actions a {
  color: var(--copper-dark);
  background: #ffe6e7;
}

.site-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 17, 20, 0.06);
}

.site-form label,
.newsletter label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-weight: 800;
}

.site-form .full,
.site-form button,
.site-form .form-status {
  grid-column: 1 / -1;
}

.site-form input,
.site-form textarea,
.newsletter input {
  width: 100%;
  min-height: 45px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--charcoal);
  background: #fbfaf6;
}

.site-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--copper-dark);
  font-weight: 800;
}

.package-grid {
  grid-template-columns: repeat(4, 1fr);
}

.package-card {
  padding: 24px;
}

.package-card.featured {
  border-color: var(--copper);
  box-shadow: 0 18px 40px rgba(237, 28, 36, 0.24);
}

.package-card ul {
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--soft-ink);
}

.about-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
}

.mission-grid,
.membership-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.mission-grid article {
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
}

.mission-grid h3 {
  margin: 0 0 8px;
}

.host-profile {
  padding: 24px;
}

.host-photo {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.82), rgba(237, 28, 36, 0.78)),
    url("assets/radio-studio-hero.png") center / cover;
  font-size: 4rem;
  font-weight: 900;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 24px;
}

.testimonial-grid p {
  margin: 0 0 16px;
  color: var(--charcoal);
  font-size: 1.05rem;
}

.testimonial-grid cite {
  color: var(--soft-ink);
  font-style: normal;
  font-weight: 800;
}

.member-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.membership-plans {
  margin: 0;
}

.membership-plans article {
  padding: 24px;
}

.contact-layout address {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  font-style: normal;
}

.contact-layout address a {
  color: var(--copper-dark);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 36px 5vw;
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 6px 0 0;
}

.newsletter {
  display: grid;
  gap: 8px;
}

.newsletter label {
  color: var(--white);
}

.newsletter div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
}

.is-playing .play-button,
.is-playing .large-play {
  background: var(--copper);
  color: var(--white);
}

.is-playing .signal-bars span {
  animation-duration: 0.62s;
}

@media (max-width: 1050px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 5vw 18px;
    background: rgba(15, 17, 20, 0.98);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .program-grid,
  .podcast-grid,
  .testimonial-grid,
  .article-grid,
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column,
  .listen-layout,
  .guest-layout,
  .about-layout,
  .member-layout,
  .contact-layout,
  .schedule-wrap,
  .audio-workflow {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .site-nav {
    top: 68px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: 100%;
    padding: 62px 5vw 54px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-tagline {
    font-size: 1.05rem;
  }

  .hero-player {
    grid-template-columns: auto 1fr;
  }

  .signal-bars {
    grid-column: 1 / -1;
  }

  .feature-strip,
  .program-grid,
  .podcast-grid,
  .testimonial-grid,
  .article-grid,
  .package-grid,
  .mission-grid,
  .membership-plans,
  .site-form {
    grid-template-columns: 1fr;
  }

  .feature-strip div {
    padding: 20px 5vw;
  }

  .section-shell {
    padding: 64px 0;
  }

  .section-heading h2,
  .two-column h2,
  .listen-layout h2,
  .guest-layout h2,
  .about-layout h2,
  .member-layout h2,
  .contact-layout h2 {
    font-size: 2rem;
  }

  .console-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .console-top,
  .volume-row,
  .newsletter div {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .schedule-wrap {
    overflow-x: auto;
  }

  .schedule-table {
    min-width: 560px;
  }
}
