/*
Theme Name: RTG Digital
Theme URI: https://www.rtgdigital.com
Author: RTG Digital Media
Author URI: https://www.rtgdigital.com
Description: A professional media & radio broadcasting WordPress theme for RTG Digital — Northern Kenya's premier 24-hour news and current affairs outlet. Features a sticky live radio player, breaking news ticker, multiple article layouts, show schedules, video sections, and full CMS integration. Broadcasting in Somali, Swahili & English.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rtgdigital
Tags: news, radio, media, custom-colors, custom-logo, featured-images, footer-widgets, full-width-template, sticky-post, threaded-comments, translation-ready
*/

/* ===== CSS VARIABLES ===== */
:root {
  --rtg-red:        #D42B2B;
  --rtg-dark-red:   #A81F1F;
  --rtg-black:      #0A0A0A;
  --rtg-ink:        #1A1A1A;
  --rtg-charcoal:   #2D2D2D;
  --rtg-mid:        #555555;
  --rtg-muted:      #888888;
  --rtg-border:     #E0E0E0;
  --rtg-light:      #F5F4F0;
  --rtg-white:      #FFFFFF;
  --rtg-gold:       #C8952A;
  --rtg-font-display: 'Playfair Display', Georgia, serif;
  --rtg-font-body:    'Barlow', sans-serif;
  --rtg-font-cond:    'Barlow Condensed', sans-serif;
  --rtg-shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --rtg-shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --rtg-shadow-lg:  0 8px 40px rgba(0,0,0,.18);
  --rtg-shadow-xl:  0 12px 48px rgba(0,0,0,.2);
  --rtg-radius:     4px;
  --rtg-radius-lg:  8px;
  --rtg-transition: .3s cubic-bezier(.4,0,.2,1);
  --rtg-transition-fast: .15s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--rtg-font-body);
  background: var(--rtg-white);
  color: var(--rtg-ink);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--rtg-transition-fast); }
ul { list-style: none; }
audio { display: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

/* Selection color */
::selection { background: var(--rtg-red); color: var(--rtg-white); }
::-moz-selection { background: var(--rtg-red); color: var(--rtg-white); }

/* ===== UTILITY ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

.rtg-tag {
  display: inline-block;
  font-family: var(--rtg-font-cond);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--rtg-red);
  color: var(--rtg-white);
  border-radius: var(--rtg-radius);
  transition: var(--rtg-transition-fast);
}
.rtg-tag:hover { transform: scale(1.05); }
.rtg-tag.gold       { background: var(--rtg-gold); }
.rtg-tag.dark       { background: var(--rtg-charcoal); }
.rtg-tag.green      { background: #2E7D32; }
.rtg-tag.outline    { background: transparent; color: var(--rtg-red); border: 1.5px solid var(--rtg-red); }

.section-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px; padding-bottom: 12px;
  border-bottom: 2.5px solid var(--rtg-border);
}
.section-head h2 {
  font-family: var(--rtg-font-cond); font-size: 18px;
  font-weight: 800; letter-spacing: .04em;
  text-transform: uppercase; color: var(--rtg-ink);
}
.section-head .bar {
  width: 4px; height: 22px;
  background: var(--rtg-red); border-radius: 2px; flex-shrink: 0;
}
.section-head a {
  margin-left: auto; font-size: 12px; font-weight: 600;
  color: var(--rtg-red); letter-spacing: .04em; text-transform: uppercase;
}
.section-head a:hover { text-decoration: underline; }

/* ===== LIVE RADIO PLAYER BAR ===== */
#rtg-radio-bar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--rtg-black); color: var(--rtg-white);
  height: 52px; display: flex; align-items: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.radio-bar-inner {
  width: 100%; display: flex; align-items: center;
}
.radio-logo-strap {
  display: flex; align-items: center; gap: 10px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.1); flex-shrink: 0;
}
.live-badge {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--rtg-font-cond); font-size: 11px;
  font-weight: 800; letter-spacing: .1em;
  color: var(--rtg-red); text-transform: uppercase;
}
.live-dot {
  width: 7px; height: 7px;
  background: var(--rtg-red); border-radius: 50%;
  animation: rtg-pulse 1.2s infinite;
}
@keyframes rtg-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(.7); }
}
.now-playing {
  flex: 1; padding: 0 20px; display: flex;
  align-items: center; gap: 12px; overflow: hidden;
  border-right: 1px solid rgba(255,255,255,.1);
}
.np-label {
  font-size: 10px; font-weight: 600; color: var(--rtg-muted);
  letter-spacing: .1em; text-transform: uppercase; flex-shrink: 0;
}
.np-scroll { overflow: hidden; white-space: nowrap; }
.np-text {
  display: inline-block; font-size: 13px; font-weight: 500; color: #eee;
  animation: rtg-marquee 28s linear infinite;
}
@keyframes rtg-marquee {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.player-controls {
  display: flex; align-items: center; gap: 4px;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,.1); flex-shrink: 0;
}
.btn-play {
  width: 36px; height: 36px; background: var(--rtg-red);
  border: none; border-radius: 50%; color: var(--rtg-white);
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; transition: var(--rtg-transition);
}
.btn-play:hover { background: var(--rtg-dark-red); transform: scale(1.06); }
.btn-play svg  { width: 14px; height: 14px; fill: white; }
.btn-play .play-icon  { margin-left: 2px; display: block; }
.btn-play .pause-icon { display: none; }
.btn-play.playing .play-icon  { display: none; }
.btn-play.playing .pause-icon { display: block; }
.volume-wrap {
  display: flex; align-items: center; gap: 6px; padding: 0 16px;
}
.vol-icon svg { width: 14px; height: 14px; fill: rgba(255,255,255,.5); }
.volume-wrap input[type=range] {
  -webkit-appearance: none; width: 80px; height: 3px;
  background: #444; border-radius: 2px; cursor: pointer; outline: none;
}
.volume-wrap input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 12px; height: 12px;
  background: var(--rtg-white); border-radius: 50%; cursor: pointer;
}
.station-info {
  padding: 0 18px;
  border-left: 1px solid rgba(255,255,255,.1); flex-shrink: 0;
}
.station-freq {
  font-family: var(--rtg-font-cond); font-size: 15px;
  font-weight: 800; color: var(--rtg-white); line-height: 1;
}
.station-name { font-size: 10px; color: var(--rtg-muted); letter-spacing: .05em; }

/* ===== TOP UTILITY BAR ===== */
#rtg-top-bar {
  background: var(--rtg-light); border-bottom: 1px solid var(--rtg-border);
  height: 36px; display: flex; align-items: center;
}
.top-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.top-date { font-size: 11px; color: var(--rtg-muted); font-weight: 500; }
.top-links { display: flex; align-items: center; gap: 18px; }
.top-links a { font-size: 11px; color: var(--rtg-mid); font-weight: 500; letter-spacing: .03em; }
.top-links a:hover { color: var(--rtg-red); }
.top-socials { display: flex; gap: 10px; align-items: center; }
.top-socials a {
  width: 26px; height: 26px; display: flex;
  align-items: center; justify-content: center;
  background: var(--rtg-border); border-radius: 50%;
  color: var(--rtg-charcoal); transition: var(--rtg-transition);
}
.top-socials a:hover { background: var(--rtg-red); color: var(--rtg-white); }
.top-socials svg { width: 12px; height: 12px; fill: currentColor; }
.lang-switcher { display: flex; gap: 6px; }
.lang-btn {
  font-family: var(--rtg-font-body); font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 2px 8px;
  border: 1.5px solid var(--rtg-border); background: transparent;
  cursor: pointer; border-radius: 2px; color: var(--rtg-mid);
  transition: var(--rtg-transition);
}
.lang-btn:hover, .lang-btn.active {
  background: var(--rtg-red); border-color: var(--rtg-red); color: var(--rtg-white);
}

/* ===== MAIN HEADER ===== */
#rtg-header {
  background: var(--rtg-white);
  border-bottom: 3px solid var(--rtg-red);
  padding: 14px 0;
}
.header-inner { display: flex; align-items: center; gap: 20px; }
.site-branding { flex-shrink: 0; }
.site-logo-text { display: flex; flex-direction: column; }
.logo-mark {
  font-family: var(--rtg-font-cond); font-size: 40px;
  font-weight: 800; letter-spacing: -.02em; color: var(--rtg-ink); line-height: 1;
}
.logo-mark span { color: var(--rtg-red); }
.logo-sub {
  font-family: var(--rtg-font-body); font-size: 9.5px; font-weight: 600;
  color: var(--rtg-muted); letter-spacing: .18em;
  text-transform: uppercase; margin-top: 1px;
}
.custom-logo { max-height: 60px; width: auto; }
.header-ad-slot {
  flex: 1; display: flex; align-items: center; justify-content: center;
}
.ad-placeholder {
  width: 468px; height: 60px; background: var(--rtg-light);
  border: 1px dashed var(--rtg-border); display: flex;
  align-items: center; justify-content: center; font-size: 11px;
  color: var(--rtg-muted); letter-spacing: .05em;
  font-family: var(--rtg-font-cond); text-transform: uppercase;
}
.header-search { display: flex; align-items: center; border: 1.5px solid var(--rtg-border); border-radius: 3px; overflow: hidden; }
.header-search input {
  border: none; outline: none; padding: 8px 14px; font-size: 13px;
  font-family: var(--rtg-font-body); color: var(--rtg-ink); width: 200px;
}
.header-search button {
  background: var(--rtg-red); border: none; padding: 8px 14px;
  color: var(--rtg-white); cursor: pointer;
}
.header-search button svg { width: 15px; height: 15px; fill: white; display: block; }

/* ===== NAVIGATION ===== */
#rtg-nav {
  background: var(--rtg-ink);
  position: sticky; top: 52px; z-index: 900;
}
.nav-inner { display: flex; align-items: center; }
.nav-menu { display: flex; flex: 1; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block; padding: 13px 16px;
  font-family: var(--rtg-font-cond); font-size: 13px;
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.82); transition: var(--rtg-transition); white-space: nowrap;
}
.nav-menu > li:hover > a,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a { color: var(--rtg-white); }
.nav-menu > li.current-menu-item > a { border-bottom: 3px solid var(--rtg-red); }
.nav-menu > li:hover .sub-menu { display: block; }
.sub-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--rtg-white); min-width: 210px;
  box-shadow: var(--rtg-shadow-lg);
  border-top: 3px solid var(--rtg-red); z-index: 999;
}
.sub-menu li a {
  display: block; padding: 10px 18px; font-size: 13px;
  font-weight: 500; color: var(--rtg-ink);
  border-bottom: 1px solid #f0f0f0; transition: var(--rtg-transition);
}
.sub-menu li a:hover { background: var(--rtg-light); color: var(--rtg-red); padding-left: 24px; }
.nav-cta {
  display: flex; align-items: center; gap: 10px;
  padding-left: 20px;
  border-left: 1px solid rgba(255,255,255,.1); margin-left: 10px;
}
.btn-nav {
  font-family: var(--rtg-font-cond); font-size: 12px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; padding: 8px 18px;
  border: none; border-radius: var(--rtg-radius); cursor: pointer; 
  transition: var(--rtg-transition);
}
.btn-nav.primary { 
  background: var(--rtg-red); color: var(--rtg-white); 
  box-shadow: 0 2px 8px rgba(212,43,43,.3);
}
.btn-nav.primary:hover { 
  background: var(--rtg-dark-red); 
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212,43,43,.4);
}
.btn-nav.outline {
  background: transparent; color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-nav.outline:hover { 
  border-color: var(--rtg-white); color: var(--rtg-white); 
  background: rgba(255,255,255,.1);
}

/* hamburger */
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--rtg-white); cursor: pointer; padding: 10px 16px;
  font-size: 22px; margin-left: auto;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--rtg-white); margin: 5px 0; transition: .3s; }

/* ===== BREAKING NEWS TICKER ===== */
#rtg-ticker {
  background: var(--rtg-red); color: var(--rtg-white);
  height: 38px; display: flex; align-items: center; overflow: hidden;
}
.ticker-label {
  background: var(--rtg-dark-red); height: 100%;
  display: flex; align-items: center; padding: 0 18px;
  font-family: var(--rtg-font-cond); font-size: 12px;
  font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  white-space: nowrap; flex-shrink: 0; gap: 7px;
}
.ticker-scroll { flex: 1; overflow: hidden; padding: 0 16px; }
.ticker-items {
  display: flex; gap: 60px;
  animation: rtg-ticker 40s linear infinite; white-space: nowrap;
}
.ticker-items span { font-size: 13px; font-weight: 500; }
.ticker-sep { color: rgba(255,255,255,.5); }
@keyframes rtg-ticker {
  0%   { transform: translateX(40%); }
  100% { transform: translateX(-200%); }
}
.ticker-close {
  background: transparent; border: none; color: rgba(255,255,255,.6);
  cursor: pointer; padding: 0 14px; font-size: 20px; line-height: 1;
}
.ticker-close:hover { color: var(--rtg-white); }

/* ===== HERO SECTION ===== */
#rtg-hero { background: var(--rtg-light); padding: 22px 0; border-bottom: 1px solid var(--rtg-border); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-rows: auto auto;
  gap: 4px;
}
.hero-main {
  grid-row: 1 / 3; position: relative;
  overflow: hidden; background: var(--rtg-ink);
  border-radius: var(--rtg-radius);
}
.hero-main img {
  width: 100%; height: 480px; object-fit: cover; opacity: .85;
  transition: transform .8s cubic-bezier(.4,0,.2,1); display: block;
}
.hero-main:hover img { transform: scale(1.05); }
.hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.5) 50%, transparent 100%);
  padding: 36px 28px 28px;
}
.hero-overlay .rtg-tag { margin-bottom: 10px; }
.hero-overlay h2 {
  font-family: var(--rtg-font-display); font-size: 30px;
  font-weight: 700; color: var(--rtg-white); line-height: 1.25; margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero-overlay h2 a { color: inherit; }
.hero-overlay h2 a:hover { color: #f5d0d0; }
.hero-overlay p {
  font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.55;
  margin-bottom: 14px; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.article-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 11.5px; color: rgba(255,255,255,.6); flex-wrap: wrap;
}
.article-meta .author { font-weight: 600; color: rgba(255,255,255,.85); }
.article-meta .dot {
  width: 3px; height: 3px; background: rgba(255,255,255,.4);
  border-radius: 50%; flex-shrink: 0;
}
.hero-side { display: flex; flex-direction: column; gap: 4px; }
.side-card {
  position: relative; overflow: hidden;
  background: var(--rtg-charcoal); flex: 1; display: block; min-height: 115px;
  border-radius: var(--rtg-radius);
}
.side-card img {
  width: 100%; height: 100%; min-height: 115px;
  object-fit: cover; opacity: .75; transition: transform .6s ease, opacity .3s;
}
.side-card:hover img { transform: scale(1.06); opacity: .9; }
.side-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, transparent 100%);
  padding: 22px 16px 14px;
}
.side-card-overlay .rtg-tag { margin-bottom: 6px; }
.side-card-overlay h3 {
  font-family: var(--rtg-font-display); font-size: 14.5px;
  font-weight: 700; color: var(--rtg-white); line-height: 1.3;
}
.side-card-overlay span {
  font-size: 11px; color: rgba(255,255,255,.5); margin-top: 4px; display: block;
}

/* ===== AD STRIP ===== */
.rtg-ad-strip {
  background: var(--rtg-light); padding: 18px 0; text-align: center;
  border-top: 1px solid var(--rtg-border); border-bottom: 1px solid var(--rtg-border);
}
.rtg-ad-strip-inner { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.rtg-ad-unit {
  background: var(--rtg-white); border: 1px dashed #ccc;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--rtg-muted); font-family: var(--rtg-font-cond);
  letter-spacing: .08em; text-transform: uppercase;
}
.rtg-ad-unit.leaderboard { width: 728px; height: 90px; }
.rtg-ad-unit.medium-rect { width: 100%; height: 250px; }

/* ===== CONTENT LAYOUT ===== */
#rtg-content { padding: 36px 0; }
.content-grid {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 40px; align-items: start;
}

/* ===== ARTICLE CARDS ===== */
.articles-list { display: flex; flex-direction: column; gap: 26px; }
.card-h {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 18px; padding-bottom: 26px; border-bottom: 1px solid var(--rtg-border);
  transition: var(--rtg-transition);
}
.card-h:last-child { border-bottom: none; }
.card-h:hover { padding-left: 8px; }
.card-h-img { 
  position: relative; overflow: hidden; background: var(--rtg-light); 
  height: 155px; border-radius: var(--rtg-radius);
}
.card-h-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card-h:hover .card-h-img img { transform: scale(1.08); }
.card-h-body { display: flex; flex-direction: column; }
.card-h-body .rtg-tag { margin-bottom: 8px; }
.card-h-body h3 {
  font-family: var(--rtg-font-display); font-size: 20px; font-weight: 700;
  line-height: 1.3; color: var(--rtg-ink); margin-bottom: 8px;
}
.card-h-body h3 a { color: inherit; }
.card-h-body h3 a:hover { color: var(--rtg-red); }
.card-h-body p {
  font-size: 13.5px; color: var(--rtg-mid); line-height: 1.6; margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 11.5px; color: var(--rtg-muted); flex-wrap: wrap;
}
.card-meta .author { font-weight: 600; color: var(--rtg-charcoal); }
.card-meta .dot {
  width: 3px; height: 3px; background: var(--rtg-border);
  border-radius: 50%; flex-shrink: 0;
}
.read-more {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--rtg-font-cond); font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--rtg-red); margin-top: auto;
}
.read-more svg { width: 12px; height: 12px; fill: var(--rtg-red); transition: transform .2s; }
.read-more:hover svg { transform: translateX(4px); }

/* 3-col grid */
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 40px; }
.card-v { 
  display: flex; flex-direction: column; 
  transition: var(--rtg-transition); border-radius: var(--rtg-radius);
}
.card-v:hover { transform: translateY(-4px); }
.card-v-img { 
  position: relative; overflow: hidden; height: 190px; 
  background: var(--rtg-light); margin-bottom: 14px; border-radius: var(--rtg-radius);
}
.card-v-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card-v:hover .card-v-img img { transform: scale(1.08); }
.card-v-img .rtg-tag { position: absolute; top: 10px; left: 10px; }
.card-v-body h3 {
  font-family: var(--rtg-font-display); font-size: 16px; font-weight: 700;
  line-height: 1.35; color: var(--rtg-ink); margin-bottom: 8px;
}
.card-v-body h3 a { color: inherit; }
.card-v-body h3 a:hover { color: var(--rtg-red); }
.card-v-body .card-meta { margin-top: 8px; }

/* ===== VIDEO CARDS ===== */
.video-card {
  position: relative; overflow: hidden;
  background: var(--rtg-ink); margin-bottom: 22px; cursor: pointer;
}
.video-card img { width: 100%; height: 200px; object-fit: cover; opacity: .7; transition: opacity .3s; display: block; }
.video-card:hover img { opacity: .85; }
.video-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 52px; height: 52px;
  background: rgba(212,43,43,.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: transform .3s;
}
.video-play-btn svg { width: 18px; height: 18px; fill: white; margin-left: 3px; }
.video-card:hover .video-play-btn { transform: translate(-50%,-50%) scale(1.1); }
.video-duration {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,.75); color: var(--rtg-white);
  font-size: 11px; font-weight: 600; padding: 2px 7px; border-radius: 2px;
}
.video-card-info { padding: 12px 0 0; }
.video-card-info h4 {
  font-family: var(--rtg-font-display); font-size: 15px;
  font-weight: 700; line-height: 1.35; color: var(--rtg-ink); margin-top: 6px;
}
.video-card-info h4 a { color: inherit; }
.video-card-info h4 a:hover { color: var(--rtg-red); }

/* ===== SINGLE POST ===== */
.single-post-header { padding: 30px 0 20px; border-bottom: 1px solid var(--rtg-border); margin-bottom: 30px; }
.single-post-header h1 {
  font-family: var(--rtg-font-display); font-size: 36px; font-weight: 700;
  line-height: 1.2; color: var(--rtg-ink); margin: 14px 0;
}
.single-post-header .excerpt {
  font-size: 16px; color: var(--rtg-mid); line-height: 1.7;
  font-style: italic; border-left: 4px solid var(--rtg-red); padding-left: 16px;
}
.post-thumbnail { margin-bottom: 30px; }
.post-thumbnail img { width: 100%; max-height: 480px; object-fit: cover; }
.post-content { font-size: 15.5px; line-height: 1.8; color: var(--rtg-ink); }
.post-content h2 { font-family: var(--rtg-font-display); font-size: 26px; font-weight: 700; margin: 28px 0 14px; }
.post-content h3 { font-family: var(--rtg-font-display); font-size: 22px; font-weight: 700; margin: 24px 0 12px; }
.post-content p { margin-bottom: 18px; }
.post-content blockquote {
  border-left: 4px solid var(--rtg-red); padding: 14px 22px;
  margin: 26px 0; background: var(--rtg-light);
  font-style: italic; font-size: 17px; line-height: 1.7;
}
.post-content ul, .post-content ol { margin: 16px 0 16px 24px; }
.post-content li { margin-bottom: 6px; }
.post-content a { color: var(--rtg-red); text-decoration: underline; }
.post-tags { margin: 30px 0; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.post-tags strong { font-size: 12px; color: var(--rtg-mid); text-transform: uppercase; letter-spacing: .06em; }
.post-tags a {
  font-size: 12px; padding: 4px 12px; border: 1.5px solid var(--rtg-border);
  border-radius: 2px; color: var(--rtg-mid); transition: var(--rtg-transition);
}
.post-tags a:hover { border-color: var(--rtg-red); color: var(--rtg-red); }
.post-share { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin: 24px 0; }
.post-share strong { font-size: 12px; color: var(--rtg-mid); text-transform: uppercase; letter-spacing: .06em; }
.share-btn {
  display: flex; align-items: center; gap: 6px; padding: 7px 16px;
  border-radius: 3px; font-size: 12px; font-weight: 700;
  font-family: var(--rtg-font-cond); letter-spacing: .06em;
  text-transform: uppercase; cursor: pointer; border: none; color: var(--rtg-white);
}
.share-btn.fb  { background: #1877F2; }
.share-btn.tw  { background: #1DA1F2; }
.share-btn.wa  { background: #25D366; }
.share-btn svg { width: 14px; height: 14px; fill: white; }

/* ===== SIDEBAR ===== */
.sidebar { position: sticky; top: 112px; }
.sidebar-widget { margin-bottom: 32px; }

/* Trending */
.trending-list { display: flex; flex-direction: column; }
.trending-item {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid var(--rtg-border); align-items: flex-start;
}
.trending-item:last-child { border-bottom: none; }
.trending-num {
  font-family: var(--rtg-font-cond); font-size: 28px; font-weight: 800;
  color: var(--rtg-border); line-height: 1; flex-shrink: 0; width: 30px; text-align: center;
}
.trending-item:hover .trending-num { color: var(--rtg-red); }
.trending-body h4 {
  font-family: var(--rtg-font-display); font-size: 14px;
  font-weight: 700; line-height: 1.35; color: var(--rtg-ink);
}
.trending-body h4 a { color: inherit; }
.trending-body h4 a:hover { color: var(--rtg-red); }
.trending-body span { font-size: 11.5px; color: var(--rtg-muted); margin-top: 3px; display: block; }

/* Newsletter */
.newsletter-widget {
  background: linear-gradient(135deg, var(--rtg-ink) 0%, var(--rtg-charcoal) 100%);
  padding: 24px; color: var(--rtg-white); border-radius: var(--rtg-radius);
  box-shadow: var(--rtg-shadow-md);
}
.newsletter-widget h3 {
  font-family: var(--rtg-font-cond); font-size: 18px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 8px;
}
.newsletter-widget p { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 18px; line-height: 1.5; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input {
  border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08);
  color: var(--rtg-white); padding: 11px 14px; font-size: 13px;
  font-family: var(--rtg-font-body); border-radius: var(--rtg-radius); outline: none;
  transition: var(--rtg-transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { border-color: var(--rtg-red); background: rgba(255,255,255,.12); }
.newsletter-form button {
  background: var(--rtg-red); color: var(--rtg-white); border: none;
  padding: 12px; font-family: var(--rtg-font-cond); font-size: 13px;
  font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; border-radius: var(--rtg-radius); transition: var(--rtg-transition);
}
.newsletter-form button:hover { background: var(--rtg-dark-red); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(212,43,43,.4); }

/* Social Stats */
.social-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.social-stat-card {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 10px; border: 1.5px solid var(--rtg-border);
  border-radius: var(--rtg-radius); transition: var(--rtg-transition);
  cursor: pointer; text-align: center;
}
.social-stat-card:hover { border-color: currentColor; }
.social-stat-card.fb { color: #1877F2; }
.social-stat-card.tw { color: #1DA1F2; }
.social-stat-card.yt { color: #FF0000; }
.social-stat-card.ig { color: #C13584; }
.social-stat-card svg { width: 20px; height: 20px; fill: currentColor; margin-bottom: 6px; }
.social-stat-count { font-family: var(--rtg-font-cond); font-size: 18px; font-weight: 800; color: var(--rtg-ink); line-height: 1; }
.social-stat-label { font-size: 10px; color: var(--rtg-muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }

/* Weather */
.weather-widget { background: var(--rtg-ink); padding: 20px; color: var(--rtg-white); }
.weather-widget h3 { font-family: var(--rtg-font-cond); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.weather-main { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.weather-icon { font-size: 40px; }
.weather-temp { font-family: var(--rtg-font-cond); font-size: 46px; font-weight: 800; line-height: 1; }
.weather-temp span { font-size: 22px; font-weight: 400; color: rgba(255,255,255,.5); }
.weather-city { font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.weather-desc { font-size: 14px; font-weight: 500; }
.weather-days { display: flex; border-top: 1px solid rgba(255,255,255,.1); padding-top: 14px; justify-content: space-between; }
.weather-day { text-align: center; flex: 1; }
.weather-day-name { font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.weather-day-icon { font-size: 16px; margin-bottom: 3px; }
.weather-day-temp { font-size: 13px; font-weight: 600; }

/* ===== RADIO SECTION ===== */
#rtg-radio { background: var(--rtg-ink); padding: 50px 0; margin: 30px 0; }
.radio-section-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.radio-info .section-head { border-color: rgba(255,255,255,.15); }
.radio-info .section-head h2 { color: var(--rtg-white); }
.radio-tagline { font-family: var(--rtg-font-display); font-size: 34px; font-weight: 700; color: var(--rtg-white); line-height: 1.2; margin-bottom: 14px; }
.radio-tagline em { color: var(--rtg-red); font-style: normal; }
.radio-info p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 24px; }
.radio-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-radio {
  font-family: var(--rtg-font-cond); font-size: 12px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; padding: 10px 22px;
  border-radius: 2px; cursor: pointer; transition: var(--rtg-transition); border: none;
}
.btn-radio.primary { background: var(--rtg-red); color: var(--rtg-white); }
.btn-radio.primary:hover { background: var(--rtg-dark-red); }
.btn-radio.ghost {
  background: transparent; color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-radio.ghost:hover { border-color: var(--rtg-white); color: var(--rtg-white); }
.show-cards { display: flex; flex-direction: column; gap: 14px; }
.show-card {
  display: flex; gap: 16px; align-items: center; padding: 16px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--rtg-radius); transition: var(--rtg-transition); cursor: pointer;
}
.show-card:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }
.show-card.live { border-color: var(--rtg-red); background: rgba(212,43,43,.08); }
.show-img { width: 68px; height: 68px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--rtg-charcoal); }
.show-img img { width: 100%; height: 100%; object-fit: cover; }
.show-body { flex: 1; }
.show-time { font-family: var(--rtg-font-cond); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--rtg-muted); margin-bottom: 3px; }
.show-card.live .show-time { color: var(--rtg-red); }
.show-name { font-family: var(--rtg-font-cond); font-size: 16px; font-weight: 800; color: var(--rtg-white); margin-bottom: 3px; }
.show-host { font-size: 12px; color: rgba(255,255,255,.45); }
.show-live-badge { display: flex; align-items: center; gap: 5px; font-family: var(--rtg-font-cond); font-size: 10px; font-weight: 800; color: var(--rtg-red); letter-spacing: .1em; text-transform: uppercase; flex-shrink: 0; }

/* ===== PROGRAMS ===== */
#rtg-programs { background: var(--rtg-light); padding: 46px 0; }
.programs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.program-card {
  background: var(--rtg-white); border: 1px solid var(--rtg-border);
  overflow: hidden; transition: all .35s cubic-bezier(.4,0,.2,1); cursor: pointer;
  box-shadow: var(--rtg-shadow-sm); border-radius: 4px; display: flex; flex-direction: column;
}
.program-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.15); transform: translateY(-6px); border-color: var(--rtg-red); }
.program-img { position: relative; overflow: hidden; height: 200px; background: var(--rtg-light); }
.program-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.program-card:hover .program-img img { transform: scale(1.08); }
.program-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 100%);
  padding: 12px 14px; color: var(--rtg-white);
}
.program-ep { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.7); }
.program-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.program-body h3 {
  font-family: var(--rtg-font-display); font-size: 17px; font-weight: 700;
  line-height: 1.35; color: var(--rtg-ink); margin-bottom: 10px;
}
.program-body p {
  font-size: 13px; color: var(--rtg-mid); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.program-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px; border-top: 1px solid var(--rtg-border);
  background: var(--rtg-light); margin-top: auto;
}
.program-footer span { font-size: 11px; color: var(--rtg-muted); font-weight: 500; }
.btn-listen {
  display: flex; align-items: center; gap: 5px; padding: 5px 12px;
  background: var(--rtg-red); color: var(--rtg-white); border-radius: 3px;
  font-family: var(--rtg-font-cond); font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; transition: var(--rtg-transition);
}
.btn-listen:hover { background: var(--rtg-dark-red); transform: scale(1.05); }
.btn-listen svg { width: 13px; height: 13px; fill: white; }

/* ===== PHOTO GALLERY ===== */
#rtg-gallery { padding: 46px 0; background: var(--rtg-white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3; background: var(--rtg-light);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease, opacity .3s; }
.gallery-item:hover img { transform: scale(1.1); opacity: .85; }
.gallery-item-overlay {
  position: absolute; inset: 0; background: rgba(212,43,43,.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { width: 32px; height: 32px; }

/* ===== FOOTER ===== */
#rtg-footer {
  background: var(--rtg-ink); color: rgba(255,255,255,.75);
  padding: 50px 0 0; border-top: 4px solid var(--rtg-red);
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand-col .logo-mark {
  font-family: var(--rtg-font-cond); font-size: 32px; font-weight: 800;
  color: var(--rtg-white); margin-bottom: 14px; line-height: 1;
}
.footer-brand-col p {
  font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social-btn {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); border-radius: 50%; color: rgba(255,255,255,.7);
  transition: all .3s ease; border: 1px solid rgba(255,255,255,.1);
}
.footer-social-btn:hover {
  background: var(--rtg-red); color: var(--rtg-white);
  border-color: var(--rtg-red); transform: translateY(-3px);
}
.footer-social-btn svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h4 {
  font-family: var(--rtg-font-cond); font-size: 15px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: var(--rtg-white);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a {
  font-size: 13px; color: rgba(255,255,255,.65); transition: var(--rtg-transition);
  display: inline-block;
}
.footer-links li a:hover { color: var(--rtg-white); padding-left: 6px; }
.footer-apps { display: flex; flex-direction: column; gap: 10px; }
.app-store-btn {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px; transition: all .3s ease; color: var(--rtg-white);
}
.app-store-btn:hover {
  background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3);
  transform: translateX(4px);
}
.app-store-btn svg { width: 24px; height: 24px; fill: white; flex-shrink: 0; }
.app-store-btn div { display: flex; flex-direction: column; line-height: 1.2; }
.app-store-btn small { font-size: 9px; color: rgba(255,255,255,.5); }
.app-store-btn strong { font-size: 13px; font-weight: 700; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; font-size: 12px; color: rgba(255,255,255,.45);
}
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { color: rgba(255,255,255,.5); transition: var(--rtg-transition); }
.footer-bottom-links a:hover { color: var(--rtg-white); }

/* ===== MOBILE PLAYER ===== */
#rtg-mobile-player {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--rtg-black); color: var(--rtg-white); padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.4); align-items: center; gap: 12px;
}
.mp-info { flex: 1; overflow: hidden; }
.mp-title { font-size: 12px; font-weight: 700; color: var(--rtg-white); line-height: 1.3; }
.mp-subtitle { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 2px; }

/* ===== SCROLL TO TOP ===== */
#rtg-back-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 998;
  width: 48px; height: 48px; background: var(--rtg-red);
  border: none; border-radius: 50%; color: var(--rtg-white);
  cursor: pointer; box-shadow: 0 4px 16px rgba(212,43,43,.4);
  opacity: 0; visibility: hidden; transition: all .3s ease;
  display: flex; align-items: center; justify-content: center;
}
#rtg-back-top.show { opacity: 1; visibility: visible; }
#rtg-back-top:hover { background: var(--rtg-dark-red); transform: translateY(-4px); }
#rtg-back-top svg { width: 20px; height: 20px; }

/* ===== ENHANCED ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp .6s ease-out; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .container { max-width: 100%; padding: 0 18px; }
  .hero-grid { grid-template-columns: 1fr 300px; }
  .content-grid { gap: 30px; }
  .programs-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .hero-main { grid-row: 1; height: 400px; }
  .hero-side { flex-direction: row; gap: 8px; }
  .side-card { flex: 1; min-height: 200px; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .radio-section-inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  :root { font-size: 15px; }
  .nav-menu { 
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--rtg-ink); flex-direction: column; box-shadow: var(--rtg-shadow-lg);
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-menu > li > a { padding: 14px 20px; }
  .sub-menu { position: static; box-shadow: none; border-top: none; background: rgba(0,0,0,.3); }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .header-inner { flex-wrap: wrap; gap: 14px; }
  .header-ad-slot { order: 3; width: 100%; }
  .header-search { order: 2; }
  .hero-main img { height: 320px; }
  .hero-overlay h2 { font-size: 22px; }
  .card-h { grid-template-columns: 1fr; }
  .card-h-img { height: 200px; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  #rtg-mobile-player { display: flex; }
  #rtg-radio-bar { display: none; }
  #rtg-nav { top: 0; }
  .top-bar-inner { flex-wrap: wrap; gap: 10px; }
  .top-links { order: 3; width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .logo-mark { font-size: 28px; }
  .hero-side { flex-direction: column; }
  .side-card { min-height: 140px; }
  .section-head h2 { font-size: 16px; }
  .single-post-header h1 { font-size: 28px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
} height: 200px; overflow: hidden; position: relative; background: var(--rtg-ink); }
.program-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; opacity: .9; }
.program-card:hover .program-img img { transform: scale(1.05); }
.program-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 100%);
  padding: 20px 14px 14px;
}
.program-ep { font-size: 11px; color: rgba(255,255,255,.55); }
.program-body { padding: 16px; }
.program-body h3 { font-family: var(--rtg-font-cond); font-size: 17px; font-weight: 800; color: var(--rtg-ink); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .02em; }
.program-body p { font-size: 12px; color: var(--rtg-mid); line-height: 1.5; }
.program-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px 14px; border-top: 1px solid var(--rtg-border);
}
.program-footer span { font-size: 11px; color: var(--rtg-muted); }
.btn-listen { font-family: var(--rtg-font-cond); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--rtg-red); display: flex; align-items: center; gap: 5px; }
.btn-listen svg { width: 11px; height: 11px; fill: var(--rtg-red); }

/* ===== GALLERY ===== */
#rtg-gallery { padding: 42px 0; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 180px 180px; gap: 4px;
}
.gallery-item { overflow: hidden; cursor: pointer; position: relative; background: var(--rtg-charcoal); }
.gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, opacity .3s; }
.gallery-item:hover img { transform: scale(1.06); opacity: .8; }
.gallery-item-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.4);
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { width: 28px; height: 28px; fill: white; }

/* ===== COMMENTS ===== */
.comments-area { padding: 40px 0; border-top: 2px solid var(--rtg-border); margin-top: 40px; }
.comments-area h2 { font-family: var(--rtg-font-cond); font-size: 22px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 28px; }
.comment-body { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--rtg-border); }
.comment-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.comment-author-img { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--rtg-border); }
.comment-author-img img { width: 100%; height: 100%; object-fit: cover; }
.comment-author-name { font-weight: 700; font-size: 14px; color: var(--rtg-ink); }
.comment-date { font-size: 12px; color: var(--rtg-muted); }
.comment-text { font-size: 14px; line-height: 1.7; color: var(--rtg-mid); }
.comment-form-wrap label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--rtg-mid); margin-bottom: 6px; }
.comment-form-wrap input,
.comment-form-wrap textarea {
  width: 100%; border: 1.5px solid var(--rtg-border); padding: 10px 14px;
  font-size: 14px; font-family: var(--rtg-font-body); color: var(--rtg-ink);
  outline: none; transition: var(--rtg-transition); border-radius: var(--rtg-radius);
  margin-bottom: 16px;
}
.comment-form-wrap input:focus,
.comment-form-wrap textarea:focus { border-color: var(--rtg-red); }
.comment-form-wrap textarea { height: 130px; resize: vertical; }
.comment-submit {
  background: var(--rtg-red); color: var(--rtg-white); border: none; padding: 12px 28px;
  font-family: var(--rtg-font-cond); font-size: 13px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
  border-radius: var(--rtg-radius); transition: var(--rtg-transition);
}
.comment-submit:hover { background: var(--rtg-dark-red); }

/* ===== PAGINATION ===== */
.rtg-pagination { display: flex; gap: 6px; justify-content: center; padding: 30px 0; }
.rtg-pagination a, .rtg-pagination span {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--rtg-border); font-family: var(--rtg-font-cond);
  font-size: 14px; font-weight: 700; color: var(--rtg-mid);
  border-radius: var(--rtg-radius); transition: var(--rtg-transition);
}
.rtg-pagination a:hover,
.rtg-pagination span.current { background: var(--rtg-red); border-color: var(--rtg-red); color: var(--rtg-white); }

/* ===== FOOTER ===== */
#rtg-footer { background: #0F0F0F; color: rgba(255,255,255,.7); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand-col .logo-mark { color: var(--rtg-white); font-size: 36px; margin-bottom: 12px; }
.footer-brand-col p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.footer-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07); display: flex; align-items: center;
  justify-content: center; color: rgba(255,255,255,.6); transition: var(--rtg-transition);
}
.footer-social-btn:hover { background: var(--rtg-red); color: var(--rtg-white); }
.footer-social-btn svg { width: 15px; height: 15px; fill: currentColor; }
.footer-col h4 {
  font-family: var(--rtg-font-cond); font-size: 13px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; color: var(--rtg-white);
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 6px; transition: var(--rtg-transition);
}
.footer-links a::before { content: ''; width: 6px; height: 1.5px; background: var(--rtg-red); flex-shrink: 0; }
.footer-links a:hover { color: var(--rtg-white); padding-left: 4px; }
.footer-apps { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.app-store-btn {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px; padding: 8px 14px; color: rgba(255,255,255,.8);
  transition: var(--rtg-transition); cursor: pointer;
}
.app-store-btn:hover { background: rgba(255,255,255,.12); color: var(--rtg-white); }
.app-store-btn svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.app-store-btn small { display: block; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.app-store-btn strong { display: block; font-size: 13px; font-weight: 600; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; font-size: 12px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--rtg-red); }
.footer-bottom-links { display: flex; gap: 18px; }

/* ===== MOBILE PLAYER ===== */
#rtg-mobile-player {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--rtg-black); color: var(--rtg-white); padding: 14px 16px;
  z-index: 9999; border-top: 2px solid var(--rtg-red);
  box-shadow: 0 -4px 20px rgba(0,0,0,.4); align-items: center; gap: 12px;
}
.mp-info { flex: 1; overflow: hidden; }
.mp-title { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mp-subtitle { font-size: 11px; color: rgba(255,255,255,.5); }

/* ===== SCROLL TO TOP ===== */
#rtg-back-top {
  position: fixed; bottom: 28px; right: 24px; width: 42px; height: 42px;
  background: var(--rtg-red); color: var(--rtg-white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transform: translateY(20px);
  transition: opacity .3s, transform .3s; z-index: 8000;
  box-shadow: var(--rtg-shadow-md); border: none;
}
#rtg-back-top.show { opacity: 1; transform: translateY(0); }
#rtg-back-top svg { width: 18px; height: 18px; fill: white; }

/* ===== CAT SECTION ===== */
.cat-section { padding: 36px 0; border-bottom: 1px solid var(--rtg-border); }

/* ===== WP CORE ===== */
.alignleft { float: left; margin: 0 20px 10px 0; }
.alignright { float: right; margin: 0 0 10px 20px; }
.aligncenter { text-align: center; margin: 20px auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 12px; color: var(--rtg-muted); margin-top: 6px; font-style: italic; }
.sticky {}
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal!important; }
.skip-link { position: absolute; top: -999px; }
.skip-link:focus { top: 6px; left: 6px; z-index: 99999; background: var(--rtg-red); color: var(--rtg-white); padding: 10px 18px; font-weight: 700; }

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .content-grid { grid-template-columns: 1fr 280px; gap: 28px; }
  .hero-overlay h2 { font-size: 24px; }
  .programs-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(3,1fr); grid-template-rows: 160px 160px; }
  .gallery-item:nth-child(1) { grid-column: 1/2; grid-row: 1/2; }
}
@media (max-width:768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { flex-direction: row; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .card-h { grid-template-columns: 140px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .cards-grid-3 { grid-template-columns: 1fr 1fr; }
  .radio-section-inner { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; flex-direction: column; width: 100%; position: absolute; top: 100%; left: 0; background: var(--rtg-charcoal); z-index: 1000; padding: 10px 0; }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 12px 20px; }
  .sub-menu { position: static; box-shadow: none; border-top: none; background: rgba(0,0,0,.2); }
  .nav-toggle { display: flex; flex-direction: column; }
  #rtg-nav { position: relative; }
  .nav-cta { display: none; }
  #rtg-mobile-player { display: flex; }
  .volume-wrap { display: none; }
  .header-ad-slot { display: none; }
  .rtg-ad-unit.leaderboard { width: 320px; height: 50px; }
  .single-post-header h1 { font-size: 28px; }
  .radio-tagline { font-size: 26px; }
}
@media (max-width:480px) {
  .hero-side { flex-direction: column; }
  .card-h { grid-template-columns: 1fr; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .top-links { display: none; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
}
