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

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

:root {
  --accent:    #c0392b;
  --accent2:   #a93226;
  --navy:      #032a48;
  --navy2:     #0a2239;
  --cream:     #fff7ec;
  --max-width: 1600px;
}

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

/* 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: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}
.on-air-show { font-size: 15px; font-weight: 700; }
.on-air-host { font-size: 13px; color: rgba(255,255,255,.65); margin-left: 4px; }
.on-air-time { font-size: 12px; color: rgba(255,255,255,.5); 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: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.news-card:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.12); }
.news-card-img { width: 100%; height: 160px; object-fit: cover; background: #e8ecf0; display: block; }
.news-card-body { padding: 16px; }
.news-card-cat { font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.news-card-title { font-size: 15px; font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 8px; }
.news-card-date { font-size: 11px; color: #90a4ae; }

/* 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; }

/* 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: 165px !important; }
.footer-tagline { display: none !important; }

/* ── STICKY HEADER ───────────────────────────────────────────── */
/* Nav: already sticky in kyca-base.css — reinforce here */
/* kyca-sticky-stack wrapper (injected by layout.js) handles sticky */
#kyca-sticky-stack {
  position: sticky;
  top: 0;
  z-index: 1000;
}
nav.main-nav {
  position: relative !important;
  top: auto !important;
}
.on-air-bar {
  position: relative !important;
  top: auto !important;
}
#kyca-weather-band {
  position: relative !important;
  top: auto !important;
}
