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

/* =====================================================
   YOLUMI — Аналитички Информативни Портал
   Main Stylesheet
   ===================================================== */

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

:root {
  --primary:        #1a5bb5;
  --primary-dark:   #0d3d82;
  --primary-light:  #e8f0fb;
  --dark:           #1a1a1a;
  --gray-900:       #1e1e1e;
  --gray-800:       #2c2c2c;
  --gray-700:       #444444;
  --gray-600:       #666666;
  --gray-400:       #999999;
  --gray-200:       #e2e4e8;
  --gray-100:       #f0f1f3;
  --bg:             #f5f6f8;
  --white:          #ffffff;
  --accent:         #c62828;
  --font-heading:   'Merriweather', Georgia, 'Times New Roman', serif;
  --font-body:      'Open Sans', Arial, Helvetica, sans-serif;
  --max-width:      1200px;
  --radius:         4px;
  --shadow:         0 2px 8px rgba(0,0,0,.10);
  --shadow-md:      0 4px 18px rgba(0,0,0,.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--gray-900); }
h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s, transform .15s;
  text-align: center;
  letter-spacing: .03em;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-dark { background: var(--gray-900); color: var(--white); }
.btn-dark:hover { background: var(--gray-700); color: var(--white); }
.btn-sm { padding: 7px 16px; font-size: .82rem; }

/* ====================================================
   TOP BAR
   ==================================================== */
.topbar {
  background: var(--gray-900);
  color: var(--gray-400);
  font-size: .78rem;
  padding: 6px 0;
  border-bottom: 1px solid #333;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-date { white-space: nowrap; }
.topbar-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  flex: 1;
}
.topbar-ticker .ticker-label {
  background: var(--accent);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  color: #ccc;
}
.ticker-track a { color: #ccc; margin-right: 40px; }
.ticker-track a:hover { color: var(--white); }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.topbar-links { display: flex; gap: 14px; flex-shrink: 0; }
.topbar-links a { color: var(--gray-400); font-size: .78rem; }
.topbar-links a:hover { color: var(--white); }

/* ====================================================
   HEADER
   ==================================================== */
.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 14px;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
  letter-spacing: -.01em;
}
.logo-tagline { font-size: .7rem; color: var(--gray-600); letter-spacing: .05em; text-transform: uppercase; margin-top: 2px; }

/* Search */
.header-search { display: flex; align-items: center; gap: 8px; }
.header-search form {
  display: flex;
  border: 2px solid var(--gray-200);
  border-radius: 30px;
  overflow: hidden;
  transition: border-color .2s;
}
.header-search form:focus-within { border-color: var(--primary); }
.header-search input {
  border: none;
  outline: none;
  padding: 8px 16px;
  font-size: .875rem;
  width: 220px;
  background: var(--gray-100);
  color: var(--gray-800);
}
.header-search button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  font-size: .875rem;
  transition: background .2s;
}
.header-search button:hover { background: var(--primary-dark); }

/* ====================================================
   NAVIGATION
   ==================================================== */
.main-nav {
  background: var(--gray-900);
  border-bottom: 2px solid var(--primary);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-menu {
  display: flex;
  align-items: center;
}
.nav-menu a {
  display: block;
  padding: 13px 16px;
  color: #ccc;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s, background .2s;
  border-bottom: 3px solid transparent;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
  border-bottom-color: var(--primary);
  background: rgba(255,255,255,.04);
}
.nav-menu a.active { color: var(--primary); }
.nav-date-right { color: var(--gray-400); font-size: .78rem; padding: 0 16px; white-space: nowrap; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 16px;
  color: var(--white);
  font-size: 1.4rem;
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.1) 100%);
}
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 40px 44px;
  max-width: 760px;
}
.hero-category {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.hero-title a { color: var(--white); text-decoration: none; }
.hero-title a:hover { color: #dce8ff; }
.hero-excerpt {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 600px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,.65);
  font-size: .82rem;
}
.hero-meta span { display: flex; align-items: center; gap: 5px; }

/* ====================================================
   SECTIONS
   ==================================================== */
.section { padding: 40px 0; }
.section-divider { border: none; border-top: 1px solid var(--gray-200); margin: 0; }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}
.section-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gray-900);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-title::before {
  content: '';
  width: 4px;
  height: 22px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-link { font-size: .82rem; color: var(--primary); font-weight: 600; }
.section-link:hover { text-decoration: underline; }

/* ====================================================
   LAYOUT GRID
   ==================================================== */
.layout-main {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  padding: 40px 0;
}
.layout-main.no-sidebar { grid-template-columns: 1fr; }
.layout-full { padding: 40px 0; }

/* ====================================================
   NEWS GRID
   ==================================================== */
.news-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.news-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* ====================================================
   ARTICLE CARD
   ==================================================== */
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.article-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.article-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.article-card-cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.article-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 10px;
  flex: 1;
}
.article-card-title a { color: var(--gray-900); }
.article-card-title a:hover { color: var(--primary); }
.article-card-excerpt { font-size: .875rem; color: var(--gray-600); line-height: 1.55; margin-bottom: 14px; }
.article-card-meta { font-size: .78rem; color: var(--gray-400); display: flex; align-items: center; gap: 12px; margin-top: auto; border-top: 1px solid var(--gray-100); padding-top: 10px; }

/* Horizontal card */
.article-card-h {
  display: flex;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  transition: transform .2s;
  align-items: flex-start;
}
.article-card-h:hover { transform: translateY(-2px); }
.article-card-h .card-h-img { width: 110px; height: 80px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.article-card-h .card-h-body { flex: 1; }
.article-card-h .article-card-cat { margin-bottom: 5px; }
.article-card-h .article-card-title { font-size: .9rem; margin-bottom: 5px; }
.article-card-h .article-card-meta { border-top: none; padding-top: 0; margin-top: 4px; }

/* Featured large card */
.article-card-featured {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.article-card-featured:hover .article-card-img { transform: scale(1.02); }
.article-card-featured .img-wrap { overflow: hidden; }
.article-card-featured .article-card-img { height: 280px; transition: transform .4s; }
.article-card-featured .article-card-body { padding: 24px; }
.article-card-featured .article-card-title { font-size: 1.2rem; }

/* ====================================================
   SIDEBAR
   ==================================================== */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.sidebar-widget-title {
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  padding: 14px 18px;
  background: var(--gray-900);
  color: var(--white);
  border-left: 4px solid var(--primary);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.sidebar-widget-body { padding: 16px 18px; }

/* Popular list */
.popular-list { display: flex; flex-direction: column; gap: 0; }
.popular-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.popular-item:last-child { border-bottom: none; padding-bottom: 0; }
.popular-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  text-align: right;
}
.popular-body a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.35;
  display: block;
  margin-bottom: 4px;
}
.popular-body a:hover { color: var(--primary); }
.popular-body span { font-size: .75rem; color: var(--gray-400); }

/* Tags cloud */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  padding: 5px 12px;
  background: var(--gray-100);
  color: var(--gray-700);
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  transition: background .2s, color .2s;
}
.tag:hover { background: var(--primary); color: var(--white); }

/* Category links widget */
.cat-list { display: flex; flex-direction: column; gap: 0; }
.cat-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .875rem;
  color: var(--gray-700);
  font-weight: 500;
}
.cat-list-item:last-child { border-bottom: none; }
.cat-list-item a { color: var(--gray-700); }
.cat-list-item a:hover { color: var(--primary); }
.cat-badge {
  background: var(--primary-light);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

/* ====================================================
   FEATURED STRIP (home)
   ==================================================== */
.featured-strip {
  background: var(--white);
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow);
  padding: 0;
}
.featured-strip .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.strip-item {
  padding: 22px 24px;
  border-right: 1px solid var(--gray-200);
}
.strip-item:last-child { border-right: none; }
.strip-item .article-card-cat { margin-bottom: 6px; }
.strip-item h3 { font-size: 1rem; margin-bottom: 8px; line-height: 1.3; }
.strip-item h3 a { color: var(--gray-900); }
.strip-item h3 a:hover { color: var(--primary); }
.strip-item p { font-size: .82rem; color: var(--gray-600); line-height: 1.5; margin-bottom: 10px; }
.strip-meta { font-size: .75rem; color: var(--gray-400); }

/* ====================================================
   ANALYSIS SECTION (home)
   ==================================================== */
.analysis-section {
  background: var(--gray-900);
  color: var(--white);
  padding: 48px 0;
}
.analysis-section .section-title { color: var(--white); }
.analysis-section .section-title::before { background: var(--primary); }
.analysis-section .section-link { color: #7ab4ff; }
.analysis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.analysis-main {
  padding-right: 32px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.analysis-main .article-card-cat { color: #7ab4ff; }
.analysis-main h2 { color: var(--white); font-size: 1.5rem; margin-bottom: 14px; }
.analysis-main h2 a { color: var(--white); }
.analysis-main h2 a:hover { color: #7ab4ff; }
.analysis-main p { color: rgba(255,255,255,.75); font-size: .95rem; line-height: 1.7; margin-bottom: 16px; }
.analysis-main .analysis-img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); margin-bottom: 20px; }
.analysis-list { padding-left: 32px; }
.analysis-list-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.analysis-list-item:last-child { border-bottom: none; }
.analysis-list-item .article-card-cat { color: #7ab4ff; }
.analysis-list-item h4 { color: var(--white); font-size: .95rem; line-height: 1.35; margin-bottom: 6px; }
.analysis-list-item h4 a { color: var(--white); }
.analysis-list-item h4 a:hover { color: #7ab4ff; }
.analysis-list-item p { color: rgba(255,255,255,.6); font-size: .82rem; line-height: 1.5; margin: 0; }
.analysis-list-item .analysis-meta { font-size: .75rem; color: rgba(255,255,255,.4); margin-top: 6px; }

/* ====================================================
   CATEGORY HEADER (category pages)
   ==================================================== */
.cat-header {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.cat-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.78) 0%, rgba(0,0,0,.3) 70%);
  display: flex;
  align-items: center;
  padding: 0 40px;
}
.cat-header-inner { max-width: 500px; }
.cat-header-label { font-size: .75rem; color: rgba(255,255,255,.6); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; }
.cat-header-title { font-family: var(--font-heading); font-size: 2rem; color: var(--white); margin-bottom: 8px; }
.cat-header-desc { color: rgba(255,255,255,.75); font-size: .9rem; }

/* ====================================================
   ARTICLE PAGE
   ==================================================== */
.article-page { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px 44px; }
.article-breadcrumb { font-size: .8rem; color: var(--gray-400); margin-bottom: 20px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.article-breadcrumb a { color: var(--gray-400); }
.article-breadcrumb a:hover { color: var(--primary); }
.article-breadcrumb span { color: var(--gray-200); }
.article-cat { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--primary); margin-bottom: 14px; }
.article-title { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.2; color: var(--gray-900); margin-bottom: 20px; }
.article-subtitle { font-size: 1.1rem; color: var(--gray-600); line-height: 1.6; font-style: italic; border-left: 4px solid var(--primary); padding-left: 16px; margin-bottom: 24px; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 28px;
  font-size: .82rem;
  color: var(--gray-600);
  flex-wrap: wrap;
}
.article-meta .meta-author { font-weight: 700; color: var(--gray-800); }
.article-meta a { color: var(--gray-600); }
.article-meta a:hover { color: var(--primary); }
.article-hero-img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius); margin-bottom: 10px; }
.article-img-caption { font-size: .78rem; color: var(--gray-400); margin-bottom: 28px; font-style: italic; }
.article-body { font-size: 1.02rem; line-height: 1.78; color: var(--gray-800); }
.article-body p { margin-bottom: 1.4rem; }
.article-body h2 { font-size: 1.45rem; margin: 2rem 0 1rem; padding-top: 1rem; border-top: 1px solid var(--gray-200); }
.article-body h3 { font-size: 1.2rem; margin: 1.6rem 0 .8rem; }
.article-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  margin: 2rem 0;
  background: var(--primary-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gray-700);
}
.article-body ul, .article-body ol { margin-bottom: 1.4rem; padding-left: 1.6rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: .5rem; }

/* Share bar */
.share-bar {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.share-label { font-weight: 700; font-size: .875rem; color: var(--gray-700); }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity .2s;
  color: var(--white);
}
.share-btn:hover { opacity: .88; color: var(--white); }
.share-btn.fb  { background: #1877f2; }
.share-btn.tw  { background: #1da1f2; }
.share-btn.tg  { background: #229ed9; }
.share-btn.cp  { background: var(--gray-700); }

/* Author box */
.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
}
.author-avatar {
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
}
.author-info h4 { font-size: 1rem; margin-bottom: 4px; }
.author-info .author-role { font-size: .8rem; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.author-info p { font-size: .875rem; color: var(--gray-600); margin: 0; }

/* Tags article */
.article-tags { margin-top: 24px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.article-tags .tags-label { font-weight: 700; font-size: .82rem; color: var(--gray-700); }

/* ====================================================
   RELATED ARTICLES
   ==================================================== */
.related-section { margin-top: 40px; padding-top: 32px; border-top: 2px solid var(--gray-200); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }

/* ====================================================
   NEWSLETTER
   ==================================================== */
.newsletter-section {
  background: var(--primary);
  color: var(--white);
  padding: 52px 0;
  text-align: center;
}
.newsletter-section h2 { color: var(--white); font-size: 1.6rem; margin-bottom: 10px; }
.newsletter-section p { color: rgba(255,255,255,.85); margin-bottom: 24px; font-size: .95rem; }
.newsletter-form { display: flex; max-width: 460px; margin: 0 auto; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  font-size: .95rem;
  background: var(--white);
  color: var(--gray-800);
}
.newsletter-form button {
  padding: 14px 24px;
  background: var(--gray-900);
  color: var(--white);
  border: none;
  font-weight: 700;
  font-size: .875rem;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gray-700); }

/* ====================================================
   SEARCH PAGE
   ==================================================== */
.search-hero { background: var(--gray-900); color: var(--white); padding: 52px 0 40px; }
.search-hero h1 { color: var(--white); margin-bottom: 20px; }
.search-big-form { display: flex; max-width: 640px; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.search-big-form input {
  flex: 1;
  padding: 16px 22px;
  border: none;
  outline: none;
  font-size: 1rem;
  background: var(--white);
  color: var(--gray-800);
}
.search-big-form button {
  padding: 16px 28px;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s;
}
.search-big-form button:hover { background: var(--primary-dark); }

/* ====================================================
   PAGE HERO (interior pages like about, contact, advertise)
   ==================================================== */
.page-hero-section { background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 100%); padding: 52px 0 48px; margin-bottom: 0; }
.page-hero-inner { max-width: 760px; }
.page-hero-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.55); font-family: var(--font-body); margin-bottom: .5rem; }
.page-hero-title { font-family: var(--font-heading); font-size: clamp(1.6rem,3vw,2.4rem); color: var(--white); line-height: 1.2; margin-bottom: .75rem; }
.page-hero-desc { font-size: 1.05rem; color: rgba(255,255,255,.78); max-width: 640px; line-height: 1.65; }

/* ====================================================
   CONTACT PAGE
   ==================================================== */
.contact-layout { display: grid; grid-template-columns: 1.35fr 1fr; gap: 3rem; }
.contact-form-section h2 { font-size: 1.35rem; margin-bottom: .5rem; }
.contact-form-section > p { font-size: .93rem; color: var(--gray-600); margin-bottom: 1.5rem; }
.contact-info-section h2 { font-size: 1.1rem; margin-bottom: 1rem; }
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card { display: flex; gap: 1rem; align-items: flex-start; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1rem 1.25rem; box-shadow: var(--shadow); }
.contact-info-card strong { display: block; font-size: .875rem; color: var(--gray-900); margin-bottom: .2rem; }
.contact-info-card span { font-size: .8rem; color: var(--gray-600); }
.contact-info-card a { font-size: .9rem; color: var(--primary); display: block; }
.contact-info-icon { font-size: 1.4rem; line-height: 1; }
.contact-hours-list { list-style: none; padding: 0; }
.contact-hours-list li { display: flex; justify-content: space-between; padding: .45rem 0; border-bottom: 1px solid var(--gray-200); font-size: .9rem; color: var(--gray-700); }
.contact-hours-list li:last-child { border-bottom: none; }

/* Form elements — extra */
.form-check-group { margin-top: .5rem; }
.form-check-label { display: flex; align-items: flex-start; gap: .6rem; font-size: .875rem; color: var(--gray-600); cursor: pointer; }
.form-check-label input { margin-top: 3px; accent-color: var(--primary); }
.field-hint { font-size: .78rem; color: var(--gray-400); display: block; margin-top: 3px; }
.field-error { border-color: var(--accent) !important; }
.required { color: var(--accent); }

/* Success messages */
.form-success-message { background: #e8f5e9; border: 1px solid #81c784; border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; }
.form-success-message strong { display: block; color: #2e7d32; font-size: 1rem; margin-bottom: .4rem; }
.form-success-message p { color: #388e3c; font-size: .9rem; margin: 0; }
.form-success-message.show { display: block !important; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; }
.contact-info-wrap { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 14px; color: var(--gray-900); border-bottom: 2px solid var(--primary); padding-bottom: 8px; }
.contact-info-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: .9rem; color: var(--gray-700); align-items: flex-start; }
.contact-info-item strong { color: var(--gray-900); flex-shrink: 0; min-width: 70px; }
.contact-info-item a { color: var(--primary); }

/* Form elements */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .875rem; color: var(--gray-700); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: var(--gray-600); }
.form-check input[type="checkbox"] { margin-top: 2px; accent-color: var(--primary); }
.form-check a { color: var(--primary); }

/* Success message */
.alert-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: .9rem;
  display: none;
}
.alert-success.show { display: block; }

/* ====================================================
   ARCHIVE PAGE
   ==================================================== */
.archive-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover,
.filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.archive-list { display: flex; flex-direction: column; gap: 16px; }
.archive-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s;
  align-items: flex-start;
}
.archive-item:hover { transform: translateY(-2px); }
.archive-item-img { width: 160px; height: 110px; object-fit: cover; flex-shrink: 0; }
.archive-item-body { padding: 16px 20px 16px 0; flex: 1; }
.archive-item-body .article-card-cat { margin-bottom: 5px; }
.archive-item-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.archive-item-body h3 a { color: var(--gray-900); }
.archive-item-body h3 a:hover { color: var(--primary); }
.archive-item-body p { font-size: .875rem; color: var(--gray-600); line-height: 1.5; margin-bottom: 8px; }
.archive-item-body .article-card-meta { border: none; padding: 0; }

/* ====================================================
   ABOUT PAGE
   ==================================================== */
.about-hero { position: relative; overflow: hidden; height: 340px; }
.about-hero img { width: 100%; height: 100%; object-fit: cover; }
.about-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 100%);
  display: flex; align-items: center; padding: 0 60px;
}
.about-hero-text h1 { color: var(--white); font-size: 2.4rem; margin-bottom: 10px; }
.about-hero-text p { color: rgba(255,255,255,.8); font-size: 1rem; max-width: 500px; }
.about-content { max-width: 760px; }
.about-content h2 { font-size: 1.5rem; margin: 2rem 0 .8rem; }
.about-content p { font-size: .97rem; line-height: 1.8; color: var(--gray-700); }
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 40px 0; }
.stat-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  text-align: center;
  border-top: 3px solid var(--primary);
}
.stat-box .stat-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.stat-box .stat-label { font-size: .82rem; color: var(--gray-600); font-weight: 600; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.team-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; text-align: center; }
.team-avatar { width: 72px; height: 72px; border-radius: 50%; background: var(--primary); color: var(--white); font-family: var(--font-heading); font-size: 1.6rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.team-card h4 { font-size: .95rem; margin-bottom: 4px; }
.team-card .team-role { font-size: .8rem; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: .82rem; color: var(--gray-600); margin: 0; line-height: 1.5; }

/* ====================================================
   POLICY PAGES
   ==================================================== */
.policy-hero { background: var(--gray-900); padding: 52px 0 40px; }
.policy-hero h1 { color: var(--white); }
.policy-hero .policy-meta { color: rgba(255,255,255,.55); font-size: .82rem; margin-top: 10px; }
.policy-content { max-width: 860px; }
.policy-content h2 { font-size: 1.35rem; margin: 2.2rem 0 .8rem; color: var(--gray-900); padding-top: 1.2rem; border-top: 1px solid var(--gray-200); }
.policy-content h3 { font-size: 1.1rem; margin: 1.5rem 0 .6rem; color: var(--gray-800); }
.policy-content p, .policy-content li { font-size: .95rem; line-height: 1.82; color: var(--gray-700); }
.policy-content ul { list-style: disc; padding-left: 1.6rem; margin-bottom: 1.2rem; }
.policy-content ol { list-style: decimal; padding-left: 1.6rem; margin-bottom: 1.2rem; }
.policy-content li { margin-bottom: .5rem; }
.policy-content strong { color: var(--gray-900); }
.policy-content a { color: var(--primary); text-decoration: underline; }
.policy-content .policy-intro { font-size: 1.02rem; color: var(--gray-700); border-left: 4px solid var(--primary); padding-left: 16px; margin-bottom: 2rem; line-height: 1.8; }
.policy-toc { background: var(--gray-100); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 2rem; }
.policy-toc h4 { font-size: .95rem; margin-bottom: 10px; color: var(--gray-800); }
.policy-toc ol { margin: 0; }
.policy-toc li { font-size: .875rem; line-height: 1.7; }
.policy-toc a { color: var(--primary); text-decoration: none; }
.policy-toc a:hover { text-decoration: underline; }

/* ====================================================
   PAGINATION
   ==================================================== */
.pagination { display: flex; gap: 6px; align-items: center; justify-content: center; padding: 32px 0; }
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  border: 2px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  cursor: pointer;
  transition: all .2s;
}
.page-btn:hover,
.page-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }
.page-btn.disabled { opacity: .4; cursor: not-allowed; }

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.75); margin-top: 0; }
.footer-top { padding: 52px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: .9rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-col p { font-size: .875rem; line-height: 1.7; margin-bottom: 12px; color: rgba(255,255,255,.6); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .875rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { font-size: .875rem; color: rgba(255,255,255,.65); margin-bottom: 10px; display: flex; gap: 8px; align-items: flex-start; }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: var(--white); }

/* Footer bottom */
.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-bottom-left { font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-bottom-right { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-right a { font-size: .8rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom-right a:hover { color: var(--white); }

/* ====================================================
   COOKIE BANNER
   ==================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--gray-900);
  color: rgba(255,255,255,.85);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
  transform: translateY(100%);
  transition: transform .4s ease;
  flex-wrap: wrap;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: .875rem; line-height: 1.5; margin: 0; flex: 1; min-width: 260px; }
.cookie-banner a { color: #7ab4ff; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ====================================================
   BACK TO TOP
   ==================================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
  border: none;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); }

/* ====================================================
   BREADCRUMB (general)
   ==================================================== */
.breadcrumb-bar { background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 10px 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--gray-400); flex-wrap: wrap; }
.breadcrumb-inner a { color: var(--gray-400); }
.breadcrumb-inner a:hover { color: var(--primary); }
.breadcrumb-inner .sep { color: var(--gray-200); }
.breadcrumb-inner .current { color: var(--gray-700); font-weight: 600; }

/* ====================================================
   MISC UTILITIES
   ==================================================== */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.highlight-box { background: var(--primary-light); border-left: 4px solid var(--primary); padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5rem 0; }
.divider { border: none; border-top: 1px solid var(--gray-200); margin: 32px 0; }

/* Info box */
.info-box { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; }
.info-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; border-top: 3px solid var(--primary); }
.info-card h4 { font-size: 1rem; margin-bottom: 8px; color: var(--gray-900); }
.info-card p { font-size: .875rem; color: var(--gray-600); margin: 0; line-height: 1.55; }

/* Section bg alt */
.bg-white { background: var(--white); }
.bg-dark { background: var(--gray-900); color: var(--white); }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .layout-main { grid-template-columns: 1fr 280px; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .news-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .header-inner { flex-wrap: wrap; gap: 12px; }
  .header-search input { width: 160px; }
  .hamburger { display: flex; }
  .nav-menu { display: none; flex-direction: column; width: 100%; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 20px; border-bottom: 1px solid rgba(255,255,255,.06); border-bottom-color: rgba(255,255,255,.06); border-right: none; }
  .main-nav .container { flex-wrap: wrap; }
  .nav-date-right { display: none; }
  .hero-img { height: 360px; }
  .hero-content { padding: 24px 20px 28px; }
  .layout-main { grid-template-columns: 1fr; }
  .sidebar { margin-top: 0; }
  .news-grid-3 { grid-template-columns: 1fr 1fr; }
  .news-grid-2 { grid-template-columns: 1fr; }
  .featured-strip .container { grid-template-columns: 1fr; }
  .strip-item { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .analysis-grid { grid-template-columns: 1fr; }
  .analysis-main { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 28px; }
  .analysis-list { padding-left: 0; padding-top: 24px; }
  .contact-grid { grid-template-columns: 1fr; }
  .article-page { padding: 24px 20px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .about-hero { height: 240px; }
  .about-hero-overlay { padding: 0 24px; }
  .about-hero-text h1 { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cat-header { height: 160px; }
  .cat-header-overlay { padding: 0 20px; }
  .cat-header-title { font-size: 1.5rem; }
  .info-box { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .archive-item-img { width: 100px; height: 80px; }
}

/* ---- POLICY PAGES ---- */
.policy-page { max-width: 820px; }
.policy-header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 2px solid var(--gray-200); }
.policy-header h1 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: .5rem; }
.policy-meta { font-size: .875rem; color: var(--gray-600); margin-bottom: 1rem; }
.policy-intro { font-size: 1.03rem; color: var(--gray-700); line-height: 1.7; }
.policy-toc { background: var(--gray-100); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 2.5rem; }
.policy-toc h2 { font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-600); margin-bottom: .75rem; }
.policy-toc ol { padding-left: 1.4rem; }
.policy-toc li { margin-bottom: .35rem; font-size: .92rem; }
.policy-toc a { color: var(--primary); }
.policy-section { margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--gray-200); }
.policy-section:last-child { border-bottom: none; }
.policy-section h2 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--gray-900); }
.policy-section h3 { font-size: 1.02rem; margin: 1.25rem 0 .6rem; color: var(--gray-800); }
.policy-list { padding-left: 1.4rem; margin-bottom: 1rem; }
.policy-list li { margin-bottom: .5rem; font-size: .95rem; line-height: 1.65; list-style: disc; }
.policy-list ol { padding-left: 1.2rem; }
.policy-table-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; }
.policy-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.policy-table th { background: var(--gray-800); color: var(--white); padding: 10px 14px; text-align: left; font-weight: 600; }
.policy-table td { padding: 9px 14px; border-bottom: 1px solid var(--gray-200); vertical-align: top; }
.policy-table tr:nth-child(even) td { background: var(--gray-100); }

/* ---- SITEMAP ---- */
.sitemap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.sitemap-section { }
.sitemap-section-title { font-size: 1.1rem; font-family: var(--font-heading); color: var(--gray-900); margin-bottom: 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--primary); display: inline-block; }
.sitemap-list { padding: 0; }
.sitemap-list li { list-style: none; padding: .45rem 0; border-bottom: 1px solid var(--gray-200); font-size: .92rem; }
.sitemap-list li:last-child { border-bottom: none; }
.sitemap-list a { color: var(--primary); font-weight: 600; }
.sitemap-list a:hover { color: var(--primary-dark); }
.sitemap-desc { color: var(--gray-600); font-size: .85rem; }

/* ---- AUTHORS GRID ---- */
.authors-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
.author-full-card { display: flex; gap: 1.25rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.author-full-avatar { width: 64px; height: 64px; min-width: 64px; border-radius: 50%; background: var(--primary); color: var(--white); font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.author-full-body { flex: 1; }
.author-full-body h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.author-role { font-size: .85rem; color: var(--primary); font-weight: 600; margin-bottom: .6rem; display: block; }
.author-full-body p { font-size: .9rem; color: var(--gray-700); margin-bottom: .75rem; }
.author-topics { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .6rem; }
.author-email { font-size: .875rem; color: var(--primary); }

/* ---- ADV / STATS ---- */
.adv-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 2rem; }
.adv-stat-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.25rem; text-align: center; box-shadow: var(--shadow); }
.adv-stat-num { display: block; font-size: 1.8rem; font-family: var(--font-heading); font-weight: 900; color: var(--primary); margin-bottom: .2rem; }
.adv-stat-card span:last-child { font-size: .85rem; color: var(--gray-600); }
.adv-formats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.adv-format-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.adv-format-card h3 { font-size: 1rem; margin-bottom: .6rem; color: var(--gray-900); }
.adv-format-card ul { padding-left: 1.2rem; margin-bottom: 1rem; font-size: .875rem; color: var(--gray-600); }
.adv-format-card ul li { list-style: disc; margin-bottom: .3rem; }

/* ---- ARCHIVE EXTRAS ---- */
.archive-year-heading { font-size: 1.5rem; margin: 2rem 0 1rem; padding-bottom: .5rem; border-bottom: 2px solid var(--gray-200); }
.archive-month-group { margin-bottom: 2rem; }
.archive-month-title { font-size: 1.05rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 600; }
.archive-filter-bar { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 1.5rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1rem 1.25rem; }
.archive-search-form { display: flex; gap: 0; flex: 1; min-width: 220px; }
.archive-search-form input { flex: 1; padding: 8px 12px; border: 1px solid var(--gray-200); border-right: none; border-radius: var(--radius) 0 0 var(--radius); font-size: .9rem; outline: none; }
.archive-search-form input:focus { border-color: var(--primary); }
.archive-search-form .btn { border-radius: 0 var(--radius) var(--radius) 0; }

/* ---- REPORT FEATURED ---- */
.report-featured-card { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 2rem; }
.report-feat-img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.report-feat-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.report-feat-body h3 { font-size: 1.25rem; margin-bottom: .75rem; }
.report-feat-body p { font-size: .92rem; color: var(--gray-700); margin-bottom: 1rem; }
.report-stats { padding-left: 0; list-style: none; margin-bottom: 1.5rem; font-size: .875rem; color: var(--gray-700); }
.report-stats li { padding: .3rem 0; border-bottom: 1px solid var(--gray-100); }

/* ---- ANALYSIS FEATURED ---- */
.analysis-featured-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.analysis-featured-main { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.analysis-feat-img { width: 100%; height: 240px; object-fit: cover; }
.analysis-feat-body { padding: 1.5rem; }
.analysis-feat-body h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.analysis-featured-side { display: flex; flex-direction: column; gap: 1rem; }
.archive-item-compact { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1rem; }

@media (max-width: 480px) {
  .news-grid-3 { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius); }
  .newsletter-form input { border-radius: var(--radius) var(--radius) 0 0; }
  .newsletter-form button { border-radius: 0 0 var(--radius) var(--radius); }
  .hero-img { height: 280px; }
  .share-bar { gap: 8px; }
  .share-btn { padding: 6px 12px; font-size: .78rem; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .adv-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .adv-formats-grid { grid-template-columns: 1fr; }
  .report-featured-card { grid-template-columns: 1fr; }
  .analysis-featured-grid { grid-template-columns: 1fr; }
  .author-full-card { flex-direction: column; }
}

/* auto-aliases R13 */
:root {
  --bg-muted: #f3f4f6;
  --gray-50: #f9fafb;
  --text-muted: #6b7280;
}
