/* Hero section */
#hero-section { background: none; }

/* CALMAZ Station Site — theme overrides */
/* Override style2.css cream body default */
body { background: #f5f8fb !important; }

:root {
  --accent:    #487ea6;
  --accent2:   #315f83;
  --navy:      #504395;
  --navy2:     #3a3075;
  --cream:     #fff7ec;
  --max-width: 1600px;
}

/* Nav */
nav.main-nav { background: var(--cream) !important; }
.nav-logo img { height: 180px !important; }
.nav-logo { padding: 12px 0; }

/* Listen Live button */
.listen-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .15s;
}
.listen-btn:hover { background: var(--accent2); }

/* Hero listen button */
.hero-listen {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 24px;
  transition: background .15s;
}
.hero-listen:hover { background: var(--accent2); }
.hero-schedule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  padding: 14px 24px;
  border-radius: 8px;
  border: 2px solid var(--navy);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 24px;
  margin-left: 12px;
  transition: all .15s;
}
.hero-schedule:hover { background: var(--navy); color: #fff; }

/* On Air widget */
.on-air-bar {
  background: var(--navy);
  color: #fff;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.on-air-badge {
  background: #b7048b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
  flex-shrink: 0;
}
.on-air-show { font-size: 15px; font-weight: 700; }
.on-air-host { font-size: 15px; font-weight: 700; color: rgba(255,255,255,.85); margin-left: 0; }
.on-air-host:not(:empty)::before { content: ' · '; font-weight: 400; color: rgba(255,255,255,.4); }
.on-air-time { font-size: 11px; color: rgba(255,255,255,.4); margin-left: auto; }

/* Section headers */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8ecf0;
}
.section-title {
  font-family: var(--font-sans) !important;
  font-size: clamp(18px,2.5vw,26px);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.section-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.section-link:hover { text-decoration: underline; }

/* News cards */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 20px; }
.news-card {
  background: #504395;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.news-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.25); }
.news-card-img { width: calc(100% - 24px); height: 160px; object-fit: cover; background: #3a3075; display: block; border-radius: 6px; margin: 12px auto 0; }
.news-card-body { padding: 12px 16px 16px; }
.news-card-cat { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #c9a8f5; margin-bottom: 6px; }
.news-card-title { font-size: 15px; font-weight: 700; color: #ffffff; line-height: 1.4; margin-bottom: 8px; }
.news-card-date { font-size: 11px; color: rgba(255,255,255,0.55); }

/* Schedule */
.schedule-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 12px; }
.schedule-card {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  border-left: 4px solid var(--accent);
}
.schedule-time { font-size: 11px; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.schedule-show { font-size: 14px; font-weight: 700; color: var(--navy); }
.schedule-host { font-size: 12px; color: #546e7a; margin-top: 2px; }
.schedule-card.on-air-now { border-left-color: #2e7d32; background: #f1f8f1; }
.schedule-card.on-air-now .schedule-time { color: #2e7d32; }

/* Shows grid */
.shows-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 24px; }
.show-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  overflow: hidden;
  text-align: center;
}
.show-card-img { width: 100%; height: 200px; object-fit: cover; background: var(--navy); display: block; }
.show-card-body { padding: 20px 16px; }
.show-card-name { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.show-card-host { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.show-card-time { font-size: 12px; color: #546e7a; }

/* Page hero */
.page-hero {
  background: transparent;
  padding: 32px 48px 24px;
  border-bottom: none;
}
.page-hero h1 {
  font-size: clamp(28px,4vw,48px);
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 8px;
}
.page-hero p { font-size: 16px; color: #546e7a; max-width: 600px; }

/* Content wrap */
.content-wrap { max-width: var(--max-width); margin: 0 auto; padding: 48px 48px; }

/* FCC / Employment / Archive tables */
.info-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.info-table th { background: var(--navy); color: #fff; padding: 12px 16px; text-align: left; font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.info-table td { padding: 12px 16px; border-bottom: 1px solid #e8ecf0; font-size: 14px; color: #333; }
.info-table tr:hover td { background: #f9f9f9; }
.info-table a { color: var(--accent); font-weight: 600; }


/* ── BG CONSISTENCY — all containers match body #f5f8fb ─────────────────── */
.content-wrap,
.editorial-section,
.inquiry-section,
.psa-section,
.event-submit-section,
.page-hero,
.cards-section,
.schedule-wrap,
.hero { background: #f5f8fb !important; }

/* Contact info card — swap old navy for purple */
.contact-info-block { background: #504395 !important; }

/* CTA buttons that used old navy */
.editorial-cta { background: #504395 !important; }
.editorial-cta:hover { background: #3a3075 !important; }

/* Responsive */
@media (max-width: 768px) {
  .on-air-bar { padding: 12px 20px; flex-wrap: wrap; gap: 8px; }
  .on-air-time { margin-left: 0; }
  .content-wrap { padding: 32px 20px; }
  .page-hero { padding: 32px 20px 24px; }
  .news-grid { grid-template-columns: 1fr; }
  .shows-grid { grid-template-columns: 1fr 1fr; }
  .schedule-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .shows-grid { grid-template-columns: 1fr; }
}

/* Footer graphic — natural height, no crop */
.more-than-radio {
  min-height: 0 !important;
  display: block !important;
  overflow: visible !important;
}
.more-than-radio-bg {
  position: static !important;
  background: none !important;
}
.more-than-radio-bg img {
  width: 100%;
  height: auto !important;
  object-fit: unset !important;
  display: block;
}

/* Footer logo — 50% larger, no tagline */
.footer-logo img { height: 120px !important; margin-bottom: 6px !important; }
.footer-tagline { display: none !important; }

/* ── NON-STICKY HEADER ───────────────────────────────────────── */
#calmaz-sticky-stack { position: static; }
nav.main-nav { position: relative !important; top: auto !important; }
.on-air-bar   { position: relative !important; top: auto !important; }
#calmaz-weather-band { position: relative !important; top: auto !important; }


/* CALMAZ brand finish */
body { background: #f5f8fb !important; }
nav.main-nav { background: #eef5fa !important; }
.nav-logo img { height: 200px !important; }
.on-air-bar { background: #504395 !important; }
.listen-btn, .hero-listen, .sc-btn { background: #b7048b !important; }
.listen-btn:hover, .hero-listen:hover, .sc-btn:hover { background: #8c0368 !important; }
.section-link, .schedule-time, .show-card-link, .show-card-times { color: #487ea6 !important; }
nav.main-nav .nav-links li a:hover { color: #a04da6 !important; }
nav.main-nav .nav-links li a.active { color: #a04da6 !important; border-bottom-color: #a04da6 !important; }
.schedule-card { border-left-color: #487ea6 !important; }
footer { background: #504395 !important; }
.footer-col-title { border-bottom-color: #487ea6 !important; }
.footer-contact a { color: #b7d5e8 !important; }
#calmaz-weather-band, #calmaz-weather-report { background: #504395 !important; }

/* ── APP DOWNLOAD STRIP ──────────────────────────────────────────────────── */
.nav-app-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0 2px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-app-cta {
  font-size: 10px;
  font-weight: 700;
  color: rgba(26,47,78,0.55);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-right: 2px;
  white-space: nowrap;
}
.nav-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #504395;
  color: #fff !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.nav-app-btn:hover { background: #3a3075; }
@media (max-width: 900px) { .nav-app-strip { display: none; } }
