/*
Theme Name: VietWave TV
Theme URI: https://vietwavetv.com
Author: VietWave TV
Description: Official theme for VietWave TV – modern, minimal Vietnamese-language TV website.
Version: 3.0.0
License: GNU General Public License v2 or later
Text Domain: vietwavetv
Tags: news, minimal, bilingual, vietnamese, video
*/

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── CSS VARIABLES (overridden dynamically by Customizer) ── */
:root {
  --red:      #c8102e;
  --red-dark: #9e0b23;
  --bg:       #ffffff;
  --bg2:      #f5f4f1;
  --dark-bg:  #111827;
  --text:     #1a1a1a;
  --sub:      #6b6b6b;
  --border:   #e4e2dd;
  --white:    #ffffff;
  --font:     'DM Sans', sans-serif;
  --serif:    'DM Serif Display', serif;
  --radius:   10px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.site-ticker {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  overflow: hidden;
}
.ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 38s linear infinite;
  font-size: 12px;
  font-weight: 500;
  color: var(--sub);
}
.ticker-track span { margin: 0 44px; }
.ticker-track b { color: var(--text); font-weight: 600; }
@keyframes ticker-scroll { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
#masthead {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-branding { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-branding .custom-logo-link { display: flex; align-items: center; }
.site-branding .custom-logo-link img, .site-branding .custom-logo { max-height: 42px; width: auto; }
.footer-logo .custom-logo-link img, .footer-logo .custom-logo { max-height: 32px; width: auto; }
.logo-mark {
  width: 32px; height: 32px;
  background: var(--red);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 18px; height: 18px; fill: white; }
.site-title { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.site-title a { color: inherit; }
.site-title span { color: var(--red); }

#site-navigation { display: flex; margin-left: auto; }
#site-navigation ul { display: flex; list-style: none; gap: 2px; }
#site-navigation ul li a {
  font-size: 13px; font-weight: 500; color: var(--sub);
  padding: 6px 12px; border-radius: 6px;
  transition: color .15s, background .15s; display: block;
}
#site-navigation ul li a:hover,
#site-navigation ul li.current-menu-item > a { color: var(--text); background: var(--bg2); }
#site-navigation ul li.current-menu-item > a { font-weight: 600; }

.live-chip {
  display: flex; align-items: center; gap: 6px;
  background: #fff0f2; border: 1px solid #fac8ce;
  color: var(--red); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 10px; border-radius: 20px; flex-shrink: 0;
}
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; flex-direction: column; gap: 5px; padding: 4px;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero-section {
  max-width: 1100px; margin: 0 auto;
  padding: 72px 24px 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--red); margin-bottom: 18px;
}
.hero-section h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 400; line-height: 1.08;
  color: var(--text); margin-bottom: 20px;
}
.hero-section h1 em { font-style: italic; color: var(--red); }
.hero-desc { font-size: 16px; color: var(--sub); line-height: 1.8; max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.stat-card.primary {
  grid-column: span 2; display: flex; align-items: center; gap: 16px;
  background: var(--red); border-color: var(--red); color: white;
}
.stat-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon svg { width: 22px; height: 22px; fill: white; }
.stat-icon-sm { width: 36px; height: 36px; background: #fff0f2; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.stat-icon-sm svg { width: 18px; height: 18px; fill: var(--red); }
.stat-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.stat-card.primary .stat-label { opacity: .75; }
.stat-card:not(.primary) .stat-label { color: var(--sub); }
.stat-value { font-size: 20px; font-weight: 700; line-height: 1.2; }
.stat-card:not(.primary) .stat-value { color: var(--text); font-size: 22px; }
.stat-sub { font-size: 12px; opacity: .7; margin-top: 2px; }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px; font-size: 13px; font-weight: 600;
  border-radius: 8px; transition: .15s; cursor: pointer; border: none;
  font-family: var(--font);
}
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: var(--red-dark); color: white; transform: translateY(-1px); }
.btn-ghost { background: transparent; border: 1.5px solid var(--border); color: var(--sub); }
.btn-ghost:hover { border-color: #aaa; color: var(--text); }
.btn-white { background: white; color: var(--red); font-weight: 700; }
.btn-white:hover { background: #f8f8f8; color: var(--red-dark); }
.btn-outline-white { background: transparent; border: 1.5px solid rgba(255,255,255,.5); color: white; }
.btn-outline-white:hover { border-color: white; }

/* ══════════════════════════════════════
   LAYOUT UTILITIES
══════════════════════════════════════ */
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.content-section { padding: 56px 0; }
.content-section.bg-subtle { background: var(--bg2); }
.content-section.bg-dark { background: var(--dark-bg); }
.content-section.bg-red { background: var(--red); }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.section-title { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--text); }
.section-link { font-size: 13px; font-weight: 600; color: var(--red); }
.section-link:hover { opacity: .75; }

/* ══════════════════════════════════════
   WATCH LIVE SECTION
══════════════════════════════════════ */
.watch-live-section {
  background: var(--dark-bg);
  padding: 56px 0;
}
.watch-live-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 360px;
  gap: 40px; align-items: start;
}
.watch-live-inner.live-size-small { grid-template-columns: 1fr 360px; }
.watch-live-inner.live-size-medium { grid-template-columns: 1fr 300px; max-width: 1200px; }
.watch-live-inner.live-size-large { grid-template-columns: 1fr 260px; max-width: 1300px; }
.watch-live-inner.live-size-full { grid-template-columns: 1fr; max-width: 900px; }
.watch-live-embed { border-radius: var(--radius); overflow: hidden; background: #000; border: 1px solid rgba(255,255,255,.08); }
.watch-live-info { padding: 8px 0; }
.watch-live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: white;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 5px 12px; border-radius: 20px;
  margin-bottom: 20px;
}
.watch-live-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400; color: white; line-height: 1.2;
  margin-bottom: 14px;
}
.watch-live-title em { font-style: italic; color: #ff8090; }
.watch-live-desc { font-size: 15px; color: #9ca3af; line-height: 1.75; margin-bottom: 28px; }
.watch-live-channel {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  margin-bottom: 24px;
}
.watch-live-channel-icon { width: 36px; height: 36px; background: var(--red); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.watch-live-channel-icon svg { width: 18px; height: 18px; fill: white; }
.watch-live-channel-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: #6b7280; margin-bottom: 2px; }
.watch-live-channel-value { font-size: 15px; font-weight: 600; color: white; }

/* ══════════════════════════════════════
   FEATURED / POST CARDS
══════════════════════════════════════ */
.featured-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; }

.card-big, .card-row, .post-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: border-color .15s, box-shadow .2s, transform .15s;
  display: block;
}
.card-big:hover, .post-card:hover {
  border-color: #ccc;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.card-row:hover { border-color: #ccc; box-shadow: 0 2px 12px rgba(0,0,0,.06); }

.card-big .post-thumb { aspect-ratio: 16/9; }
.card-thumb, .post-thumb { position: relative; overflow: hidden; background: var(--bg2); }
.card-thumb img, .post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card-big:hover img, .post-card:hover img { transform: scale(1.04); }

.play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.24); opacity: 0; transition: opacity .2s;
}
.card-big:hover .play-overlay, .post-card:hover .play-overlay { opacity: 1; }
.play-circle {
  width: 50px; height: 50px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.play-circle svg { fill: var(--red); width: 18px; height: 18px; margin-left: 3px; }

.thumb-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: white;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 8px; border-radius: 4px;
}
.video-badge {
  position: absolute; bottom: 8px; left: 8px;
  background: rgba(0,0,0,.72); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  padding: 3px 8px; border-radius: 4px;
  backdrop-filter: blur(4px); pointer-events: none;
}
.thumb-placeholder { width: 100%; height: 100%; min-height: 160px; display: flex; align-items: center; justify-content: center; }
.thumb-placeholder svg { width: 32px; height: 32px; fill: #ccc; }

.card-body { padding: 18px 20px 20px; }
.card-row .card-body { padding: 12px 14px; }
.post-card .card-body { padding: 14px 16px 16px; }

.post-category { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--red); margin-bottom: 7px; display: block; border: none; text-decoration: none; padding-top: 0; border-top: none; }
.post-card .post-category { font-size: 10px; margin-bottom: 6px; }
.post-title { font-size: 15px; font-weight: 600; line-height: 1.5; color: var(--text); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card-big .post-title { font-size: 17px; }
.post-card .post-title { font-size: 13px; }
.card-row .post-title { font-size: 13px; -webkit-line-clamp: 3; }
.post-meta { margin-top: 10px; font-size: 12px; color: var(--sub); }
.card-row .post-meta { margin-top: 6px; font-size: 11px; }

.side-list { display: flex; flex-direction: column; gap: 10px; }
.card-row { border-radius: var(--radius); display: grid; grid-template-columns: 100px 1fr; }
.card-row .card-thumb { min-height: 72px; height: 100%; }

/* Videos horizontal scroll */
.videos-scroll {
  display: flex; gap: 24px; overflow-x: auto; overflow-y: hidden;
  padding-bottom: 8px; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}
.videos-scroll::-webkit-scrollbar { height: 6px; }
.videos-scroll::-webkit-scrollbar-track { background: transparent; }
.videos-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.video-card {
  flex: 0 0 240px; scroll-snap-align: start;
  background: var(--white); border: none; border-radius: 0;
  overflow: visible; text-decoration: none; color: inherit;
  transition: box-shadow .2s;
  padding: 0 16px;
}
.video-card:hover { box-shadow: none; }
.video-card-thumb { position: relative; overflow: hidden; background: var(--bg2); aspect-ratio: 16/9; border-radius: var(--radius); }
.video-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.video-card:hover .video-card-thumb img { transform: scale(1.04); }
.video-card:hover .play-overlay { opacity: 1; }
.video-card-body { padding: 10px 0 0; }
.video-card-body .post-category { border: none !important; border-top: none !important; text-decoration: none; padding: 0; margin-bottom: 4px; }
.video-card-body .post-title { font-size: 14px; font-weight: 600; line-height: 1.5; color: var(--text); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.video-card-body .post-meta { margin-top: 6px; }

.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.post-card .post-thumb { aspect-ratio: 16/9; }

/* ══════════════════════════════════════
   VIDEO EMBED
══════════════════════════════════════ */
.post-video-wrap, .single-video {
  margin-bottom: 32px; border-radius: var(--radius); overflow: hidden;
  background: #000; border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.video-responsive { position: relative; width: 100%; padding-top: 56.25%; background: #000; }
.video-responsive iframe, .video-responsive video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.single-thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.single-thumb img { width: 100%; }

/* ══════════════════════════════════════
   ADVERTISE CTA SECTION
══════════════════════════════════════ */
.advertise-section {
  background: var(--red);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.advertise-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0, transparent 24px, rgba(255,255,255,.03) 24px, rgba(255,255,255,.03) 25px);
  pointer-events: none;
}
.advertise-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: center;
  position: relative;
}
.advertise-eyebrow { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,.65); margin-bottom: 10px; }
.advertise-heading { font-family: var(--serif); font-size: clamp(24px, 3vw, 36px); font-weight: 400; color: white; line-height: 1.2; margin-bottom: 10px; }
.advertise-heading em { font-style: italic; }
.advertise-desc { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.7; max-width: 540px; }
.advertise-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }

/* ══════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════ */
.contact-page-wrap { max-width: 680px; margin: 56px auto; padding: 0 24px; }
.contact-page-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400; color: var(--text);
  margin-bottom: 8px;
}
.contact-page-subtitle { font-size: 15px; color: var(--sub); margin-bottom: 40px; line-height: 1.7; }

.contact-info-bar {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-bottom: 40px;
}
.contact-info-tile {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
}
.contact-info-tile-icon { width: 34px; height: 34px; background: #fff0f2; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-tile-icon svg { width: 16px; height: 16px; fill: var(--red); }
.contact-info-tile-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sub); margin-bottom: 2px; }
.contact-info-tile-value { font-size: 13px; font-weight: 600; color: var(--text); }

.vw-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group label span { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 4px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 13px; font-size: 14px; }

.form-notice {
  padding: 14px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
}
.form-notice.success { background: #f0faf4; border: 1px solid #b7e5c8; color: #1a6636; }
.form-notice.error   { background: #fff5f5; border: 1px solid #fbc8c8; color: #9b1c1c; }

/* ══════════════════════════════════════
   ABOUT SECTION (footer area)
══════════════════════════════════════ */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-text h2 { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 40px); font-weight: 400; color: white; line-height: 1.2; margin-bottom: 18px; }
.about-text h2 em { font-style: italic; color: #ff8090; }
.about-text p { font-size: 15px; color: #9ca3af; line-height: 1.8; margin-bottom: 14px; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.info-tile { background: #1f2937; border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding: 18px; }
.info-tile-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #4b5563; margin-bottom: 6px; }
.info-tile-value { font-size: 14px; font-weight: 600; color: white; line-height: 1.5; }
.info-tile-icon { width: 30px; height: 30px; background: rgba(200,16,46,.15); border-radius: 6px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.info-tile-icon svg { width: 15px; height: 15px; fill: #ff8090; }

/* ══════════════════════════════════════
   CONTACT STRIP
══════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; align-items: start; }
.contact-heading { font-family: var(--serif); font-size: 28px; font-weight: 400; color: white; line-height: 1.2; }
.contact-heading em { font-style: italic; }
.contact-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,.55); margin-bottom: 4px; }
.contact-val { font-size: 14px; font-weight: 500; color: white; line-height: 1.65; }
.contact-val a { color: white; border-bottom: 1px solid rgba(255,255,255,.28); }
.contact-val a:hover { border-color: white; }
.contact-group + .contact-group { margin-top: 18px; }

/* ══════════════════════════════════════
   SINGLE POST
══════════════════════════════════════ */
.single-post-wrap { max-width: 760px; margin: 56px auto; padding: 0 24px; }
.entry-title { font-family: var(--serif); font-size: clamp(26px, 4vw, 40px); font-weight: 400; line-height: 1.2; color: var(--text); margin-bottom: 14px; }
.single-post-meta { font-size: 13px; color: var(--sub); margin-bottom: 28px; }
.entry-content { font-size: 16px; line-height: 1.85; color: var(--text); }
.entry-content p { margin-bottom: 20px; }
.entry-content h2, .entry-content h3 { font-family: var(--serif); font-weight: 400; margin: 32px 0 12px; color: var(--text); }
.entry-content a { color: var(--red); border-bottom: 1px solid rgba(200,16,46,.25); }
.entry-content a:hover { border-color: var(--red); }
.post-nav { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════════════
   PAGE & ARCHIVE
══════════════════════════════════════ */
.page-wrap { max-width: 760px; margin: 56px auto; padding: 0 24px; }
.page-title { font-family: var(--serif); font-size: clamp(28px, 4vw, 42px); font-weight: 400; color: var(--text); margin-bottom: 28px; }
.page-content { font-size: 16px; line-height: 1.8; }
.page-content p { margin-bottom: 20px; }
.page-content a { color: var(--red); }
.archive-wrap { max-width: 1100px; margin: 0 auto; padding: 48px 24px; }
.archive-title { font-family: var(--serif); font-size: 32px; font-weight: 400; color: var(--text); margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }

/* ── PAGINATION ── */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 6px; font-size: 13px; font-weight: 600; border: 1px solid var(--border); background: var(--white); color: var(--sub); transition: .15s; }
.pagination a:hover { border-color: #aaa; color: var(--text); }
.pagination .current { background: var(--red); border-color: var(--red); color: white; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#colophon { background: var(--white); border-top: 1px solid var(--border); padding: 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 12px; color: var(--sub); }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 32px; height: 32px; background: var(--bg2); border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.footer-social a:hover { background: var(--border); }
.footer-social a svg { width: 14px; height: 14px; fill: var(--sub); }

/* ══════════════════════════════════════
   FADE IN ANIMATION
══════════════════════════════════════ */
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .watch-live-inner, .watch-live-inner.live-size-small, .watch-live-inner.live-size-medium, .watch-live-inner.live-size-large { grid-template-columns: 1fr; }
  .watch-live-info { order: -1; }
  .advertise-inner { grid-template-columns: 1fr; }
  .advertise-actions { flex-direction: row; }
}
@media (max-width: 860px) {
  .hero-section { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
  .hero-stats .stat-card.primary { grid-column: span 3; }
  .featured-layout { grid-template-columns: 1fr; }
  .side-list { display: grid; grid-template-columns: 1fr 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 24px; }
  .contact-info-bar { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  #site-navigation { display: none; }
  #site-navigation.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: white; padding: 12px 16px 16px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 200; }
  #site-navigation.open ul { flex-direction: column; }
  .menu-toggle { display: flex; }
  .live-chip { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat-card.primary { grid-column: span 2; }
  .side-list { grid-template-columns: 1fr; }
  .video-card { flex: 0 0 200px; }
  .post-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .post-grid { grid-template-columns: 1fr; }
}
