/* ==========================================================================
   24. STATION PAGE
   ========================================================================== */

.station-page {
  --station-color: var(--color-nav);
  --station-color-secondary: var(--station-color);
}

/* -- Station Layout — Two-column grid -- */
.station-layout {
  background: var(--color-white);
  padding: var(--space-xl) 0;
}

@media (max-width: 767px) {
  .station-layout {
    padding: var(--space-md) 0;
  }
}

.station-layout__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .station-layout__grid {
    grid-template-columns: 1fr 280px;
    grid-template-rows: auto auto;
    gap: var(--grid-gap);
    align-content: start;
  }

  .station-layout__top    { grid-column: 1; grid-row: 1; }
  .station-layout__sidebar { grid-column: 2; grid-row: 1 / -1; }
  .station-layout__bottom  { grid-column: 1; grid-row: 2; }
}

@media (min-width: 992px) {
  .station-layout__grid {
    grid-template-columns: 1fr 320px;
    gap: var(--space-2xl);
    align-content: start;
  }
}

/* Main content — top (now-playing, listen live, on-air) */
.station-layout__top {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  min-width: 0; /* Prevent grid blowout from scrollable content */
}

/* Main content — bottom (recently played, schedule) */
.station-layout__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  min-width: 0;
}

/* Station welcome content (non-music stations) */
.station-welcome {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-gray-dark);
  padding: var(--space-md);
  background: var(--color-surface-neutral);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--station-color);
}

.station-welcome p:last-child {
  margin-bottom: 0;
}

/* Sidebar features */
.sidebar-feature {
  text-align: center;
}

.sidebar-feature__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

@media (max-width: 767px) {
  .sidebar-feature__img {
    width: 100%;
  }
}

/* Contest sidebar column */
.station-layout__sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-width: 0;
}

@media (min-width: 768px) {
  .station-layout__sidebar {
    position: sticky;
    top: 80px;
    align-self: start;
  }
}

/* Inline section headers within the main column */
.station-section {
  padding-top: var(--space-lg);
}

.station-section .section-title {
  margin-bottom: var(--space-md);
}


.now-playing {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.now-playing__art {
  position: relative;
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-gray-light);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.now-playing__art img,
.now-playing__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.now-playing__placeholder-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  color: var(--color-gray-mid);
  z-index: 0;
}

/* Hide empty-src cover image, show placeholder icon instead */
.now-playing__cover[src=""] {
  display: none;
}

/* Hide placeholder icon once cover image has a real src */
.now-playing__cover:not([src=""]) ~ .now-playing__placeholder-icon {
  display: none;
}

.now-playing__live-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--color-live-badge);
  color: var(--color-white);
  font-size: 10px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 1;
}

.now-playing__live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-white);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.now-playing__info {
  flex: 1;
  min-width: 0;
}

.now-playing__label {
  display: block;
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--station-color);
  margin-bottom: 4px;
}

.now-playing__title {
  display: block;
  font-size: 26px;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: 4px;
}

.now-playing__artist {
  display: block;
  font-size: 18px;
  color: var(--color-gray-dark);
}

/* Listen Live Button */
.listen-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--station-color, var(--color-primary));
  color: var(--color-white);
  font-size: 15px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast), filter var(--transition-fast);
  align-self: flex-start;
}

.listen-btn:hover,
.listen-btn:focus,
.listen-btn:focus-visible {
  background: var(--station-color, var(--color-primary));
  color: var(--color-white);
}

.listen-btn:hover {
  filter: brightness(0.85);
}

.listen-btn i {
  font-size: 18px;
}

/* Play/pause overlay on album art */
.now-playing__art--playable {
  cursor: pointer;
}

.now-playing__play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  border-radius: inherit;
  opacity: 1;
  transition: opacity var(--transition-fast);
  z-index: 2;
}

.now-playing__art--playable.is-playing .now-playing__play-overlay {
  opacity: 0;
}

.now-playing__art--playable.is-playing:hover .now-playing__play-overlay {
  opacity: 1;
}

.now-playing__play-icon {
  font-size: 36px;
  color: var(--color-white);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.now-playing__pause-icon {
  display: none;
  font-size: 36px;
  color: var(--color-white);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.now-playing__art--playable.is-playing .now-playing__play-icon {
  display: none;
}

.now-playing__art--playable.is-playing .now-playing__pause-icon {
  display: inline;
}

/* On Air Now */
.on-air-now {
  padding: var(--space-lg);
  background: var(--color-surface-neutral);
  border-radius: 8px;
  border-left: 3px solid var(--station-color);
}

.on-air-now__header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.on-air-now__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-border);
}

.on-air-now__photo.placeholder-img {
  background: var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-mid);
  font-size: 20px;
}

.on-air-now__details {
  flex: 1;
  min-width: 0;
}

.on-air-now__label {
  font-size: 10px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--station-color);
}

.on-air-now__name {
  font-size: 17px;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
}

.on-air-now__name a {
  color: var(--color-body-text);
}

.on-air-now__name a:hover {
  color: var(--station-color);
}

.on-air-now__show {
  font-size: 13px;
  color: var(--color-gray-dark);
}

.on-air-now__bio {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-gray-dark);
  margin-bottom: var(--space-md);
}

.on-air-now__more {
  color: var(--station-color, var(--color-primary));
  font-weight: 600;
  margin-left: 4px;
  white-space: nowrap;
}

.on-air-now__contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
  font-size: 12px;
  color: var(--color-gray-dark);
}

.on-air-now__contact a {
  color: var(--color-gray-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

.on-air-now__contact a:hover {
  color: var(--station-color);
}

.on-air-now__socials {
  display: flex;
  gap: var(--space-sm);
}

.on-air-now__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-white);
  border: var(--border-thin);
  color: var(--color-gray-dark);
  font-size: 14px;
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.on-air-now__social:hover {
  border-color: var(--station-color);
  color: var(--station-color);
}

/* -- Featured Contest Column -- */
.featured-contest {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}

.featured-contest:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.featured-contest__image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-contest-placeholder), #546e7a);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 48px;
}

.featured-contest__image[data-bg],
.contest-strip__card-img[data-bg] {
  background-size: cover;
  background-position: center;
}

.featured-contest__prize-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--color-ochre);
  color: var(--color-white);
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
}

.featured-contest__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-contest__title {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.featured-contest__title a {
  color: var(--color-body-text);
}

.featured-contest__title a:hover {
  color: var(--station-color);
}

.featured-contest__desc {
  font-size: 14px;
  color: var(--color-gray-dark);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  flex: 1;
}

.featured-contest__deadline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--color-gray-mid);
  margin-bottom: var(--space-md);
}

.featured-contest__deadline i {
  color: var(--color-ochre);
}

.featured-contest__more {
  text-align: center;
  margin-top: var(--space-md);
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
}

/* Contest form inside featured contest */
.featured-contest__body .contest-form {
  background: transparent;
  border: none;
  padding: 0;
  border-top: var(--border-thin);
  padding-top: var(--space-md);
  margin-top: var(--space-sm);
}

.featured-contest__body .contest-form__heading {
  font-size: 14px;
}

.featured-contest__body .contest-form__form {
  gap: var(--space-sm);
}

.featured-contest__body .contest-form__row {
  width: 100%;
}

/* -- Contest Strip Cards (stacked in sidebar) -- */
.contest-strip__card {
  background: var(--color-white);
  border: var(--border-thin);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.contest-strip__card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.contest-strip__card-img {
  height: 120px;
  background: var(--color-gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-mid);
  font-size: 32px;
  position: relative;
}

.contest-strip__card-placeholder {
  font-size: 32px;
  color: rgba(255,255,255,0.3);
}

.contest-strip__card-prize {
  position: absolute;
  bottom: 6px;
  left: 6px;
  background: var(--color-ochre);
  color: var(--color-white);
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.contest-strip__card-body {
  padding: var(--space-md);
}

.contest-strip__card-title {
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.contest-strip__card-deadline {
  font-size: 11px;
  color: var(--color-gray-mid);
  margin-bottom: var(--space-sm);
}

.contest-strip__card-cta {
  display: block;
  text-align: center;
  background: var(--station-color);
  color: var(--color-white);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: opacity var(--transition-fast);
}

.contest-strip__card-cta:hover {
  opacity: 0.9;
  color: var(--color-white);
}

/* -- Full-width sections below the grid -- */
.station-page .section {
  padding: var(--space-xl) 0;
  background: var(--color-white);
}

@media (max-width: 767px) {
  .station-page .section {
    padding: var(--space-lg) 0;
  }
}

.station-page .section--alt {
  background: var(--color-surface-neutral);
}

.station-page .section__title {
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gray-dark);
  margin-bottom: var(--space-lg);
}

.station-page .section__title a {
  color: inherit;
}

/* -- Recently Played Tiles -- */

.recent-scroll {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-sm);
}

.recent-scroll::-webkit-scrollbar {
  height: 4px;
}

.recent-scroll::-webkit-scrollbar-thumb {
  background: var(--color-gray-light);
  border-radius: 2px;
}

.recent-tile {
  flex: 0 0 120px;
  scroll-snap-align: start;
  text-align: center;
}

.recent-tile__art {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-md);
  background: var(--color-gray-light);
  margin-bottom: var(--space-xs);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-mid);
  font-size: 24px;
}

.recent-tile__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-tile__title {
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-tile__artist {
  font-size: 11px;
  color: var(--color-gray-mid);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* -- Full Playlist (extended history) -- */

.section-title .full-history__toggle {
  float: right;
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: var(--font-weight-normal);
  font-family: var(--font-family);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.section-title .full-history__toggle:hover {
  color: var(--color-white);
}

.full-history__toggle[aria-expanded="true"] .full-history__chevron {
  transform: rotate(180deg);
}

.full-history__chevron {
  transition: transform var(--transition-fast);
  font-size: 10px;
}

.full-history {
  margin-top: 0;
}

.full-history__hour {
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-gray-mid);
  padding: var(--space-sm) 0 var(--space-xs);
  border-bottom: var(--border-thin);
  margin-bottom: var(--space-xs);
}

.full-history__hour:first-child {
  padding-top: 0;
}

.full-history__row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
}

.full-history__row + .full-history__row {
  border-top: 1px solid var(--color-border-subtle);
}

.full-history__hour + .full-history__row {
  border-top: none;
}

.full-history__art {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--color-gray-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-mid);
  font-size: 14px;
}

.full-history__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-history__song {
  flex: 1;
  min-width: 0;
}

.full-history__title {
  display: block;
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.full-history__artist {
  display: block;
  font-size: 12px;
  color: var(--color-gray-mid);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.full-history__time {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--color-gray-mid);
  white-space: nowrap;
}

.full-history__loading,
.full-history__empty {
  padding: var(--space-lg) 0;
  text-align: center;
  color: var(--color-gray-mid);
  font-size: 13px;
}

/* -- App Banner -- */
.app-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  text-align: center;
}

.app-banner__text {
  font-size: 15px;
  color: var(--color-gray-dark);
}

.app-banner__badges {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.app-banner__badges .station-app__badge img {
  display: block;
  height: 44px;
  width: auto;
}

/* -- FCC Public File Banner -- */
.fcc-banner {
  text-align: center;
}

.fcc-banner__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--color-gray-mid);
  font-size: 13px;
  transition: color 0.2s;
}

.fcc-banner__link:hover {
  color: var(--color-gray-dark);
}

.fcc-banner__badge {
  display: block;
  height: 24px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.fcc-banner__link:hover .fcc-banner__badge {
  opacity: 0.85;
}

.fcc-banner__text i {
  margin-left: 3px;
  font-size: 10px;
}

/* -- On-Air Schedule Grid -- */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.schedule-day {
  background: var(--color-surface-neutral);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-sm);
  border: var(--border-thin);
}

.schedule-day--today {
  border-color: var(--station-color);
  border-width: 2px;
}

.schedule-day__name {
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-gray-mid);
  margin-bottom: 4px;
  padding-bottom: 4px;
  border-bottom: var(--border-thin);
}

.schedule-day--today .schedule-day__name {
  color: var(--station-color);
}

.schedule-slot {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 4px 0;
  border-bottom: 1px solid var(--color-border);
}

.schedule-slot:last-child {
  border-bottom: none;
}

.schedule-slot__photo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-gray-light);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--color-gray-mid);
}

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

.schedule-slot__time {
  font-size: 11px;
  color: var(--color-gray-mid);
  white-space: nowrap;
  min-width: 70px;
}

.schedule-slot__name {
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  flex: 1;
  min-width: 0;
}

.schedule-slot__name a {
  color: var(--color-body-text);
  text-decoration: underline;
  text-decoration-color: var(--color-border);
}

.schedule-slot__name a:hover {
  color: var(--station-color);
  text-decoration-color: var(--station-color);
}

.schedule-slot--active {
  background: rgba(194, 24, 91, 0.04);
  border-radius: var(--radius-sm);
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
}

.schedule-slot--active .schedule-slot__name,
.schedule-slot--active .schedule-slot__name a {
  color: var(--station-color);
}

/* -- Station Page Responsive -- */
@media (max-width: 767px) {
  .now-playing__art {
    width: 80px;
    height: 80px;
  }
  .now-playing__title {
    font-size: 18px;
  }
  .now-playing__artist {
    font-size: 15px;
  }
  .now-playing__label {
    font-size: 10px;
  }

  .now-playing__play-icon,
  .now-playing__pause-icon {
    font-size: 24px;
  }

  .on-air-now {
    padding: var(--space-md);
  }
  .on-air-now__photo {
    width: 48px;
    height: 48px;
  }
  .on-air-now__name {
    font-size: 15px;
  }
  .on-air-now__bio {
    font-size: 12px;
    margin-bottom: var(--space-sm);
  }
  .on-air-now__contact {
    flex-direction: column;
    gap: var(--space-xs);
    font-size: 11px;
    margin-bottom: var(--space-sm);
  }
  .on-air-now__social {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .featured-contest__image {
    height: 120px;
  }
  .featured-contest__title {
    font-size: 17px;
  }
  .featured-contest__body {
    padding: var(--space-md);
  }

  .contest-strip__card-img {
    height: 100px;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  .schedule-day {
    padding: var(--space-sm) var(--space-md);
  }
  .schedule-day__name {
    font-size: 11px;
    margin-bottom: var(--space-xs);
    padding-bottom: var(--space-xs);
  }
  .schedule-slot {
    padding: var(--space-xs) 0;
  }
  .schedule-slot__photo {
    display: none;
  }
  .schedule-slot__time {
    min-width: 60px;
    font-size: 11px;
  }
  .schedule-slot__name {
    font-size: 12px;
  }

  .recent-tile {
    flex: 0 0 100px;
  }
  .recent-tile__art {
    width: 100px;
    height: 100px;
  }

  .app-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .now-playing {
    gap: var(--space-sm);
  }
  .now-playing__art {
    width: 64px;
    height: 64px;
  }
  .now-playing__title {
    font-size: 15px;
  }

  .recent-tile {
    flex: 0 0 80px;
  }
  .recent-tile__art {
    width: 80px;
    height: 80px;
  }
  .recent-tile__title {
    font-size: 11px;
  }
  .recent-tile__artist {
    font-size: 10px;
  }
}

/* ── Station Info Blocks (trivia + birthdays 2-col grid) ──── */

.station-info-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .station-info-blocks {
    grid-template-columns: 1fr 1fr;
  }
}

.station-info-block {
  background: var(--color-surface-neutral, #F8F9FA);
  border-left: 3px solid var(--station-color, #1E5B70);
  border-radius: 8px;
  padding: 20px;
}
.station-info-block__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #767676;
  margin-bottom: 8px;
}

/* ── Birthday list ── */

.birthday-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.birthday-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 14px;
  line-height: 1.4;
}
.birthday-list li:last-child {
  border-bottom: none;
}
.birthday-list .cake {
  flex-shrink: 0;
}
.birthday-list .name {
  font-weight: 600;
}
.birthday-list .age {
  font-size: 12px;
  color: #767676;
  margin-left: auto;
  white-space: nowrap;
}

/* ── Trivia block ── */

.station-info-block--trivia {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Nebulous style */
.station-info-block--trivia-nebulous {
  background: linear-gradient(140deg, #1a1a3e 0%, #2a1945 20%, #1e2860 45%, #3a1f5e 65%, #1a2a5e 80%, #2d1b4e 100%);
  border-left: 3px solid #7c4dff;
  color: #fff;
}
.station-info-block--trivia-nebulous .station-info-block__title {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 0.12em;
}
.station-info-block--trivia-nebulous .trivia-question {
  color: #fff;
}
.station-info-block--trivia-nebulous .trivia-cta {
  color: rgba(255,255,255,0.6);
}
.station-info-block--trivia-nebulous .trivia-answer {
  color: #f9a825;
}
.station-info-block--trivia-nebulous .trivia-sponsor {
  color: #f9a825;
}

/* Floating question marks background */
.trivia-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.trivia-bg .qmark {
  position: absolute;
  font-weight: 800;
  line-height: 1;
  user-select: none;
  font-family: 'Georgia', serif;
}
.trivia-bg .qmark--lg {
  font-size: 80px;
  color: rgba(255,255,255,0.07);
}
.trivia-bg .qmark--md {
  font-size: 44px;
  color: rgba(255,255,255,0.05);
}
.trivia-bg .qmark--sm {
  font-size: 24px;
  color: rgba(255,255,255,0.04);
}

/* Constellation lines */
.trivia-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Ccircle cx='40' cy='30' r='1.5' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='80' cy='60' r='1' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='60' cy='90' r='1.5' fill='rgba(255,255,255,0.1)'/%3E%3Cline x1='40' y1='30' x2='80' y2='60' stroke='rgba(255,255,255,0.04)' stroke-width='0.5'/%3E%3Cline x1='80' y1='60' x2='60' y2='90' stroke='rgba(255,255,255,0.04)' stroke-width='0.5'/%3E%3Ccircle cx='200' cy='50' r='1' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='240' cy='30' r='1.5' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='260' cy='70' r='1' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='220' cy='80' r='1' fill='rgba(255,255,255,0.06)'/%3E%3Cline x1='200' y1='50' x2='240' y2='30' stroke='rgba(255,255,255,0.04)' stroke-width='0.5'/%3E%3Cline x1='240' y1='30' x2='260' y2='70' stroke='rgba(255,255,255,0.04)' stroke-width='0.5'/%3E%3Cline x1='260' y1='70' x2='220' y2='80' stroke='rgba(255,255,255,0.04)' stroke-width='0.5'/%3E%3Ccircle cx='150' cy='180' r='1' fill='rgba(255,255,255,0.08)'/%3E%3Ccircle cx='120' cy='220' r='1.5' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='170' cy='240' r='1' fill='rgba(255,255,255,0.06)'/%3E%3Cline x1='150' y1='180' x2='120' y2='220' stroke='rgba(255,255,255,0.04)' stroke-width='0.5'/%3E%3Cline x1='120' y1='220' x2='170' y2='240' stroke='rgba(255,255,255,0.04)' stroke-width='0.5'/%3E%3Ccircle cx='30' cy='160' r='0.8' fill='rgba(255,255,255,0.06)'/%3E%3Ccircle cx='100' cy='140' r='0.8' fill='rgba(255,255,255,0.05)'/%3E%3Ccircle cx='250' cy='160' r='0.8' fill='rgba(255,255,255,0.07)'/%3E%3Ccircle cx='280' cy='200' r='0.8' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}

/* Grain texture */
.trivia-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.trivia-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.trivia-question {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #fff;
  flex: 1;
}
.trivia-answer-area {
  min-height: 52px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.trivia-answer {
  display: none;
  font-size: 22px;
  font-weight: 800;
  color: #f9a825;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.trivia-answer.revealed {
  display: block;
}
.trivia-cta {
  font-size: 14px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.trivia-sponsor {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f9a825;
}

/* ── Giveaway block ── */

.station-info-block--giveaway {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Sweet Treat style */
.station-info-block--giveaway-sweet-treat {
  background: linear-gradient(145deg, #fce4ec 0%, #e1f5fe 35%, #fff9c4 70%, #f3e5f5 100%);
  border-left: 3px solid #f48fb1;
}
/* Confetti / sprinkles background */
.station-info-block--giveaway-sweet-treat::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle 2px, rgba(244,143,177,0.3) 100%, transparent 100%),
    radial-gradient(circle 1.5px, rgba(129,212,250,0.3) 100%, transparent 100%),
    radial-gradient(circle 2px, rgba(255,241,118,0.3) 100%, transparent 100%),
    radial-gradient(circle 1.5px, rgba(206,147,216,0.25) 100%, transparent 100%),
    radial-gradient(circle 1px, rgba(244,143,177,0.2) 100%, transparent 100%),
    radial-gradient(circle 1.5px, rgba(129,212,250,0.25) 100%, transparent 100%);
  background-size:
    80px 90px,
    120px 70px,
    90px 110px,
    70px 80px,
    110px 60px,
    60px 100px;
  background-position:
    10px 15px,
    50px 40px,
    25px 65px,
    75px 20px,
    40px 85px,
    90px 50px;
}
.giveaway__brand-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.giveaway__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.station-info-block--giveaway-sweet-treat .station-info-block__title {
  color: #ad1457;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.station-info-block--giveaway-sweet-treat .giveaway__winner {
  color: #ad1457;
}
.station-info-block--giveaway-sweet-treat .giveaway__cta {
  color: #ad1457;
}
.station-info-block--giveaway-sweet-treat .giveaway__sms-btn {
  background: #ad1457;
}
.station-info-block--giveaway-sweet-treat .giveaway__sponsor {
  color: #ad1457;
}
.giveaway__prize {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 2px 0;
  line-height: 1.4;
  color: #37474f;
}
.giveaway__desc {
  font-size: 13px;
  color: #546e7a;
  margin: 0 0 15px;
  line-height: 1.4;
}
.giveaway__winner {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 15px;
  line-height: 1.3;
}
.giveaway__winner-label {
  font-weight: 700;
  margin-right: 4px;
}
.giveaway__cta {
  font-size: 14px;
  font-style: italic;
  color: #ad1457;
  margin: 0 0 15px;
  opacity: 0.7;
}
.giveaway__sms-btn {
  display: block;
  padding: 14px 16px;
  margin: 0 0 15px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  background: #ad1457;
  border-radius: 4px;
  text-decoration: none;
  transition: filter 150ms ease;
}
.giveaway__sms-btn:hover {
  filter: brightness(1.15);
  color: #fff;
}
.giveaway__sponsor {
  margin-top: auto;
  padding-top: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ad1457;
}

/* ── Birthday extras ── */

.birthday-empty {
  font-size: 13px;
  color: #767676;
  font-style: italic;
}
.submit-link {
  display: inline-block;
  margin-top: 15px;
  font-size: 13px;
  font-weight: 600;
  color: var(--station-color, #1E5B70);
  text-decoration: none;
  cursor: pointer;
}
.submit-link:hover {
  text-decoration: underline;
}

/* ── Birthday Submit Modal ── */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 300;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open {
  display: flex;
}
.modal {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  width: 90%;
  max-width: 420px;
  position: relative;
}
.modal h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 15px;
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #767676;
  line-height: 1;
}
.form-group {
  margin-bottom: 15px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #767676;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background: #F8F9FA;
  color: #222;
  transition: border-color 150ms ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--station-color, #1E5B70);
}
.form-group textarea {
  resize: vertical;
  min-height: 60px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.form-submit {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--station-color, #1E5B70);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: filter 150ms ease;
}
.form-submit:hover {
  filter: brightness(0.85);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-note {
  font-size: 12px;
  color: #767676;
  margin-top: 8px;
  text-align: center;
}

/* ── Morning Show Search — Teaser (station page) ─────────────────────── */
/* Whole tile is a clickable link that sends listeners to /rock-the-mic/.
   Image (graffiti "Rock the Mic" on a brick wall) IS the visual title; the
   body holds the eyebrow + lede + CTA pill. Sits in .station-info-blocks
   (full row). */
.rockthemic-teaser {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-body-text);
  transition: box-shadow 150ms ease, transform 150ms ease;
}
.rockthemic-teaser:hover,
.rockthemic-teaser:focus {
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  transform: translateY(-1px);
  text-decoration: none;
  color: var(--color-body-text);
}
.rockthemic-teaser__image-wrap {
  flex-shrink: 0;
  width: 280px;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  border-radius: 4px;
}
.rockthemic-teaser__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.rockthemic-teaser__body {
  flex: 1;
  min-width: 0;
}
.rockthemic-teaser__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-cta-newsletter);
  margin-bottom: var(--space-xs);
}
.rockthemic-teaser__lede {
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 var(--space-sm);
  color: var(--color-body-text);
}
.rockthemic-teaser__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-cta-newsletter);
  color: var(--color-white);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background-color 150ms ease;
}
.rockthemic-teaser:hover .rockthemic-teaser__cta,
.rockthemic-teaser:focus .rockthemic-teaser__cta {
  background: var(--color-cta-newsletter-hover);
}

@media (max-width: 767px) {
  .rockthemic-teaser {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
  }
  .rockthemic-teaser__image-wrap {
    width: 100%;
  }
  .rockthemic-teaser__cta {
    width: 100%;
    justify-content: center;
  }
}

/* ── Morning Show Search — Landing Page (/rock-the-mic/) ──────────────── */
.rockthemic-hero {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.rockthemic-hero__image {
  display: block;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto var(--space-md);
  border-radius: 8px;
}
.rockthemic-hero__lede {
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-body-text);
}
.rockthemic-pitch {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: 0 auto var(--space-xl);
  max-width: 960px;
}
.rockthemic-pitch__col {
  padding: var(--space-md);
  background: var(--color-surface-neutral);
  border-radius: 6px;
  border-left: 3px solid var(--color-wall-primary);
}
.rockthemic-pitch__col h3 {
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-wall-primary);
  margin: 0 0 var(--space-xs);
}
.rockthemic-pitch__col p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-gray-dark);
  margin: 0;
}

@media (min-width: 768px) {
  .rockthemic-hero__title {
    font-size: 56px;
  }
  .rockthemic-pitch {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ── Morning Show Search — Form (landing page only) ──────────────────── */
.rockthemic__form {
  background: var(--color-white);
  color: var(--color-body-text);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: var(--space-lg);
  max-width: 640px;
  margin: 0 auto;
}
.rockthemic__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}
.rockthemic__field {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-md);
}
.rockthemic__field label {
  font-size: 13px;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-xs);
}
.rockthemic__field input[type="text"],
.rockthemic__field input[type="tel"],
.rockthemic__field input[type="email"] {
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-white);
  color: var(--color-body-text);
  width: 100%;
  box-sizing: border-box;
}
.rockthemic__field input:focus {
  outline: 2px solid var(--station-color, var(--color-primary));
  outline-offset: 1px;
}
.rockthemic__field--video {
  margin-bottom: var(--space-md);
}
.rockthemic__field--video input[type="file"] {
  padding: var(--space-sm) 0;
  font-size: 14px;
}
.rockthemic__hint {
  font-size: 12px;
  color: var(--color-gray-mid);
  margin: var(--space-xs) 0 0;
}
.rockthemic__consent {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
}
.rockthemic__check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: var(--space-sm);
  cursor: pointer;
}
.rockthemic__check input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}
.rockthemic__check a {
  color: var(--station-color, var(--color-primary));
  text-decoration: underline;
}
.rockthemic__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.rockthemic__submit-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.rockthemic__submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  background: var(--station-color, var(--color-primary));
  border: none;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: filter 150ms ease;
}
.rockthemic__submit:hover {
  filter: brightness(0.9);
}
.rockthemic__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.rockthemic__progress {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.rockthemic__progress-bar {
  height: 6px;
  background: var(--color-gray-light);
  border-radius: 3px;
  overflow: hidden;
}
.rockthemic__progress-fill {
  height: 100%;
  width: 0;
  background: var(--station-color, var(--color-primary));
  transition: width 200ms ease;
}
.rockthemic__progress-label {
  font-size: 12px;
  color: var(--color-gray-mid);
  text-align: center;
}
.rockthemic__note {
  font-size: 13px;
  color: var(--color-gray-mid);
  margin: var(--space-md) 0 0;
  min-height: 1.4em;
}
.rockthemic__note--error {
  color: var(--color-error);
  font-weight: var(--font-weight-semibold);
}
.rockthemic__done {
  text-align: center;
  padding: var(--space-md) 0;
}
.rockthemic__done h3 {
  font-size: 22px;
  margin: 0 0 var(--space-sm);
  color: var(--station-color, var(--color-primary));
}
.rockthemic__done p {
  margin: 0;
  color: var(--color-body-text);
}

@media (min-width: 768px) {
  .rockthemic__title {
    font-size: 32px;
  }
  .rockthemic__row {
    grid-template-columns: 1fr 1fr;
  }
}


/* -- Top 250 ballot sidebar promo -- temporary; remove after 2026-06-28 -- */
.top250-promo {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: var(--space-md) var(--space-md) calc(var(--space-md) + 2px);
  background: linear-gradient(180deg, var(--color-top250-navy) 0%, var(--color-top250-navy-deep) 100%);
  color: var(--color-top250-cream);
  text-decoration: none;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 18px rgba(15, 34, 51, 0.18);
  position: relative;
  overflow: hidden;
  text-align: center;
  font-family: var(--font-family);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.top250-promo:hover,
.top250-promo:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 34, 51, 0.28);
  text-decoration: none;
  color: var(--color-top250-cream);
}
.top250-promo:focus-visible {
  outline: 2px solid var(--color-top250-gold);
  outline-offset: 2px;
}
.top250-promo::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--color-top250-red) 0%,
    var(--color-top250-red) 33%,
    var(--color-top250-cream) 33%,
    var(--color-top250-cream) 66%,
    var(--color-top250-gold) 66%,
    var(--color-top250-gold) 100%
  );
}
.top250-promo__eyebrow {
  display: block;
  font-size: 10px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-top250-gold);
  margin-bottom: var(--space-sm);
}
.top250-promo__wordmark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: var(--font-weight-bold);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--color-top250-cream);
  text-shadow: 1.5px 1.5px 0 var(--color-top250-navy-deep);
  margin-bottom: var(--space-sm);
}
.top250-promo__headline {
  display: block;
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  line-height: 1.25;
  margin-bottom: var(--space-sm);
  color: var(--color-top250-cream);
}
.top250-promo__deadline {
  display: inline-block;
  font-size: 10px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-top250-gold);
  padding: 3px 8px;
  border: 1px solid rgba(232, 181, 71, 0.4);
  border-radius: 999px;
  margin-bottom: var(--space-sm);
}
.top250-promo__cta {
  display: block;
  background: var(--color-top250-red);
  color: var(--color-top250-cream);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 0 var(--color-top250-red-deep);
}
.top250-promo__cta .fa-solid {
  margin-left: 4px;
  font-size: 11px;
}

/* WLLW (rock) — warmer accent on the eyebrow + deadline pill. */
.top250-promo--rock .top250-promo__eyebrow {
  color: var(--color-wall-secondary);
}

/* WFLR (country) — red call-letter brand cue on the eyebrow. */
.top250-promo--country .top250-promo__eyebrow {
  color: var(--color-top250-gold);
}
