/* ============================================================
   PRESCOTT BROADCASTING — MAIN STYLESHEET
   Brand colors: Navy #1a2f4e, Cream #f5f0e8, Red #c0392b
   ============================================================ */

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

:root {
  --navy:       #1a2f4e;
  --navy-dark:  #0f1e33;
  --navy-mid:   #1e3a5f;
  --red:        #c0392b;
  --red-dark:   #a93226;
  --cream:      #faf3e6;  /* = header bg */
  --cream-dark: #ede7d8;
  --gold:       #b8860b;
  --white:      #ffffff;
  --gray-light: #f0ece4;
  --gray-mid:   #d0c8b8;
  --gray-dark:  #6b6357;
  --text-dark:  #1a1a1a;
  --text-mid:   #444;

  --font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-serif: 'Georgia', 'Times New Roman', serif;

  --max-width: 1600px;
  --section-pad: 64px 24px;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,0.12);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.18);
  --transition: 0.2s ease;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   HEADER — Logo top-left, nav right, seamless into hero
   NO top bar. Logo floats over cream, bleeds into hero.
   ============================================================ */

/* Single nav bar — matches hero bg exactly, no border/shadow, seamless */
.main-nav {
  background: #faf3e6 !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: none;
}
.main-nav-inner {
  width: 100%;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
}

/* Logo — large illustrated logo, transparent bg, left side */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 110px;
  width: auto;
  object-fit: contain;
}

/* Nav links + actions — right side, stacked: links on top, socials below */
.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

/* Social icons row */
.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-social a {
  color: var(--navy);
  font-size: 17px;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
}
.nav-social a:hover { color: var(--red); }

/* Nav links row */
.nav-links-wrap {
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links li a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 6px 13px;
  border-bottom: 3px solid transparent;
  display: block;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.nav-links li a:hover { color: var(--red); }
.nav-links li a.active {
  color: var(--red);
  border-bottom: 3px solid var(--red);
  font-weight: 800;
}

/* Search icon */
.nav-actions {
  display: flex;
  align-items: center;
}
.nav-search {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  font-size: 18px;
  padding: 6px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}
.nav-search:hover { color: var(--red); }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  font-size: 24px;
  padding: 8px;
}

/* Hide the old top-bar entirely — we removed Listen Live pill */
.top-bar { display: none; }

/* ============================================================
   STATION TOP BAR (station pages)
   ============================================================ */
.station-top-bar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 12px;
  padding: 0;
}
.station-top-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
}
.station-top-bar-left { display: flex; align-items: center; gap: 16px; color: var(--gray-mid); }
.station-top-bar-left a { color: var(--gray-mid); transition: color var(--transition); }
.station-top-bar-left a:hover { color: var(--white); }
.station-top-bar-left .parent-link { font-weight: 700; color: var(--cream); letter-spacing: 0.04em; }
.station-top-bar-right { display: flex; align-items: center; gap: 10px; }
.station-top-bar-right .follow-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-mid); }

/* ============================================================
   STATION NAV
   ============================================================ */
.station-nav {
  background: var(--cream);
  border-bottom: 2px solid var(--cream-dark);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.station-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.station-nav-logo img { height: 56px; width: auto; }
.station-nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.station-nav-links li a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.station-nav-links li a:hover, .station-nav-links li a.active { border-bottom-color: currentColor; }

/* ============================================================
   HERO SECTION
   ============================================================ */
/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center center;
}

/* ============================================================
   STATIONS ROW
   ============================================================ */
.stations-section {
  background: #6c8ea3;
  padding: 32px 24px;
}
.stations-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: stretch;
}
.station-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  padding: 20px 24px;
  background: transparent;
  border-radius: 0;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.3);
  transition: transform var(--transition);
}
.station-card:last-child { border-right: none; }
.station-card:hover { transform: translateY(-2px); }
.station-logo-wrap {
  width: 160px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 20px;
}
.station-logo-wrap img { width: 100%; height: auto; object-fit: contain; display: block; }
.station-logo-fallback {
  font-size: 28px; font-weight: 900; color: var(--white);
  text-align: center; letter-spacing: -0.02em;
}
.station-actions { display: flex; flex-direction: column; gap: 8px; width: 100%; }
.station-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid rgba(255,255,255,0.8);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #6c8ea3;
  transition: background var(--transition), border-color var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.station-btn:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.station-btn.primary { background: #6c8ea3; border-color: rgba(255,255,255,0.8); }
.station-btn.primary:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.station-link {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 4px;
  transition: color var(--transition);
}
.station-link:hover { color: var(--white); }

/* ============================================================
   CARDS SECTION
   ============================================================ */
.cards-section {
  background: var(--cream);
  padding: var(--section-pad);
}
.cards-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.content-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}
.content-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.content-card:hover .content-card-image img { transform: scale(1.03); }
.content-card-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  font-family: var(--font-serif);
}
.content-card-body { font-size: 14px; color: #060f30; line-height: 1.65; }
.content-card-cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  display: flex; align-items: center; gap: 6px;
  transition: gap var(--transition);
}
.content-card-cta:hover { gap: 10px; }

/* ============================================================
   MORE THAN RADIO SECTION
   ============================================================ */
.more-than-radio {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.more-than-radio-bg {
  position: absolute; inset: 0;
  background: var(--navy-dark);
}
.more-than-radio-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
}
.more-than-radio-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.mtr-content { text-align: center; }
.mtr-heading {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 900;
  color: #0a2239;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 12px;
  white-space: nowrap;
}
.mtr-sub {
  font-size: 16px;
  color: #0a2239;
  margin-bottom: 24px;
  max-width: 480px;
  line-height: 1.6;
}
.mtr-cta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #732815;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  transition: gap var(--transition);
}
.mtr-cta:hover { gap: 10px; color: #5a1f0f; }

.stay-connected-box {
  background: #f8efe1;
  border-radius: var(--radius);
  padding: 32px 40px;
  box-shadow: var(--shadow-lg);
  max-width: 420px;
  width: 100%;
}
.sc-heading {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.sc-sub { font-size: 14px; color: var(--text-mid); margin-bottom: 20px; }
.sc-form { display: flex; gap: 8px; margin-bottom: 10px; }
.sc-input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
}
.sc-input:focus { border-color: var(--navy); }
.sc-btn {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.sc-btn:hover { background: var(--red-dark); }
.sc-disclaimer { font-size: 12px; color: var(--gray-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #032a48;
  border-top: none;
  padding: 24px 48px 0;
  position: relative;
}
.footer-grid, .footer-legal {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer-logo-col { display: flex; flex-direction: column; align-items: flex-start; min-width: 160px; }
.footer-logo img { height: 110px; width: auto; margin-bottom: 10px; display: block; }
.footer-tagline { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); text-align: left; line-height: 1.8; white-space: nowrap; }

.footer-col-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-links { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; }
.footer-links li a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-links li a:hover { color: #ffffff; }

.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--red); }

.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.8; }
.footer-contact a { color: #ff8a7a; transition: color var(--transition); }
.footer-contact a:hover { color: #ffffff; }

.footer-legal {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-legal-links { display: flex; gap: 16px; }
.footer-legal-links a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-legal-links a:hover { color: #ffffff; }

/* ============================================================
   LISTEN LIVE BAR (station pages)
   ============================================================ */
.listen-bar {
  background: var(--navy);
  padding: 24px;
}
.listen-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr 220px;
  gap: 24px;
  align-items: center;
}
.listen-bar-main {
  background: var(--red);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: background var(--transition);
  text-decoration: none;
}
.listen-bar-main:hover { background: var(--red-dark); }
.listen-play-btn {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--white);
  flex-shrink: 0;
}
.listen-bar-label { font-size: 18px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; }
.listen-bar-sub { font-size: 12px; color: rgba(255,255,255,0.8); }
.listen-wave { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; margin-top: 4px; }

.on-air-block {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.on-air-icon { font-size: 32px; }
.on-air-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
}
.on-air-show { font-size: 16px; font-weight: 700; color: var(--white); }
.on-air-time { font-size: 13px; color: rgba(255,255,255,0.7); }
.on-air-cta {
  margin-top: 8px;
  display: inline-block;
  padding: 6px 14px;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  transition: background var(--transition);
  text-decoration: none;
}
.on-air-cta:hover { background: rgba(255,255,255,0.1); }

.program-schedule-block {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.prog-icon { font-size: 28px; }
.prog-label { font-size: 14px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.04em; }
.prog-sub { font-size: 12px; color: rgba(255,255,255,0.7); }
.prog-btn {
  margin-top: 8px;
  padding: 8px 20px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition);
  text-decoration: none;
  display: inline-block;
}
.prog-btn:hover { background: rgba(255,255,255,0.15); }

/* ============================================================
   NEWS SECTION (station pages)
   ============================================================ */
.news-section { background: var(--cream); padding: var(--section-pad); }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--navy);
}
.section-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
}
.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--red);
  margin-top: 4px;
}
.section-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  display: flex; align-items: center; gap: 4px;
}
.section-link:hover { color: var(--red-dark); }

.news-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.news-card { display: flex; flex-direction: column; gap: 10px; }
.news-card-img { width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-category {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red);
}
.news-headline { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.4; }
.news-time { font-size: 11px; color: var(--gray-dark); }

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.widget-title {
  font-size: 13px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 2px solid var(--red);
}
.weather-temp { font-size: 48px; font-weight: 300; color: var(--navy); line-height: 1; }
.weather-icon { font-size: 32px; float: right; }
.weather-condition { font-size: 14px; font-weight: 600; color: var(--text-mid); text-transform: uppercase; }
.weather-range { font-size: 12px; color: var(--gray-dark); margin-top: 4px; }
.widget-link { font-size: 12px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-top: 12px; }

/* ============================================================
   SCHEDULE SECTION
   ============================================================ */
.schedule-section { background: var(--white); padding: var(--section-pad); }
.schedule-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.schedule-slot {
  border-radius: var(--radius);
  padding: 16px;
  background: var(--gray-light);
  border-top: 3px solid var(--gray-mid);
}
.schedule-slot.on-air {
  background: var(--red);
  border-top-color: var(--red-dark);
  color: var(--white);
}
.schedule-time {
  font-size: 16px; font-weight: 800; color: var(--navy);
  margin-bottom: 8px;
}
.schedule-slot.on-air .schedule-time { color: rgba(255,255,255,0.8); }
.schedule-show { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 4px; }
.schedule-slot.on-air .schedule-show { color: var(--white); }
.schedule-host { font-size: 12px; color: var(--gray-dark); }
.schedule-slot.on-air .schedule-host { color: rgba(255,255,255,0.75); }
.schedule-hours { font-size: 11px; color: var(--gray-dark); margin-top: 6px; }
.schedule-slot.on-air .schedule-hours { color: rgba(255,255,255,0.7); }
.on-air-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.2); border-radius: 3px;
  padding: 2px 6px; display: inline-block; margin-bottom: 6px;
}

/* ============================================================
   SHOWS SECTION
   ============================================================ */
.shows-section { background: var(--cream); padding: var(--section-pad); }
.shows-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}
.show-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  gap: 0;
  flex-direction: column;
}
.show-card-img { width: 100%; aspect-ratio: 1; overflow: hidden; }
.show-card-img img { width: 100%; height: 100%; object-fit: cover; }
.show-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.show-name { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.show-host { font-size: 13px; color: var(--text-mid); }
.show-schedule {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--white);
  background: var(--red); border-radius: 3px;
  padding: 3px 8px; display: inline-block;
}
.show-schedule.podcast { background: var(--navy); }
.show-desc { font-size: 12px; color: var(--gray-dark); line-height: 1.5; flex: 1; }
.show-cta {
  font-size: 12px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 4px;
  margin-top: 8px;
}
.show-cta:hover { color: var(--red-dark); }

/* ============================================================
   CROSS PROMO (You May Also Enjoy)
   ============================================================ */
.cross-promo { background: var(--cream-dark); padding: 40px 24px; }
.cross-promo-inner { max-width: var(--max-width); margin: 0 auto; }
.cross-promo-title {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--navy); margin-bottom: 24px;
}
.cross-promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cross-promo-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  text-decoration: none;
}
.cross-promo-card:hover { transform: translateY(-3px); }
.cross-promo-logo { height: 64px; display: flex; align-items: center; justify-content: center; }
.cross-promo-logo img { max-height: 64px; max-width: 140px; object-fit: contain; }
.cross-promo-listen {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 4px;
}

/* ============================================================
   INNER PAGE CONTENT ZONE
   ============================================================ */
.page-content {
  background: var(--cream);
  padding: var(--section-pad);
}
.page-content-inner {
  max-width: 860px;
  margin: 0 auto;
}
.page-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.1;
}
.page-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--red);
  margin-top: 12px;
}
.page-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  white-space: pre-line;
  margin-bottom: 32px;
}
.page-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.page-cta:hover { background: var(--red-dark); }

/* ============================================================
   STAR DIVIDER
   ============================================================ */
.star-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 0;
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.2em;
}
.star-divider::before, .star-divider::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--red);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stations-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid { grid-template-columns: repeat(3, 1fr); }
  .shows-grid { grid-template-columns: repeat(2, 1fr); }
  .cross-promo-grid { grid-template-columns: repeat(2, 1fr); }
  .more-than-radio-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .listen-bar-inner { grid-template-columns: 1fr 1fr; }
  .news-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .stations-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .station-nav-links { display: none; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .shows-grid { grid-template-columns: 1fr; }
  .listen-bar-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .sc-form { flex-direction: column; }
  .footer-legal { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  .stations-grid { grid-template-columns: 1fr; }
  .cross-promo-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CARD LINK FIX — entire card is an <a>, preserve layout
   ============================================================ */
a.content-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}
a.content-card-link:hover .content-card-image img { transform: scale(1.03); }
a.content-card-link:hover .content-card-cta { gap: 10px; }
a.content-card-link:hover .content-card-title { color: var(--red); }

/* Station logo link — no underline, fills the logo area */
.station-logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}
.station-logo-link:hover { opacity: 0.85; }

/* Responsive nav: mobile hamburger shows vertical links */
@media (max-width: 900px) {
  .main-nav-inner {
    grid-template-columns: 160px 1fr auto;
  }
  .nav-links li a { padding: 8px 8px; font-size: 12px; }
  .nav-logo img { height: 80px; }
}
@media (max-width: 768px) {
  .nav-links-wrap { display: none; }
  .nav-hamburger { display: block; }
  .main-nav-inner { grid-template-columns: 1fr auto; }
}

/* ============================================================
   NAV STICKY + RESPONSIVE FIXES (new header layout)
   ============================================================ */


/* Hero sits flush below nav — no gap */
.hero {
  margin-top: 0;
}

/* Responsive: collapse nav-right on mobile */
@media (max-width: 900px) {
  .main-nav-inner { padding: 0 16px; }
  .nav-links li a { padding: 6px 8px; font-size: 11px; }
  .nav-logo img { height: 84px; }
}
@media (max-width: 480px) {
  .nav-links-wrap { display: none; }
  .nav-hamburger { display: block; }
  .nav-right { flex-direction: row; align-items: center; gap: 12px; }
}



/* Force nav links visible above mobile */
@media (min-width: 481px) {
  .nav-links-wrap { display: flex !important; }
  .nav-hamburger { display: none !important; }
  nav.main-nav .nav-links {
    display: flex !important;
    flex-direction: row !important;
    position: static !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
  }
}

/* Mobile hero handling */
@media (max-width: 768px) {
  .hero img[src=""] {
    display: none;
    min-height: 0 !important;
  }
  .hero:has(img[src=""]) {
    min-height: 0 !important;
    padding: 0 !important;
  }
}
