:root {
  --bg: #ffffff;
  --bg-soft: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fbfbfb;
  --surface-tint: #edf3f7;
  --ink: #161616;
  --ink-soft: #64615d;
  --white: #fff;
  --brand: #cf1d34;
  --brand-deep: #991324;
  --purple: #8f7ae8;
  --purple-deep: #6e59c8;
  --yellow: #f4c84b;
  --blue: #8ea7b5;
  --green: #5dcf85;
  --line: rgba(22, 22, 22, 0.08);
  --line-strong: rgba(22, 22, 22, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --banner-start: #bc162a;
  --banner-mid: #cf1d34;
  --banner-end: #d92a40;
  --banner-start-rgb: 188 22 42;
  --banner-mid-rgb: 207 29 52;
  --banner-end-rgb: 217 42 64;
  --banner-photo: url("assets/banner-photo-softer.png");
  --record-start: #cf1d34;
  --record-end: #991324;
  --shadow-xl: 0 24px 60px rgba(31, 24, 18, 0.12);
  --shadow-card: 0 14px 28px rgba(31, 24, 18, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #ffffff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(22, 22, 22, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 22, 22, 0.015) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 62%, transparent 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

audio,
button,
video {
  font: inherit;
}

.page-shell {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 42px;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  width: 100vw;
  min-height: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 2px 14px;
  margin-bottom: 8px;
  border-radius: 0;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
  box-shadow: 0 8px 18px rgba(20, 13, 12, 0.06);
  backdrop-filter: none;
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: 164px;
  height: 34px;
  overflow: hidden;
  padding-inline: 6px;
  min-height: 100%;
  line-height: 0;
}

.brand img {
  position: absolute;
  left: 6px;
  top: 50%;
  width: auto;
  height: 130px;
  transform: translateY(-50%);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
  height: auto;
  align-items: center;
}

.site-nav a,
.site-nav-trigger {
  width: 84px;
  min-height: 44px;
  padding: 5px 5px 4px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 2px;
  border-radius: 8px;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
  transition: background 140ms ease, color 140ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav-trigger:hover,
.site-nav-trigger:focus-visible {
  background: rgba(22, 22, 22, 0.04);
}

.site-nav a.is-active,
.site-nav-trigger.is-active,
.site-nav-dropdown.is-active .site-nav-trigger {
  background: rgba(207, 29, 52, 0.08);
  box-shadow: inset 0 2px 0 var(--brand);
}

.site-nav i,
.site-nav-trigger i {
  font-size: 0.92rem;
  color: var(--brand);
  line-height: 1;
}

.site-nav span,
.site-nav-trigger span {
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav-dropdown {
  position: relative;
}

.site-nav-trigger {
  cursor: pointer;
  font: inherit;
}

.site-nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  min-width: 248px;
  padding: 12px;
  display: grid;
  gap: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(22, 22, 22, 0.08);
  box-shadow: 0 22px 40px rgba(20, 13, 12, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 150ms ease,
    transform 150ms ease,
    visibility 150ms ease;
}

.site-nav-dropdown.is-open .site-nav-menu,
.site-nav-dropdown:focus-within .site-nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav-menu a {
  width: 100%;
  min-height: 52px;
  padding: 8px 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: flex-start;
  align-items: center;
  column-gap: 12px;
  border-radius: 16px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(207, 29, 52, 0.035), rgba(207, 29, 52, 0.02));
}

.site-nav-menu a:hover,
.site-nav-menu a:focus-visible {
  background: rgba(207, 29, 52, 0.1);
  color: var(--brand);
}

.site-nav-menu a.is-active {
  background: rgba(207, 29, 52, 0.12);
  color: var(--brand);
}

.station-logo-link {
  min-height: 56px;
}

.station-logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.station-logo-face {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  color: #1a1a1a;
}

.station-logo-fm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
}

.station-logo-sub {
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  color: var(--brand);
  white-space: nowrap;
  justify-self: start;
}

.station-logo-link-orange .station-logo-fm {
  background: linear-gradient(135deg, #ff9b11, #ff7a00);
}

.station-logo-link-orange .station-logo-sub {
  color: #ff8f00;
}

.station-logo-link-purple .station-logo-fm {
  background: linear-gradient(135deg, #9c43cf, #7d2db3);
}

.station-logo-link-purple .station-logo-sub {
  color: #8d39c2;
}

.station-logo-link-blue .station-logo-fm {
  background: linear-gradient(135deg, #4088e8, #2b65ca);
}

.station-logo-link-blue .station-logo-sub {
  color: #3274d8;
}

.station-logo-link-glow .station-logo-fm {
  background: linear-gradient(135deg, #ff9a1a, #ff7900);
}

.station-logo-link-glow .station-logo-sub {
  color: #ff8a00;
}

.station-logo-link-party .station-logo-fm {
  background: linear-gradient(135deg, #d845df, #b92ac0);
}

.station-logo-link-party .station-logo-sub {
  color: #c635cd;
}

.button,
.toggle-chip,
.mini-action {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.button,
.toggle-chip,
.mini-action {
  border: 0;
  cursor: pointer;
}

.button-primary,
.mini-action {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 12px 24px rgba(153, 19, 36, 0.18);
}

.button-secondary,
.toggle-chip {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  box-shadow: 0 12px 24px rgba(110, 89, 200, 0.18);
}

main {
  display: grid;
  gap: 0;
}

.nowplaying-banner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  padding: 18px 14px 28px;
  border-radius: 0;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
  overflow: visible;
}

.nowplaying-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      135deg,
      rgb(var(--banner-start-rgb) / 0.7),
      rgb(var(--banner-mid-rgb) / 0.62) 52%,
      rgb(var(--banner-end-rgb) / 0.68)
    ),
    var(--banner-photo);
  background-position: center center, center 42%;
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
}

.nowplaying-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(22, 22, 22, 0.08);
}

.nowplaying-inner {
  width: min(1380px, calc(100% - 120px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 72px;
  align-items: end;
}

.record-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: -78px;
  z-index: 2;
}

.record-player {
  position: relative;
  width: 500px;
  height: 430px;
}

.record-disc {
  position: absolute;
  left: 18px;
  top: 10px;
  width: 410px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #121212 0 24%, #1b1b1b 24% 30%, #0f0f0f 30% 100%);
  box-shadow:
    0 28px 50px rgba(22, 22, 22, 0.24),
    0 10px 22px rgba(22, 22, 22, 0.16);
  animation: spinRecord 10s linear infinite;
}

.record-disc::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.record-groove {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.groove-one {
  width: 328px;
  height: 328px;
}

.groove-two {
  width: 274px;
  height: 274px;
}

.groove-three {
  width: 220px;
  height: 220px;
}

.record-label {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 8px;
  padding: 18px 14px;
  background: linear-gradient(135deg, var(--record-start), var(--record-end));
  color: white;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.record-label span,
.record-label small {
  display: block;
  line-height: 1.1;
}

.record-label span {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.record-label strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  line-height: 1.02;
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.record-label small {
  font-size: 0.68rem;
  opacity: 0.9;
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.tonearm-base {
  position: absolute;
  right: 24px;
  top: 80px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.06) 38%),
    linear-gradient(145deg, #606063, #232326);
  box-shadow:
    inset 0 2px 5px rgba(255, 255, 255, 0.16),
    0 10px 18px rgba(22, 22, 22, 0.18);
}

.tonearm {
  position: absolute;
  right: 46px;
  top: 108px;
  z-index: 2;
  width: 126px;
  height: 10px;
  border-radius: 999px;
  transform-origin: right center;
  transform: rotate(-26deg);
  background: linear-gradient(90deg, #ebe9e8 0%, #bfbab7 48%, #8b8581 100%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.65),
    0 6px 12px rgba(22, 22, 22, 0.14);
}

.tonearm::before {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(145deg, #6a6a6d, #2a2a2c);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.18);
}

.tonearm-head {
  position: absolute;
  left: -6px;
  top: 50%;
  width: 30px;
  height: 16px;
  border-radius: 6px;
  transform: translateY(-50%) rotate(-18deg);
  background: linear-gradient(145deg, #1d1d1f, #060607);
  box-shadow: 0 6px 12px rgba(22, 22, 22, 0.16);
}

.tonearm-head::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -10px;
  width: 2px;
  height: 12px;
  background: #d8d2cf;
}

@keyframes spinRecord {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.banner-side {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  width: min(640px, 100%);
  min-width: 0;
  align-self: center;
  justify-self: end;
  padding-right: 0;
  transform: translateX(22px);
}

.banner-side.is-video-active {
  width: min(640px, 100%);
  justify-items: stretch;
  align-content: center;
  gap: 14px;
}

.banner-side.is-video-active .banner-kicker,
.banner-side.is-video-active .banner-title {
  display: none;
}

.banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.banner-side.is-video-active .banner-actions {
  justify-content: center;
  order: 2;
  gap: 10px;
}

.banner-video-panel {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  transition:
    max-height 220ms ease,
    opacity 180ms ease,
    transform 260ms ease,
    box-shadow 260ms ease;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01)),
    rgba(9, 9, 9, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 40px 70px rgba(0, 0, 0, 0.32),
    0 18px 34px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(0, 0, 0, 0.1);
}

.banner-video-panel.is-open {
  max-height: 640px;
  opacity: 1;
  transform: translateY(-6px) scale(1);
  box-shadow:
    0 58px 92px rgba(0, 0, 0, 0.34),
    0 24px 44px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(0, 0, 0, 0.1);
}

.banner-side.is-video-active .banner-video-panel {
  order: 1;
}

.banner-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000000;
  border-radius: 0;
}

.banner-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.banner-title {
  margin: 0;
  max-width: 16ch;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1;
  color: white;
}

.banner-button {
  min-width: 170px;
  color: white;
  background: linear-gradient(135deg, #141414, #000);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.banner-icon-button {
  min-width: 74px;
  width: 74px;
  min-height: 74px;
  padding: 0;
}

.banner-icon-button i {
  font-size: 1.42rem;
}

.banner-side.is-video-active .banner-icon-button {
  min-width: 58px;
  width: 58px;
  min-height: 58px;
}

.banner-side.is-video-active .banner-icon-button i {
  font-size: 1.12rem;
}

.subpage-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 12px 18px 18px;
  background: #ffffff;
}

.subpage-hero-inner {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 30px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(207, 29, 52, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff, #faf7f7);
  border: 1px solid rgba(22, 22, 22, 0.08);
  box-shadow: 0 18px 34px rgba(20, 13, 12, 0.05);
}

.subpage-kicker {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.subpage-hero-inner h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.subpage-hero-inner p:last-child {
  margin: 12px 0 0;
  max-width: 54ch;
  color: var(--ink-soft);
  line-height: 1.68;
}

.schedule-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  padding: 42px 0 0;
  border-radius: 0;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.schedule-strip-head {
  display: block;
  padding: 14px 18px 12px;
}

.schedule-strip-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.schedule-day-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.schedule-day-tab {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition:
    background 150ms ease,
    color 150ms ease,
    border-color 150ms ease,
    transform 150ms ease;
}

.schedule-day-tab:hover,
.schedule-day-tab:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(207, 29, 52, 0.2);
}

.schedule-day-tab.is-active {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(153, 19, 36, 0.18);
}

.news-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 72px 18px 0;
  background: #ffffff;
}

.news-strip-head {
  display: block;
  padding: 14px 18px 12px;
}

.news-strip-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.music-news-strip-head {
  display: block;
  padding: 14px 0 12px;
}

.music-news-strip-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 16px;
}

.news-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 16px;
}

.news-side {
  display: grid;
  gap: 16px;
}

.news-card {
  position: relative;
  min-height: 270px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  overflow: hidden;
  border-radius: 0;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(22, 22, 22, 0.02), rgba(22, 22, 22, 0.78)),
    var(--news-image) center / cover no-repeat,
    linear-gradient(135deg, #cf1d34, #811121);
  box-shadow: 0 18px 34px rgba(20, 13, 12, 0.14);
}

.news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.02), rgba(22, 22, 22, 0.12) 40%, rgba(22, 22, 22, 0.82));
  pointer-events: none;
}

.news-card > * {
  position: relative;
  z-index: 1;
}

.news-card-featured {
  min-height: 540px;
}

.news-source {
  display: none;
}

.news-card h3 {
  max-width: 18ch;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  line-height: 1.06;
  text-wrap: balance;
}

.news-card:not(.news-card-featured) h3 {
  max-width: 20ch;
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
}

.news-card-compact {
  min-height: 300px;
}

.news-card-compact h3 {
  max-width: 22ch;
  font-size: clamp(1rem, 1.28vw, 1.28rem);
}

.news-article-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 56px 18px 0;
  background: #ffffff;
}

.news-article-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.news-article-kicker {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-article-title {
  max-width: 16ch;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.news-article-summary {
  margin: 18px 0 0;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.news-article-media {
  margin-top: 28px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(22, 22, 22, 0.08);
  background: linear-gradient(180deg, rgba(250, 250, 250, 0.98), rgba(244, 244, 244, 0.98));
  box-shadow: 0 20px 40px rgba(20, 13, 12, 0.08);
}

.news-article-media img,
.news-article-media video,
.news-article-media iframe {
  display: block;
  width: 100%;
  border: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000000;
}

.news-article-body {
  max-width: 72ch;
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.news-article-body p {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.9;
}

.music-news-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 6px 18px 0;
  background: #ffffff;
}

.music-news-inner {
  width: 100%;
  margin: 0 auto;
}

.music-news-scroller {
  position: relative;
  width: calc(100% - 24px);
  margin: 0 auto;
  padding: 0 54px 0;
}

.music-news-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 14px 28px rgba(153, 19, 36, 0.22);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 140ms ease, transform 140ms ease;
}

.music-news-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.music-news-nav[disabled] {
  opacity: 0.38;
  cursor: default;
}

.music-news-nav-prev {
  left: 0;
}

.music-news-nav-next {
  right: 0;
}

.music-news-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.music-news-grid::-webkit-scrollbar {
  display: none;
}

.music-news-card {
  position: relative;
  min-height: 410px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(22, 22, 22, 0.02), rgba(22, 22, 22, 0.82)),
    linear-gradient(135deg, #cf1d34, #7b1020);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 34px rgba(20, 13, 12, 0.12);
  scroll-snap-align: start;
}

.music-news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.02), rgba(22, 22, 22, 0.18) 42%, rgba(22, 22, 22, 0.84));
  pointer-events: none;
}

.music-news-card h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 17ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 1.9vw, 2rem);
  line-height: 1.06;
  text-wrap: balance;
}

.music-news-card:hover {
  transform: translateY(-2px);
  transition: transform 160ms ease;
}

.music-news-card-image {
  display: none;
}

.music-news-card-body,
.music-news-kicker,
.music-news-summary,
.music-news-link {
  display: none;
}

.music-news-card[data-empty="true"] {
  background:
    linear-gradient(180deg, rgba(22, 22, 22, 0.02), rgba(22, 22, 22, 0.82)),
    linear-gradient(135deg, rgba(207, 29, 52, 0.8), rgba(123, 16, 32, 0.95));
}

.music-news-card[data-empty="true"] h2 {
  max-width: 18ch;
}

.music-news-card-media {
  display: none;
}

.music-news-image {
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

.djs-strip,
.contact-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #ffffff;
}

.djs-strip {
  padding: 8px 18px 0;
}

.contact-strip {
  padding: 8px 18px 0;
}

.djs-strip-head,
.contact-strip-head {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 8px;
  padding: 14px 0 12px;
}

.djs-strip-head h2,
.contact-strip-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.djs-strip-head p,
.contact-strip-head p {
  margin: 0;
  max-width: 62ch;
  color: var(--ink-soft);
  line-height: 1.65;
}

.djs-grid {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0 0 22px;
}

.djs-scroller {
  position: relative;
  width: calc(100% - 24px);
  margin: 0 auto;
  padding: 0 54px 18px;
}

.djs-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 14px 28px rgba(153, 19, 36, 0.22);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 140ms ease, transform 140ms ease;
}

.djs-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.djs-nav[disabled] {
  opacity: 0.38;
  cursor: default;
}

.djs-nav-prev {
  left: 0;
}

.djs-nav-next {
  right: 0;
}

body[data-page="djs"] .djs-grid {
  width: 100%;
  padding: 0 0 18px;
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

body[data-page="djs"] .djs-grid::-webkit-scrollbar {
  display: none;
}

.dj-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 6px;
  border: 0;
  background: #e7e7e7;
  box-shadow: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    outline-color 160ms ease;
  scroll-snap-align: start;
}

.dj-card-image {
  position: absolute;
  inset: 0;
  background: #f0f0f0;
}

.dj-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dj-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.02) 45%, rgba(22, 22, 22, 0.16) 72%, rgba(22, 22, 22, 0.72) 100%);
  pointer-events: none;
}

.dj-card:hover,
.dj-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(20, 13, 12, 0.14);
  outline: none;
}

.dj-card.is-selected {
  box-shadow:
    0 0 0 4px rgba(207, 29, 52, 0.16),
    0 20px 38px rgba(153, 19, 36, 0.14);
}

.dj-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  padding: 18px 14px 16px;
}

.dj-card-time {
  display: none;
}

.dj-card h3,
.contact-panel h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.3vw, 1.45rem);
  line-height: 1.06;
}

.dj-card strong {
  display: none;
}

.dj-card-body p:last-child {
  display: none;
}

.dj-detail-panel {
  width: min(1380px, calc(100% - 48px));
  margin: 4px auto 0;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(207, 29, 52, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 249, 249, 0.98));
  box-shadow: 0 18px 34px rgba(20, 13, 12, 0.06);
}

.dj-detail-media {
  min-height: 300px;
  border-radius: 18px;
  overflow: hidden;
  background: #ececec;
}

.dj-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dj-detail-body {
  display: grid;
  align-content: start;
  gap: 10px;
}

.dj-detail-kicker {
  margin: 0;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dj-detail-body h3 {
  color: var(--ink);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
}

.dj-detail-show,
.dj-detail-time {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink);
}

.dj-detail-show {
  font-size: 1.04rem;
  font-weight: 700;
}

.dj-detail-time {
  color: var(--brand);
  font-size: 0.96rem;
  letter-spacing: 0.04em;
}

.dj-detail-bio {
  margin: 6px 0 0;
  max-width: 64ch;
  color: var(--ink-soft);
  line-height: 1.72;
}

.contact-strip-inner {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 0 24px;
}

.contact-panel {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(22, 22, 22, 0.08);
  background:
    linear-gradient(180deg, rgba(207, 29, 52, 0.05), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 34px rgba(20, 13, 12, 0.05);
}

.contact-panel-label {
  margin: 0;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.contact-panel a:hover {
  color: var(--brand);
}

.contact-chat-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 10px 18px 0;
  background: #ffffff;
}

.contact-chat-inner {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.chat-page-single {
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
}

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

.chat-panel {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(22, 22, 22, 0.08);
  background:
    radial-gradient(circle at top right, rgba(207, 29, 52, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 250, 0.98));
  box-shadow: 0 18px 34px rgba(20, 13, 12, 0.05);
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 330px;
  overflow-y: auto;
  padding-right: 4px;
}

.chat-message {
  padding: 14px 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(22, 22, 22, 0.08);
}

.chat-message-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.chat-message-name {
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
}

.chat-message-time {
  color: var(--ink-soft);
  font-size: 0.78rem;
  white-space: nowrap;
}

.chat-message p {
  margin: 0;
  color: var(--ink);
  line-height: 1.6;
}

.chat-form {
  display: grid;
  gap: 10px;
}

.chat-form-actions {
  display: flex;
  justify-content: flex-start;
}

.chat-form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.chat-form input,
.chat-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(22, 22, 22, 0.1);
  background: #ffffff;
  color: var(--ink);
}

.chat-form textarea {
  resize: vertical;
  min-height: 110px;
}

.chat-status {
  margin: 0;
  min-height: 20px;
  color: var(--brand);
  font-weight: 700;
}

.promo-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 18px 0;
  background: #ffffff;
}

.promo-strip-head {
  display: none;
}

.promo-strip-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

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

.promo-card {
  display: grid;
  grid-template-rows: 280px auto;
  background: #ffffff;
  border: 1px solid rgba(22, 22, 22, 0.08);
  box-shadow: 0 16px 34px rgba(20, 13, 12, 0.08);
}

.promo-visual {
  position: relative;
  overflow: hidden;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.promo-visual::before,
.promo-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.promo-visual::before {
  inset: -20% auto auto -10%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.promo-visual::after {
  inset: auto -8% -12% auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.promo-badge,
.promo-visual strong {
  position: relative;
  z-index: 1;
}

.promo-badge {
  align-self: flex-start;
  min-height: 32px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-visual strong {
  max-width: 8ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.95;
  color: #ffffff;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.promo-body {
  padding: 14px 16px 16px;
  display: grid;
  gap: 4px;
  background: #ffffff;
}

.promo-label {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  font-style: italic;
}

.promo-body h3 {
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.1;
}

.promo-visual-red {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 24%),
    repeating-radial-gradient(circle at top left, rgba(255, 255, 255, 0.08) 0 20px, transparent 20px 48px),
    linear-gradient(135deg, #ff3f2e, #cf1d34);
}

.promo-visual-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 247, 247, 0.98)),
    linear-gradient(135deg, #fafafa, #ececec);
}

.promo-visual-light .promo-badge {
  background: rgba(207, 29, 52, 0.12);
  color: var(--brand);
}

.promo-visual-light strong {
  color: var(--brand);
  text-shadow: none;
}

.promo-visual-orange {
  background:
    radial-gradient(circle at center, rgba(255, 111, 76, 0.16), transparent 38%),
    linear-gradient(135deg, #db3428, #ee5b2c);
}

.promo-visual-crimson {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, #ff3828, #d32230);
}

.promo-visual-cake {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 26%),
    linear-gradient(135deg, #ff3d22, #d7262f);
}

.promo-visual-yellow {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(135deg, #ffe436, #f8c90d);
}

.promo-visual-yellow .promo-badge,
.promo-visual-yellow strong {
  color: #1b1b1b;
}

.promo-visual-yellow .promo-badge {
  background: rgba(255, 255, 255, 0.28);
}

.schedule-scroller {
  position: relative;
  width: calc(100% - 24px);
  margin: 0 auto;
  padding: 0 54px 14px;
}

.schedule-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  box-shadow: 0 14px 28px rgba(153, 19, 36, 0.22);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 140ms ease, transform 140ms ease;
}

.schedule-nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.schedule-nav[disabled] {
  opacity: 0.38;
  cursor: default;
}

.schedule-nav-prev {
  left: 0;
}

.schedule-nav-next {
  right: 0;
}

.schedule-strip-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 14px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  background: transparent;
}

body[data-page="schedule"] .schedule-scroller {
  width: calc(100% - 24px);
  padding: 0 12px 14px;
}

body[data-page="schedule"] .schedule-nav {
  display: none;
}

body[data-page="schedule"] .schedule-strip-inner {
  padding: 0 0 8px;
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: unset;
  grid-template-columns: repeat(var(--schedule-columns, 6), minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
  overscroll-behavior-x: auto;
  scroll-snap-type: none;
  scrollbar-width: auto;
}

body[data-page="schedule"] .show-record-card {
  padding: 18px 12px 12px;
  min-height: 100%;
}

body[data-page="schedule"] .show-record {
  width: min(170px, 100%);
}

body[data-page="schedule"] .show-record-label {
  width: 78px;
  height: 78px;
}

body[data-page="schedule"] .show-record-label strong {
  font-size: 0.68rem;
}

body[data-page="schedule"] .show-time {
  margin-top: 12px;
  font-size: 0.9rem;
}

.schedule-strip-inner::-webkit-scrollbar {
  display: none;
}

.show-record-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: auto;
  padding: 20px 16px 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(207, 29, 52, 0.05), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 248, 0.96));
  border: 1px solid rgba(22, 22, 22, 0.07);
  box-shadow: 0 14px 30px rgba(20, 13, 12, 0.06);
  scroll-snap-align: start;
  cursor: default;
}

.show-time {
  margin: 10px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  color: #201d1b;
  letter-spacing: 0.02em;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.show-record-card.is-current {
  background:
    radial-gradient(circle at top, rgba(207, 29, 52, 0.14), transparent 62%),
    linear-gradient(180deg, rgba(255, 244, 246, 0.98), rgba(255, 251, 252, 0.98));
}

body[data-page="schedule"] .show-record-card {
  cursor: pointer;
}

body[data-page="schedule"] .show-record-card:hover,
body[data-page="schedule"] .show-record-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(20, 13, 12, 0.1);
  outline: none;
}

.show-record-card.is-selected {
  background:
    radial-gradient(circle at top, rgba(207, 29, 52, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(255, 245, 247, 0.98), rgba(255, 252, 252, 0.98));
  border-color: rgba(207, 29, 52, 0.2);
  box-shadow: 0 18px 38px rgba(153, 19, 36, 0.12);
}

.show-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  transform: none;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: white;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(153, 19, 36, 0.18);
}

.show-record-card:not(.is-current) .show-badge {
  display: none;
}

.show-record {
  position: relative;
  width: min(210px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #101010 0 25%, #1b1b1b 25% 31%, #0e0e0e 31% 100%);
  box-shadow: 0 14px 30px rgba(31, 24, 18, 0.14);
}

.schedule-groove {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.show-record-label {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0;
  padding: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: white;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.show-record-card:nth-child(1) .show-record-label {
  background: linear-gradient(135deg, #cf1d34, #8f1020);
}

.show-record-card:nth-child(2) .show-record-label {
  background: linear-gradient(135deg, #f05d3f, #cf1d34);
}

.show-record-card:nth-child(3) .show-record-label {
  background: linear-gradient(135deg, #d93d63, #8c1f52);
}

.show-record-card:nth-child(4) .show-record-label {
  background: linear-gradient(135deg, #ff8a3d, #cf3a1d);
}

.show-record-card:nth-child(5) .show-record-label {
  background: linear-gradient(135deg, #a32737, #531018);
}

.show-record-card:nth-child(6) .show-record-label {
  background: linear-gradient(135deg, #bf3d2c, #7c1f1d);
}

.show-record-card.is-current .show-record-label {
  background: linear-gradient(135deg, #ffb04c, #cf1d34);
}

.show-record-card.is-current .show-record {
  box-shadow:
    0 0 0 8px rgba(207, 29, 52, 0.06),
    0 18px 34px rgba(31, 24, 18, 0.16);
}

.show-record-card.is-selected .show-record {
  box-shadow:
    0 0 0 8px rgba(207, 29, 52, 0.08),
    0 18px 34px rgba(31, 24, 18, 0.18);
}

.show-record-label strong {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  line-height: 1.05;
  max-width: 58px;
  min-height: 34px;
  text-align: center;
}

.schedule-detail-panel {
  width: calc(100% - 36px);
  margin: 12px auto 0;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  border: 1px solid rgba(22, 22, 22, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(207, 29, 52, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 249, 249, 0.98));
  box-shadow: 0 18px 34px rgba(20, 13, 12, 0.06);
}

.schedule-detail-panel.is-no-media {
  grid-template-columns: minmax(0, 1fr);
  padding: 26px 30px;
}

.schedule-detail-media {
  min-height: 240px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(22, 22, 22, 0.08);
  background:
    radial-gradient(circle at top, rgba(207, 29, 52, 0.08), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 247, 0.98));
}

.schedule-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.schedule-detail-content {
  display: grid;
  align-content: start;
}

.schedule-detail-panel.is-no-media .schedule-detail-content {
  max-width: 860px;
}

.schedule-detail-kicker,
.schedule-detail-day {
  margin: 0;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schedule-detail-kicker:empty {
  display: none;
}

.schedule-detail-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
}

.schedule-detail-panel.is-no-media .schedule-detail-head {
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

.schedule-detail-title {
  margin-top: 6px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.06;
  text-wrap: balance;
}

.schedule-detail-time {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.schedule-detail-panel.is-no-media .schedule-detail-time {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(207, 29, 52, 0.06);
  color: var(--brand-deep);
}

.schedule-detail-description {
  margin: 14px 0 0;
  max-width: 70ch;
  color: var(--ink-soft);
  line-height: 1.7;
}

section:not(.nowplaying-banner):not(.schedule-strip):not(.theme-stations):not(.news-strip):not(.promo-strip):not(.news-article-strip) {
  border-radius: var(--radius-xl);
  padding: clamp(20px, 4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-xl);
}

.theme-stations {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 0 26px;
  background: #ffffff;
  border-top: 0;
}

.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  padding: 14px 18px 12px;
  background: linear-gradient(180deg, #fafafa 0%, #f1f1f2 100%);
  color: var(--ink);
  border-top: 1px solid rgba(22, 22, 22, 0.08);
  overflow: hidden;
}

.site-footer::before {
  display: none;
}

.site-footer-inner {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer-brand img {
  height: 78px;
  width: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  justify-self: end;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(22, 22, 22, 0.08);
  box-shadow: 0 10px 24px rgba(20, 13, 12, 0.05);
  color: var(--brand);
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease,
    color 150ms ease;
}

.footer-social i {
  font-size: 0.98rem;
}

.footer-social:hover,
.footer-social:focus-visible {
  transform: translateY(-2px);
  background: rgba(207, 29, 52, 0.06);
  box-shadow: 0 14px 28px rgba(20, 13, 12, 0.08);
  color: var(--brand-deep);
}

.site-footer-bottom {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-top: 0;
  justify-self: center;
}

.site-footer-bottom p {
  margin: 0;
  color: rgba(22, 22, 22, 0.5);
  font-size: 0.82rem;
  text-align: center;
}

.theme-stations-inner {
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.theme-stations-head {
  display: block;
  padding: 14px 18px 12px;
}

.theme-stations-head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(22, 22, 22, 0.1);
  border-bottom: 1px solid rgba(22, 22, 22, 0.1);
  border-left: 1px solid rgba(22, 22, 22, 0.1);
  border-right: 1px solid rgba(22, 22, 22, 0.1);
  background: #f1f1f1;
}

.theme-card {
  display: grid;
  gap: 0;
  align-content: center;
  justify-items: center;
  padding: 10px 8px;
  min-height: 132px;
  border-radius: 0;
  border: 0;
  background:
    radial-gradient(circle at top, rgba(207, 29, 52, 0.03), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(250, 250, 250, 1));
  box-shadow: none;
  transition: background 160ms ease, transform 160ms ease;
}

.theme-card:hover {
  transform: translateY(-2px);
  background:
    radial-gradient(circle at top, rgba(207, 29, 52, 0.06), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(246, 246, 246, 1));
}

.theme-card.is-active {
  background:
    radial-gradient(circle at top, rgba(207, 29, 52, 0.12), transparent 62%),
    linear-gradient(180deg, rgba(255, 250, 251, 1), rgba(245, 245, 245, 1));
  box-shadow: inset 0 3px 0 var(--brand);
}

.theme-logo-shell {
  width: 100%;
  min-height: 92px;
  border-radius: 0;
  display: grid;
  place-items: center;
  padding: 2px 4px;
  background: transparent;
  border: 0;
  overflow: hidden;
}

.theme-logo-shell-hiphop {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.98), rgba(246, 246, 246, 1));
  border-color: rgba(22, 22, 22, 0.07);
}

.theme-logo-text {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.theme-logo-text > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Sora", sans-serif;
  font-size: 1.84rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}

.theme-fm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: white;
}

.theme-logo-text strong {
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.12em;
  color: var(--brand);
  line-height: 1;
}

.theme-card-orange .theme-fm-badge {
  background: linear-gradient(135deg, #ff9b11, #ff7a00);
}

.theme-card-orange .theme-logo-text strong {
  color: #ff8f00;
}

.theme-card-purple .theme-fm-badge {
  background: linear-gradient(135deg, #9c43cf, #7d2db3);
}

.theme-card-purple .theme-logo-text strong {
  color: #8d39c2;
}

.theme-card-blue .theme-fm-badge {
  background: linear-gradient(135deg, #4088e8, #2b65ca);
}

.theme-card-blue .theme-logo-text strong {
  color: #3274d8;
}

.theme-card-glow .theme-fm-badge {
  background: linear-gradient(135deg, #ff9a1a, #ff7900);
}

.theme-card-glow .theme-logo-text strong {
  color: #ff8a00;
}

.theme-card-party .theme-fm-badge {
  background: linear-gradient(135deg, #d845df, #b92ac0);
}

.theme-card-party .theme-logo-text strong {
  color: #c635cd;
}

.theme-card-hiphop .theme-fm-badge {
  background: linear-gradient(135deg, #cf1d34, #991324);
}

.theme-card-hiphop .theme-logo-text strong {
  color: var(--brand);
}

.theme-card-orange .theme-fm-badge,
.theme-card-purple .theme-fm-badge,
.theme-card-blue .theme-fm-badge,
.theme-card-glow .theme-fm-badge,
.theme-card-party .theme-fm-badge,
.theme-card-hiphop .theme-fm-badge {
  color: white;
}

.theme-card-orange {
  background:
    radial-gradient(circle at top, rgba(255, 164, 28, 0.06), transparent 62%),
    linear-gradient(180deg, rgba(255, 251, 245, 1), rgba(249, 249, 249, 1));
}

.theme-card-orange .theme-logo-shell {
  background: transparent;
}

.theme-card-purple {
  background:
    radial-gradient(circle at top, rgba(155, 77, 208, 0.06), transparent 62%),
    linear-gradient(180deg, rgba(252, 247, 255, 1), rgba(249, 249, 249, 1));
}

.theme-card-purple .theme-logo-shell {
  background: transparent;
}

.theme-card-blue {
  background:
    radial-gradient(circle at top, rgba(53, 122, 221, 0.06), transparent 62%),
    linear-gradient(180deg, rgba(246, 250, 255, 1), rgba(249, 249, 249, 1));
}

.theme-card-blue .theme-logo-shell {
  background: transparent;
}

.theme-card-glow {
  background:
    radial-gradient(circle at top, rgba(255, 145, 0, 0.07), transparent 62%),
    linear-gradient(180deg, rgba(255, 250, 245, 1), rgba(249, 249, 249, 1));
}

.theme-card-glow .theme-logo-shell {
  background: transparent;
}

.theme-card-party {
  background:
    radial-gradient(circle at top, rgba(201, 66, 219, 0.07), transparent 62%),
    linear-gradient(180deg, rgba(254, 247, 255, 1), rgba(249, 249, 249, 1));
}

.theme-card-party .theme-logo-shell {
  background: transparent;
}

.theme-card-hiphop {
  background:
    radial-gradient(circle at top, rgba(207, 29, 52, 0.08), transparent 62%),
    linear-gradient(180deg, rgba(250, 250, 250, 1), rgba(245, 245, 245, 1));
}

.theme-card-hiphop .theme-logo-shell {
  background: transparent;
}

.theme-card + .theme-card {
  border-left: 1px solid rgba(22, 22, 22, 0.1);
}

.hero,
.live-section {
  background: rgba(255, 253, 249, 0.88);
  color: var(--ink);
}

.stations-section,
.schedule-section {
  background: rgba(255, 250, 244, 0.9);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.82fr);
  gap: 14px;
  align-items: start;
}

.hero-copy,
.hero-panel,
.hero-stage,
.hero-meta,
.hero-live-stack,
.hero-info-grid,
.quick-links,
.live-grid,
.station-grid,
.schedule-grid,
.live-meta-strip,
.section-heading,
.station-card,
.schedule-card,
.contact-card,
.media-card,
.portal-player,
.portal-controls {
  display: grid;
  gap: 12px;
}

.eyebrow,
.card-label,
.meta-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 900;
}

.eyebrow,
.card-label {
  color: var(--brand);
}

.meta-label {
  color: var(--ink-soft);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.08;
}

h1 {
  max-width: 10.5ch;
  font-size: clamp(2.3rem, 5.4vw, 4rem);
}

h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

p {
  margin: 0;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 6px;
}

.section-heading p:not(.eyebrow),
.media-note,
.station-card p,
.contact-card p,
.info-widget p {
  color: var(--ink-soft);
  line-height: 1.68;
}

.chat-banner,
.hero-meta article,
.hero-player-card,
.info-widget,
.media-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.chat-banner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(237, 243, 247, 0.95));
}

.chat-avatar {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 900;
  color: #16213b;
  background: linear-gradient(135deg, #ffe38e, #ffc44c);
}

.chat-copy {
  padding: 13px 15px;
  border-radius: 16px;
  background: white;
  color: var(--ink);
  font-weight: 700;
}

.hero-stage {
  padding: 14px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(143, 122, 232, 0.1), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(22, 22, 22, 0.05);
}

.portal-player {
  grid-template-columns: 200px 1fr;
  gap: 14px;
  align-items: stretch;
}

.portal-art,
.portal-controls {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 22, 22, 0.05);
}

.portal-art {
  display: grid;
  place-items: center;
  min-height: 192px;
  background:
    radial-gradient(circle at top, rgba(142, 167, 181, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.72);
}

.portal-art img {
  width: min(150px, 100%);
}

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

.button {
  gap: 10px;
}

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

.quick-links a {
  min-height: 60px;
  padding: 10px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  border-radius: 16px;
  background: rgba(22, 22, 22, 0.035);
  border: 1px solid rgba(22, 22, 22, 0.05);
  color: var(--ink);
  font-weight: 800;
}

.quick-links i {
  color: var(--brand);
}

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

.hero-meta article {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.68);
}

.hero-meta strong,
.live-meta-strip strong,
.info-widget strong,
.hero-player-head strong,
.schedule-row strong {
  display: block;
  font-family: "Sora", sans-serif;
}

.hero-live-panel {
  gap: 10px;
}

.hero-player-card {
  padding: 16px;
  display: grid;
  gap: 12px;
  background: rgba(255, 255, 255, 0.78);
}

.hero-player-head,
.card-head,
.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-player-card audio,
.hero-player-card video,
audio,
video {
  width: 100%;
  border-radius: 16px;
  background: #f4f0ea;
  border: 1px solid rgba(22, 22, 22, 0.06);
}

.hero-player-card video {
  min-height: 190px;
  object-fit: cover;
}

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

.info-widget {
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.72);
}

.action-widget {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.action-widget a {
  min-height: 70px;
  padding: 10px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  border-radius: 16px;
  font-weight: 900;
  color: var(--ink);
  background: linear-gradient(135deg, #f4f7fb, #fff);
  border: 1px solid rgba(22, 22, 22, 0.05);
}

.action-widget i {
  color: var(--brand);
}

.is-hidden {
  display: none;
}

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

.media-card {
  padding: 20px;
  background: rgba(22, 22, 22, 0.025);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(22, 22, 22, 0.05);
  border: 1px solid rgba(22, 22, 22, 0.06);
  font-size: 0.82rem;
  font-weight: 900;
}

.status-pill.is-live {
  color: #17663b;
  background: rgba(93, 207, 133, 0.16);
  border-color: rgba(93, 207, 133, 0.24);
}

audio {
  min-height: 58px;
}

video {
  min-height: 280px;
  object-fit: cover;
}

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

.live-meta-strip div {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: rgba(22, 22, 22, 0.03);
  border: 1px solid rgba(22, 22, 22, 0.05);
}

.media-note code {
  color: var(--ink);
  font-family: "Sora", sans-serif;
}

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

.station-card,
.schedule-card,
.contact-card {
  padding: 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-card);
}

.station-card-featured {
  background: linear-gradient(180deg, rgba(207, 29, 52, 0.06), rgba(255, 255, 255, 0.92));
}

.schedule-grid {
  grid-template-columns: 1.02fr 0.98fr;
}

.schedule-row {
  padding: 12px 0;
  border-top: 1px solid rgba(22, 22, 22, 0.06);
}

.schedule-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.schedule-row span {
  color: var(--ink-soft);
  font-weight: 800;
}

@media (max-width: 980px) {
  .nowplaying-inner,
  .hero,
  .portal-player,
  .live-grid,
  .schedule-grid {
    grid-template-columns: 1fr;
  }

  .schedule-scroller {
    width: calc(100% - 16px);
    padding: 0 46px 14px;
  }

  .schedule-strip-inner {
    width: 100%;
    padding: 0 0 14px;
    grid-auto-columns: calc((100% - 32px) / 3);
    gap: 16px;
  }

  body[data-page="schedule"] .schedule-scroller {
    width: calc(100% - 16px);
    padding: 0 8px 12px;
  }

  body[data-page="schedule"] .schedule-strip-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .schedule-detail-head {
    flex-direction: column;
    align-items: start;
  }

  .schedule-detail-panel {
    grid-template-columns: 1fr;
  }

  .schedule-detail-panel.is-no-media {
    padding: 22px 24px;
  }

  .nowplaying-inner {
    width: calc(100% - 32px);
    gap: 28px;
  }

  .record-player {
    width: 400px;
    height: 350px;
  }

  .record-disc {
    left: 8px;
    top: 4px;
    width: 330px;
  }

  .record-label {
    width: 132px;
    height: 132px;
  }

  .tonearm {
    right: 34px;
    top: 88px;
    width: 104px;
    transform: rotate(-26deg);
  }

  .tonearm-base {
    right: 12px;
    top: 64px;
  }

  .subpage-hero-inner {
    width: calc(100% - 8px);
  }

  .banner-side {
    justify-items: start;
    width: 100%;
    transform: none;
  }

  .banner-actions {
    justify-content: start;
  }

  .banner-title {
    text-align: left;
    max-width: none;
  }

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

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

  .news-more-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-card-featured {
    min-height: 320px;
  }

  .news-article-shell {
    width: calc(100% - 8px);
  }

  .news-article-title {
    max-width: none;
  }

  .djs-grid,
  .contact-grid,
  .contact-chat-inner {
    grid-template-columns: 1fr 1fr;
  }

  .djs-scroller {
    width: calc(100% - 16px);
    padding: 0 46px 18px;
  }

  body[data-page="djs"] .djs-grid {
    grid-auto-columns: calc((100% - 32px) / 3);
  }

  .dj-detail-panel {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .music-news-grid {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .music-news-card {
    min-height: 340px;
  }

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

}

@media (max-width: 760px) {
  .page-shell {
    width: 100%;
    padding-top: 10px;
  }

  .nowplaying-banner {
    padding: 14px 8px;
  }

  .nowplaying-inner {
    width: calc(100% - 16px);
    gap: 20px;
  }

  .schedule-strip {
    padding: 40px 0 0;
  }

  .schedule-scroller {
    width: calc(100% - 10px);
    padding: 0 38px 12px;
  }

  .schedule-strip-inner {
    width: 100%;
    padding: 0 0 12px;
    grid-auto-columns: calc((100% - 16px) / 2);
    gap: 16px;
  }

  body[data-page="schedule"] .schedule-scroller {
    width: calc(100% - 8px);
    padding: 0 4px 12px;
  }

  body[data-page="schedule"] .schedule-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
  }

  .schedule-day-tabs {
    gap: 8px;
  }

  .schedule-day-tab {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.9rem;
  }

  .record-disc {
    left: 0;
    top: 0;
    width: 260px;
  }

  .record-player {
    width: min(100%, 300px);
    height: 280px;
  }

  .record-label {
    width: 104px;
    height: 104px;
    padding: 10px 8px;
  }

  .record-label strong {
    font-size: 0.78rem;
  }

  .record-label small {
    font-size: 0.54rem;
  }

  .groove-one {
    width: 204px;
    height: 204px;
  }

  .groove-two {
    width: 170px;
    height: 170px;
  }

  .groove-three {
    width: 136px;
    height: 136px;
  }

  .tonearm {
    right: 18px;
    top: 68px;
    width: 82px;
    height: 8px;
    transform: rotate(-24deg);
  }

  .tonearm::before {
    width: 18px;
    height: 18px;
    right: -10px;
  }

  .tonearm-head {
    width: 20px;
    height: 12px;
  }

  .tonearm-base {
    right: 2px;
    top: 50px;
    width: 38px;
    height: 38px;
  }

  .show-record-card {
    min-height: auto;
    padding: 18px 12px 12px;
  }

  body[data-page="schedule"] .show-record-card {
    padding: 16px 10px 12px;
  }

  .show-record {
    width: min(158px, 100%);
  }

  body[data-page="schedule"] .show-record {
    width: min(136px, 100%);
  }

  .show-record-label {
    width: 74px;
    height: 74px;
  }

  body[data-page="schedule"] .show-record-label {
    width: 64px;
    height: 64px;
  }

  .schedule-nav {
    width: 36px;
    height: 36px;
  }

  .banner-icon-button {
    min-width: 62px;
    width: 62px;
    min-height: 62px;
  }

  .banner-icon-button i {
    font-size: 1.2rem;
  }

  .banner-side.is-video-active {
    width: 100%;
  }

  .banner-side.is-video-active .banner-icon-button {
    min-width: 54px;
    width: 54px;
    min-height: 54px;
  }

  .banner-side.is-video-active .banner-icon-button i {
    font-size: 1rem;
  }

  .schedule-detail-panel {
    width: calc(100% - 20px);
    padding: 20px 18px;
    border-radius: 18px;
    gap: 18px;
  }

  .schedule-detail-panel.is-no-media {
    padding: 18px 16px;
  }

  .schedule-detail-media {
    min-height: 200px;
  }

  .schedule-detail-title {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .schedule-detail-time {
    font-size: 0.95rem;
    white-space: normal;
  }

  .site-header {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0 8px 4px;
  }

  .theme-stations {
    padding: 20px 0 28px;
  }

  .news-strip {
    padding: 60px 10px 20px;
  }

  .news-article-strip {
    padding: 42px 10px 0;
  }

  .subpage-hero {
    padding: 10px 10px 16px;
  }

  .subpage-hero-inner {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .news-strip-head {
    padding-bottom: 12px;
  }

  .news-side {
    gap: 10px;
  }

  .news-more-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 10px;
  }

  .news-card {
    min-height: 190px;
    padding: 14px;
    border-radius: 12px;
  }

  .news-card-featured {
    min-height: 250px;
  }

  .news-article-media {
    margin-top: 22px;
    border-radius: 18px;
  }

  .news-article-body {
    margin-top: 22px;
    gap: 14px;
  }

  .djs-strip,
  .contact-strip,
  .contact-chat-strip,
  .music-news-strip {
    padding-inline: 10px;
  }

  .music-news-scroller {
    width: calc(100% - 10px);
    padding: 0 38px 0;
  }

  .djs-strip-head,
  .contact-strip-head,
  .djs-grid,
  .contact-strip-inner,
  .contact-chat-inner,
  .music-news-inner {
    width: calc(100% - 8px);
  }

  .djs-grid,
  .contact-grid,
  .contact-chat-inner,
  .chat-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dj-card {
    min-height: 300px;
  }

  .djs-scroller {
    width: calc(100% - 10px);
    padding: 0 38px 14px;
  }

  .djs-nav {
    width: 36px;
    height: 36px;
  }

  body[data-page="djs"] .djs-grid {
    grid-auto-columns: calc((100% - 16px) / 2);
    gap: 12px;
    padding: 0 0 14px;
  }

  .dj-detail-panel {
    width: calc(100% - 8px);
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
  }

  .dj-detail-media {
    min-height: 260px;
  }

  .music-news-grid {
    grid-auto-columns: 100%;
    gap: 10px;
  }

  .music-news-card {
    min-height: 300px;
    padding: 18px;
  }

  .music-news-nav {
    width: 36px;
    height: 36px;
  }

  .promo-strip {
    padding: 0 10px 20px;
  }

  .promo-strip-head {
    padding-bottom: 12px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .promo-card {
    grid-template-rows: 220px auto;
  }

  .theme-stations-inner {
    width: 100%;
  }

  .theme-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }

  .theme-card {
    min-height: 138px;
    padding: 10px 6px;
    border-radius: 0;
  }

  .theme-stations-head {
    padding: 14px 12px 12px;
  }

  .schedule-strip-head {
    padding: 14px 12px 12px;
  }

  .site-footer {
    padding: 24px 10px 26px;
  }

  .site-footer-inner {
    width: calc(100% - 8px);
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .site-footer-bottom {
    width: calc(100% - 8px);
  }

  .site-footer-bottom p {
    text-align: center;
  }

  .theme-logo-shell {
    min-height: 88px;
  }

  .brand img {
    height: 116px;
  }

  .site-nav {
    justify-content: start;
  }

  .card-head,
  .hero-player-head,
  .schedule-row {
    flex-direction: column;
    align-items: start;
  }

  .site-nav,
  .hero-actions,
  .quick-links,
  .hero-meta,
  .hero-info-grid,
  .action-widget,
  .live-grid,
  .station-grid,
  .live-meta-strip {
    grid-template-columns: 1fr;
  }

  .site-nav a {
    width: 100%;
    min-height: 36px;
    grid-template-columns: 22px 1fr;
    justify-items: start;
    align-items: center;
    padding-inline: 10px;
    border-radius: 10px;
  }

  .site-nav-trigger {
    width: 100%;
    min-height: 36px;
    grid-template-columns: 22px 1fr;
    justify-items: start;
    align-items: center;
    padding-inline: 10px;
    border-radius: 10px;
  }

  .site-nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: min(248px, calc(100vw - 24px));
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    display: grid;
    box-shadow: 0 18px 34px rgba(20, 13, 12, 0.1);
  }

  .site-nav-dropdown.is-open .site-nav-menu,
  .site-nav-dropdown:focus-within .site-nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  h1 {
    max-width: 100%;
  }

  video {
    min-height: 220px;
  }
}
