@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,400&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================
   WAJEXOR — CSS Design System
   Palette: Deep Blue + Beige + Gold
   ============================================ */

:root {
  --navy:        #0d2545;
  --navy-mid:    #1a3a6e;
  --navy-light:  #2a5298;
  --gold:        #c9a227;
  --gold-light:  #e8c547;
  --gold-pale:   #f5e9c0;
  --beige:       #f4f0e6;
  --beige-dark:  #e8e0cc;
  --warm-white:  #fdfcf8;
  --text-primary:#1c2a3a;
  --text-muted:  #5a6a7a;
  --text-light:  #8a9aaa;
  --border:      #ddd8cc;
  --border-dark: #c8c0ae;
  --shadow-sm:   0 2px 8px rgba(13,37,69,.08);
  --shadow-md:   0 6px 24px rgba(13,37,69,.12);
  --shadow-lg:   0 12px 40px rgba(13,37,69,.16);
  --radius:      4px;
  --radius-lg:   8px;
  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'Source Serif 4', Georgia, serif;
  --font-ui:     'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--navy-mid); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }

/* ============================================
   UTILITIES
   ============================================ */

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

.section { padding: 72px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 96px 0; }
.section--beige { background: var(--beige); }
.section--navy { background: var(--navy); color: var(--warm-white); }

.divider { height: 1px; background: var(--border); margin: 48px 0; }
.divider--gold { background: linear-gradient(90deg, transparent, var(--gold), transparent); }

.tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  background: var(--gold-pale);
  color: var(--navy);
}
.tag--navy { background: var(--navy); color: var(--gold-pale); }
.tag--outline { background: transparent; border: 1px solid var(--gold); color: var(--navy-mid); }

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 12px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .22s;
  border: 2px solid transparent;
  text-align: center;
}
.btn--primary {
  background: var(--navy);
  color: var(--warm-white);
  border-color: var(--navy);
}
.btn--primary:hover {
  background: var(--navy-mid);
  color: var(--gold-light);
  border-color: var(--navy-mid);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--warm-white);
}
.btn--outline-light {
  background: transparent;
  color: var(--warm-white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn--sm { font-size: 12px; padding: 8px 20px; }
.btn--lg { font-size: 16px; padding: 16px 36px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; font-family: var(--font-ui); letter-spacing: .02em; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}

.section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 0; }

blockquote {
  border-left: 4px solid var(--gold);
  padding: 20px 28px;
  margin: 32px 0;
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}
blockquote p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 8px;
}
blockquote cite {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
  font-style: normal;
}

/* ============================================
   HEADER / NAV
   ============================================ */

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1;
  letter-spacing: .02em;
}
.logo-tagline {
  font-family: var(--font-ui);
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 4px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all .2s;
  display: block;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
  background: rgba(255,255,255,.07);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .22s;
  z-index: 200;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-primary);
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--beige); color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.search-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
  transition: color .2s;
  font-size: 16px;
}
.search-btn:hover { color: var(--gold-light); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: all .25s;
  display: block;
}

/* Ticker */
.ticker-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(201,162,39,.3);
  padding: 8px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.ticker-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--navy);
  padding: 2px 12px;
  white-space: nowrap;
  margin-right: 20px;
  border-radius: 2px;
}
.ticker-content {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,.8);
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   HERO (index)
   ============================================ */

.hero {
  background: var(--navy);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: .18;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}
.hero-kicker {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-kicker::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.hero h1 { color: var(--warm-white); margin-bottom: 20px; }
.hero .lead { color: rgba(255,255,255,.75); margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-ui);
  font-size: 11px;
  color: rgba(255,255,255,.6);
  letter-spacing: .05em;
  margin-top: 4px;
}

.hero-featured {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-featured-img { width: 100%; height: 220px; object-fit: cover; }
.hero-featured-body { padding: 24px; }
.hero-featured-body .tag { margin-bottom: 12px; }
.hero-featured-body h3 {
  color: var(--warm-white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.hero-featured-body p { color: rgba(255,255,255,.65); font-size: .9rem; margin-bottom: 16px; }
.read-more {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.read-more::after { content: '→'; }
.read-more:hover { color: var(--gold-light); }

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}
.section-header-text {}
.section-header .btn { flex-shrink: 0; }

/* ============================================
   ARTICLE CARDS
   ============================================ */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.articles-grid--2 { grid-template-columns: repeat(2, 1fr); }
.articles-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.card-img-wrap { position: relative; overflow: hidden; }
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .4s;
}
.card:hover .card-img { transform: scale(1.04); }
.card-category {
  position: absolute;
  top: 12px;
  left: 12px;
}

.card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.card-date {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-light);
}
.card-read-time {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-light);
}
.card-read-time::before { content: '·'; margin-right: 12px; }
.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 10px;
  flex: 1;
}
.card-title a:hover { color: var(--gold); }
.card-excerpt {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.card-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
}
.author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--beige-dark);
}

/* Featured card */
.card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.card--featured .card-img { height: 100%; min-height: 280px; }
.card--featured .card-img-wrap { height: auto; }

/* ============================================
   FEATURED STRIP
   ============================================ */

.featured-strip {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  align-items: start;
}
.featured-main { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.featured-main-img { width: 100%; height: 420px; object-fit: cover; }
.featured-main-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,37,69,.92) 0%, transparent 100%);
  padding: 40px 32px 32px;
}
.featured-main-overlay .tag { margin-bottom: 12px; }
.featured-main-overlay h2 { color: var(--warm-white); font-size: 1.6rem; margin-bottom: 10px; }
.featured-main-overlay p { color: rgba(255,255,255,.75); font-size: .95rem; margin-bottom: 16px; }

.featured-list { display: flex; flex-direction: column; gap: 20px; }
.featured-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.featured-item:last-child { border-bottom: none; padding-bottom: 0; }
.featured-item-img { width: 100px; height: 72px; object-fit: cover; border-radius: var(--radius); }
.featured-item-tag { margin-bottom: 6px; }
.featured-item-title {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 4px;
}
.featured-item-title a:hover { color: var(--gold); }
.featured-item-date {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-light);
}

/* ============================================
   QUOTE / INSIGHT BAND
   ============================================ */

.insight-band {
  background: var(--navy);
  padding: 64px 0;
}
.insight-inner {
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr;
  gap: 40px;
  align-items: center;
}
.insight-divider { background: rgba(255,255,255,.15); height: 100%; min-height: 120px; }
.insight-item { text-align: center; }
.insight-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.insight-label {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-top: 8px;
}
.insight-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
}

/* ============================================
   TOPICS / CATEGORIES GRID
   ============================================ */

.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.topic-card {
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--warm-white);
  transition: all .25s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.topic-card:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.topic-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  color: var(--gold);
}
.topic-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.topic-count {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-light);
}

/* ============================================
   OPINION / ANALYSIS ZONE
   ============================================ */

.analysis-zone {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}
.analysis-main {}
.analysis-sidebar {}

.sidebar-widget {
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 20px;
}

.popular-list { list-style: none; }
.popular-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dark);
}
.popular-item:last-child { border-bottom: none; }
.popular-rank {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--beige-dark);
  line-height: 1;
  min-width: 32px;
}
.popular-title {
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy);
}
.popular-title a:hover { color: var(--gold); }
.popular-date {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
}

.newsletter-widget { background: var(--navy); border-color: var(--navy); }
.newsletter-widget .sidebar-widget-title { color: var(--gold); }
.newsletter-widget p { font-size: .9rem; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  color: var(--warm-white);
  font-family: var(--font-ui);
  font-size: 13px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }

.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tags-cloud a {
  font-family: var(--font-ui);
  font-size: 12px;
  padding: 5px 12px;
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  color: var(--text-muted);
  transition: all .2s;
}
.tags-cloud a:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

/* ============================================
   AUTHOR CARD
   ============================================ */

.author-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 40px 0;
}
.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-info-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.author-info-title {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.author-info-bio { font-size: .9rem; color: var(--text-muted); }

/* ============================================
   ARTICLE PAGE
   ============================================ */

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  padding-top: 48px;
}

.article-header { margin-bottom: 32px; }
.article-category { margin-bottom: 16px; }
.article-title { margin-bottom: 16px; line-height: 1.2; }
.article-subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 24px; }
.article-byline {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.byline-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.byline-details { }
.byline-name {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.byline-date {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-light);
}
.byline-divider { height: 32px; width: 1px; background: var(--border); }
.byline-read {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-light);
}

.article-hero-img { width: 100%; border-radius: var(--radius-lg); margin-bottom: 8px; }
.article-caption {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 36px;
}

.article-body { font-size: 1.05rem; line-height: 1.85; }
.article-body h2 { margin: 40px 0 16px; font-size: 1.5rem; }
.article-body h3 { margin: 32px 0 12px; font-size: 1.2rem; }
.article-body p { margin-bottom: 1.4em; }
.article-body ul, .article-body ol { margin: 20px 0 20px 28px; }
.article-body li { margin-bottom: 8px; }

.article-share {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.share-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.share-btns { display: flex; gap: 8px; }
.share-btn {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}
.share-btn:hover { background: var(--navy); color: var(--warm-white); border-color: var(--navy); }

.related-articles { margin-top: 56px; }
.related-articles h3 { margin-bottom: 24px; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  background: var(--navy);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero .section-label { color: var(--gold); }
.page-hero h1 { color: var(--warm-white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.7); max-width: 680px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span::before { content: '/'; margin-right: 8px; }

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--warm-white);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(26,58,110,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--warm-white);
}
.contact-info-box h3 { color: var(--warm-white); margin-bottom: 24px; }
.info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,162,39,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--gold);
}
.info-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.info-value { font-size: .95rem; color: rgba(255,255,255,.85); }

.success-msg {
  display: none;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 14px;
  margin-top: 16px;
  font-weight: 500;
}
.success-msg.show { display: block; }

/* ============================================
   ABOUT PAGE
   ============================================ */

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.mission-img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; height: 460px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-item {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--gold);
}
.value-icon { font-size: 28px; margin-bottom: 16px; color: var(--navy); }
.value-title { font-size: 1.1rem; margin-bottom: 10px; }
.value-text { font-size: .9rem; color: var(--text-muted); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: box-shadow .25s;
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--beige-dark);
}
.team-name { font-size: 1rem; margin-bottom: 4px; }
.team-role {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}
.team-bio { font-size: .85rem; color: var(--text-muted); }

/* ============================================
   AUTHORS PAGE
   ============================================ */

.authors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.author-profile-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow .25s;
}
.author-profile-card:hover { box-shadow: var(--shadow-md); }
.author-profile-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--beige-dark);
}
.author-profile-name { font-size: 1.15rem; margin-bottom: 4px; }
.author-profile-title {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.author-profile-bio { font-size: .9rem; color: var(--text-muted); margin-bottom: 16px; }
.author-stats {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.author-stat {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-light);
}
.author-stat strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy);
  font-family: var(--font-display);
}

/* ============================================
   FAQ
   ============================================ */

.faq-list { max-width: 780px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: var(--warm-white);
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background .2s;
}
.faq-question:hover { background: var(--beige); }
.faq-question.open { background: var(--navy); color: var(--warm-white); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: all .2s;
  color: var(--navy);
}
.faq-question.open .faq-icon { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 20px 24px;
  background: var(--beige);
  font-size: .95rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.faq-answer.open { display: block; }

/* ============================================
   PAGINATION
   ============================================ */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.page-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: all .2s;
}
.page-num:hover, .page-num.active {
  background: var(--navy);
  color: var(--warm-white);
  border-color: var(--navy);
}
.page-num.dots { border: none; cursor: default; }
.page-num.dots:hover { background: none; color: var(--text-muted); }

/* ============================================
   POLICY PAGES
   ============================================ */

.policy-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding: 48px 0;
}
.policy-nav {
  position: sticky;
  top: 90px;
  align-self: start;
}
.policy-nav-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 12px;
}
.policy-nav a {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.policy-nav a:hover { color: var(--navy); }
.policy-nav a.active { color: var(--navy); font-weight: 600; }
.policy-content h2 { margin-top: 40px; margin-bottom: 16px; font-size: 1.4rem; }
.policy-content h3 { margin-top: 28px; margin-bottom: 10px; }
.policy-content p { margin-bottom: 1em; font-size: .97rem; }
.policy-content ul, .policy-content ol { margin: 12px 0 20px 28px; }
.policy-content li { margin-bottom: 6px; font-size: .97rem; }
.policy-meta {
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ============================================
   SEARCH PAGE
   ============================================ */

.search-bar-wrap {
  max-width: 680px;
  margin: 0 auto 48px;
}
.search-bar {
  display: flex;
  border: 2px solid var(--navy);
  border-radius: 40px;
  overflow: hidden;
}
.search-bar input {
  flex: 1;
  padding: 14px 24px;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--warm-white);
}
.search-bar input:focus { outline: none; }
.search-bar button {
  padding: 0 28px;
  background: var(--navy);
  color: var(--warm-white);
  border: none;
  font-family: var(--font-ui);
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.search-bar button:hover { background: var(--navy-mid); }

/* ============================================
   SITEMAP
   ============================================ */

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.sitemap-section h3 {
  font-size: 1rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
  margin-bottom: 16px;
}
.sitemap-section ul { list-style: none; }
.sitemap-section li { padding: 6px 0; border-bottom: 1px dotted var(--border); }
.sitemap-section a { font-size: .9rem; color: var(--text-muted); }
.sitemap-section a:hover { color: var(--navy); }

/* ============================================
   404 PAGE
   ============================================ */

.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 80px 24px;
}
.error-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 14vw, 10rem);
  font-weight: 700;
  color: var(--beige-dark);
  line-height: 1;
  margin-bottom: 0;
}
.error-title { margin-bottom: 16px; }
.error-text { color: var(--text-muted); margin-bottom: 32px; max-width: 420px; }

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 72px 0 0;
  margin-top: 80px;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {}
.footer-logo { margin-bottom: 16px; }
.footer-about {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: all .2s;
  font-family: var(--font-ui);
  font-weight: 700;
}
.social-link:hover { background: var(--gold); color: var(--navy); }

.footer-col-title {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  align-items: flex-start;
}
.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================
   POLICY PAGE EXTRAS
   ============================================ */

.page-hero--compact { padding: 44px 0; }

.article-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,.55);
  margin-top: 14px;
}

.policy-intro-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.policy-intro-box p { margin-bottom: .6em; font-size: .97rem; color: var(--text-primary); }
.policy-intro-box p:last-child { margin-bottom: 0; }

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: .9rem;
}
.data-table th {
  background: var(--navy);
  color: var(--warm-white);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 14px;
  text-align: left;
}
.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}
.data-table tr:nth-child(even) td { background: var(--beige); }

.policy-update-note {
  margin-top: 48px;
  padding: 16px 20px;
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-muted);
}

.sidebar-articles { list-style: none; }
.sidebar-articles li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-articles li:last-child { border-bottom: none; }
.sidebar-articles a {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--navy-mid);
}
.sidebar-articles a:hover { color: var(--gold); }

/* ============================================
   ANALYSIS PAGE EXTRAS
   ============================================ */

.research-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  transition: box-shadow .25s;
}
.research-card:hover { box-shadow: var(--shadow-md); }
.research-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.research-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.research-card-meta {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.research-card p { font-size: .9rem; color: var(--text-muted); margin-bottom: 16px; }
.research-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* TAGS PAGE */
.tag-section { margin-bottom: 48px; }
.tag-section-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.tag-cloud-large {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 13px;
  padding: 7px 16px;
  border: 1px solid var(--border-dark);
  border-radius: 24px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all .2s;
}
.tag-item:hover {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}
.tag-item-count {
  font-size: 11px;
  background: var(--beige-dark);
  border-radius: 10px;
  padding: 1px 6px;
  color: var(--text-light);
}
.tag-item:hover .tag-item-count {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
}

/* NEWSLETTER SECTION */
.newsletter-section {
  background: var(--navy);
  padding: 72px 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.newsletter-inner h2 { color: var(--warm-white); }
.newsletter-inner .lead { color: rgba(255,255,255,.7); }
.newsletter-form-horizontal {
  display: flex;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.newsletter-form-horizontal input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--warm-white);
  color: var(--text-primary);
}
.newsletter-form-horizontal input:focus { outline: none; }
.newsletter-form-horizontal button {
  padding: 0 28px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.newsletter-form-horizontal button:hover { background: var(--gold-light); }
@media(max-width:768px){
  .newsletter-inner { grid-template-columns: 1fr; gap:32px; }
  .newsletter-form-horizontal { flex-direction: column; }
  .newsletter-form-horizontal button { padding: 14px; }
}

/* ============================================
   INFOGRAPHIC BLOCKS
   ============================================ */

.infographic-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.infographic-block {
  text-align: center;
  padding: 32px 20px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.infographic-block--dark {
  background: var(--navy);
  border-color: var(--navy);
}
.infographic-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--beige);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.infographic-block--dark .infographic-icon-wrap { background: rgba(201,162,39,.15); }
.infographic-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.infographic-block--dark .infographic-value { color: var(--gold); }
.infographic-label {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}
.infographic-block--dark .infographic-label { color: rgba(255,255,255,.55); }

/* ============================================
   TIMELINE
   ============================================ */

.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--warm-white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .1em;
  margin-bottom: 6px;
}
.timeline-event { font-size: .95rem; color: var(--text-muted); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-featured { display: none; }
  .articles-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .authors-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-inner { grid-template-columns: 1fr; gap: 24px; }
  .insight-divider { display: none; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .section { padding: 48px 0; }
  .section--lg { padding: 64px 0; }

  .main-nav, .header-actions .btn { display: none; }
  .burger { display: flex; }

  .mobile-nav {
    position: fixed;
    top: 74px;
    left: 0; right: 0; bottom: 0;
    background: var(--navy);
    z-index: 999;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s;
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a {
    display: block;
    font-family: var(--font-ui);
    font-size: 16px;
    color: rgba(255,255,255,.85);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .mobile-nav a:hover { color: var(--gold-light); }

  .articles-grid { grid-template-columns: 1fr; }
  .articles-grid--2 { grid-template-columns: 1fr; }
  .card--featured { grid-column: span 1; grid-template-columns: 1fr; }
  .card--featured .card-img { height: 200px; }
  .featured-strip { grid-template-columns: 1fr; }
  .featured-main-img { height: 280px; }
  .analysis-zone { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .infographic-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .authors-grid { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 20px; }
  .insight-inner { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .topics-grid { grid-template-columns: 1fr; }
  .infographic-row { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .insight-inner { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; gap: 16px; }
}
