/* ============================================================
   forsazh.com — Production Stylesheet
   Premium Bilingual News Platform — Kazakhstan
   ============================================================ */

/* 1. GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@700;800&family=Inter:wght@400;500;600&display=swap');

/* 2. CSS VARIABLES */
:root {
  --deep-graphite: #111827;
  --news-navy: #1D4E89;
  --electric-blue: #3B82F6;
  --warm-amber: #F59E0B;
  --soft-slate: #E5E7EB;
  --white: #FFFFFF;
  --muted-gray: #4B5563;
  --light-bg: #F9FAFB;
  --border-color: #D1D5DB;
  --success: #10B981;
  --error: #EF4444;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.14), 0 4px 14px rgba(0,0,0,0.08);
  --shadow-blue: 0 8px 32px rgba(59,130,246,0.22);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.24s cubic-bezier(0.4,0,0.2,1);
  --header-height: 72px;
  --topbar-height: 36px;
}

/* 3. LANGUAGE SYSTEM */
.lang-kk { display: none; }
html.kk .lang-ru { display: none !important; }
html.ru .lang-kk { display: none !important; }
html.kk .lang-kk { display: inline; }
html.kk .lang-kk.block { display: block; }
html.kk .lang-kk.flex { display: flex; }

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

/* 5. LAYOUT UTILITIES */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 100px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* 6. TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.22; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { line-height: 1.75; }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.35rem; }
.text-muted { color: var(--muted-gray); }
.text-amber { color: var(--warm-amber); }
.text-blue { color: var(--electric-blue); }
.text-navy { color: var(--news-navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.font-700 { font-weight: 700; }
.font-800 { font-family: var(--font-heading); font-weight: 800; }

/* 7. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--electric-blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(59,130,246,0.3);
}
.btn-primary:hover {
  background: #2563EB;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,130,246,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--electric-blue);
  border: 2px solid var(--electric-blue);
}
.btn-secondary:hover {
  background: var(--electric-blue);
  color: var(--white);
}
.btn-amber {
  background: var(--warm-amber);
  color: var(--deep-graphite);
  font-weight: 700;
}
.btn-amber:hover {
  background: #D97706;
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--news-navy);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--soft-slate);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
}
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ============================================================
   8. TOP BAR
   ============================================================ */
.top-bar {
  background: var(--deep-graphite);
  color: rgba(255,255,255,0.72);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  position: sticky;
  top: 0;
  z-index: 1001;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-date { color: rgba(255,255,255,0.5); letter-spacing: 0.02em; }
.top-bar-contacts { display: flex; align-items: center; gap: 20px; }
.top-bar-contacts a {
  color: rgba(255,255,255,0.72);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}
.top-bar-contacts a:hover { color: var(--warm-amber); }

/* ============================================================
   9. HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: sticky;
  top: var(--topbar-height);
  z-index: 1000;
  border-bottom: 1px solid var(--soft-slate);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--news-navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--electric-blue); }
.logo-sub {
  font-size: 0.67rem;
  color: var(--muted-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted-gray);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-link:hover { color: var(--news-navy); background: var(--light-bg); }
.nav-link.active { color: var(--electric-blue); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--electric-blue);
  border-radius: 2px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.search-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-gray);
  transition: all var(--transition);
  background: transparent;
}
.search-btn:hover { background: var(--light-bg); color: var(--news-navy); }
.search-btn svg { width: 18px; height: 18px; }

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--soft-slate);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted-gray);
  transition: all var(--transition);
  letter-spacing: 0.04em;
}
.lang-btn.active {
  background: var(--news-navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.lang-btn:hover:not(.active) { color: var(--news-navy); }

/* CTA Button */
.header-cta {
  background: var(--electric-blue);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}
.header-cta:hover { background: #2563EB; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px; height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--light-bg); }
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--deep-graphite);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--topbar-height) + var(--header-height));
  left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 999;
  padding: 20px 24px 32px;
  border-top: 2px solid var(--electric-blue);
}
.mobile-nav.open { display: block; }
.mobile-nav .nav-link {
  display: block;
  padding: 13px 0;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--soft-slate);
  border-radius: 0;
}
.mobile-nav .nav-link:last-child { border-bottom: none; }

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17,24,39,0.92);
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.search-overlay-inner {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}
.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px 24px;
  font-size: 1.15rem;
  color: var(--deep-graphite);
}
.search-input-wrap button {
  padding: 18px 24px;
  background: var(--electric-blue);
  color: var(--white);
  font-size: 1rem;
}
.search-close {
  position: absolute;
  top: 20px; right: 24px;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.search-close:hover { color: var(--white); }

/* ============================================================
   10. HERO VARIANTS
   ============================================================ */

/* Hero Full */
.hero-full {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-full .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-full .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,24,39,0.82) 0%, rgba(29,78,137,0.68) 60%, rgba(17,24,39,0.50) 100%);
  z-index: 1;
}
.hero-full .hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--warm-amber);
  color: var(--deep-graphite);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero-full h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.14;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-full p {
  font-size: 1.15rem;
  opacity: 0.88;
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.65;
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-chip {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  transition: all var(--transition);
  cursor: pointer;
}
.hero-chip:hover { background: var(--electric-blue); border-color: var(--electric-blue); }

/* Hero Split */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 72vh;
}
.hero-split-content {
  background: var(--deep-graphite);
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 80px 64px;
}
.hero-split-image {
  position: relative;
  overflow: hidden;
}
.hero-split-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-split h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
  line-height: 1.18;
}
.hero-split p {
  font-size: 1.05rem;
  opacity: 0.82;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Hero Editorial */
.hero-editorial {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 0;
}
.hero-editorial-main {
  position: relative;
  overflow: hidden;
  min-height: 540px;
}
.hero-editorial-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17,24,39,0.88) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}
.hero-editorial-sidebar {
  background: var(--light-bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-editorial-sidebar-item {
  padding: 28px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: background var(--transition);
}
.hero-editorial-sidebar-item:last-child { border-bottom: none; }
.hero-editorial-sidebar-item:hover { background: var(--soft-slate); }
.hero-editorial-sidebar-item h4 {
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--deep-graphite);
  margin-bottom: 6px;
}
.hero-editorial-sidebar-item .meta { font-size: 0.75rem; color: var(--muted-gray); }

/* Hero Minimal */
.hero-minimal {
  position: relative;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-minimal img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-minimal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17,24,39,0.85) 0%, rgba(17,24,39,0.4) 100%);
}
.hero-minimal-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.hero-minimal h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 12px;
}

/* ============================================================
   11. ARTICLE CARDS
   ============================================================ */
.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(59,130,246,0.12);
}
.article-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.article-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card:hover .article-card-image img { transform: scale(1.04); }
.article-card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.category-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.chip-amber { background: rgba(245,158,11,0.12); color: #B45309; }
.chip-blue { background: rgba(59,130,246,0.12); color: #1D4ED8; }
.chip-navy { background: rgba(29,78,137,0.10); color: var(--news-navy); }
.chip-green { background: rgba(16,185,129,0.10); color: #065F46; }
.article-card h3 {
  font-size: 1.02rem;
  line-height: 1.38;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--deep-graphite);
  transition: color var(--transition);
}
.article-card:hover h3 { color: var(--electric-blue); }
.article-card p {
  font-size: 0.86rem;
  color: var(--muted-gray);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--muted-gray);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--soft-slate);
}
.article-meta-left { display: flex; align-items: center; gap: 12px; }
.read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--electric-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.read-more:hover { gap: 8px; }
.read-more svg { width: 14px; height: 14px; }

/* Large Featured Card */
.featured-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}
.featured-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-card:hover img { transform: scale(1.03); }
.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17,24,39,0.90) 0%, rgba(17,24,39,0.4) 50%, transparent 100%);
}
.featured-card-content {
  position: relative;
  z-index: 2;
  padding: 32px 28px 28px;
  color: var(--white);
}
.featured-card h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}
.featured-card p {
  font-size: 0.9rem;
  opacity: 0.82;
  margin-bottom: 16px;
  line-height: 1.6;
}
.featured-card .article-meta { border-top: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.68); }

/* Horizontal / Editor Card */
.editor-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  padding: 0;
}
.editor-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.editor-card-image {
  width: 140px;
  flex-shrink: 0;
  overflow: hidden;
}
.editor-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.editor-card:hover .editor-card-image img { transform: scale(1.05); }
.editor-card-body {
  padding: 18px 20px 18px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.editor-card h3 { font-size: 0.96rem; line-height: 1.4; font-weight: 700; margin-bottom: 8px; }
.editor-card:hover h3 { color: var(--electric-blue); }

/* ============================================================
   12. SECTION HEADERS
   ============================================================ */
.section-header {
  margin-bottom: 40px;
  position: relative;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 8px;
}
.section-header p { color: var(--muted-gray); font-size: 1rem; max-width: 540px; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--electric-blue);
  margin-bottom: 10px;
}
.section-divider {
  width: 48px; height: 4px;
  background: var(--electric-blue);
  border-radius: 2px;
  margin-top: 14px;
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

/* ============================================================
   13. TICKER / MARQUEE
   ============================================================ */
.ticker-strip {
  background: var(--warm-amber);
  overflow: hidden;
  padding: 0;
  height: 48px;
  display: flex;
  align-items: center;
}
.ticker-label {
  background: var(--deep-graphite);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track-wrap {
  overflow: hidden;
  flex: 1;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 45s linear infinite;
  white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-graphite);
  padding: 0 40px;
  white-space: nowrap;
}
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--deep-graphite); opacity: 0.4; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   14. CATEGORIES SECTION
   ============================================================ */
.category-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.category-block img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-block:hover img { transform: scale(1.05); }
.category-block-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17,24,39,0.88) 0%, rgba(17,24,39,0.3) 60%, transparent 100%);
}
.category-block-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: var(--white);
}
.category-block-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.category-block h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 8px; }
.category-block p { font-size: 0.88rem; opacity: 0.8; line-height: 1.6; margin-bottom: 16px; }
.category-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--warm-amber);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.category-link:hover { gap: 10px; }

/* ============================================================
   15. STATS BAND
   ============================================================ */
.stats-band {
  background: var(--deep-graphite);
  padding: 64px 0;
  color: var(--white);
}
.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item { padding: 0 20px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--warm-amber);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; opacity: 0.72; line-height: 1.5; }

/* Quote Block */
.pull-quote-band {
  background: var(--news-navy);
  padding: 64px 0;
  color: var(--white);
}
.pull-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pull-quote-item { padding: 24px; text-align: center; }
.pull-quote-item blockquote {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  opacity: 0.9;
  position: relative;
  padding-top: 20px;
}
.pull-quote-item blockquote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--warm-amber);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

/* ============================================================
   16. FILTER CHIPS
   ============================================================ */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-chip {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 600;
  background: var(--soft-slate);
  color: var(--muted-gray);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.filter-chip:hover { background: var(--soft-slate); color: var(--news-navy); border-color: var(--news-navy); }
.filter-chip.active { background: var(--electric-blue); color: var(--white); border-color: var(--electric-blue); }

/* ============================================================
   17. TAB SWITCHER
   ============================================================ */
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--soft-slate);
  margin-bottom: 36px;
}
.tab-btn {
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-gray);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  background: transparent;
  border-left: none; border-right: none; border-top: none;
}
.tab-btn:hover { color: var(--electric-blue); }
.tab-btn.active { color: var(--electric-blue); border-bottom-color: var(--electric-blue); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============================================================
   18. FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--soft-slate);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--soft-slate); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  gap: 20px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--electric-blue); }
.faq-question span {
  font-weight: 600;
  font-size: 1.0rem;
  line-height: 1.4;
  flex: 1;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--soft-slate);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--electric-blue);
  transform: rotate(45deg);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--muted-gray); }
.faq-item.open .faq-icon svg { color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}
.faq-answer-inner {
  padding: 0 0 22px;
  color: var(--muted-gray);
  font-size: 0.94rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* FAQ Search */
.faq-search-wrap {
  max-width: 520px;
  margin: 0 auto 48px;
  position: relative;
}
.faq-search {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}
.faq-search:focus { border-color: var(--electric-blue); }
.faq-search-icon {
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted-gray);
}
.faq-search-icon svg { width: 18px; height: 18px; }

/* ============================================================
   19. BREADCRUMBS
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted-gray);
  padding: 16px 0;
}
.breadcrumb a { color: var(--muted-gray); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--electric-blue); }
.breadcrumb-sep { color: var(--border-color); }
.breadcrumb span { color: var(--deep-graphite); font-weight: 500; }

/* ============================================================
   20. CONTACT FORM
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--deep-graphite);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--deep-graphite);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { border-color: var(--electric-blue); box-shadow: 0 0 0 3px rgba(59,130,246,0.12); }
.form-control.error { border-color: var(--error); }
.form-control.error:focus { box-shadow: 0 0 0 3px rgba(239,68,68,0.12); }
.form-control::placeholder { color: var(--border-color); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; }
.form-error {
  display: none;
  font-size: 0.78rem;
  color: var(--error);
  margin-top: 4px;
}
.form-error.show { display: block; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-check input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; width: 18px; height: 18px; cursor: pointer; accent-color: var(--electric-blue); }
.form-check label { font-size: 0.87rem; color: var(--muted-gray); line-height: 1.5; }
.form-check label a { color: var(--electric-blue); text-decoration: underline; }

/* ============================================================
   21. CONTACT CARDS
   ============================================================ */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--soft-slate);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-card-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(59,130,246,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}
.contact-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: 0.92rem; color: var(--muted-gray); line-height: 1.6; }
.contact-card a:hover { color: var(--electric-blue); }

/* ============================================================
   22. MAP EMBED
   ============================================================ */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-wrap iframe { display: block; width: 100%; border: none; }

/* ============================================================
   23. ARTICLE PAGE STYLES
   ============================================================ */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.article-body { min-width: 0; }
.article-header { margin-bottom: 32px; }
.article-header h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.18; margin-bottom: 16px; }
.article-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--soft-slate);
  border-bottom: 1px solid var(--soft-slate);
  font-size: 0.85rem;
  color: var(--muted-gray);
  flex-wrap: wrap;
}
.article-author { font-weight: 600; color: var(--deep-graphite); }
.article-content h2 { font-size: 1.5rem; font-weight: 800; margin: 36px 0 16px; color: var(--deep-graphite); }
.article-content h3 { font-size: 1.2rem; font-weight: 700; margin: 28px 0 12px; color: var(--deep-graphite); }
.article-content p { font-size: 1.0rem; line-height: 1.8; margin-bottom: 20px; color: #374151; }
.article-content ul, .article-content ol { margin: 0 0 20px 24px; }
.article-content li { font-size: 1.0rem; line-height: 1.75; margin-bottom: 6px; color: #374151; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-pull-quote {
  background: var(--light-bg);
  border-left: 4px solid var(--electric-blue);
  padding: 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
}
.article-pull-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--news-navy);
  line-height: 1.5;
  font-style: italic;
}
.article-pull-quote-alt {
  background: var(--deep-graphite);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  margin: 32px 0;
  text-align: center;
}
.article-pull-quote-alt blockquote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  font-style: italic;
  color: var(--warm-amber);
}
.article-inline-image { margin: 32px 0; border-radius: var(--radius-md); overflow: hidden; }
.article-inline-image img { width: 100%; }
.article-inline-image figcaption { font-size: 0.8rem; color: var(--muted-gray); padding: 8px 12px; background: var(--light-bg); }

/* Share Buttons */
.share-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--soft-slate);
  border-bottom: 1px solid var(--soft-slate);
  margin: 32px 0;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}
.share-telegram { background: #229ED9; color: white; }
.share-telegram:hover { background: #1A8CBF; }
.share-twitter { background: #1DA1F2; color: white; }
.share-twitter:hover { background: #0D8ED9; }
.share-copy { background: var(--soft-slate); color: var(--deep-graphite); }
.share-copy:hover { background: var(--border-color); }

/* Sidebar */
.article-sidebar { position: sticky; top: calc(var(--topbar-height) + var(--header-height) + 20px); }
.sidebar-widget {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--soft-slate);
}
.sidebar-widget h4 { font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; color: var(--deep-graphite); }
.sidebar-related-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}
.sidebar-related-item:last-child { border-bottom: none; }
.sidebar-related-item img { width: 68px; height: 52px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.sidebar-related-item p { font-size: 0.83rem; line-height: 1.4; font-weight: 600; color: var(--deep-graphite); }
.sidebar-related-item p:hover { color: var(--electric-blue); }

/* ============================================================
   24. NEWSLETTER BLOCK
   ============================================================ */
.newsletter-block {
  background: linear-gradient(135deg, var(--news-navy), #2563EB);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 48px;
}
.newsletter-content { flex: 1; }
.newsletter-content h2 { font-size: 1.7rem; margin-bottom: 10px; }
.newsletter-content p { opacity: 0.82; font-size: 1.0rem; }
.newsletter-form { flex: 1; display: flex; gap: 12px; }
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border-radius: var(--radius-md);
  border: none;
  outline: none;
  font-size: 0.92rem;
}
.newsletter-form button { flex-shrink: 0; }

/* ============================================================
   25. QUICK READS
   ============================================================ */
.quick-reads { display: flex; flex-direction: column; gap: 0; }
.quick-read-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--soft-slate);
  transition: transform var(--transition);
}
.quick-read-item:first-child { border-top: 1px solid var(--soft-slate); }
.quick-read-item:hover { transform: translateX(4px); }
.quick-read-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--soft-slate);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}
.quick-read-content { flex: 1; }
.quick-read-content h4 { font-size: 0.96rem; font-weight: 700; margin-bottom: 4px; line-height: 1.4; }
.quick-read-content h4:hover { color: var(--electric-blue); cursor: pointer; }
.quick-read-content span { font-size: 0.78rem; color: var(--muted-gray); }
.quick-read-time {
  font-size: 0.78rem;
  color: var(--muted-gray);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* ============================================================
   26. DAILY TOPICS STRIP
   ============================================================ */
.topics-strip {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topic-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--deep-graphite);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.topic-chip:hover { background: var(--electric-blue); color: var(--white); transform: translateY(-2px); }
.topic-chip-icon { font-size: 1.1rem; }

/* ============================================================
   27. MASONRY GRID
   ============================================================ */
.masonry-grid {
  columns: 3;
  column-gap: 24px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 24px;
}

/* ============================================================
   28. CITY GUIDE CARDS
   ============================================================ */
.city-guide-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.city-guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.city-guide-card img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s ease; }
.city-guide-card:hover img { transform: scale(1.04); }
.city-guide-card-body {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--soft-slate);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.city-guide-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.city-guide-card p { font-size: 0.85rem; color: var(--muted-gray); line-height: 1.6; }

/* ============================================================
   29. PRIVACY / LEGAL CONTENT
   ============================================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--soft-slate);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 { font-size: 1.3rem; font-weight: 800; margin-bottom: 14px; color: var(--news-navy); }
.legal-section h3 { font-size: 1.05rem; font-weight: 700; margin: 20px 0 10px; }
.legal-section p { font-size: 0.94rem; line-height: 1.8; color: #374151; margin-bottom: 14px; }
.legal-section ul { margin: 0 0 16px 20px; list-style: disc; }
.legal-section li { font-size: 0.94rem; line-height: 1.7; color: #374151; margin-bottom: 6px; }

/* ============================================================
   30. THANK YOU PAGE
   ============================================================ */
.thankyou-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.thankyou-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.thankyou-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,0.76);
}
.thankyou-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 640px;
  padding: 40px 24px;
}
.checkmark-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(16,185,129,0.15);
  border: 3px solid var(--success);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}
.thankyou-hero-content h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 16px; }
.thankyou-hero-content p { font-size: 1.05rem; opacity: 0.85; line-height: 1.65; }
.next-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.next-step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid var(--soft-slate);
}
.next-step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--electric-blue);
  color: var(--white);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.1rem;
}
.next-step h4 { font-size: 0.96rem; font-weight: 700; margin-bottom: 6px; }
.next-step p { font-size: 0.85rem; color: var(--muted-gray); line-height: 1.6; }

/* ============================================================
   31. FEATURED READING BLOCK
   ============================================================ */
.featured-reading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.featured-reading-image { position: relative; min-height: 460px; }
.featured-reading-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured-reading-content {
  background: var(--deep-graphite);
  color: var(--white);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-reading-content h2 { font-size: 1.7rem; margin-bottom: 16px; line-height: 1.28; }
.featured-reading-content p { opacity: 0.82; line-height: 1.75; margin-bottom: 28px; font-size: 0.96rem; }

/* ============================================================
   32. EDITORIAL STANDARDS BLOCK
   ============================================================ */
.editorial-standards {
  background: linear-gradient(135deg, var(--light-bg), var(--soft-slate));
  border-radius: var(--radius-xl);
  padding: 56px;
  border: 1px solid var(--border-color);
}
.editorial-standards h2 { font-size: 1.6rem; margin-bottom: 16px; }
.standards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 32px; }
.standard-item { padding: 20px; }
.standard-icon { font-size: 1.8rem; margin-bottom: 12px; }
.standard-item h4 { font-size: 0.96rem; font-weight: 700; margin-bottom: 6px; }
.standard-item p { font-size: 0.85rem; color: var(--muted-gray); line-height: 1.65; }

/* ============================================================
   33. COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: var(--deep-graphite);
  color: var(--white);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  border-top: 3px solid var(--electric-blue);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; font-size: 0.88rem; line-height: 1.6; opacity: 0.88; min-width: 200px; }
.cookie-text a { color: var(--warm-amber); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0; }
.cookie-accept { background: var(--electric-blue); color: var(--white); padding: 10px 22px; border-radius: var(--radius-md); font-size: 0.88rem; font-weight: 600; transition: background var(--transition); }
.cookie-accept:hover { background: #2563EB; }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.6); padding: 10px 16px; border-radius: var(--radius-md); font-size: 0.88rem; transition: color var(--transition); }
.cookie-decline:hover { color: var(--white); }
.cookie-learn { background: transparent; color: var(--warm-amber); padding: 10px 16px; border-radius: var(--radius-md); font-size: 0.88rem; text-decoration: underline; }

/* ============================================================
   34. FOOTER
   ============================================================ */
.site-footer {
  background: var(--deep-graphite);
  color: var(--white);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { color: var(--warm-amber); font-size: 1.4rem; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.45); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.60); line-height: 1.72; margin: 16px 0 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 700;
  transition: all var(--transition);
}
.social-link:hover { background: var(--electric-blue); color: var(--white); }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--warm-amber); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact-item span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item span:last-child { font-size: 0.88rem; color: rgba(255,255,255,0.68); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.68); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--warm-amber); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.38); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--warm-amber); }

/* ============================================================
   35. ANIMATION / FADE-IN
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   36. MISC UTILITIES
   ============================================================ */
.highlight-band {
  background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(29,78,137,0.05));
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid rgba(59,130,246,0.12);
}
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tag {
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.76rem;
  font-weight: 600;
  background: var(--soft-slate);
  color: var(--muted-gray);
  transition: all var(--transition);
}
.tag:hover { background: var(--electric-blue); color: var(--white); }
.divider { border: none; border-top: 1px solid var(--soft-slate); margin: 40px 0; }
.bg-light { background: var(--light-bg); }
.bg-graphite { background: var(--deep-graphite); }
.bg-navy { background: var(--news-navy); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-8 { margin-top: 8px; }
.mb-8 { margin-bottom: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.mt-48 { margin-top: 48px; }
.mb-48 { margin-bottom: 48px; }

/* Hours table */
.hours-table { width: 100%; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--soft-slate); font-size: 0.92rem; }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-weight: 600; color: var(--deep-graphite); }
.hours-time { color: var(--muted-gray); }

/* ============================================================
   37. RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .hero-editorial { grid-template-columns: 1fr; }
  .hero-editorial-sidebar { display: none; }
}

@media (max-width: 900px) {
  :root { --header-height: 64px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .hero-full { min-height: 72vh; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-split-image { min-height: 300px; }
  .hero-split-content { padding: 48px 36px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-band-inner { grid-template-columns: 1fr; gap: 28px; }
  .pull-quote-grid { grid-template-columns: 1fr; gap: 20px; }
  .newsletter-block { flex-direction: column; gap: 28px; padding: 36px 28px; }
  .newsletter-form { flex-direction: column; }
  .featured-reading { grid-template-columns: 1fr; }
  .featured-reading-content { padding: 36px 28px; }
  .featured-reading-image { min-height: 300px; }
  .masonry-grid { columns: 2; }
  .next-steps { grid-template-columns: 1fr; }
  .standards-grid { grid-template-columns: 1fr; gap: 20px; }
  .editorial-standards { padding: 36px 28px; }
  .section { padding: 60px 0; }
}

@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .top-bar-contacts { gap: 10px; }
  .top-bar-contacts a:not(:last-child) { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-full { min-height: 100svh; }
  .hero-full h1 { font-size: 1.85rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .masonry-grid { columns: 1; }
  .featured-card { min-height: 380px; }
  .lang-switcher { display: flex; }
  .section { padding: 44px 0; }
  .cookie-banner .container { flex-direction: column; gap: 16px; }
  .hero-split-content { padding: 36px 20px; }
  .tab-btn { padding: 10px 14px; font-size: 0.82rem; }
  .share-buttons { gap: 8px; }
  .article-header h1 { font-size: 1.6rem; }
}

@media (max-width: 400px) {
  .hero-full h1 { font-size: 1.6rem; }
  .hero-chips { flex-direction: column; align-items: flex-start; }
  .filter-chips { gap: 6px; }
  .filter-chip { padding: 6px 12px; font-size: 0.78rem; }
}

/* Print */
@media print {
  .site-header, .site-footer, .cookie-banner, .ticker-strip { display: none; }
  body { color: black; background: white; }
}
