:root {
  --sun: #ffb703;
  --sun-strong: #ff7a00;
  --blue: #073f91;
  --blue-strong: #042b6f;
  --ink: #12203a;
  --muted: #657089;
  --line: #dfe6f2;
  --soft: #f7f9fd;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(7, 63, 145, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 183, 3, 0.18), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 52%, #ffffff 100%);
  padding-bottom: 96px;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(223, 230, 242, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: clamp(128px, 15vw, 190px);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--blue-strong);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  padding: 10px 0;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--sun-strong);
}

.whatsapp-link,
.primary-button,
.secondary-button,
.promo-button,
.social-links a,
.control-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.whatsapp-link,
.primary-button,
.promo-button {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(7, 63, 145, 0.18);
}

.whatsapp-link {
  padding: 0 18px;
  font-size: 0.9rem;
}

.primary-button,
.secondary-button,
.promo-button {
  padding: 0 20px;
}

.secondary-button {
  color: var(--blue);
  border: 1px solid rgba(7, 63, 145, 0.2);
  background: rgba(255, 255, 255, 0.75);
}

.whatsapp-link:hover,
.primary-button:hover,
.secondary-button:hover,
.promo-button:hover,
.social-links a:hover,
.control-button:hover {
  transform: translateY(-1px);
}

.hero {
  min-height: calc(100svh - 76px);
  padding: clamp(22px, 4vw, 48px) clamp(16px, 4vw, 56px) 28px;
}

.carousel {
  position: relative;
  display: grid;
  min-height: min(680px, calc(100svh - 126px));
  overflow: hidden;
  border: 1px solid rgba(223, 230, 242, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.slides {
  display: grid;
}

.slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  min-height: 100%;
  padding: clamp(30px, 6vw, 76px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.slide::before {
  content: "";
  position: absolute;
  inset: auto -12% -28% 42%;
  height: 62%;
  background: linear-gradient(135deg, rgba(255, 183, 3, 0.28), rgba(255, 122, 0, 0.1));
  border-radius: 999px 0 0 0;
  z-index: -1;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.slide-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--sun-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow-live {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 20px;
  padding: 0;
  color: #d80f21;
  border: 0;
  border-radius: 999px;
  background: transparent;
  opacity: 0.28;
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1;
  transition: opacity 180ms ease, padding 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.live-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: none;
}

.is-radio-live .live-badge,
.is-studio-live .live-badge {
  padding: 3px 8px;
  background: rgba(216, 15, 33, 0.075);
  box-shadow: inset 0 0 0 1px rgba(216, 15, 33, 0.1);
  opacity: 0.9;
}

.is-radio-live .live-badge::before,
.is-studio-live .live-badge::before {
  box-shadow: 0 0 0 rgba(216, 15, 33, 0.34);
  animation: livePulse 3.6s ease-in-out infinite;
}

@keyframes livePulse {
  0%,
  100% {
    transform: scale(0.92);
    box-shadow: 0 0 0 0 rgba(216, 15, 33, 0.2);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 6px rgba(216, 15, 33, 0);
  }
}

.slide h1,
.slide h2 {
  margin: 0;
  color: var(--blue-strong);
  font-size: clamp(2.6rem, 8vw, 7.1rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.slide p:not(.eyebrow) {
  max-width: 570px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.7vw, 1.32rem);
  line-height: 1.58;
}

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

.slide-art {
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: clamp(18px, 3vw, 38px);
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--line);
}

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

.promo-slide-art img {
  width: 100%;
  height: min(58vh, 520px);
  object-fit: contain;
  border-radius: 8px;
}

.promo-slide-art.is-image-missing::before {
  content: "Dia dos Namorados Sol FM + Curvo";
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 280px;
  padding: 28px;
  color: var(--blue-strong);
  border-radius: 8px;
  background: linear-gradient(145deg, #dff3ff, #ffffff);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
}

.frequency-panel,
.promo-burst {
  display: grid;
  place-items: center;
  min-height: 340px;
  color: var(--white);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--blue), var(--blue-strong));
  box-shadow: 0 24px 70px rgba(4, 43, 111, 0.22);
  text-align: center;
}

.frequency-panel strong {
  color: var(--sun);
  font-size: clamp(5.2rem, 12vw, 10rem);
  line-height: 0.86;
}

.frequency-panel span {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
}

.frequency-panel small,
.promo-burst span {
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  font-weight: 800;
  text-transform: uppercase;
}

.promo-burst {
  background:
    linear-gradient(145deg, rgba(255, 122, 0, 0.96), rgba(255, 183, 3, 0.96)),
    var(--sun);
}

.promo-burst strong {
  color: var(--blue-strong);
  font-size: clamp(3.1rem, 8vw, 6.5rem);
  line-height: 0.92;
}

.carousel-controls {
  position: absolute;
  right: clamp(16px, 3vw, 36px);
  bottom: clamp(16px, 3vw, 32px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid rgba(223, 230, 242, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.icon-button {
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #b6c2d6;
  cursor: pointer;
}

.dot.is-active {
  width: 24px;
  background: var(--sun-strong);
}

.content-shell {
  display: grid;
  grid-template-columns: minmax(124px, 172px) minmax(0, 1120px) minmax(124px, 172px);
  gap: clamp(14px, 2.4vw, 28px);
  align-items: start;
  width: min(100% - 32px, 1580px);
  margin: 0 auto;
}

.page-flow {
  display: grid;
  gap: clamp(26px, 5vw, 58px);
}

.section {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 40px rgba(7, 63, 145, 0.07);
}

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

.section-heading h2 {
  margin: 0;
  color: var(--blue-strong);
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  line-height: 1;
}

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

.program-card,
.promo-card {
  display: grid;
  gap: 14px;
  min-width: 0;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.program-card {
  grid-template-rows: auto 1fr;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: inherit;
  text-align: left;
  border: 1px solid var(--line);
  cursor: pointer;
}

.program-card:hover,
.program-card:focus-visible {
  border-color: rgba(255, 122, 0, 0.42);
  box-shadow: 0 18px 44px rgba(7, 63, 145, 0.12);
}

.program-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #eef5ff;
}

.program-content {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.program-title,
.promo-card h3 {
  margin: 0;
  color: var(--blue);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.18;
}

.program-description,
.promo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.program-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.program-meta span,
.promo-date {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  color: var(--blue-strong);
  border-radius: 8px;
  background: #eef5ff;
  font-size: 0.85rem;
  font-weight: 800;
}

.program-lightbox {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.program-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.program-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 18, 44, 0.48);
  cursor: pointer;
}

.program-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(92vw, 760px);
  max-height: 86vh;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(223, 230, 242, 0.95);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 90px rgba(4, 43, 111, 0.3);
}

.program-lightbox-panel img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(86vh - 28px);
  object-fit: contain;
}

.social-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 26px;
  background:
    linear-gradient(110deg, rgba(7, 63, 145, 0.96), rgba(4, 43, 111, 0.96)),
    var(--blue);
}

.social-section .eyebrow {
  color: var(--sun);
}

.social-section h2 {
  color: var(--white);
}

.studio-section {
  overflow: hidden;
}

.studio-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 220px;
  padding: clamp(22px, 4vw, 42px);
  color: var(--white);
  border-radius: 8px;
  background:
    linear-gradient(110deg, rgba(4, 43, 111, 0.92), rgba(7, 63, 145, 0.78)),
    linear-gradient(145deg, #073f91, #ffb703);
}

.studio-preview strong {
  display: block;
  max-width: 620px;
  font-size: clamp(1.45rem, 3vw, 2.55rem);
  line-height: 1.08;
}

.studio-preview p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.studio-open-button {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--sun-strong);
}

.studio-modal {
  position: fixed;
  inset: 0;
  z-index: 360;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3vw, 28px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.studio-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.studio-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 18, 44, 0.66);
  cursor: pointer;
}

.studio-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1100px, 96vw);
  overflow: hidden;
  border: 1px solid rgba(223, 230, 242, 0.26);
  border-radius: 8px;
  background: #061936;
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.42);
}

.studio-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.studio-modal-header strong {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.studio-frame-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000000;
}

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

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

.social-links a {
  min-width: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.promo-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.promo-card {
  min-height: 230px;
}

.promo-image {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  border-radius: 8px;
  background: #eef5ff;
}

.promo-card .promo-button {
  width: fit-content;
  margin-top: auto;
}

.sponsor-rail {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 10px;
}

.rail-title {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.sponsor-grid {
  display: grid;
  gap: 10px;
}

.sponsor-card {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 12px;
  color: var(--blue-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(7, 63, 145, 0.08);
  text-align: center;
  font-size: clamp(0.68rem, 0.9vw, 0.82rem);
  font-weight: 900;
  cursor: pointer;
}

.sponsor-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sponsor-preview {
  position: fixed;
  top: 50%;
  z-index: 200;
  display: grid;
  place-items: center;
  width: max-content;
  max-width: min(52vw, 620px);
  max-height: 76vh;
  padding: 14px;
  border: 1px solid rgba(223, 230, 242, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 70px rgba(4, 43, 111, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.96);
  transition: opacity 160ms ease, transform 160ms ease;
}

.sponsor-card-left .sponsor-preview {
  left: clamp(164px, 14vw, 248px);
}

.sponsor-card-right .sponsor-preview {
  right: clamp(164px, 14vw, 248px);
}

.sponsor-preview img {
  width: auto;
  height: auto;
  max-width: min(48vw, 580px);
  max-height: 70vh;
  object-fit: contain;
}

.sponsor-card:hover,
.sponsor-card:focus-visible {
  z-index: 210;
  border-color: rgba(255, 122, 0, 0.42);
  box-shadow: 0 18px 44px rgba(7, 63, 145, 0.14);
}

.sponsor-card:hover .sponsor-preview,
.sponsor-card:focus-visible .sponsor-preview {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.sponsor-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.sponsor-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sponsor-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(4, 18, 44, 0.42);
  cursor: pointer;
}

.sponsor-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(92vw, 620px);
  max-height: 82vh;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(223, 230, 242, 0.95);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 90px rgba(4, 43, 111, 0.3);
}

.sponsor-lightbox-panel img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(82vh - 28px);
  object-fit: contain;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  width: min(100% - 32px, 1120px);
  margin: 44px auto 20px;
  padding: 20px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  line-height: 1.5;
}

.site-footer img {
  width: 110px;
}

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

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

.site-footer a {
  color: var(--blue);
  font-weight: 700;
}

.player-bar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(223, 230, 242, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 60px rgba(4, 43, 111, 0.22);
  backdrop-filter: blur(18px);
}

.player-station {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.player-station img {
  width: 70px;
  flex: 0 0 auto;
}

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

.player-station strong {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--blue-strong);
}

.player-station span {
  color: var(--muted);
  font-size: 0.86rem;
}

.player-controls {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
  flex-wrap: wrap;
}

.control-button {
  min-height: 38px;
  padding: 0 13px;
  color: var(--blue);
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 0.86rem;
}

.control-button.is-live {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.volume-control input {
  width: 112px;
  accent-color: var(--sun-strong);
}

@media (max-width: 1080px) {
  .content-shell {
    grid-template-columns: 1fr;
  }

  .sponsor-rail {
    position: static;
    order: 2;
  }

  .sponsor-rail-left {
    order: 3;
  }

  .page-flow {
    order: 1;
  }

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

  .sponsor-card {
    max-height: 190px;
  }

  .sponsor-preview {
    inset: 50% auto auto 50%;
    max-width: calc(100vw - 28px);
    transform: translate(-50%, -50%) scale(0.96);
  }

  .sponsor-preview img {
    max-width: calc(100vw - 58px);
  }

  .sponsor-card:hover .sponsor-preview,
  .sponsor-card:focus-visible .sponsor-preview {
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .brand {
    align-self: center;
  }

  .main-nav {
    justify-content: space-between;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .whatsapp-link {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 16px;
  }

  .carousel {
    min-height: 650px;
  }

  .slide {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 24px;
  }

  .slide h1,
  .slide h2 {
    font-size: clamp(2.35rem, 14vw, 4.8rem);
  }

  .slide-art,
  .frequency-panel,
  .promo-burst {
    min-height: 250px;
  }

  .program-grid,
  .promo-list,
  .social-section,
  .studio-preview,
  .social-links {
    grid-template-columns: 1fr;
  }

  .studio-open-button {
    width: fit-content;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .player-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .player-controls {
    justify-content: stretch;
  }

  .control-button {
    flex: 1 1 74px;
  }

  .volume-control {
    flex: 1 1 100%;
    justify-content: space-between;
  }

  .volume-control input {
    width: min(48vw, 260px);
  }
}

@media (max-width: 540px) {
  body {
    padding-bottom: 180px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .main-nav {
    font-size: 0.8rem;
  }

  .hero {
    padding-inline: 12px;
  }

  .slide {
    padding: 24px 18px 86px;
  }

  .carousel-controls {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }

  .section {
    padding: 24px 18px;
  }

  .program-card,
  .promo-card {
    padding: 18px;
  }

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

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

  .player-station img {
    width: 58px;
  }
}
