/* ═══════════════════════════════════════
   PMTV KENYA — Main Stylesheet
   Brand: Purple #3D1A6E · Gold #F5A800
═══════════════════════════════════════ */

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

:root {
  --red: #F5A800;          /* Gold — primary accent */
  --red-dark: #D4900A;     /* Darker gold for hover */
  --dark: #1E0B3B;         /* Deep purple — main dark */
  --charcoal: #2D1654;     /* Mid purple */
  --mid: #3D1A6E;          /* Brand purple */
  --muted: #8A7FA0;        /* Muted purple-grey */
  --light-gray: #F2EEF9;   /* Light purple tint */
  --cream: #FAF8FF;        /* Off-white with purple hint */
  --white: #FFFFFF;
  --border-dark: rgba(255,255,255,0.08);
  --border-light: #E2D9F3;
  --green: #2ECC71;
  --gold: #F5A800;
  --purple: #3D1A6E;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

/* ── TICKER ─────────────────────────── */
.ticker-wrap {
  background: var(--mid);
  color: #fff;
  height: 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 2px solid var(--gold);
}
.ticker-label {
  background: var(--gold);
  color: var(--dark);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.ticker-overflow { overflow: hidden; flex: 1; }
.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: ticker 50s linear infinite;
  font-size: 12px;
  font-weight: 500;
}
.ticker-track span::before,
.ticker-track a.ticker-link::before {
  content: '●';
  margin-right: 12px;
  opacity: 0.5;
}
.ticker-link {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s;
}
.ticker-link:hover { color: var(--gold); }
@keyframes ticker { 0%{ transform: translateX(0); } 100%{ transform: translateX(-50%); } }

/* ── HEADER ─────────────────────────── */
header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(245,168,0,0.2);
}
.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
/* Image logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  padding: 4px;
  flex-shrink: 0;
  box-sizing: border-box;
}
.logo-img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}
/* Fallback text logo (shown if image fails) */
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  color: var(--white);
  letter-spacing: 4px;
  text-decoration: none;
  line-height: 1;
}
.logo-text span { color: var(--gold); }
nav { display: flex; align-items: center; gap: 2px; }
nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 6px 13px;
  border-radius: 3px;
  text-transform: uppercase;
  transition: all 0.18s;
}
nav a:hover { color: #fff; background: rgba(255,255,255,0.07); }
nav a.active { color: var(--gold); }
.header-right { display: flex; align-items: center; gap: 8px; }
.search-btn {
  background: none;
  border: 1px solid var(--border-dark);
  color: rgba(255,255,255,0.55);
  padding: 6px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12.5px;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.search-btn:hover { border-color: rgba(255,255,255,0.25); color: #fff; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: all 0.2s;
}

/* Search Bar */
.search-bar {
  display: none;
  background: var(--charcoal);
  border-top: 1px solid var(--border-dark);
}
.search-bar.open { display: block; }
.search-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  gap: 10px;
}
.search-bar-inner input {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border-dark);
  color: #fff;
  padding: 9px 14px;
  border-radius: 3px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
}
.search-bar-inner input::placeholder { color: rgba(255,255,255,0.3); }
.search-bar-inner button {
  background: none;
  border: 1px solid var(--border-dark);
  color: rgba(255,255,255,0.5);
  padding: 8px 14px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.2s;
}
.search-bar-inner button:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--red); }

/* ── LAYOUT ─────────────────────────── */
.main-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 48px 24px;
}

/* ── SECTION HEADERS ─────────────────── */
.section { padding: 40px 0 8px; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--dark);
  padding-bottom: 10px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2.5px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 26px;
  background: var(--red);
  border-radius: 2px;
}
.view-all {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.view-all:hover { gap: 8px; }
.view-all::after { content: '→'; }

/* ── HERO ────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 3px;
  margin: 3px 0;
  background: #111;
}
.hero-featured {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 500px;
}
.hero-featured img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.hero-featured:hover img { transform: scale(1.03); }
.hero-featured-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 36px 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.93) 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
}
.cat-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding: 2px 10px;
  margin-bottom: 10px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero-meta {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-meta .author { color: rgba(255,255,255,0.85); font-weight: 600; }
.hero-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.3); flex-shrink: 0; }
.hero-stack { display: flex; flex-direction: column; gap: 3px; }
.hero-stack-item {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-height: 162px;
  cursor: pointer;
}
.hero-stack-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hero-stack-item:hover img { transform: scale(1.06); }
.hero-stack-overlay {
  position: absolute; inset: 0;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 70%);
}
.hero-stack-overlay .cat-badge { font-size: 10px; padding: 2px 8px; margin-bottom: 5px; }
.hero-stack-title {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.3;
}
.hero-stack-meta { color: rgba(255,255,255,0.5); font-size: 11px; margin-top: 4px; }

/* ── CARDS ───────────────────────────── */
.cards-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.cards-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.cards-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.card.featured { grid-column: span 2; }
.card-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.card.featured .card-img { aspect-ratio: 16/9; }
.card-img img { width:100%; height:100%; object-fit:cover; display:block; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 16px; }
.card-cat { font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 1.5px; color: var(--red); margin-bottom: 6px; }
.card-title { font-family: 'Playfair Display', serif; font-size: 15.5px; font-weight: 700; line-height: 1.35; color: var(--dark); margin-bottom: 10px; }
.card.featured .card-title { font-size: 21px; }
.card-meta { font-size: 11.5px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.card-meta .author { color: var(--dark); font-weight: 600; }

/* ── SPORT LIST ─────────────────────── */
.sports-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sport-list { display: flex; flex-direction: column; gap: 0; }
.sport-list-item {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 13px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: opacity 0.2s;
}
.sport-list-item:first-child { padding-top: 0; }
.sport-list-item:last-child { border-bottom: none; }
.sport-list-item:hover { opacity: 0.75; }
.sport-list-img { aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; }
.sport-list-img img { width:100%; height:100%; object-fit:cover; display:block; }
.sport-list-body { display: flex; flex-direction: column; justify-content: center; }
.sport-list-title { font-family: 'Playfair Display', serif; font-size: 14.5px; font-weight: 700; line-height: 1.35; color: var(--dark); margin: 4px 0 5px; }
.sport-list-meta { font-size: 11px; color: var(--muted); }

/* ── SIDEBAR ─────────────────────────── */
.content-sidebar { display: grid; grid-template-columns: 1fr 290px; gap: 36px; }
.sidebar-widget { background: var(--white); border-radius: 2px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.06); margin-bottom: 22px; }
.widget-header {
  background: var(--dark);
  padding: 11px 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-header::before { content:''; width:3px; height:15px; background:var(--red); border-radius:2px; }
.trending-list { padding: 4px 0; }
.trending-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 14px;
  border-bottom: 1px solid #F0ECE6;
  cursor: pointer;
  transition: background 0.15s;
}
.trending-item:last-child { border-bottom: none; }
.trending-item:hover { background: #F8F5F0; }
.trending-num { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: #D4CFC9; line-height: 1; flex-shrink: 0; width: 22px; }
.trending-item:first-child .trending-num { color: var(--red); }
.trending-item-title { font-size: 13px; font-weight: 500; line-height: 1.4; color: var(--dark); }
.trending-item-meta { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ── NEWSLETTER ─────────────────────── */
.newsletter-widget { padding: 16px; }
.newsletter-widget p { font-size: 13px; color: #555; line-height: 1.65; margin-bottom: 12px; }
.newsletter-widget input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  margin-bottom: 8px;
  transition: border-color 0.2s;
}
.newsletter-widget input:focus { border-color: var(--red); }
.btn-red {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 9px;
  border-radius: 3px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s;
}
.btn-red:hover { background: var(--red-dark); color: #fff; }

/* ── AD BANNER ──────────────────────── */
.ad-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1e0303 100%);
  border: 1px solid rgba(208,21,30,0.25);
  border-radius: 3px;
  padding: 22px;
  text-align: center;
  margin: 28px 0;
  position: relative;
  overflow: hidden;
}
.ad-banner::before { content:'ADVERTISEMENT'; position:absolute; top:7px; left:50%; transform:translateX(-50%); font-size:9px; letter-spacing:2px; color:rgba(255,255,255,0.15); }
.ad-banner-text { font-family:'Bebas Neue',sans-serif; font-size:26px; color:#fff; letter-spacing:3px; }
.ad-banner-sub { font-size:13px; color:rgba(255,255,255,0.45); margin-top:4px; }

/* ── PAGE HERO BANNER ───────────────── */
.page-hero {
  background: var(--dark);
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
}
.page-hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.page-hero-kicker {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 10px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}
.page-hero p {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  margin-top: 12px;
  max-width: 540px;
}
.page-hero-accent {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 160px;
  color: rgba(255,255,255,0.03);
  letter-spacing: -4px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── ABOUT PAGE ─────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  padding: 56px 0 40px;
}
.about-lead {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 24px;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
}
.about-body p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}
.about-aims {
  background: var(--white);
  border-radius: 3px;
  padding: 28px 32px;
  margin: 28px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.about-aims h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-aims h3::before { content:''; width:4px; height:18px; background:var(--red); border-radius:2px; }
.about-aims ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.about-aims ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: #333;
  line-height: 1.5;
}
.about-aims ul li::before {
  content: '▸';
  color: var(--red);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-stat-card {
  background: var(--dark);
  color: #fff;
  border-radius: 3px;
  padding: 28px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.about-stat-card::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: var(--red);
  border-radius: 50%;
  opacity: 0.15;
}
.about-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--red);
  letter-spacing: 2px;
}
.about-stat-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; letter-spacing: 0.5px; }
.about-independence {
  background: var(--light-gray);
  border-left: 4px solid var(--green);
  border-radius: 0 3px 3px 0;
  padding: 20px 22px;
  margin-top: 24px;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}
.about-independence strong { color: var(--dark); }

/* ── CONTACT PAGE ───────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
}
.contact-info-block { display: flex; flex-direction: column; gap: 22px; }
.contact-card {
  background: var(--white);
  border-radius: 3px;
  padding: 22px 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.contact-card-icon {
  width: 42px; height: 42px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.contact-card-body h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-card-body a, .contact-card-body p {
  font-size: 15px;
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
}
.contact-card-body a:hover { color: var(--red); }
.contact-form-wrap {
  background: var(--white);
  border-radius: 3px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.contact-form-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-form-wrap p { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 13px;
  border: 1px solid var(--border-light);
  border-radius: 3px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: #FDFBF8;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); background: #fff; }
.btn-submit {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 12px 28px;
  border-radius: 3px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 2px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--red-dark); color: #fff; transform: translateY(-1px); }
.contact-social-strip {
  margin-top: 48px;
  background: var(--dark);
  border-radius: 3px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.contact-social-strip h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  color: #fff;
}
.social-links { display: flex; gap: 12px; }
.social-link-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--border-dark);
  border-radius: 3px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}
.social-link-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.social-link-btn svg { flex-shrink: 0; }

/* ── FOOTER ──────────────────────────── */
footer { background: var(--dark); color: rgba(255,255,255,0.6); margin-top: 64px; }
.footer-top {
  max-width: 1300px;
  margin: 0 auto;
  padding: 48px 24px 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-logo { font-size: 28px; margin-bottom: 12px; display: inline-flex; }

.footer-logo-link { display: inline-block; margin-bottom: 12px; }
.footer-logo-img { height: 52px; width: auto; display: block; object-fit: contain; }

.footer-tagline { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.38); max-width: 260px; }
.footer-socials { display: flex; gap: 8px; margin-top: 16px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: 4px;
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 13px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 14px 24px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.22);
}

/* ── SCROLL REVEAL ───────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-stack { flex-direction: row; height: 200px; }
  .hero-stack-item { flex: 1; min-height: unset; }
  .content-sidebar { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-social-strip { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .nav-toggle { display: flex; }
  .hero-stack { flex-direction: column; height: auto; }
  .hero-stack-item { min-height: 140px; }
  .cards-grid { grid-template-columns: 1fr; }
  .card.featured { grid-column: span 1; }
  .sports-grid { grid-template-columns: 1fr; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .page-hero-accent { display: none; }
  .social-links { flex-wrap: wrap; }
}

/* ── CATEGORY PAGE FEATURED ─────────── */
.news-featured { border-radius: 2px; overflow: hidden; }
@media (max-width: 1024px) {
  .news-featured { grid-template-columns: 1fr !important; }
  .news-featured > div:first-child { min-height: 300px !important; }
  .news-featured > div:last-child { padding: 24px !important; }
}

/* ══════════════════════════════════════
   ARTICLE / BLOG POST PAGE
══════════════════════════════════════ */

/* ── ARTICLE HERO ───────────────────── */
.article-hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.article-hero-img {
  width: 100%;
  max-height: 540px;
  object-fit: cover;
  display: block;
  opacity: 0.55;
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.4) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px 0 48px;
}
.article-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.article-breadcrumb a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.article-breadcrumb a:hover { color: var(--red); }
.article-breadcrumb span { color: rgba(255,255,255,0.2); }
.article-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.article-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.article-hero-meta .author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}
.meta-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.2); flex-shrink: 0; }
.read-time {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
}

/* ── ARTICLE LAYOUT ─────────────────── */
.article-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 310px;
  gap: 52px;
  padding-top: 48px;
  padding-bottom: 64px;
}

/* ── ARTICLE BODY ───────────────────── */
.article-body {
  min-width: 0;
}
.article-share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 36px;
}
.share-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-right: 4px;
}
.share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 3px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.share-btn.facebook  { background: #1877F2; color: #fff; }
.share-btn.twitter   { background: var(--dark); color: #fff; }
.share-btn.whatsapp  { background: #25D366; color: #fff; }
.share-btn.copy      { background: var(--light-gray); color: var(--dark); }
.share-btn:hover     { opacity: 0.85; transform: translateY(-1px); }

/* ── ARTICLE CONTENT TYPOGRAPHY ─────── */
.article-content {
  font-size: 17px;
  line-height: 1.85;
  color: #2a2a2a;
}
.article-content p {
  margin-bottom: 24px;
}
.article-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin: 40px 0 16px;
  line-height: 1.2;
}
.article-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 32px 0 12px;
}
.article-content blockquote {
  border-left: 4px solid var(--gold);
  background: var(--white);
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.article-content blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-style: italic;
  color: var(--dark);
  margin: 0;
  line-height: 1.6;
}
.article-content blockquote cite {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
}
.article-content .article-img-wrap {
  margin: 32px 0;
}
.article-content .article-img-wrap img {
  width: 100%;
  border-radius: 3px;
  display: block;
}
.article-content .article-img-wrap figcaption {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 8px;
  font-style: italic;
  text-align: center;
}
.article-content ul, .article-content ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
.article-content ul li, .article-content ol li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.article-content a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: rgba(208,21,30,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}
.article-content a:hover { text-decoration-color: var(--gold); }
.article-content .highlight-box {
  background: linear-gradient(135deg, #fff8f8, #fff);
  border: 1px solid rgba(208,21,30,0.15);
  border-left: 4px solid var(--gold);
  border-radius: 0 3px 3px 0;
  padding: 18px 22px;
  margin: 28px 0;
  font-size: 15px;
  color: #333;
}

/* ── ARTICLE TAGS ───────────────────── */
.article-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 36px 0 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}
.tag-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.tag {
  background: var(--light-gray);
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
}
.tag:hover { background: var(--red); color: #fff; }

/* ── AUTHOR BOX ─────────────────────── */
.author-box {
  background: var(--white);
  border-radius: 4px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  margin-bottom: 48px;
  border-top: 3px solid var(--red);
}
.author-box-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-box-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.author-box-info .author-role {
  font-size: 11.5px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.author-box-info p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.65;
}

/* ── RELATED ARTICLES ───────────────── */
.related-section {
  margin-top: 0;
  padding-top: 0;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ── ARTICLE SIDEBAR ────────────────── */
.article-sidebar { min-width: 0; }
.article-sidebar .sidebar-widget { position: sticky; top: 80px; }

/* Progress bar */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--red);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── ARTICLE RESPONSIVE ─────────────── */
@media (max-width: 1024px) {
  .article-wrap { grid-template-columns: 1fr; gap: 40px; }
  .article-sidebar .sidebar-widget { position: static; }
}
@media (max-width: 768px) {
  .article-hero-overlay { padding: 32px 0 32px; }
  .article-share-bar { flex-wrap: wrap; }
  .related-grid { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; align-items: center; text-align: center; }
}

/* ══════════════════════════════════════
   LEGAL PAGES — Terms & Privacy
══════════════════════════════════════ */

.legal-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.legal-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.legal-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--charcoal);
  background: var(--light-gray);
  border-left: 4px solid var(--gold);
  padding: 20px 22px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 36px;
  font-weight: 500;
}

.legal-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border-light);
}
.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-section h2::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

.legal-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}
.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-section ul li {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  padding-left: 20px;
  position: relative;
}
.legal-section ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}

.legal-section a {
  color: var(--mid);
  text-decoration: underline;
  text-decoration-color: var(--gold);
}
.legal-section a:hover { color: var(--gold); }

.legal-contact-box {
  background: var(--light-gray);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 18px 20px;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}
.legal-contact-box strong { color: var(--dark); }
.legal-contact-box a { color: var(--mid); text-decoration: none; }
.legal-contact-box a:hover { color: var(--gold); }

/* Sidebar nav */
.legal-sidebar { position: sticky; top: 90px; }

.legal-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
}
.legal-nav a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 3px;
  transition: all 0.15s;
  display: block;
}
.legal-nav a:hover {
  color: var(--dark);
  background: var(--light-gray);
}

/* Responsive */
@media (max-width: 1024px) {
  .legal-grid { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
}

/* Footer legal links in bottom bar */
.footer-legal-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--gold); }

/* ── YouTube article hero ─────────────────────────────────── */
.article-hero--video .article-hero-youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  max-height: 560px;
  overflow: hidden;
}
.article-hero--video .article-hero-youtube iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
/* When article has video hero, overlay text goes below instead of on top */
.article-hero--video .article-hero-overlay {
  position: relative;
  background: var(--dark);
}

/* ── Card video play button overlay ──────────────────────── */
.card-img { position: relative; overflow: hidden; }
.card-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: rgba(0,0,0,0.65);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  pointer-events: none;
}
.card:hover .card-play-btn,
.hero-featured:hover .card-play-btn,
.hero-stack-item:hover .card-play-btn,
.sport-list-item:hover .card-play-btn {
  background: var(--red);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ══════════════════════════════════════
   YOUTUBE CLICK-TO-PLAY HERO
══════════════════════════════════════ */

/* Thumbnail placeholder in hero */
.yt-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 540px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  transition: opacity 0.4s ease;
}
.yt-thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}
.yt-player:hover .yt-thumb {
  transform: scale(1.03);
  filter: brightness(0.75);
}
.yt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 100%);
}
.yt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease;
}
.yt-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.yt-play-btn svg {
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}
.yt-duration-badge {
  background: rgba(0,0,0,0.72);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
}

/* Inline video player block inside article body */
.article-video-player {
  margin: 0 0 32px 0;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.article-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}
.article-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-close-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  padding: 10px 16px;
  background: #111;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.3px;
}
.video-close-btn:hover {
  background: #1a1a1a;
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   VIDEO ARTICLE LAYOUT
══════════════════════════════════════════════════════════════ */

/* Full-width thumbnail / player wrapper */
.vid-article-hero {
  width: 100%;
  background: #000;
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 600px;
  overflow: hidden;
}

/* YouTube thumbnail */
.yt-player {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.yt-player:hover .yt-thumb { transform: scale(1.02); }

/* Dark gradient overlay so play button pops */
.yt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 100%);
}

/* Red YouTube-style play button */
.yt-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s;
}
.yt-play-btn:hover { transform: translate(-50%, -50%) scale(1.1); }
.yt-play-btn svg { filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5)); }
.yt-duration-badge {
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
}

/* Inline iframe player (replaces thumbnail on click) */
.yt-inline-player {
  position: absolute;
  inset: 0;
  background: #000;
}
.yt-inline-player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
/* Close button top-right corner */
.yt-close-overlay {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.65);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.yt-close-overlay:hover { background: #c0392b; }

/* Title / meta bar below video */
.vid-article-header {
  background: var(--dark);
  padding: 28px 0 24px;
}
.vid-article-header-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}
.vid-article-header .article-hero-title {
  font-size: clamp(22px, 4vw, 36px);
  color: #fff;
  margin-bottom: 14px;
}
.vid-article-header .article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.vid-article-header .author-name { color: rgba(255,255,255,0.85); font-weight: 600; }
.vid-article-header .article-breadcrumb a { color: rgba(255,255,255,0.45); }
.vid-article-header .article-breadcrumb a:hover { color: var(--gold); }
.vid-article-header .cat-badge { display: inline-block; }

@media (max-width: 640px) {
  .vid-article-hero { aspect-ratio: 16/9; }
  .vid-article-header-inner { padding: 0 16px; }
}

/* ── Article video block (matches working standalone page) ── */
.article-video-block {
  margin-bottom: 32px;
}
.article-video-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.article-video-shell {
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 0 1px rgba(245,168,0,0.15), 0 20px 48px rgba(0,0,0,0.5);
}
.article-video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}
.article-video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Search go button ────────────────────────────────────────── */
.search-go-btn {
  background: var(--gold) !important;
  border: none !important;
  color: var(--dark) !important;
  padding: 0 14px !important;
  border-radius: 3px !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s;
}
.search-go-btn:hover { opacity: 0.85; }

/* ── Search page ─────────────────────────────────────────────── */
.search-page-bar {
  max-width: 680px;
  margin: 0 auto 8px;
}
.search-page-input {
  flex: 1;
  padding: 13px 18px;
  border: 2px solid var(--light-gray);
  border-radius: 4px;
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.search-page-input:focus { border-color: var(--gold); }

/* ── Pagination ──────────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.page-btn {
  padding: 8px 16px;
  border: 1px solid var(--light-gray);
  border-radius: 3px;
  color: var(--dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.15s;
}
.page-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.page-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

/* ── Card excerpt ────────────────────────────────────────────── */
.card-excerpt {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
