/*
Theme Name: SlangTalks Child
Template: astra
Version: 1.0
Description: SlangTalks - British & American Slang Dictionary
*/

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&family=Bebas+Neue&display=swap');

:root {
  --red: #E63946;
  --yellow: #FFD23F;
  --blue: #1D3557;
  --navy: #0A1628;
  --cyan: #06D6A0;
  --orange: #FF6B35;
  --white: #FFFFFF;
  --gray: #F8F9FA;
  --text: #1a1a2e;
  --muted: #6c757d;
}

/* ── GLOBAL ── */
body { font-family: 'DM Sans', sans-serif !important; }
* { box-sizing: border-box; }

/* ── REMOVE ASTRA DEFAULTS ── */
.site-header { display: none !important; }
.site-footer { display: none !important; }
.entry-header { display: none !important; }
.ast-container { max-width: 100% !important; padding: 0 !important; }
.site-content { padding: 0 !important; }
.entry-content { margin: 0 !important; padding: 0 !important; }
#primary { padding: 0 !important; }
.ast-article-post { padding: 0 !important; }
.post-thumb { display: none !important; }

/* ── NAVBAR ── */
.st-nav {
  background: var(--navy);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 3px solid var(--red);
}
.st-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
}
.st-logo span { color: var(--yellow); }
.st-nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.st-nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.st-nav-links a:hover { color: var(--yellow); }
.st-flag-row { display: flex; gap: 8px; }
.st-fbtn {
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  color: white;
  transition: transform 0.2s;
}
.st-fbtn:hover { transform: translateY(-2px); }
.st-fbtn.uk { background: #012169; }
.st-fbtn.us { background: var(--red); }

/* ── HERO ── */
.st-hero {
  background: var(--navy);
  padding: 70px 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  overflow: hidden;
  position: relative;
}
.st-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(230,57,70,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.st-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,210,63,0.15);
  border: 1px solid var(--yellow);
  color: var(--yellow);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.st-hero h1 {
  font-family: 'Playfair Display', serif !important;
  font-size: 62px !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1.05 !important;
  margin-bottom: 18px !important;
}
.st-hero h1 em {
  font-style: normal;
  color: var(--yellow);
}
.st-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 32px;
}
.st-search-wrap { display: flex; max-width: 480px; }
.st-search-wrap input {
  flex: 1;
  padding: 15px 20px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  border: none;
  border-radius: 8px 0 0 8px;
  outline: none;
}
.st-search-btn {
  padding: 15px 26px;
  background: var(--red);
  color: white;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.st-search-btn:hover { background: #c1121f; }
.st-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-bottom: 70px;
}
.st-snum {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  color: var(--yellow);
  line-height: 1;
}
.st-slbl {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── WORD OF DAY ── */
.st-hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 60px;
}
.st-wod {
  background: white;
  border-radius: 14px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.st-wod::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--yellow));
}
.st-wod-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.st-wod-word {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}
.st-wod-type { font-size: 12px; color: var(--muted); font-style: italic; margin-bottom: 10px; }
.st-wod-flags { display: flex; gap: 6px; margin-bottom: 12px; }
.st-tag {
  padding: 3px 9px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
}
.st-tag-uk { background: #EEF0FF; color: #3D52D5; }
.st-tag-us { background: #FFF0EE; color: var(--red); }
.st-tag-tr { background: #EDFFF7; color: #00916E; }
.st-tag-sl { background: #FFF8EE; color: var(--orange); }
.st-wod-def { font-size: 14px; color: #444; line-height: 1.6; margin-bottom: 12px; }
.st-wod-ex {
  background: #f8f9fa;
  border-left: 3px solid var(--yellow);
  padding: 9px 13px;
  font-size: 13px;
  color: #666;
  font-style: italic;
}
.st-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.st-mini {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.st-mini:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.st-mini-w { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: white; margin-bottom: 3px; }
.st-mini-d { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.4; }

/* ── TICKER ── */
.st-ticker { background: var(--red); padding: 9px 0; overflow: hidden; white-space: nowrap; }
.st-ticker-inner { display: inline-flex; animation: stTick 30s linear infinite; }
@keyframes stTick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.st-ti { color: white; font-size: 12px; font-weight: 700; letter-spacing: 0.5px; padding: 0 28px; }
.st-ti::after { content: '★'; margin-left: 28px; opacity: 0.4; }

/* ── SECTIONS ── */
.st-sec { padding: 70px 40px; }
.st-sec-hd { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; }
.st-sec-sub { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.st-sec-title { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 900; color: var(--navy); line-height: 1.1; }
.st-sec-title span { color: var(--red); }
.st-see-all { font-size: 13px; font-weight: 700; color: var(--red); text-decoration: none; border-bottom: 2px solid var(--red); padding-bottom: 2px; }

/* ── CATEGORIES ── */
.st-cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.st-cat {
  border-radius: 12px;
  padding: 26px 20px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.st-cat:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.st-cat.r { background: linear-gradient(135deg,#E63946,#c1121f); }
.st-cat.b { background: linear-gradient(135deg,#1D3557,#0A1628); }
.st-cat.y { background: linear-gradient(135deg,#FFD23F,#f4a100); }
.st-cat.c { background: linear-gradient(135deg,#06D6A0,#048A64); }
.st-cat.o { background: linear-gradient(135deg,#FF6B35,#d4440f); }
.st-cat.p { background: linear-gradient(135deg,#7B2FBE,#4A0E8F); }
.st-cat.pk { background: linear-gradient(135deg,#E91E8C,#a01060); }
.st-cat.g { background: linear-gradient(135deg,#2D6A4F,#1B4332); }
.st-cat-em { font-size: 32px; margin-bottom: 12px; display: block; }
.st-cat-nm { font-size: 17px; font-weight: 700; color: white; margin-bottom: 4px; }
.st-cat.y .st-cat-nm { color: var(--navy); }
.st-cat-ct { font-size: 12px; color: rgba(255,255,255,0.65); }
.st-cat.y .st-cat-ct { color: rgba(0,0,0,0.55); }
.st-cat-bg { position: absolute; bottom: -8px; right: -6px; font-family: 'Bebas Neue', sans-serif; font-size: 72px; color: rgba(255,255,255,0.07); pointer-events: none; }

/* ── ARTICLES ── */
.st-art-sec { background: var(--gray); padding: 70px 40px; }
.st-art-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 20px; }
.st-ac {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
}
.st-ac:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.09); }
.st-ac.feat { grid-row: 1/3; }
.st-aimg { width: 100%; display: flex; align-items: center; justify-content: center; font-size: 44px; aspect-ratio: 16/9; }
.st-ac.feat .st-aimg { aspect-ratio: 4/3; font-size: 68px; }
.st-ab { padding: 18px; }
.st-ac.feat .st-ab { padding: 24px; }
.st-atitle { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
.st-ac.feat .st-atitle { font-size: 26px; }
.st-ameta { display: flex; gap: 10px; font-size: 11px; color: #aaa; }

/* ── TRENDING ── */
.st-trend-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.st-ti2 {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: white;
  border: 1px solid #eee;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.st-ti2:hover { border-color: var(--red); box-shadow: 0 4px 20px rgba(230,57,70,0.1); transform: translateX(4px); }
.st-tnum { font-family: 'Bebas Neue', sans-serif; font-size: 36px; color: #eee; line-height: 1; min-width: 40px; }
.st-ti2:hover .st-tnum { color: var(--red); }
.st-tw { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.st-td { font-size: 12px; color: var(--muted); line-height: 1.5; }
.st-tarr { font-size: 18px; color: #ddd; }
.st-ti2:hover .st-tarr { color: var(--red); }

/* ── COMPARE ── */
.st-cmp { background: var(--navy); padding: 70px 40px; }
.st-cmp-title { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 900; color: white; text-align: center; margin-bottom: 6px; }
.st-cmp-title span { color: var(--yellow); }
.st-cmp-sub { text-align: center; font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 36px; }
.st-cmp-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.st-ccol { background: rgba(255,255,255,0.06); border-radius: 14px; padding: 28px; }
.st-ccol.uk { border: 2px solid #012169; }
.st-ccol.us { border: 2px solid var(--red); }
.st-chead { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.st-cflag { font-size: 28px; }
.st-ccountry { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: white; letter-spacing: 1px; }
.st-citem { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.st-citem:last-child { border: none; }
.st-cword { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: white; }
.st-cmean { font-size: 12px; color: rgba(255,255,255,0.45); }
.st-vsdiv { padding: 0 22px; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.st-vsline { width: 1px; flex: 1; background: rgba(255,255,255,0.1); }
.st-vsbadge { background: var(--yellow); color: var(--navy); font-family: 'Bebas Neue', sans-serif; font-size: 20px; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ── NEWSLETTER ── */
.st-nl { background: linear-gradient(135deg,var(--red),var(--orange)); padding: 70px 40px; text-align: center; }
.st-nl h2 { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 900; color: white; margin-bottom: 12px; }
.st-nl p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.st-nl-form { display: flex; max-width: 440px; margin: 0 auto; }
.st-nl-form input { flex: 1; padding: 15px 20px; font-size: 14px; font-family: 'DM Sans', sans-serif; border: none; border-radius: 8px 0 0 8px; outline: none; }
.st-nl-form button { padding: 15px 26px; background: var(--navy); color: white; font-size: 14px; font-weight: 700; border: none; border-radius: 0 8px 8px 0; cursor: pointer; font-family: 'DM Sans', sans-serif; }

/* ── FOOTER ── */
.st-footer { background: var(--navy); padding: 56px 40px 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.st-fg { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.st-fdesc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 240px; margin-top: 10px; }
.st-fh { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
.st-fcol a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; margin-bottom: 9px; transition: color 0.2s; }
.st-fcol a:hover { color: white; }
.st-fbot { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; }
.st-fcopy { font-size: 12px; color: rgba(255,255,255,0.3); }

/* ── SINGLE WORD PAGE ── */
.st-word-hero { background: var(--navy); padding: 60px 40px; }
.st-word-hero h1 { font-family: 'Playfair Display', serif !important; font-size: 72px !important; font-weight: 900 !important; color: white !important; margin-bottom: 10px !important; }
.st-word-content { max-width: 800px; margin: 0 auto; padding: 50px 40px; }
.st-word-content h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--navy); margin: 36px 0 14px; }
.st-word-content p { font-size: 16px; line-height: 1.8; color: #444; margin-bottom: 18px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .st-hero { grid-template-columns: 1fr; padding: 40px 20px 0; }
  .st-hero h1 { font-size: 38px !important; }
  .st-hero-right { display: none; }
  .st-cat-grid { grid-template-columns: repeat(2,1fr); }
  .st-art-grid { grid-template-columns: 1fr; }
  .st-ac.feat { grid-row: auto; }
  .st-trend-grid { grid-template-columns: 1fr; }
  .st-cmp-grid { grid-template-columns: 1fr; }
  .st-vsdiv { display: none; }
  .st-fg { grid-template-columns: 1fr 1fr; }
  .st-nav { padding: 0 20px; }
  .st-nav-links { display: none; }
  .st-sec { padding: 50px 20px; }
}

/* ══════════════════════════════════
   BUG FIXES - Text Visibility
   ══════════════════════════════════ */

/* Category cards - force white text */
.st-cat-nm,
.st-cat .st-cat-nm {
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  margin-bottom: 4px !important;
}
.st-cat-ct,
.st-cat .st-cat-ct {
  color: rgba(255,255,255,0.75) !important;
  font-size: 12px !important;
}
.st-cat.y .st-cat-nm { color: #0A1628 !important; }
.st-cat.y .st-cat-ct { color: rgba(0,0,0,0.6) !important; }
.st-cat-em { font-size: 32px !important; margin-bottom: 12px !important; display: block !important; }
.st-cat-bg {
  position: absolute !important;
  bottom: -8px !important;
  right: -6px !important;
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 70px !important;
  color: rgba(255,255,255,0.08) !important;
  pointer-events: none !important;
  line-height: 1 !important;
}

/* Article cards - force dark text on white */
.st-ac { background: #ffffff !important; }
.st-atitle,
.st-ac .st-atitle {
  color: #0A1628 !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  margin-bottom: 10px !important;
}
.st-ac.feat .st-atitle { font-size: 24px !important; }
.st-ameta,
.st-ac .st-ameta {
  font-size: 11px !important;
  color: #999999 !important;
  display: flex !important;
  gap: 10px !important;
}
.st-ab { padding: 18px !important; }
.st-ac.feat .st-ab { padding: 24px !important; }

/* Tags */
.st-tag { padding: 3px 9px !important; border-radius: 3px !important; font-size: 11px !important; font-weight: 700 !important; display: inline-block !important; margin-bottom: 8px !important; }
.st-tag-uk { background: #EEF0FF !important; color: #3D52D5 !important; }
.st-tag-us { background: #FFF0EE !important; color: #E63946 !important; }
.st-tag-tr { background: #EDFFF7 !important; color: #00916E !important; }
.st-tag-sl { background: #FFF8EE !important; color: #FF6B35 !important; }

/* Trending section */
.st-ti2 { background: #ffffff !important; border: 1px solid #eeeeee !important; }
.st-tw,
.st-ti2 .st-tw {
  font-family: 'Playfair Display', serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #0A1628 !important;
  margin-bottom: 3px !important;
}
.st-td,
.st-ti2 .st-td {
  font-size: 12px !important;
  color: #6c757d !important;
  line-height: 1.5 !important;
}
.st-tnum { font-family: 'Bebas Neue', sans-serif !important; font-size: 36px !important; color: #eeeeee !important; line-height: 1 !important; min-width: 40px !important; }
.st-ti2:hover .st-tnum { color: #E63946 !important; }
.st-tarr { font-size: 18px !important; color: #dddddd !important; }
.st-ti2:hover .st-tarr { color: #E63946 !important; }

/* Compare section */
.st-cmp { background: #0A1628 !important; }
.st-cmp-title { color: #ffffff !important; font-family: 'Playfair Display', serif !important; font-size: 38px !important; font-weight: 900 !important; text-align: center !important; margin-bottom: 6px !important; }
.st-cmp-title span { color: #FFD23F !important; }
.st-cmp-sub { color: rgba(255,255,255,0.45) !important; text-align: center !important; font-size: 11px !important; text-transform: uppercase !important; letter-spacing: 1.5px !important; margin-bottom: 36px !important; display: block !important; }
.st-ccol { background: rgba(255,255,255,0.07) !important; border-radius: 14px !important; padding: 28px !important; }
.st-ccol.uk { border: 2px solid #012169 !important; }
.st-ccol.us { border: 2px solid #E63946 !important; }
.st-chead { display: flex !important; align-items: center !important; gap: 10px !important; margin-bottom: 22px !important; padding-bottom: 18px !important; border-bottom: 1px solid rgba(255,255,255,0.12) !important; }
.st-cflag { font-size: 28px !important; }
.st-ccountry { font-family: 'Bebas Neue', sans-serif !important; font-size: 26px !important; color: #ffffff !important; letter-spacing: 1px !important; }
.st-citem { display: flex !important; justify-content: space-between !important; align-items: center !important; padding: 12px 0 !important; border-bottom: 1px solid rgba(255,255,255,0.07) !important; }
.st-citem:last-child { border: none !important; }
.st-cword { font-family: 'Playfair Display', serif !important; font-size: 16px !important; font-weight: 700 !important; color: #ffffff !important; }
.st-cmean { font-size: 12px !important; color: rgba(255,255,255,0.5) !important; }
.st-vsdiv { padding: 0 22px !important; display: flex !important; flex-direction: column !important; align-items: center !important; gap: 28px !important; }
.st-vsline { width: 1px !important; height: 80px !important; background: rgba(255,255,255,0.12) !important; }
.st-vsbadge { background: #FFD23F !important; color: #0A1628 !important; font-family: 'Bebas Neue', sans-serif !important; font-size: 20px !important; width: 48px !important; height: 48px !important; border-radius: 50% !important; display: flex !important; align-items: center !important; justify-content: center !important; }

/* Newsletter */
.st-nl h2 { color: #ffffff !important; font-family: 'Playfair Display', serif !important; font-size: 42px !important; font-weight: 900 !important; margin-bottom: 12px !important; }
.st-nl p { color: rgba(255,255,255,0.88) !important; font-size: 16px !important; margin-bottom: 30px !important; }
.st-nl-form input { color: #1a1a2e !important; }
.st-nl-form button { color: #ffffff !important; background: #0A1628 !important; }

/* Footer */
.st-footer { background: #0A1628 !important; }
.st-logo { color: #ffffff !important; font-family: 'Bebas Neue', sans-serif !important; font-size: 28px !important; letter-spacing: 2px !important; text-decoration: none !important; display: block !important; margin-bottom: 10px !important; }
.st-logo span { color: #FFD23F !important; }
.st-fdesc { color: rgba(255,255,255,0.5) !important; font-size: 13px !important; line-height: 1.7 !important; }
.st-fh { color: #FFD23F !important; font-size: 11px !important; font-weight: 700 !important; letter-spacing: 1.5px !important; text-transform: uppercase !important; margin-bottom: 16px !important; display: block !important; }
.st-fcol a { color: rgba(255,255,255,0.55) !important; font-size: 13px !important; text-decoration: none !important; display: block !important; margin-bottom: 9px !important; }
.st-fcol a:hover { color: #ffffff !important; }
.st-fbot { border-top: 1px solid rgba(255,255,255,0.1) !important; padding-top: 22px !important; display: flex !important; justify-content: space-between !important; align-items: center !important; }
.st-fcopy { color: rgba(255,255,255,0.35) !important; font-size: 12px !important; }

/* Section titles & headers */
.st-sec-title { color: #0A1628 !important; font-family: 'Playfair Display', serif !important; font-size: 36px !important; font-weight: 900 !important; }
.st-sec-title span { color: #E63946 !important; }
.st-sec-sub { color: #E63946 !important; font-size: 12px !important; font-weight: 700 !important; letter-spacing: 2px !important; text-transform: uppercase !important; margin-bottom: 6px !important; display: block !important; }
.st-see-all { color: #E63946 !important; font-size: 13px !important; font-weight: 700 !important; text-decoration: none !important; border-bottom: 2px solid #E63946 !important; padding-bottom: 2px !important; }

/* Gray background sections */
.st-art-sec { background: #F8F9FA !important; }
.st-art-sec .st-sec-title { color: #0A1628 !important; }


/* ══════════════════════════════════
   FULL WIDTH + LAYOUT FIXES
   ══════════════════════════════════ */

/* Remove ALL Astra containers/margins/padding */
.ast-container,
.ast-narrow-container,
.container,
.site-content,
.content-area,
#primary,
#content,
.ast-article-post,
.entry-content,
.post-content,
.page-content,
.ast-grid-right-col,
.ast-grid-left-col,
.widget-area,
#secondary,
.ast-advertise-widget,
.sidebar-main {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

/* Hide sidebar completely */
#secondary,
.widget-area,
.sidebar-main,
.ast-grid-right-col {
  display: none !important;
}

/* Full width layout */
#main,
.ast-article-single,
.ast-article-post {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Astra page wrapper full width */
.ast-page-builder-template .entry-content,
.page-template-default .entry-content,
.hfb-header,
.hfb-site-header-wrap {
  max-width: 100% !important;
  padding: 0 !important;
}

/* Hide default WP/Astra header & footer */
#masthead,
.site-header,
.ast-masthead-custom-menu,
.main-header-bar,
.ast-main-header-wrap,
.site-footer,
#colophon,
.footer-widget-area,
.ast-small-footer,
.ast-site-footer-wrap {
  display: none !important;
}

/* Hero section - full width, no overflow */
.st-hero {
  width: 100% !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

/* ALL sections full width */
.st-nav,
.st-hero,
.st-ticker,
.st-sec,
.st-art-sec,
.st-cmp,
.st-nl,
.st-footer {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow-x: hidden !important;
}

/* Category grid fix */
.st-cat-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 18px !important;
  width: 100% !important;
}

/* Article grid fix */
.st-art-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr !important;
  grid-template-rows: auto auto !important;
  gap: 20px !important;
  width: 100% !important;
}

/* Trending grid fix */
.st-trend-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  width: 100% !important;
}

/* Compare grid fix */
.st-cmp-grid {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  gap: 0 !important;
  align-items: stretch !important;
  width: 100% !important;
}

/* Footer grid fix */
.st-fg {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1fr !important;
  gap: 44px !important;
  width: 100% !important;
}

/* Body & html overflow fix */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
}

/* Astra body padding */
body.ast-page-builder-template {
  padding: 0 !important;
}

/* Page builder full stretch */
.elementor-section-stretch,
.wp-block-group {
  max-width: 100% !important;
}

/* Admin bar compensation */
body.admin-bar .st-nav {
  top: 32px !important;
}

