@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,400;0,700;0,900;1,400&family=Open+Sans:wght@400;500;600;700&display=swap');

/* ===== ROOT VARIABLES ===== */
:root {
  --primary:      #1a2a4a;
  --secondary:    #2c4a7c;
  --accent:       #c9a84c;
  --bg-light:     #f4f6f9;
  --bg-mid:       #e8ecf2;
  --white:        #ffffff;
  --text-dark:    #1e1e2e;
  --text-body:    #333342;
  --text-muted:   #6b7491;
  --border:       #dce1ea;
  --red-alert:    #c0392b;
  --font-head:    'Merriweather', Georgia, serif;
  --font-body:    'Open Sans', Arial, sans-serif;
  --shadow-sm:    0 1px 4px rgba(26,42,74,0.08);
  --shadow-md:    0 4px 16px rgba(26,42,74,0.12);
  --shadow-lg:    0 8px 32px rgba(26,42,74,0.16);
  --radius:       4px;
  --max-w:        1200px;
}

/* ===== RESET ===== */
*, *::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(--bg-light);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ===== UTILITY ===== */
.container { max-width: var(--max-w); 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; }
.visually-hidden { @extend .sr-only; }

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 900; background: var(--primary); box-shadow: var(--shadow-md); }

.header-top {
  background: #111c30;
  padding: 6px 0;
  font-size: 12px;
  color: #8fa3c4;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.header-top a { color: #8fa3c4; }
.header-top a:hover { color: var(--accent); }
.header-top-left { display: flex; gap: 20px; align-items: center; }
.header-top-right { display: flex; gap: 16px; align-items: center; }
.date-display { display: flex; align-items: center; gap: 6px; }
.date-display svg { flex-shrink: 0; }

.header-main { padding: 14px 0; }
.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.site-logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-name {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
}
.logo-name span { color: var(--accent); }
.logo-tagline { font-size: 11px; color: #8fa3c4; letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; }

.header-search-form { display: flex; gap: 0; flex: 1; max-width: 340px; }
.header-search-form input {
  flex: 1;
  padding: 9px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  color: var(--white);
  font-size: 14px;
  outline: none;
  transition: background .2s;
}
.header-search-form input::placeholder { color: #8fa3c4; }
.header-search-form input:focus { background: rgba(255,255,255,0.14); }
.header-search-form button {
  padding: 9px 16px;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  transition: background .2s;
}
.header-search-form button:hover { background: #b8923e; }

/* NAV */
.nav-primary { background: var(--secondary); border-top: 1px solid rgba(255,255,255,0.1); }
.nav-primary .container { display: flex; align-items: stretch; justify-content: space-between; }
.nav-list { display: flex; align-items: stretch; gap: 0; }
.nav-list li { position: relative; }
.nav-list a {
  display: flex;
  align-items: center;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.3px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-list a:hover,
.nav-list li.active > a { background: rgba(255,255,255,0.12); color: var(--white); }
.nav-list li.active > a { border-bottom: 3px solid var(--accent); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--primary);
  border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 1000;
}
.nav-list li:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { padding: 10px 18px; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-dropdown a:last-child { border-bottom: none; }

.nav-extra { display: flex; align-items: center; gap: 0; }
.nav-extra a {
  padding: 13px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color .2s;
}
.nav-extra a:hover { color: var(--accent); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
  border-radius: 2px;
}
.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); }

/* BREADCRUMB */
.breadcrumb-bar { background: var(--bg-mid); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb a { color: var(--secondary); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--border); }

/* ===== HERO ===== */
.hero-section { position: relative; overflow: hidden; }
.hero-image-wrap { position: relative; height: 520px; overflow: hidden; }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,18,38,0.85) 0%, rgba(10,18,38,0.45) 50%, rgba(10,18,38,0.12) 100%);
}
.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 24px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-meta { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 12px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta span { display: flex; align-items: center; gap: 5px; }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 14px;
  max-width: 680px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero-excerpt {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
  transition: gap .2s;
}
.hero-link:hover { gap: 12px; color: var(--accent); }

/* ===== TICKER / NEWS LINE ===== */
.ticker-bar {
  background: var(--primary);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 2px solid var(--accent);
}
.ticker-inner { display: flex; align-items: center; gap: 0; }
.ticker-label {
  flex-shrink: 0;
  background: var(--accent);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  margin-right: 20px;
}
.ticker-track { overflow: hidden; flex: 1; }
.ticker-items { display: flex; gap: 40px; white-space: nowrap; animation: tickerScroll 35s linear infinite; }
.ticker-items a { font-size: 13px; color: rgba(255,255,255,0.85); flex-shrink: 0; }
.ticker-items a:hover { color: var(--accent); }
.ticker-sep { color: var(--accent); flex-shrink: 0; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== MAIN LAYOUT ===== */
.site-main { padding: 40px 0 60px; }
.layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
}
.layout-grid-wide { grid-template-columns: 1fr; }

/* ===== SECTION HEADERS ===== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--primary);
}
.section-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--accent);
  border-radius: 2px;
}
.section-link { font-size: 13px; color: var(--secondary); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.section-link:hover { color: var(--accent); }

/* ===== ARTICLE CARDS ===== */
.articles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.articles-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.articles-grid-1 { grid-template-columns: 1fr; }

.article-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.article-card-img { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.article-card:hover .article-card-img img { transform: scale(1.04); }

.article-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.article-card-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
  text-decoration: none;
}
.article-card-cat:hover { color: var(--accent); }
.article-card-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  flex: 1;
}
.article-card-title a:hover { color: var(--secondary); }
.article-card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.article-card-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-muted); margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.article-card-meta a { color: var(--text-muted); }
.article-card-meta a:hover { color: var(--secondary); }

/* FEATURED CARD (large) */
.article-card-featured { grid-column: 1 / -1; flex-direction: row; }
.article-card-featured .article-card-img { flex: 0 0 45%; aspect-ratio: auto; min-height: 260px; }
.article-card-featured .article-card-body { padding: 28px; }
.article-card-featured .article-card-title { font-size: 22px; }

/* LIST CARD (horizontal small) */
.article-card-list { flex-direction: row; gap: 0; }
.article-card-list .article-card-img { flex: 0 0 120px; aspect-ratio: auto; min-height: 80px; }
.article-card-list .article-card-body { padding: 12px 16px; }
.article-card-list .article-card-title { font-size: 14px; }
.article-card-list .article-card-excerpt { display: none; }

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.widget-header {
  background: var(--primary);
  color: var(--white);
  padding: 13px 18px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-header::before { content: ''; display: block; width: 3px; height: 16px; background: var(--accent); border-radius: 2px; }
.widget-body { padding: 16px; }

.widget-list { display: flex; flex-direction: column; gap: 0; }
.widget-list-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.widget-list-item:last-child { border-bottom: none; padding-bottom: 0; }
.widget-list-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--bg-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--secondary);
  margin-top: 2px;
}
.widget-list-title { font-size: 13px; font-weight: 600; color: var(--text-dark); line-height: 1.4; }
.widget-list-title a { color: var(--text-dark); }
.widget-list-title a:hover { color: var(--secondary); }
.widget-list-meta { font-size: 11px; color: var(--text-muted); margin-top: 3px; }

.widget-tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 16px; }
.tag-link {
  font-size: 12px;
  padding: 5px 12px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-muted);
  transition: background .15s, color .15s, border-color .15s;
}
.tag-link:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }

/* Newsletter widget */
.newsletter-form { padding: 16px; }
.newsletter-form p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
.newsletter-input-group { display: flex; flex-direction: column; gap: 8px; }
.newsletter-input-group input {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}
.newsletter-input-group input:focus { border-color: var(--secondary); }
.btn-subscribe {
  padding: 11px 16px;
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  transition: background .2s;
}
.btn-subscribe:hover { background: var(--primary); }
.newsletter-success { display: none; color: #27ae60; font-size: 13px; padding: 10px; background: #eafaf1; border-radius: var(--radius); margin-top: 8px; text-align: center; }

/* ===== CATEGORY PAGE ===== */
.category-banner {
  background: var(--primary);
  padding: 40px 0 32px;
  border-bottom: 4px solid var(--accent);
  margin-bottom: 0;
}
.category-banner-inner { display: flex; align-items: flex-start; gap: 20px; }
.category-label-text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.category-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
}
.category-desc { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.6; max-width: 600px; }

.category-filters { background: var(--bg-mid); padding: 14px 0; border-bottom: 1px solid var(--border); }
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tab {
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 3px;
  background: var(--white);
  transition: all .15s;
  cursor: pointer;
}
.filter-tab.active, .filter-tab:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; }
.page-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all .15s;
  cursor: pointer;
  text-decoration: none;
}
.page-btn.active, .page-btn:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }
.page-btn-wide { width: auto; padding: 0 16px; }

/* ===== ARTICLE FULL ===== */
.article-full-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.article-full-header { padding: 36px 40px 0; }
.article-full-cat {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--secondary);
  margin-bottom: 12px;
  display: block;
}
.article-full-title {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.article-full-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  font-weight: 400;
}
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 40px;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}
.author-mini { display: flex; align-items: center; gap: 8px; }
.author-mini-name { font-weight: 600; color: var(--text-dark); }
.article-meta-bar .meta-sep { color: var(--border); }
.share-bar { display: flex; gap: 8px; align-items: center; margin-left: auto; }
.share-btn {
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  transition: all .15s;
}
.share-btn:hover { background: var(--secondary); color: var(--white); border-color: var(--secondary); }

.article-full-img { width: 100%; }
.article-full-img img { width: 100%; max-height: 480px; object-fit: cover; }
.article-img-caption { padding: 8px 40px; font-size: 12px; color: var(--text-muted); font-style: italic; background: var(--bg-light); border-bottom: 1px solid var(--border); }

.article-full-body { padding: 36px 40px; }
.article-full-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 24px;
}
.article-full-body h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--accent);
}
.article-full-body h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 28px 0 12px;
}
.article-full-body blockquote {
  margin: 28px 0;
  padding: 20px 28px;
  background: var(--bg-light);
  border-left: 5px solid var(--accent);
  font-size: 17px;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.7;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.article-full-body ul, .article-full-body ol {
  margin: 0 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-full-body li { font-size: 17px; line-height: 1.7; color: var(--text-body); }
.article-full-body ul li { list-style: disc; }
.article-full-body ol li { list-style: decimal; }
.article-full-body strong { font-weight: 700; color: var(--text-dark); }

.key-findings {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8ecf2 100%);
  border: 1px solid #c8d4e8;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 28px 0;
}
.key-findings-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.key-findings ul { margin: 0; padding: 0; }
.key-findings li { list-style: none; padding: 6px 0 6px 20px; position: relative; font-size: 15px; border-bottom: 1px solid rgba(200,212,232,0.5); }
.key-findings li:last-child { border-bottom: none; }
.key-findings li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.article-tags { padding: 0 40px 28px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.article-tags-label { font-size: 13px; font-weight: 600; color: var(--text-muted); }

/* Author box */
.author-box {
  margin: 0 40px 36px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid var(--border);
}
.author-box-info { flex: 1; }
.author-box-name { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.author-box-role { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.author-box-bio { font-size: 14px; color: var(--text-body); line-height: 1.6; }
.author-box-link { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--secondary); }

/* Related articles */
.related-section { padding: 36px 40px; border-top: 1px solid var(--border); }
.related-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 20px; }

/* ===== SEARCH PAGE ===== */
.search-header { padding: 40px 0; background: var(--primary); }
.search-header .container { display: flex; flex-direction: column; gap: 16px; }
.search-header h1 { font-family: var(--font-head); font-size: 28px; font-weight: 900; color: var(--white); }
.search-form-big { display: flex; gap: 0; max-width: 600px; }
.search-form-big input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-size: 16px;
  outline: none;
  border-radius: var(--radius) 0 0 var(--radius);
}
.search-form-big button {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: background .2s;
}
.search-form-big button:hover { background: #b8923e; }
.search-results-count { font-size: 14px; color: var(--text-muted); padding: 20px 0 0; }
.search-result-item { display: flex; gap: 0; padding: 24px 0; border-bottom: 1px solid var(--border); }
.search-result-item:last-child { border-bottom: none; }
.search-result-body { flex: 1; }
.search-result-cat { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--secondary); margin-bottom: 6px; display: block; }
.search-result-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.search-result-title a:hover { color: var(--secondary); }
.search-result-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 8px; }
.search-result-meta { font-size: 12px; color: var(--text-muted); }

/* ===== ABOUT PAGE ===== */
.about-hero { background: var(--primary); padding: 60px 0; }
.about-hero-text h1 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.about-hero-text p { font-size: 18px; color: rgba(255,255,255,0.8); line-height: 1.7; max-width: 640px; }
.about-section { padding: 56px 0; }
.about-section:nth-child(even) { background: var(--white); }
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-cols.reverse { direction: rtl; }
.about-cols.reverse > * { direction: ltr; }
.about-text h2 { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.about-text p { font-size: 16px; color: var(--text-body); line-height: 1.75; margin-bottom: 16px; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; object-fit: cover; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); border-top: 4px solid var(--accent); }
.value-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--secondary); margin: 0; }
.stat-item { padding: 28px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-head); font-size: 36px; font-weight: 900; color: var(--accent); margin-bottom: 4px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.75); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.team-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.team-card-body { padding: 18px; text-align: center; }
.team-card-name { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.team-card-role { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 10px; }
.team-card-bio { font-size: 13px; color: var(--text-body); line-height: 1.6; }

/* ===== AUTHORS PAGE ===== */
.authors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.author-card-full {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 24px;
  padding: 28px;
  transition: box-shadow .2s;
}
.author-card-full:hover { box-shadow: var(--shadow-md); }
.author-card-img { flex-shrink: 0; width: 100px; height: 100px; border-radius: 50%; overflow: hidden; }
.author-card-img img { width: 100%; height: 100%; object-fit: cover; }
.author-card-info { flex: 1; }
.author-card-name { font-family: var(--font-head); font-size: 19px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.author-card-role { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 10px; }
.author-card-bio { font-size: 14px; color: var(--text-body); line-height: 1.65; margin-bottom: 14px; }
.author-card-stats { display: flex; gap: 20px; font-size: 12px; color: var(--text-muted); }
.author-card-stats strong { color: var(--primary); font-weight: 700; }
.btn-author { display: inline-block; margin-top: 12px; padding: 8px 18px; background: var(--secondary); color: var(--white); border-radius: var(--radius); font-size: 13px; font-weight: 600; transition: background .2s; }
.btn-author:hover { background: var(--primary); color: var(--white); }

/* ===== CONTACT PAGE ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 40px; padding: 48px 0; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 36px; }
.contact-form-wrap h2 { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}
label .req { color: #c0392b; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(44,74,124,0.1); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath fill='%236b7491' d='M6 7L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 5px; }
.btn-submit {
  padding: 13px 32px;
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  transition: background .2s;
  margin-top: 4px;
}
.btn-submit:hover { background: var(--primary); }
.form-success {
  display: none;
  background: #eafaf1;
  border: 1px solid #a9dfbf;
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  margin-top: 20px;
}
.form-success-icon { font-size: 40px; margin-bottom: 10px; }
.form-success h3 { font-family: var(--font-head); font-size: 18px; color: #1e7e48; margin-bottom: 6px; }
.form-success p { font-size: 14px; color: #27ae60; }

.contact-info-wrap { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 24px; }
.contact-info-card h3 { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 14px; border-bottom: 2px solid var(--accent); padding-bottom: 10px; }
.contact-info-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-icon { flex-shrink: 0; width: 36px; height: 36px; background: var(--bg-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: 16px; }
.contact-info-text strong { font-size: 13px; font-weight: 700; color: var(--primary); display: block; margin-bottom: 2px; }
.contact-info-text span, .contact-info-text a { font-size: 14px; color: var(--text-muted); }
.contact-info-text a:hover { color: var(--secondary); }

/* ===== POLICY PAGES ===== */
.policy-header { background: var(--primary); padding: 48px 0 36px; }
.policy-header h1 { font-family: var(--font-head); font-size: clamp(24px, 3.5vw, 36px); font-weight: 900; color: var(--white); margin-bottom: 10px; }
.policy-header p { font-size: 15px; color: rgba(255,255,255,0.7); }
.policy-body { padding: 48px 0; }
.policy-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 40px 48px; max-width: 860px; }
.policy-toc { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 36px; }
.policy-toc h3 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.policy-toc ol { margin-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.policy-toc li { font-size: 14px; list-style: decimal; }
.policy-toc a { color: var(--secondary); }
.policy-toc a:hover { color: var(--accent); }
.policy-section { margin-bottom: 40px; }
.policy-section h2 { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.policy-section h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin: 18px 0 10px; }
.policy-section p { font-size: 15px; color: var(--text-body); line-height: 1.75; margin-bottom: 14px; }
.policy-section ul, .policy-section ol { margin: 0 0 16px 24px; display: flex; flex-direction: column; gap: 6px; }
.policy-section li { font-size: 15px; color: var(--text-body); line-height: 1.65; }
.policy-section ul li { list-style: disc; }
.policy-section ol li { list-style: decimal; }
.policy-section a { color: var(--secondary); text-decoration: underline; }
.policy-section table { width: 100%; border-collapse: collapse; margin-bottom: 16px; font-size: 14px; }
.policy-section th { background: var(--primary); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 600; }
.policy-section td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--text-body); vertical-align: top; }
.policy-section tr:nth-child(even) td { background: var(--bg-light); }
.policy-highlight { background: #fff8e6; border-left: 4px solid var(--accent); padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin: 16px 0; }
.policy-highlight p { margin-bottom: 0; font-size: 14px; color: var(--text-dark); }

/* ===== FOOTER ===== */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.8); }
.footer-top { padding: 48px 0 36px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo-name { font-size: 28px; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 14px 0 20px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 700;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.social-btn:hover { background: var(--accent); color: var(--primary); }
.footer-col h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid rgba(255,255,255,0.1); }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color .15s, padding-left .15s; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: rgba(255,255,255,0.65); }
.footer-contact-item strong { color: rgba(255,255,255,0.85); font-weight: 600; display: block; }

.footer-bottom { padding: 18px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ===== HOME PAGE EXTRA ===== */
.analysis-strip { background: var(--primary); padding: 48px 0; margin: 40px 0 0; }
.analysis-strip .section-title { color: var(--white); }
.analysis-strip .section-title::before { background: var(--accent); }
.analysis-strip .section-link { color: rgba(255,255,255,0.7); }
.analysis-strip .section-link:hover { color: var(--accent); }
.analysis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.analysis-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 24px; transition: background .2s; }
.analysis-card:hover { background: rgba(255,255,255,0.1); }
.analysis-card-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); font-weight: 700; margin-bottom: 10px; }
.analysis-card-title { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--white); line-height: 1.4; margin-bottom: 10px; }
.analysis-card-title a { color: var(--white); }
.analysis-card-title a:hover { color: var(--accent); }
.analysis-card-meta { font-size: 12px; color: rgba(255,255,255,0.5); }
.analysis-card-excerpt { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 10px 0; }

/* ===== MISC ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  z-index: 800;
  text-decoration: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  padding: 16px 24px;
  z-index: 850;
  display: none;
}
.cookie-bar .container { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: space-between; }
.cookie-bar p { font-size: 14px; }
.cookie-bar a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie {
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.btn-cookie-accept { background: var(--accent); color: var(--primary); }
.btn-cookie-decline { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }

/* No-hero article page sub-banner */
.article-cat-banner { background: var(--secondary); padding: 6px 0; }
.article-cat-banner .container { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.article-cat-banner a { color: rgba(255,255,255,0.75); }
.article-cat-banner a:hover { color: var(--white); }
.article-cat-banner .current-cat { color: var(--white); font-weight: 600; }

/* ===== PHOTO SECTION ===== */
.regional-section { padding: 48px 0; border-top: 1px solid var(--border); }
.cat-img-banner { width: 100%; max-height: 200px; object-fit: cover; border-radius: var(--radius); margin-bottom: 28px; }
