/* =========================================
   RESET / WORDPRESS OVERRIDES
========================================= */

html,
body {
  margin: 0;
  padding: 0;
}

body.home .wp-site-blocks,
body.home .wp-site-blocks > *,
body.home main,
body.home .wp-block-post-content,
body.home .wp-block-group,
body.home .is-root-container,
body.home .wp-block-template-part,
body.home .wp-block-group.is-layout-constrained,
body.home .wp-block-group.alignfull {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.home .vcr-site-shell,
body.home .vcr-header,
body.home .vcr-audio-banner,
body.home .vcr-homepage,
body.home .vcr-hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =========================================
   GLOBAL LAYOUT
========================================= */

.vcr-site-shell {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #f7f8fb;
  color: #1f1f1f;
  font-family: Arial, Helvetica, sans-serif;
}

.vcr-site-shell * {
  box-sizing: border-box;
}

.vcr-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.vcr-disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
}

/* =========================================
   HEADER
========================================= */

.vcr-header {
  background: #0F2045;
  border-bottom: 1px solid rgba(255,255,255,.12);
  position: relative;
  z-index: 50;
}

.vcr-header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 72px;
}

.vcr-header-left {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.vcr-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vcr-header-left {
  justify-content: flex-start;
}

.vcr-header-right {
  justify-content: flex-end;
}

.vcr-header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.vcr-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vcr-logo {
  display: block;
  width: 96px;
  max-width: 100%;
  height: 125px;
  object-fit: contain;
  filter:
    drop-shadow(0 2px 4px rgba(0,0,0,.35))
    drop-shadow(0 0 6px rgba(236,186,107,.18));
  transition: filter .25s ease;
}

.vcr-logo:hover {
  filter:
    drop-shadow(0 3px 8px rgba(0,0,0,.45))
    drop-shadow(0 0 10px rgba(236,186,107,.35));
}

.vcr-header-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.vcr-header-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: .94;
  transition: color .2s ease, opacity .2s ease;
}

.vcr-header-links a:hover {
  color: #ECBA6B;
  opacity: 1;
}

.vcr-icon-btn {
  appearance: none;
  border: 0;
  background: rgba(255,255,255,.08);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  padding: 0;
  flex-shrink: 0;
}

.vcr-icon-btn:hover {
  background: rgba(255,255,255,.14);
  color: #ECBA6B;
}

.vcr-icon-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

.vcr-menu-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.vcr-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.vcr-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.vcr-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.vcr-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.vcr-header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: .2s ease;
  white-space: nowrap;
}

.vcr-listen-live {
  background: #ECBA6B;
  color: #0F2045;
  border: 1px solid #ECBA6B;
}

.vcr-listen-live:hover {
  background: #e2ad5e;
  color: #0F2045;
}

.vcr-submit-link {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.18);
}

.vcr-submit-link:hover {
  background: rgba(255,255,255,.08);
  color: #ECBA6B;
}

/* overlay mobile menu */
/* drawer perfectly aligned under hamburger */
.vcr-mobile-drawer {
  display: none;
  position: absolute;

  top: calc(74% + 4px); /* just below button */
  left: 0; /* 👈 LEFT-ALIGNED to hamburger */

  width: 240px;

  z-index: 100;
  flex-direction: column;
  gap: 8px;
  padding: 12px;

  background: rgba(15,32,69,.98);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(0,0,0,.28);
  backdrop-filter: blur(10px);

  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: all 0.18s ease;
}

.vcr-mobile-drawer.is-open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.vcr-mobile-drawer a {
  padding: 10px 12px;
  font-size: 0.9rem;
}

.vcr-mobile-drawer a:hover {
  transform: translateX(4px);
}

.vcr-mobile-drawer.is-open {
  display: flex;
}

.vcr-mobile-drawer a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.vcr-mobile-drawer a:hover {
  background: rgba(255,255,255,.12);
  color: #ECBA6B;
}

.vcr-menu-wrap {
  position: relative; /* 👈 anchor directly to hamburger */
}
/* =========================================
   AUDIO BANNER
========================================= */

.vcr-audio-banner {
  background: #132754;
  border-bottom: 3px solid #ECBA6B;
}

.vcr-audio-banner-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 56px;
  padding: 10px 0;
}

.vcr-onair-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}

.vcr-onair-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #A9A9A9;
  box-shadow: none;
}

.vcr-channel-list {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.vcr-channel {
  min-width: 0;
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  transition: .2s ease;
}

.vcr-channel:hover,
.vcr-channel.active {
  background: rgba(236,186,107,.14);
  border-color: rgba(236,186,107,.5);
}

.vcr-channel-label {
  display: block;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.vcr-channel-meta {
  display: block;
  color: #d9deea;
  font-size: 0.82rem;
  line-height: 1.25;
}

.vcr-audio-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.vcr-audio-actions a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.vcr-audio-actions a:hover {
  color: #ECBA6B;
}

/* mobile dropdown version */
.vcr-channel-select-wrap {
  display: none;
  width: 100%;
}

.vcr-channel-select {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: #ffffff;
  font-weight: 600;
  appearance: none;
}

.vcr-channel-select option {
  color: #111111;
  background: #ffffff;
}

.vcr-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========================================
   HOMEPAGE / HERO
========================================= */

.vcr-homepage {
  background: #f7f8fb;
  color: #1f1f1f;
}

.vcr-hero {
  background: linear-gradient(180deg, #0F2045 0%, #162b5d 100%);
  padding: 44px 0 34px;
  border-bottom: 4px solid #ECBA6B;
}

.vcr-kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ECBA6B;
  font-weight: 700;
  margin-bottom: 10px;
  padding-top: 20px;
}

.vcr-title {
  margin: 0 0 14px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

.vcr-subtitle {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1rem, 1.9vw, 1.18rem);
  line-height: 1.65;
  color: #d9deea;
}

.vcr-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  margin-top: 34px;
}

.vcr-card {
  background: #ffffff;
  border: 1px solid rgba(15,32,69,.1);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(15,32,69,.08);
}

.vcr-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #0F2045;
  font-weight: 700;
  margin-bottom: 12px;
}

.vcr-now-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0F2045;
}

.vcr-now-meta {
  color: #666666;
  margin-bottom: 18px;
  line-height: 1.5;
}

.vcr-player-wrap {
  background: #f3f5f9;
  border: 1px solid rgba(15,32,69,.08);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 18px;
}

.vcr-player-wrap audio {
  width: 100%;
  display: block;
}

.vcr-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.vcr-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: .2s ease;
}

.vcr-btn-primary {
  background: #ECBA6B;
  color: #0F2045;
  border: 1px solid #ECBA6B;
}

.vcr-btn-primary:hover {
  background: #e2ad5e;
  color: #0F2045;
}

.vcr-btn-secondary {
  background: transparent;
  color: #0F2045;
  border: 1px solid rgba(15,32,69,.2);
}

.vcr-btn-secondary:hover {
  background: #eef2f8;
  color: #0F2045;
}

.vcr-secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px 0 36px;
}

.vcr-track-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vcr-track-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(15,32,69,.08);
}

.vcr-track-list li:last-child {
  border-bottom: none;
}

.vcr-track-title {
  display: block;
  font-weight: 700;
  color: #0F2045;
  margin-bottom: 4px;
}

.vcr-track-artist {
  color: #666666;
  font-size: 0.95rem;
}

.vcr-copy {
  color: #555555;
  line-height: 1.65;
  margin: 0 0 16px;
}

.vcr-posts {
  padding: 20px 0 56px;
}

.vcr-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.vcr-post {
  background: #ffffff;
  border: 1px solid rgba(15,32,69,.08);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(15,32,69,.05);
}

.vcr-post h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  line-height: 1.35;
}

.vcr-post h3 a {
  color: #0F2045;
  text-decoration: none;
}

.vcr-post h3 a:hover {
  color: #ECBA6B;
}

.vcr-post p {
  margin: 0;
  color: #5a5a5a;
  line-height: 1.6;
}

.vcr-posts .vcr-label,
.vcr-secondary-grid .vcr-label {
  position: relative;
}

.vcr-posts .vcr-label::after,
.vcr-secondary-grid .vcr-label::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: #ECBA6B;
  margin-top: 8px;
  border-radius: 999px;
}

/* =========================================
   SUBMIT MUSIC
========================================= */

.vcr-submit-section {
  padding: 0px 0 50px;
}

.vcr-submit-card {
  max-width: 700px;
  margin: auto;
}

.vcr-submit-form {
  margin-top: 20px;
}

.vcr-form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.vcr-form-group label {
  font-weight: 700;
  margin-bottom: 6px;
  color: #0F2045;
}

.vcr-form-group input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15,32,69,.15);
  font-size: 14px;
}

.vcr-form-group input:focus {
  outline: none;
  border-color: #ECBA6B;
  box-shadow: 0 0 0 2px rgba(236,186,107,.25);
}

.vcr-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.vcr-checkbox span {
  font-size: 14px;
  color: #555;
}

/* =========================================
   FOOTER
========================================= */

.vcr-footer {
  background: #0F2045;
  color: #e9edf5;
  padding: 42px 0 22px;
  border-top: 4px solid #ECBA6B;
}

.vcr-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
}

.vcr-footer-brand {
  max-width: 420px;
}

.vcr-footer-logo {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  margin-bottom: 14px;
  filter:
    drop-shadow(0 2px 6px rgba(0,0,0,.45))
    drop-shadow(0 0 6px rgba(236,186,107,.25));
  transition: filter .25s ease;
}

.vcr-footer-logo:hover {
  filter:
    drop-shadow(0 3px 8px rgba(0,0,0,.55))
    drop-shadow(0 0 10px rgba(236,186,107,.45));
}

.vcr-footer-copy {
  margin: 0;
  color: #c8d1e3;
  line-height: 1.7;
  font-size: 0.98rem;
}

.vcr-footer-col h4 {
  margin: 0 0 14px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #ECBA6B;
}

.vcr-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vcr-footer-col li {
  margin-bottom: 10px;
}

.vcr-footer-col a {
  color: #e9edf5;
  text-decoration: none;
  transition: color .2s ease;
}

.vcr-footer-col a:hover {
  color: #ECBA6B;
}

.vcr-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #bfc7d8;
  font-size: 0.92rem;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
  .vcr-main-grid,
  .vcr-secondary-grid,
  .vcr-posts-grid {
    grid-template-columns: 1fr;
  }

  .vcr-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .vcr-header-links-left,
  .vcr-header-links-right,
  .vcr-submit-link {
    display: none;
  }

  .vcr-header-grid {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    min-height: 64px;
  }

  .vcr-header-left {
    justify-content: flex-start;
    gap: 10px;
  }

  .vcr-header-center {
    justify-content: center;
  }

  .vcr-header-right {
    justify-content: flex-end;
  }

  .vcr-logo {
    width: 72px;
  }

  .vcr-header-right .vcr-listen-live {
    padding: 8px 12px;
    min-height: 34px;
    font-size: 0.82rem;
  }

  .vcr-channel-list {
    display: none;
  }

  .vcr-channel-select-wrap {
    display: block;
  }

  .vcr-audio-banner-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
    padding: 12px 0 14px;
  }

  .vcr-audio-actions {
    justify-content: space-between;
  }
}

@media (max-width: 640px) {
  .vcr-container {
    padding: 0 16px;
  }

  .vcr-header-grid {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .vcr-header-left {
    justify-content: flex-start;
  }

  .vcr-header-center {
    justify-content: flex-start;
    padding-left: 8px;
  }

  .vcr-header-right {
    display: none;
  }

  .vcr-logo {
    width: 64px;
    margin: 0;
  }

  .vcr-hero {
    padding: 34px 0 26px;
  }

  .vcr-card,
  .vcr-post {
    padding: 18px;
    border-radius: 16px;
  }

  .vcr-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .vcr-btn {
    text-align: center;
  }

  .vcr-footer {
    padding: 34px 0 18px;
  }

  .vcr-footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .vcr-footer-logo {
    width: 160px;
  }

  .vcr-footer-bottom {
    font-size: 0.88rem;
  }
}