* {
  border-radius: 0 !important;
}

:root {
  --site-max-width: 72rem;
  --brand-yellow: #fde047;
  --brand-amber: #f59e0b;
  --brand-orange: #fb923c;
  --brand-ink: #171717;
}

html {
  font-family: Arial, Helvetica, sans-serif;
}

html.site-root {
  min-height: 100%;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.site-header > div,
main.mx-auto,
main > .mx-auto,
.site-footer .mx-auto,
.global-player > .mx-auto {
  width: 100%;
  max-width: var(--site-max-width) !important;
}

.site-nav {
  display: none;
}

.site-nav.is-open {
  position: absolute;
  top: 77px;
  right: 0;
  left: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border-top: 1px solid #d97706;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-amber), var(--brand-orange));
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  color: var(--brand-ink);
  font-size: 14px;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--brand-ink);
  text-decoration: underline;
  text-decoration-color: var(--brand-ink);
  text-underline-offset: 8px;
}

.prose-radio {
  max-width: 820px;
}

.prose-radio p {
  margin: 0 0 1.4rem;
  color: #57534e;
  line-height: 1.9;
}

.prose-radio h2 {
  margin: 2.4rem 0 1rem;
  color: #1c1917;
  font-size: 1.6rem;
  font-weight: 900;
}

.global-player {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 60;
}

.station-card img,
.radio-tile img {
  object-fit: contain;
  background: #fff;
}

.station-hidden {
  display: none !important;
}

.radio-tile img {
  transition: transform 0.2s ease;
}

.radio-tile:hover img {
  transform: scale(1.04);
}

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

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-list {
  margin-top: 1.25rem;
  border-bottom: 1px solid #d6d3d1;
}

.faq-item {
  border-top: 1px solid #d6d3d1;
}

.faq-item summary {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 1.15rem 3rem 1.15rem 0;
  color: #1c1917;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.5;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 0.25rem;
  width: 1.75rem;
  color: #b45309;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  content: "+";
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:focus-visible {
  outline: 3px solid #fbbf24;
  outline-offset: 4px;
}

.faq-answer {
  padding: 0 2.75rem 1.15rem 0;
}

.prose-radio .faq-answer p {
  margin: 0;
  color: #57534e;
  line-height: 1.8;
}

.go-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #171717 !important;
  background: linear-gradient(135deg, var(--brand-yellow), var(--brand-orange));
  color: #171717;
  box-shadow: 0 8px 24px rgba(120, 53, 15, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, bottom 0.2s ease;
}

.go-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-to-top:hover {
  background: #fbbf24;
}

.go-to-top:focus-visible {
  outline: 3px solid #f59e0b;
  outline-offset: 3px;
}

.go-to-top svg {
  width: 1.35rem;
  height: 1.35rem;
}

.player-visible .go-to-top {
  bottom: 9.5rem;
}

@media (min-width: 640px) {
  .player-visible .go-to-top {
    bottom: 6.75rem;
  }
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

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

@media (prefers-reduced-motion: reduce) {
  .go-to-top {
    transition: none;
  }
}


.policy-content {
  max-width: 880px;
}

.policy-content .policy-meta {
  margin-bottom: 1.75rem;
  color: #78716c;
  font-size: 0.9rem;
  font-weight: 700;
}

.prose-radio h3 {
  margin: 2.25rem 0 0.9rem;
  color: #1c1917;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.4;
}

.prose-radio ul,
.prose-radio ol {
  margin: 0 0 1.5rem;
  padding-left: 1.4rem;
  color: #57534e;
  line-height: 1.85;
}

.prose-radio ul {
  list-style: square;
}

.prose-radio ol {
  list-style: decimal;
}

.prose-radio li + li {
  margin-top: 0.55rem;
}

.prose-radio a {
  color: #92400e;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.prose-radio strong {
  color: #292524;
}
