/* =====================================================
   Citizens Voice 97.1 FM — Main Stylesheet
   Author: Brainious Technologies | brainioustech.com
   ===================================================== */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.65;
    padding-bottom: 76px;
    overflow-x: hidden;
}
a { color: #F5C518; text-decoration: none; transition: .25s; }
a:hover { color: #c9a000; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: 'Montserrat','Segoe UI',Arial,sans-serif; font-weight: 800; line-height: 1.2; color: #111; }
p { margin-bottom: 1rem; }
button { cursor: pointer; }
input,textarea,select,button { font-family: inherit; font-size: 1rem; }

/* ---- CSS VARS ---- */
:root {
    --yellow: #F5C518;
    --yellow-dark: #D4A800;
    --yellow-light: #FFF0A0;
    --black: #111;
    --dark: #181818;
    --dark2: #222;
    --dark3: #2c2c2c;
    --white: #fff;
    --gray: #f6f6f6;
    --gray2: #e8e8e8;
    --muted: #888;
    --border: #e2e2e2;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 2px 16px rgba(0,0,0,.09);
    --shadow-lg: 0 8px 40px rgba(0,0,0,.14);
    --player-h: 76px;
    /* Legacy aliases for inline styles */
    --cv-yellow: #F5C518;
    --cv-black: #111;
    --cv-dark: #181818;
    --cv-white: #fff;
    --cv-gray: #f6f6f6;
    --cv-gray-2: #e8e8e8;
    --cv-gray-3: #888;
    --cv-muted: #888;
    --cv-border: #e2e2e2;
    --cv-text: #222;
    --cv-text-light: #888;
    --cv-radius: 8px;
    --cv-radius-lg: 16px;
    --cv-transition: .25s;
}

/* ---- CONTAINER ---- */
.cv-container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ---- UTILITIES ---- */
.cv-section { padding: 70px 0; }
.cv-section-dark { background: var(--dark); }
.cv-section-dark h1,.cv-section-dark h2,.cv-section-dark h3,.cv-section-dark h4 { color: #fff; }
.cv-section-gray { background: var(--gray); }
.cv-section-yellow { background: var(--yellow); }
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.cv-section-title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 900; margin-bottom: .4rem; }
.cv-section-title span { color: var(--yellow); }
.cv-section-title-line::after { content: ''; display: block; width: 50px; height: 4px; background: var(--yellow); margin-top: 10px; border-radius: 2px; }
.text-center .cv-section-title-line::after { margin: 10px auto 0; }
.cv-section-sub { color: var(--muted); font-size: 1rem; margin-bottom: 2.5rem; }

/* ---- BUTTONS ---- */
.cv-btn { display: inline-flex; align-items: center; gap: 7px; padding: 12px 26px; border-radius: var(--radius); font-weight: 700; font-size: .9rem; border: 2px solid transparent; transition: .25s; text-transform: uppercase; letter-spacing: .4px; white-space: nowrap; }
.cv-btn-yellow { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.cv-btn-yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); color: var(--black); transform: translateY(-2px); box-shadow: 0 5px 18px rgba(245,197,24,.35); }
.cv-btn-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.cv-btn-dark:hover { background: var(--dark3); color: #fff; transform: translateY(-2px); }
.cv-btn-outline { background: transparent; color: var(--yellow); border-color: var(--yellow); }
.cv-btn-outline:hover { background: var(--yellow); color: var(--black); }
.cv-btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.cv-btn-outline-white:hover { background: rgba(255,255,255,.1); color: #fff; }
.cv-btn-lg { padding: 15px 34px; font-size: 1rem; }
.cv-btn-sm { padding: 8px 18px; font-size: .8rem; }

/* ---- BADGES ---- */
.cv-badge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 11px; border-radius: 20px; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; }
.cv-badge-yellow { background: var(--yellow); color: var(--black); }
.cv-badge-dark { background: var(--dark); color: #fff; }
.cv-badge-live { background: #e53935; color: #fff; animation: livePulse 1.6s infinite; }
@keyframes livePulse { 0%,100%{opacity:1} 50%{opacity:.7} }

/* ---- LIVE DOT ---- */
.cv-live-dot { width: 8px; height: 8px; background: #e53935; border-radius: 50%; display: inline-block; animation: dotPulse 1.2s infinite; flex-shrink: 0; }
@keyframes dotPulse { 0%{box-shadow:0 0 0 0 rgba(229,57,53,.7)} 70%{box-shadow:0 0 0 8px rgba(229,57,53,0)} 100%{box-shadow:0 0 0 0 rgba(229,57,53,0)} }

/* ---- RADIO WAVES ---- */
.cv-waves { display: inline-flex; align-items: flex-end; gap: 3px; height: 28px; }
.cv-waves span { display: block; width: 4px; background: var(--yellow); border-radius: 2px; animation: waveAnim 1s ease-in-out infinite; }
.cv-waves span:nth-child(1){height:8px;animation-delay:0s}
.cv-waves span:nth-child(2){height:18px;animation-delay:.1s}
.cv-waves span:nth-child(3){height:28px;animation-delay:.2s}
.cv-waves span:nth-child(4){height:18px;animation-delay:.3s}
.cv-waves span:nth-child(5){height:8px;animation-delay:.4s}
@keyframes waveAnim{0%,100%{transform:scaleY(.5);opacity:.5}50%{transform:scaleY(1);opacity:1}}

/* ---- SOCIAL LINKS ---- */
.cv-social-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cv-social-link { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; transition: .25s; flex-shrink: 0; }
.cv-social-link:hover { background: var(--yellow); color: var(--black); transform: translateY(-2px); }
.cv-topbar-social .cv-social-link { width: 26px; height: 26px; }

/* ---- OVERLAY ---- */
.cv-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1200; opacity: 0; visibility: hidden; transition: .3s; }
.cv-overlay-show { opacity: 1; visibility: visible; }

/* ======================================================
   TOP BAR
====================================================== */
.cv-topbar { background: var(--black); border-bottom: 2px solid var(--yellow); padding: 7px 0; font-size: .8rem; }
.cv-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cv-topbar-left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cv-topbar-right { display: flex; align-items: center; gap: 16px; }
.cv-topbar-item { display: flex; align-items: center; gap: 5px; color: #ccc; transition: .2s; }
.cv-topbar-item:hover { color: var(--yellow); }
.cv-topbar-item svg { color: var(--yellow); flex-shrink: 0; }
.cv-topbar-live { display: flex; align-items: center; gap: 6px; color: var(--yellow); font-weight: 700; font-size: .78rem; letter-spacing: .5px; }

/* ======================================================
   HEADER
====================================================== */
.cv-header { background: var(--dark); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 0 rgba(245,197,24,.15); transition: background .3s, box-shadow .3s; }
.cv-header.scrolled { background: rgba(24,24,24,.97); box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.cv-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 68px; padding: 10px 0; }

.cv-logo-link { display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; }
.cv-logo-icon { width: 44px; height: 44px; background: var(--yellow); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--black); flex-shrink: 0; }
.cv-logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.cv-logo-name { font-size: 1.05rem; font-weight: 900; color: #fff; font-family: 'Montserrat',sans-serif; letter-spacing: .3px; }
.cv-logo-freq { font-size: .72rem; color: var(--yellow); font-weight: 600; }
.cv-logo-freq em { font-style: italic; }
.cv-logo img { max-height: 56px; width: auto; }

.cv-nav { flex: 1; display: flex; justify-content: center; }
.cv-menu { display: flex; align-items: center; gap: 2px; }
.cv-menu-item { position: relative; }
.cv-menu-link { display: flex; align-items: center; gap: 3px; padding: 9px 14px; color: #ccc; font-size: .88rem; font-weight: 600; border-radius: var(--radius); transition: .2s; white-space: nowrap; }
.cv-menu-link:hover,
.cv-menu-item.cv-active .cv-menu-link,
.cv-menu-item.current-menu-item .cv-menu-link,
.cv-menu-item.current_page_item .cv-menu-link { color: var(--yellow); background: rgba(245,197,24,.08); }

.cv-submenu { position: absolute; top: calc(100% + 6px); left: 0; background: var(--dark2); min-width: 200px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.08); box-shadow: 0 10px 30px rgba(0,0,0,.3); opacity: 0; visibility: hidden; transform: translateY(6px); transition: .25s; z-index: 100; padding: 6px 0; }
.cv-has-children:hover .cv-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.cv-submenu .cv-menu-link { padding: 10px 18px; border-radius: 0; font-size: .85rem; }

.cv-header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cv-play-header-btn { display: flex; align-items: center; gap: 7px; padding: 9px 18px; background: var(--yellow); color: var(--black); border: none; border-radius: 50px; font-weight: 800; font-size: .82rem; text-transform: uppercase; letter-spacing: .5px; transition: .25s; white-space: nowrap; }
.cv-play-header-btn:hover { background: var(--yellow-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(245,197,24,.4); }

.cv-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 2px solid rgba(255,255,255,.25); border-radius: 6px; padding: 8px 9px; cursor: pointer; transition: .2s; }
.cv-hamburger:hover { border-color: var(--yellow); }
.cv-hamburger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

/* ======================================================
   MOBILE DRAWER
====================================================== */
.cv-mobile-drawer { position: fixed; top: 0; right: -100%; width: min(320px,88vw); height: 100vh; background: var(--dark); z-index: 1300; display: flex; flex-direction: column; overflow-y: auto; transition: right .32s cubic-bezier(.4,0,.2,1); padding: 0 0 30px; }
.cv-mobile-drawer.cv-drawer-open { right: 0; }
.cv-mobile-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.08); background: var(--black); flex-shrink: 0; }
.cv-drawer-close { background: none; border: none; color: #fff; font-size: 1.8rem; line-height: 1; cursor: pointer; padding: 0 4px; opacity: .7; }
.cv-drawer-close:hover { opacity: 1; color: var(--yellow); }
.cv-mobile-nav { flex: 1; padding: 10px 0; }
.cv-mobile-menu { padding: 0; }
.cv-mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.05); }
.cv-mobile-menu li a { display: block; padding: 14px 22px; color: #ddd; font-size: 1rem; font-weight: 600; transition: .2s; }
.cv-mobile-menu li a:hover { color: var(--yellow); padding-left: 28px; }
.cv-mobile-contact { padding: 16px 22px; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); display: flex; flex-direction: column; gap: 10px; }
.cv-mobile-contact a { display: flex; align-items: center; gap: 8px; color: #bbb; font-size: .88rem; }
.cv-mobile-contact a svg { color: var(--yellow); }
.cv-mobile-contact a:hover { color: var(--yellow); }
.cv-mobile-social { padding: 16px 22px; }
.cv-mobile-listen { margin: 12px 22px 0; width: calc(100% - 44px); justify-content: center; border-radius: 50px; }

/* ======================================================
   HERO
====================================================== */
.cv-hero { position: relative; min-height: 580px; display: flex; align-items: center; background: var(--dark); overflow: hidden; }
.cv-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .3; }
.cv-hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg,rgba(17,17,17,.96) 0%,rgba(17,17,17,.75) 55%,rgba(245,197,24,.08) 100%); }
.cv-hero-content { position: relative; z-index: 2; width: 100%; padding: 70px 0; }
.cv-hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 50px; align-items: center; }
.cv-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,197,24,.12); border: 1px solid rgba(245,197,24,.3); color: var(--yellow); padding: 6px 14px; border-radius: 50px; font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.cv-hero-heading { font-size: clamp(2rem,4vw,3.2rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 18px; }
.cv-hero-heading span { color: var(--yellow); }
.cv-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 30px; max-width: 520px; }
.cv-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.cv-hero-stats { display: flex; gap: 28px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.cv-hero-stat-num { display: block; font-size: 1.7rem; font-weight: 900; color: var(--yellow); font-family: 'Montserrat',sans-serif; line-height: 1; margin-bottom: 3px; }
.cv-hero-stat-label { font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }

.cv-hero-card { background: rgba(255,255,255,.04); border: 1px solid rgba(245,197,24,.2); border-radius: var(--radius-lg); overflow: hidden; backdrop-filter: blur(12px); }
.cv-hero-card-img { position: relative; }
.cv-hero-card-img img { width: 100%; height: 180px; object-fit: cover; }
.cv-hero-card-badge { position: absolute; top: 12px; left: 12px; display: flex; align-items: center; gap: 6px; background: rgba(0,0,0,.7); color: var(--yellow); padding: 5px 12px; border-radius: 50px; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; border: 1px solid rgba(245,197,24,.3); }
.cv-hero-card-body { padding: 22px; }
.cv-hero-card-show { color: #fff; font-size: 1.1rem; margin-bottom: 3px; }
.cv-hero-card-host { color: rgba(255,255,255,.55); font-size: .85rem; margin-bottom: 18px; }
.cv-hero-card-controls { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.cv-hero-card-play { flex: 1; justify-content: center; border-radius: 50px; }
.cv-hero-card-callin { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.07); }
.cv-hero-card-callin p { color: rgba(255,255,255,.5); font-size: .78rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .6px; }
.cv-callin-link { display: flex; align-items: center; gap: 7px; color: var(--yellow); font-size: .9rem; font-weight: 700; margin-bottom: 5px; }
.cv-callin-link:hover { text-decoration: underline; }

/* ======================================================
   ON AIR
====================================================== */
.cv-on-air { background: linear-gradient(135deg,var(--dark) 0%,var(--dark3) 100%); padding: 40px 0; border-bottom: 1px solid rgba(245,197,24,.12); }
.cv-on-air-inner { display: grid; grid-template-columns: 140px 1fr auto; gap: 30px; align-items: center; }
.cv-on-air-photo { position: relative; display: flex; justify-content: center; }
.cv-on-air-photo img { width: 120px; height: 120px; border-radius: 50%; border: 3px solid var(--yellow); object-fit: cover; }
.cv-on-air-photo .cv-badge { position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%); white-space: nowrap; }
.cv-on-air-label { display: flex; align-items: center; gap: 8px; color: var(--yellow); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px; }
.cv-on-air-show { font-size: 1.7rem; color: #fff; margin-bottom: 4px; }
.cv-on-air-host { color: rgba(255,255,255,.6); font-size: .95rem; margin-bottom: 10px; }
.cv-on-air-time { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.45); font-size: .82rem; }
.cv-on-air-time svg { color: var(--yellow); }
.cv-on-air-callin { background: rgba(245,197,24,.07); border: 1px solid rgba(245,197,24,.18); border-radius: var(--radius-lg); padding: 22px 26px; text-align: center; min-width: 230px; }
.cv-on-air-callin h4 { color: #fff; font-size: .95rem; margin-bottom: 4px; }
.cv-on-air-callin > p { color: rgba(255,255,255,.5); font-size: .78rem; margin-bottom: 14px; }
.cv-callin-num { display: flex; align-items: center; justify-content: center; gap: 6px; color: var(--yellow); font-weight: 800; font-size: 1rem; margin-bottom: 5px; }
.cv-callin-num:hover { text-decoration: underline; }

/* ======================================================
   SCHEDULE
====================================================== */
.cv-schedule-tabs-wrap { background: var(--gray); border-radius: var(--radius-lg); padding: 6px; display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 24px; }
.cv-schedule-tab { flex: 1; min-width: 60px; padding: 10px 8px; background: transparent; border: none; border-radius: var(--radius); font-size: .82rem; font-weight: 700; color: var(--muted); cursor: pointer; text-align: center; transition: .2s; position: relative; }
.cv-schedule-tab:hover { background: #fff; color: var(--black); box-shadow: var(--shadow); }
.cv-tab-active { background: var(--yellow) !important; color: var(--black) !important; box-shadow: var(--shadow); }
.cv-tab-today::after { content: 'Today'; position: absolute; top: -7px; right: 2px; background: #e53935; color: #fff; font-size: .55rem; padding: 1px 5px; border-radius: 8px; font-weight: 800; letter-spacing: .3px; }
.cv-schedule-pane { display: none; }
.cv-pane-active { display: block; }
.cv-schedule-list { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.cv-schedule-row { display: grid; grid-template-columns: 110px 1fr 120px; gap: 16px; align-items: center; padding: 15px 20px; border-bottom: 1px solid var(--border); background: #fff; transition: background .2s; }
.cv-schedule-row:last-child { border-bottom: none; }
.cv-schedule-row:hover { background: var(--gray); }
.cv-schedule-row.cv-now { background: rgba(245,197,24,.06); border-left: 4px solid var(--yellow); }
.cv-sched-time { font-weight: 800; font-size: .88rem; color: var(--yellow); font-family: 'Montserrat',sans-serif; }
.cv-sched-show { font-weight: 700; font-size: .95rem; margin-bottom: 2px; }
.cv-sched-host { font-size: .8rem; color: var(--muted); }

/* ======================================================
   NEWS / CARDS
====================================================== */
.cv-news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cv-news-featured { grid-column: span 2; }
.cv-news-featured .cv-card-thumb { height: 300px; }
.cv-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; transition: .28s; display: flex; flex-direction: column; }
.cv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cv-card-thumb { width: 100%; height: 210px; object-fit: cover; flex-shrink: 0; }
.cv-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.cv-card-cat { margin-bottom: 8px; }
.cv-card-meta { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--muted); margin-bottom: 8px; }
.cv-card-title { font-size: 1rem; line-height: 1.4; margin-bottom: 8px; flex: 1; }
.cv-card-title a { color: var(--black); }
.cv-card-title a:hover { color: var(--yellow); }
.cv-card-excerpt { font-size: .85rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.cv-read-more { display: inline-flex; align-items: center; gap: 4px; color: var(--yellow); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; margin-top: auto; }
.cv-read-more:hover { gap: 8px; }

/* ======================================================
   ABOUT
====================================================== */
.cv-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cv-about-img-wrap { position: relative; }
.cv-about-img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius-lg); }
.cv-about-freq-badge { position: absolute; bottom: -18px; right: -18px; width: 110px; height: 110px; background: var(--yellow); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 8px 24px rgba(245,197,24,.4); }
.cv-about-freq-badge strong { font-size: 1.4rem; font-weight: 900; color: var(--black); font-family: 'Montserrat',sans-serif; line-height: 1; }
.cv-about-freq-badge span { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(0,0,0,.7); }
.cv-about-desc { color: #555; line-height: 1.8; margin-bottom: 1.2rem; }
.cv-about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; margin-bottom: 28px; }
.cv-about-list li { display: flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--dark2); }
.cv-about-list li::before { content: ''; width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; flex-shrink: 0; }

/* ======================================================
   STATS BAR
====================================================== */
.cv-stats-bar { background: var(--black); padding: 36px 0; }
.cv-stats-inner { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; }
.cv-stat { padding: 10px; border-right: 1px solid rgba(255,255,255,.06); }
.cv-stat:last-child { border-right: none; }
.cv-stat-num { display: block; font-size: 2.2rem; font-weight: 900; color: var(--yellow); font-family: 'Montserrat',sans-serif; line-height: 1; margin-bottom: 6px; }
.cv-stat-label { font-size: .72rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }

/* ======================================================
   TEAM
====================================================== */
.cv-team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.cv-team-card { text-align: center; padding: 28px 20px; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); transition: .28s; }
.cv-team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cv-team-avatar { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; margin: 0 auto 14px; border: 3px solid var(--gray2); transition: .25s; }
.cv-team-card:hover .cv-team-avatar { border-color: var(--yellow); }
.cv-team-name { font-size: 1rem; font-weight: 800; margin-bottom: 3px; }
.cv-team-role { font-size: .8rem; color: var(--yellow); font-weight: 700; margin-bottom: 10px; }
.cv-team-bio { font-size: .82rem; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.cv-team-socials { display: flex; justify-content: center; gap: 8px; }
.cv-team-socials a { width: 30px; height: 30px; background: var(--gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--dark); transition: .2s; }
.cv-team-socials a:hover { background: var(--yellow); color: var(--black); }

/* ======================================================
   PILLAR CARDS
====================================================== */
.cv-pillar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cv-pillar-card { background: #fff; border-radius: var(--radius-lg); padding: 36px 28px; box-shadow: var(--shadow); text-align: center; transition: .28s; }
.cv-pillar-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cv-pillar-icon { color: var(--yellow); margin-bottom: 16px; display: flex; justify-content: center; }
.cv-pillar-title { font-size: 1.1rem; margin-bottom: 12px; }
.cv-pillar-text { font-size: .88rem; color: var(--muted); line-height: 1.75; }

/* ======================================================
   CONTACT PAGE
====================================================== */
.cv-contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: start; }
.cv-contact-info-box { background: var(--dark); border-radius: var(--radius-lg); padding: 36px 30px; color: #fff; position: sticky; top: 90px; }
.cv-contact-info-box h3 { color: #fff; margin-bottom: 5px; }
.cv-contact-info-box > p { color: rgba(255,255,255,.6); margin-bottom: 28px; font-size: .9rem; }
.cv-contact-info-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.cv-contact-info-item { display: flex; gap: 14px; }
.cv-contact-info-icon { width: 42px; height: 42px; background: rgba(245,197,24,.12); border: 1px solid rgba(245,197,24,.25); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--yellow); flex-shrink: 0; }
.cv-contact-info-text strong { display: block; font-size: .8rem; color: rgba(255,255,255,.5); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .5px; }
.cv-contact-info-text span,.cv-contact-info-text a { color: rgba(255,255,255,.85); font-size: .92rem; }
.cv-contact-info-text a:hover { color: var(--yellow); }
.cv-contact-social-row { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.07); }
.cv-contact-social-row p { color: rgba(255,255,255,.5); font-size: .8rem; margin-bottom: 12px; }
.cv-contact-listen-btn { margin-top: 20px; width: 100%; justify-content: center; border-radius: 50px; }
.cv-contact-form-box { background: #fff; border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow); }
.cv-contact-form-box h3 { margin-bottom: 5px; }
.cv-contact-form-box > p { color: var(--muted); margin-bottom: 26px; font-size: .9rem; }
.cv-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cv-form-group { margin-bottom: 18px; }
.cv-form-group label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 6px; color: var(--dark2); }
.cv-form-group input,.cv-form-group textarea,.cv-form-group select { width: 100%; padding: 12px 14px; border: 2px solid var(--border); border-radius: var(--radius); font-size: .92rem; color: var(--dark); background: #fff; transition: .2s; outline: none; }
.cv-form-group input:focus,.cv-form-group textarea:focus,.cv-form-group select:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,197,24,.12); }
.cv-form-group textarea { resize: vertical; min-height: 130px; }
.cv-form-submit { width: 100%; justify-content: center; border-radius: 50px; padding: 14px; }
.cv-form-message { padding: 13px 16px; border-radius: var(--radius); font-size: .88rem; margin-bottom: 16px; display: none; }
.cv-form-success { background: rgba(39,174,96,.1); color: #27ae60; border: 1px solid rgba(39,174,96,.3); }
.cv-form-error   { background: rgba(229,57,53,.1); color: #e53935; border: 1px solid rgba(229,57,53,.3); }

/* ======================================================
   FOOTER
====================================================== */
.cv-footer { background: var(--black); color: #fff; }
.cv-footer-newsletter { background: var(--yellow); padding: 40px 0; }
.cv-newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cv-newsletter-text h3 { color: var(--black); font-size: 1.3rem; margin-bottom: 4px; }
.cv-newsletter-text p { color: rgba(0,0,0,.65); margin: 0; font-size: .88rem; }
.cv-newsletter-form { display: flex; }
.cv-newsletter-form input { padding: 13px 18px; border: none; border-radius: var(--radius) 0 0 var(--radius); font-size: .92rem; width: 280px; background: rgba(0,0,0,.12); color: var(--black); outline: none; }
.cv-newsletter-form input::placeholder { color: rgba(0,0,0,.4); }
.cv-newsletter-form button { background: var(--black); color: var(--yellow); border: none; padding: 13px 22px; border-radius: 0 var(--radius) var(--radius) 0; font-weight: 800; font-size: .88rem; cursor: pointer; transition: .2s; }
.cv-newsletter-form button:hover { background: var(--dark3); }
.cv-footer-main { padding: 56px 0 40px; }
.cv-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.cv-footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.cv-footer-logo-icon { width: 40px; height: 40px; background: var(--yellow); color: var(--black); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cv-footer-logo-name { font-size: .95rem; font-weight: 900; color: #fff; font-family: 'Montserrat',sans-serif; display: block; }
.cv-footer-logo-freq { font-size: .68rem; color: var(--yellow); font-weight: 700; display: block; }
.cv-footer-tagline { color: var(--yellow); font-style: italic; font-size: .88rem; margin-bottom: 10px; }
.cv-footer-about-text { color: rgba(255,255,255,.5); font-size: .84rem; line-height: 1.7; margin-bottom: 18px; }
.cv-footer-social .cv-social-link { background: rgba(255,255,255,.07); }
.cv-footer-col-title { color: var(--yellow); font-size: .92rem; font-weight: 800; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid rgba(245,197,24,.18); text-transform: uppercase; letter-spacing: .4px; }
.cv-footer-links-list { display: flex; flex-direction: column; gap: 9px; }
.cv-footer-links-list a { color: rgba(255,255,255,.55); font-size: .86rem; display: flex; align-items: center; gap: 7px; transition: .2s; }
.cv-footer-links-list a::before { content: '›'; color: var(--yellow); font-size: 1rem; font-weight: 700; }
.cv-footer-links-list a:hover { color: var(--yellow); padding-left: 4px; }
.cv-footer-contact-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 18px; }
.cv-footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.cv-footer-contact-item svg { color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.cv-footer-contact-item span,.cv-footer-contact-item a { color: rgba(255,255,255,.6); font-size: .84rem; line-height: 1.5; }
.cv-footer-contact-item a:hover { color: var(--yellow); }
.cv-footer-callin-box { background: rgba(245,197,24,.07); border: 1px solid rgba(245,197,24,.18); border-radius: var(--radius); padding: 14px 16px; text-align: center; }
.cv-footer-callin-box p { color: rgba(255,255,255,.5); font-size: .76rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .4px; }
.cv-footer-callin-box .cv-btn { font-size: .8rem; padding: 9px 14px; width: 100%; justify-content: center; }
.cv-footer-bottom { background: rgba(0,0,0,.35); padding: 16px 0; border-top: 1px solid rgba(255,255,255,.05); }
.cv-footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cv-footer-copy { color: rgba(255,255,255,.4); font-size: .8rem; margin: 0; }
.cv-footer-copy a { color: var(--yellow); }
.cv-footer-policy { display: flex; align-items: center; gap: 10px; font-size: .8rem; }
.cv-footer-policy a { color: rgba(255,255,255,.4); }
.cv-footer-policy a:hover { color: var(--yellow); }
.cv-footer-policy span { color: rgba(255,255,255,.15); }

/* ======================================================
   STICKY PLAYER BAR
====================================================== */
.cv-player-bar { position: fixed; bottom: 0; left: 0; right: 0; height: var(--player-h); background: var(--black); border-top: 3px solid var(--yellow); z-index: 9999; box-shadow: 0 -4px 20px rgba(0,0,0,.4); }
.cv-player-inner { display: flex; align-items: center; gap: 16px; height: 100%; padding: 0 20px; max-width: 1400px; margin: 0 auto; }
.cv-player-station { display: flex; align-items: center; gap: 10px; min-width: 180px; }
.cv-player-logo { width: 42px; height: 42px; background: var(--yellow); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--black); flex-shrink: 0; }
.cv-player-logo img { width: 42px; height: 42px; object-fit: contain; border-radius: var(--radius); }
.cv-player-info { display: flex; flex-direction: column; line-height: 1.25; }
.cv-player-name { font-size: .82rem; font-weight: 800; color: #fff; }
.cv-player-show { font-size: .72rem; color: rgba(255,255,255,.5); }
.cv-player-controls { display: flex; align-items: center; gap: 6px; margin: 0 8px; }
.cv-player-btn { background: none; border: none; color: #fff; display: flex; align-items: center; justify-content: center; border-radius: 50%; padding: 6px; transition: .2s; }
.cv-player-btn:hover:not(:disabled) { color: var(--yellow); background: rgba(245,197,24,.1); }
.cv-player-btn:disabled { opacity: .3; cursor: not-allowed; }
.cv-player-playbtn { width: 48px; height: 48px; background: var(--yellow) !important; color: var(--black) !important; border-radius: 50%; }
.cv-player-playbtn:hover { background: var(--yellow-dark) !important; transform: scale(1.06); }
.cv-player-live-wrap { display: flex; align-items: center; gap: 10px; margin: 0 6px; }
.cv-player-live-badge { display: flex; align-items: center; gap: 5px; background: rgba(229,57,53,.12); border: 1px solid rgba(229,57,53,.25); border-radius: 50px; padding: 4px 10px; color: #e53935; font-size: .68rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.cv-player-volume { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.cv-volume-range { -webkit-appearance: none; appearance: none; width: 80px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.2); outline: none; cursor: pointer; }
.cv-volume-range::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%; background: var(--yellow); cursor: pointer; }
.cv-player-callin-btn { display: flex; align-items: center; gap: 6px; background: rgba(245,197,24,.12); border: 1px solid rgba(245,197,24,.25); color: var(--yellow); padding: 8px 14px; border-radius: var(--radius); font-size: .78rem; font-weight: 700; white-space: nowrap; transition: .2s; }
.cv-player-callin-btn:hover { background: var(--yellow); color: var(--black); }
.hidden { display: none !important; }
.cv-spinner { width: 22px; height: 22px; border: 3px solid rgba(0,0,0,.15); border-top-color: var(--black); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ======================================================
   BACK TO TOP
====================================================== */
.cv-back-top { position: fixed; bottom: calc(var(--player-h) + 16px); right: 20px; width: 42px; height: 42px; background: var(--yellow); color: var(--black); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(245,197,24,.4); transition: .25s; opacity: 0; visibility: hidden; z-index: 9990; }
.cv-back-top.show { opacity: 1; visibility: visible; }
.cv-back-top:hover { background: var(--yellow-dark); transform: translateY(-3px); }

/* ======================================================
   PAGE HEADER
====================================================== */
.cv-page-header { background: var(--dark); padding: 55px 0 45px; position: relative; overflow: hidden; border-bottom: 3px solid var(--yellow); }
.cv-page-header::before { content: ''; position: absolute; right: -60px; top: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(245,197,24,.05); }
.cv-page-header-content { position: relative; z-index: 1; }
.cv-page-header h1 { color: #fff; font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 12px; }
.cv-page-header h1 span { color: var(--yellow); }
.cv-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .83rem; color: rgba(255,255,255,.5); flex-wrap: wrap; }
.cv-breadcrumb a { color: var(--yellow); }
.cv-breadcrumb a:hover { text-decoration: underline; }
.cv-breadcrumb-sep { color: rgba(255,255,255,.25); }

/* ======================================================
   CONTENT WITH SIDEBAR
====================================================== */
.cv-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 36px; align-items: start; }
.cv-sidebar-area { position: sticky; top: 90px; }
.cv-widget { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 24px; margin-bottom: 24px; }
.cv-widget-title { font-size: .95rem; font-weight: 800; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--yellow); color: var(--dark); }

/* ======================================================
   SINGLE POST
====================================================== */
.cv-post-thumb { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px; }
.cv-post-thumb img { width: 100%; height: 400px; object-fit: cover; }
.cv-post-header { margin-bottom: 24px; }
.cv-post-cats { margin-bottom: 12px; display: flex; flex-wrap: wrap; gap: 6px; }
.cv-post-title-h { font-size: clamp(1.5rem,3vw,2rem); margin-bottom: 14px; }
.cv-post-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: .82rem; color: var(--muted); margin-bottom: 24px; }
.cv-post-meta a { color: var(--muted); }
.cv-post-meta a:hover { color: var(--yellow); }
.cv-post-content { font-size: 1rem; line-height: 1.82; }
.cv-post-content h2,.cv-post-content h3,.cv-post-content h4 { margin: 1.8rem 0 .8rem; }
.cv-post-content p { margin-bottom: 1.2rem; }
.cv-post-content a { color: var(--yellow); }
.cv-post-content blockquote { border-left: 4px solid var(--yellow); background: var(--gray); padding: 18px 22px; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; font-size: 1.05rem; margin: 1.5rem 0; }
.cv-post-content ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.2rem; }
.cv-post-content ol { list-style: decimal; padding-left: 1.4rem; margin-bottom: 1.2rem; }
.cv-post-content li { margin-bottom: .4rem; }
.cv-post-content img { border-radius: var(--radius); margin: 1rem 0; }
.cv-post-footer { margin-top: 36px; padding-top: 24px; border-top: 2px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.cv-post-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cv-post-tags span { font-size: .82rem; font-weight: 700; color: var(--muted); }
.cv-post-tag { background: var(--gray); color: var(--dark); padding: 4px 12px; border-radius: 50px; font-size: .78rem; transition: .2s; }
.cv-post-tag:hover { background: var(--yellow); color: var(--black); }
.cv-post-share { display: flex; align-items: center; gap: 8px; }
.cv-post-share span { font-size: .82rem; font-weight: 700; color: var(--muted); }
.cv-author-box { margin-top: 36px; background: var(--gray); border-radius: var(--radius-lg); padding: 26px; display: flex; gap: 18px; align-items: flex-start; }
.cv-author-box img { width: 72px; height: 72px; border-radius: 50%; border: 3px solid var(--yellow); flex-shrink: 0; }
.cv-author-box h4 { margin-bottom: 4px; }
.cv-author-box p { font-size: .88rem; color: var(--muted); margin-bottom: 8px; }

/* ======================================================
   404
====================================================== */
.cv-404 { text-align: center; padding: 100px 20px; }
.cv-404-number { font-size: clamp(6rem,18vw,10rem); font-weight: 900; color: var(--yellow); line-height: 1; font-family: 'Montserrat',sans-serif; margin-bottom: 8px; opacity: .9; }
.cv-404-title { font-size: clamp(1.4rem,3vw,2rem); margin-bottom: 14px; }
.cv-404-text { color: var(--muted); max-width: 460px; margin: 0 auto 30px; line-height: 1.7; }

/* ======================================================
   CTA BAND
====================================================== */
.cv-cta-band { background: linear-gradient(135deg,var(--yellow) 0%,#FFD84A 100%); padding: 50px 0; text-align: center; }
.cv-cta-band h2 { font-size: clamp(1.4rem,2.5vw,2rem); color: var(--black); margin-bottom: 8px; }
.cv-cta-band p { color: rgba(0,0,0,.6); font-size: 1rem; margin-bottom: 24px; }
.cv-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ======================================================
   PAGINATION
====================================================== */
.cv-pagination { display: flex; justify-content: center; gap: 6px; padding: 30px 0; }
.cv-pagination a,.cv-pagination span { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--radius); font-weight: 700; font-size: .88rem; border: 2px solid var(--border); color: var(--dark); transition: .2s; }
.cv-pagination a:hover,.cv-pagination span.current { background: var(--yellow); border-color: var(--yellow); color: var(--black); }

/* ======================================================
   SEARCH
====================================================== */
.cv-search-big { display: flex; max-width: 580px; margin: 0 auto 36px; }
.cv-search-big input { flex: 1; padding: 14px 18px; border: 2px solid var(--border); border-right: none; border-radius: var(--radius) 0 0 var(--radius); font-size: .95rem; outline: none; transition: .2s; }
.cv-search-big input:focus { border-color: var(--yellow); }
.cv-search-big button { padding: 14px 22px; background: var(--yellow); color: var(--black); border: 2px solid var(--yellow); border-radius: 0 var(--radius) var(--radius) 0; font-weight: 800; cursor: pointer; transition: .2s; }
.cv-search-big button:hover { background: var(--yellow-dark); }

/* ======================================================
   RESPONSIVE
====================================================== */
@media(max-width:1100px){
    .cv-footer-grid { grid-template-columns: 1fr 1fr; }
    .cv-about-grid { grid-template-columns: 1fr; gap: 40px; }
    .cv-about-img { height: 360px; }
    .cv-about-freq-badge { right: 10px; bottom: -10px; width: 90px; height: 90px; }
    .cv-stats-inner { grid-template-columns: repeat(2,1fr); }
    .cv-stat:nth-child(2){ border-right: none; }
    .cv-team-grid { grid-template-columns: repeat(2,1fr); }
    .cv-pillar-grid { grid-template-columns: 1fr 1fr; }
    .cv-hero-inner { grid-template-columns: 1fr; }
    .cv-hero-card { max-width: 460px; }
    .cv-news-grid { grid-template-columns: 1fr 1fr; }
    .cv-news-featured { grid-column: span 2; }
}
@media(max-width:900px){
    .cv-nav { display: none; }
    .cv-hamburger { display: flex; }
    .cv-topbar-hide-md { display: none !important; }
    .cv-on-air-inner { grid-template-columns: 1fr; gap: 20px; }
    .cv-on-air-callin { text-align: center; min-width: auto; }
    .cv-contact-grid { grid-template-columns: 1fr; }
    .cv-contact-info-box { position: static; }
    .cv-with-sidebar { grid-template-columns: 1fr; }
    .cv-sidebar-area { position: static; }
    .cv-player-callin-btn { display: none; }
}
@media(max-width:660px){
    .cv-topbar-hide-sm { display: none !important; }
    .cv-hero { min-height: 500px; }
    .cv-hero-inner { grid-template-columns: 1fr; }
    .cv-hero-btns { flex-direction: column; }
    .cv-news-grid { grid-template-columns: 1fr; }
    .cv-news-featured { grid-column: span 1; }
    .cv-news-featured .cv-card-thumb { height: 210px; }
    .cv-team-grid { grid-template-columns: 1fr 1fr; }
    .cv-pillar-grid { grid-template-columns: 1fr; }
    .cv-footer-grid { grid-template-columns: 1fr; }
    .cv-footer-bottom-inner { flex-direction: column; text-align: center; }
    .cv-newsletter-inner { flex-direction: column; text-align: center; }
    .cv-newsletter-form { flex-direction: column; width: 100%; }
    .cv-newsletter-form input { width: 100%; border-radius: var(--radius) var(--radius) 0 0; }
    .cv-newsletter-form button { border-radius: 0 0 var(--radius) var(--radius); }
    .cv-schedule-row { grid-template-columns: 90px 1fr; }
    .cv-schedule-row > :last-child { display: none; }
    .cv-player-inner { padding: 0 12px; gap: 10px; }
    .cv-player-station { min-width: auto; }
    .cv-player-info { display: none; }
    .cv-player-volume { display: none; }
    .cv-form-row { grid-template-columns: 1fr; }
}
@media(max-width:400px){
    .cv-container { padding: 0 14px; }
    .cv-team-grid { grid-template-columns: 1fr; }
    .cv-section { padding: 50px 0; }
}

/* WordPress Misc */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; position: absolute; width: 1px; }
