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

:root {
  --primary: #1B3A6B;
  --primary-light: #2B5DA0;
  --secondary: #2563EB;
  --accent: #1E40AF;
  --text-dark: #111827;
  --text-medium: #374151;
  --text-light: #6B7280;
  --bg-white: #FFFFFF;
  --bg-light: #F9FAFB;
  --bg-gray: #F3F4F6;
  --border: #E5E7EB;
  --border-dark: #D1D5DB;
  --success: #059669;
  --error: #DC2626;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.13);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --transition: 0.24s ease;
}

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

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Lora', serif;
  color: var(--primary);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); }

p { margin-bottom: 1rem; color: var(--text-medium); }
p:last-child { margin-bottom: 0; }
ul,ol { padding-left: 1.5rem; }

.container        { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container--wide  { max-width: 1400px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow{ max-width: 860px;  margin: 0 auto; padding: 0 1.5rem; }

/* ====== TOP BAR ====== */
.top-bar {
  background: var(--primary);
  padding: 6px 0;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.75);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a { color: rgba(255,255,255,0.75); }
.top-bar a:hover { color: #fff; }
.top-bar-left, .top-bar-right { display: flex; gap: 1.25rem; align-items: center; }

/* ====== HEADER ====== */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
  gap: 1.5rem;
}

.site-logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-name {
  font-family: 'Lora', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.logo-tagline {
  font-size: 0.68rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3px;
}

.main-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-item { position: relative; }

.nav-link {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.855rem;
  font-weight: 600;
  color: var(--text-medium);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }

.nav-link.has-dropdown::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.65rem;
  vertical-align: 1px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 256px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--transition);
  z-index: 200;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.855rem;
  color: var(--text-medium);
  transition: all var(--transition);
  border-bottom: 1px solid var(--border);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--bg-light); color: var(--primary); padding-left: 1.6rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  background: linear-gradient(135deg, #122d55 0%, #1B3A6B 45%, #2B5DA0 100%);
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 530px;
  padding: 5rem 0;
}
.hero-inner { max-width: 700px; }
.hero-section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; line-height: 1.18; }
.hero-lead {
  font-size: 1.075rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.25rem;
  line-height: 1.7;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.7rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.btn-primary { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,99,235,0.32);
}
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.9rem 2.25rem; font-size: 0.975rem; }

/* ====== SECTIONS ====== */
.section      { padding: 5rem 0; }
.section--sm  { padding: 3rem 0; }
.section--lg  { padding: 7rem 0; }
.section--gray { background: var(--bg-light); }
.section--dark { background: var(--primary); color: #fff; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.78); }

.section-header { margin-bottom: 3rem; }
.section-header--centered { text-align: center; }

.section-label {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.6rem;
}
.section-header h2 { margin-bottom: 0.65rem; }
.section-lead { font-size: 1rem; color: var(--text-light); max-width: 580px; }
.section-header--centered .section-lead { margin: 0 auto; }

.section-divider {
  width: 44px;
  height: 3px;
  background: var(--secondary);
  margin: 0.9rem 0 1.5rem;
  border-radius: 2px;
}
.section-header--centered .section-divider { margin: 0.9rem auto 1.5rem; }

/* ====== GRID ====== */
.grid   { display: grid; gap: 1.75rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); }

/* ====== ARTICLE CARD ====== */
.article-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.article-card__image {
  position: relative;
  overflow: hidden;
  height: 196px;
}
.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.article-card:hover .article-card__image img { transform: scale(1.04); }

.article-card__cat {
  position: absolute;
  bottom: 0.7rem;
  left: 0.7rem;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  padding: 3px 9px;
  border-radius: 3px;
}

.article-card__body {
  padding: 1.25rem 1.4rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.65rem;
  font-size: 0.765rem;
  color: var(--text-light);
  flex-wrap: wrap;
}
.article-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; line-height: 1.38; }
.article-card h3 a { color: var(--text-dark); }
.article-card h3 a:hover { color: var(--primary); }
.article-card__excerpt {
  font-size: 0.865rem;
  color: var(--text-medium);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.1rem;
}
.article-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.read-more {
  font-size: 0.815rem;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition);
}
.read-more::after { content: ' →'; }
.read-more:hover { color: var(--accent); }
.article-card__author { font-size: 0.765rem; color: var(--text-light); }

/* ====== FEATURED ARTICLE ====== */
.featured-article {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.featured-article:hover { box-shadow: var(--shadow-md); }

.featured-article__image { overflow: hidden; min-height: 380px; }
.featured-article__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.featured-article:hover .featured-article__image img { transform: scale(1.03); }

.featured-article__content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-article__cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--secondary);
  margin-bottom: 0.9rem;
}
.featured-article h2 { font-size: 1.65rem; margin-bottom: 0.9rem; line-height: 1.28; }
.featured-article h2 a { color: var(--text-dark); }
.featured-article h2 a:hover { color: var(--primary); }
.featured-article__meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.1rem;
  font-size: 0.795rem;
  color: var(--text-light);
  flex-wrap: wrap;
}
.featured-article__excerpt {
  font-size: 0.94rem;
  color: var(--text-medium);
  line-height: 1.72;
  margin-bottom: 1.65rem;
  flex: 1;
}

/* ====== SIDEBAR ====== */
.sidebar { display: flex; flex-direction: column; gap: 2rem; }
.sidebar-widget {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.sidebar-widget__title {
  font-family: 'Lora', serif;
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--secondary);
}
.sidebar-post {
  display: flex;
  gap: 0.85rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-post:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-post__img {
  width: 70px;
  height: 58px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.sidebar-post__img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post h4 {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.38;
  margin-bottom: 4px;
}
.sidebar-post h4 a { color: inherit; }
.sidebar-post h4 a:hover { color: var(--secondary); }
.sidebar-post time { font-size: 0.74rem; color: var(--text-light); }

/* Tags */
.tag-list { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.tag {
  display: inline-block;
  padding: 4px 11px;
  background: var(--bg-gray);
  color: var(--text-medium);
  border-radius: 100px;
  font-size: 0.795rem;
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.tag:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ====== ARTICLE LAYOUT ====== */
.article-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }

.article-header { margin-bottom: 2rem; }
.article-header__cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--secondary);
  margin-bottom: 0.9rem;
}
.article-header h1 { margin-bottom: 1.1rem; }
.article-header__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
  font-size: 0.84rem;
  color: var(--text-light);
}
.article-header__meta strong { color: var(--text-medium); }

.article-lead {
  font-size: 1.12rem;
  color: var(--text-medium);
  line-height: 1.72;
  margin-bottom: 2rem;
  font-style: italic;
  font-family: 'Lora', serif;
}
.article-image { margin: 0 0 2rem; border-radius: var(--radius-md); overflow: hidden; }
.article-image img { width: 100%; height: 400px; object-fit: cover; }
.article-image figcaption {
  font-size: 0.795rem;
  color: var(--text-light);
  text-align: center;
  padding: 0.65rem 1rem;
  background: var(--bg-gray);
}

.article-body h2 { font-size: 1.45rem; margin: 2.25rem 0 1rem; }
.article-body h3 { font-size: 1.2rem; margin: 1.75rem 0 0.85rem; }
.article-body p { margin-bottom: 1.25rem; font-size: 1rem; line-height: 1.82; }
.article-body ul, .article-body ol { margin-bottom: 1.25rem; }
.article-body li { margin-bottom: 0.5rem; font-size: 1rem; line-height: 1.72; }
.article-body blockquote {
  border-left: 4px solid var(--secondary);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  background: var(--bg-light);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-body blockquote p { font-size: 1.1rem; font-style: italic; color: var(--text-medium); margin: 0; }
.article-body blockquote cite {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.84rem;
  color: var(--text-light);
  font-style: normal;
}

/* ====== STATS BAR ====== */
.stats-bar { background: var(--primary); padding: 3.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item { color: #fff; }
.stat-number {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.45rem;
}
.stat-label { font-size: 0.84rem; color: rgba(255,255,255,0.72); letter-spacing: 0.04em; }

/* ====== PAGE HERO ====== */
.page-hero {
  background: linear-gradient(135deg, #122d55 0%, #1B3A6B 100%);
  padding: 3.25rem 0;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 0.65rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.02rem; margin: 0; }

/* ====== BREADCRUMB ====== */
.breadcrumb { background: var(--bg-gray); padding: 0.8rem 0; border-bottom: 1px solid var(--border); }
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
  font-size: 0.815rem;
  flex-wrap: wrap;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 0.45rem; color: var(--text-light); }
.breadcrumb-list li::after { content: '/'; color: var(--border-dark); }
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list li:last-child { color: var(--text-medium); }
.breadcrumb-list a { color: var(--text-medium); }
.breadcrumb-list a:hover { color: var(--secondary); }

/* ====== CONTACT ====== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info__item { display: flex; gap: 1rem; margin-bottom: 1.75rem; }
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--bg-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info__content h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 4px; color: var(--primary); }
.contact-info__content p, .contact-info__content a { font-size: 0.88rem; color: var(--text-medium); margin: 0; }

.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-control {
  width: 100%;
  padding: 0.72rem 1rem;
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-success {
  display: none;
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.form-success-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.form-success h4 { color: #065F46; margin-bottom: 0.5rem; font-size: 1.2rem; }
.form-success p { color: #047857; margin: 0; font-size: 0.9rem; }

/* ====== NEWSLETTER ====== */
.newsletter-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}
.newsletter-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.newsletter-form-js { display: flex; max-width: 460px; }
.newsletter-input {
  flex: 1;
  padding: 0.72rem 1.2rem;
  font-size: 0.9rem;
  font-family: 'Open Sans', sans-serif;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  outline: none;
  background: #fff;
  color: var(--text-dark);
}
.newsletter-input:focus { border-color: var(--secondary); }
.newsletter-btn {
  padding: 0.72rem 1.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-btn:hover { background: var(--secondary); }

/* ====== EXPERT CARDS ====== */
.expert-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.expert-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.expert-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.2rem;
  border: 3px solid var(--border);
}
.expert-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.expert-card h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.expert-card__role { font-size: 0.815rem; color: var(--secondary); font-weight: 600; margin-bottom: 0.8rem; }
.expert-card__bio { font-size: 0.855rem; color: var(--text-medium); line-height: 1.62; }

/* ====== DATA CARDS ====== */
.data-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--transition);
}
.data-card:hover { box-shadow: var(--shadow-sm); }
.data-card__label {
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.45rem;
}
.data-card__value {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.data-card__trend { font-size: 0.815rem; color: var(--success); }
.data-card__trend.down { color: var(--error); }

.progress-bar { height: 6px; background: var(--bg-gray); border-radius: 100px; overflow: hidden; margin: 0.75rem 0; }
.progress-bar__fill { height: 100%; background: var(--secondary); border-radius: 100px; }

/* ====== PAGINATION ====== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 0.45rem; margin-top: 3rem; }
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-medium);
  text-decoration: none;
  transition: all var(--transition);
}
.page-link:hover, .page-link.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ====== SEARCH ====== */
.search-form-js { display: flex; max-width: 580px; margin: 2rem auto; }
.search-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  font-size: 0.95rem;
  font-family: 'Open Sans', sans-serif;
  border: 2px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  outline: none;
  background: #fff;
  color: var(--text-dark);
}
.search-input:focus { border-color: var(--primary); }
.search-btn {
  padding: 0 1.5rem;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  transition: background var(--transition);
}
.search-btn:hover { background: var(--secondary); border-color: var(--secondary); }

/* ====== POLICY PAGES ====== */
.policy-content { padding: 4rem 0; }
.policy-meta {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.865rem;
  color: var(--text-medium);
}
.policy-meta strong { color: var(--text-dark); }
.policy-toc {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}
.policy-toc h4 { font-size: 0.9rem; color: var(--primary); margin-bottom: 0.9rem; }
.policy-toc ol { padding-left: 1.25rem; }
.policy-toc li { margin-bottom: 0.4rem; }
.policy-toc a { font-size: 0.875rem; color: var(--text-medium); }
.policy-toc a:hover { color: var(--secondary); }

.policy-body h2 {
  font-size: 1.35rem;
  margin: 2.75rem 0 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--primary);
}
.policy-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.policy-body h3 { font-size: 1.08rem; margin: 1.5rem 0 0.75rem; }
.policy-body p { margin-bottom: 1rem; line-height: 1.78; }
.policy-body ul, .policy-body ol { margin: 0.75rem 0 1.25rem; }
.policy-body li { margin-bottom: 0.5rem; line-height: 1.68; font-size: 0.94rem; }
.policy-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.875rem; }
.policy-body table th, .policy-body table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--border);
}
.policy-body table th { background: var(--bg-gray); font-weight: 600; color: var(--text-dark); }
.policy-body table tr:nth-child(even) td { background: var(--bg-light); }

/* ====== SITEMAP ====== */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.sitemap-cat h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--primary);
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--secondary);
  margin-bottom: 1rem;
}
.sitemap-links { list-style: none; padding: 0; }
.sitemap-links li { border-bottom: 1px solid var(--border); }
.sitemap-links a {
  display: block;
  padding: 0.48rem 0;
  font-size: 0.875rem;
  color: var(--text-medium);
  transition: color var(--transition), padding var(--transition);
}
.sitemap-links a:hover { color: var(--secondary); padding-left: 0.5rem; }

/* ====== INFOBOX ====== */
.infobox {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin: 2rem 0;
  background: var(--bg-light);
}
.infobox--blue { background: #EFF6FF; border-color: #BFDBFE; }
.infobox h4 { color: var(--primary); margin-bottom: 0.65rem; font-size: 0.95rem; }
.infobox p, .infobox li { font-size: 0.9rem; }

/* ====== MEDIA LANDSCAPE ====== */
.media-type-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--transition);
}
.media-type-card:hover { box-shadow: var(--shadow-sm); }
.media-type-card__number {
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}
.media-type-card h4 { color: var(--primary); margin-bottom: 0.5rem; }
.media-type-card p { font-size: 0.875rem; }

/* ====== UTILITIES ====== */
.text-center { text-align: center; }
.text-muted   { color: var(--text-light); }
.fw-bold      { font-weight: 700; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.mt-2{margin-top:1rem}.mb-2{margin-bottom:1rem}
.mt-3{margin-top:1.5rem}.mb-3{margin-bottom:1.5rem}
.mt-4{margin-top:2rem}.mb-4{margin-bottom:2rem}

/* ====== FOOTER ====== */
.site-footer { background: #0D2140; color: rgba(255,255,255,0.72); padding: 4rem 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-name { color: #fff; font-size: 1.55rem; }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.45); }
.footer-brand p { color: rgba(255,255,255,0.62); font-size: 0.865rem; line-height: 1.72; margin-top: 1rem; }
.footer-title {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { font-size: 0.865rem; color: rgba(255,255,255,0.62); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 0.7rem; margin-bottom: 0.9rem; font-size: 0.855rem; align-items: flex-start; }
.footer-contact-item span:first-child { flex-shrink: 0; opacity: 0.55; }
.footer-contact-item a { color: rgba(255,255,255,0.62); }
.footer-contact-item a:hover { color: #fff; }
.footer-contact-item span:not(:first-child) { color: rgba(255,255,255,0.62); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.795rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .grid-4     { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-article { grid-template-columns: 1fr; }
  .featured-article__image { min-height: 260px; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 5rem 1.75rem 2rem;
    box-shadow: -4px 0 24px rgba(0,0,0,0.16);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .nav-list { flex-direction: column; width: 100%; }
  .nav-link { padding: 0.75rem 0; font-size: 0.95rem; border-bottom: 1px solid var(--border); }
  .dropdown-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none;
    border-left: 2px solid var(--secondary);
    margin-left: 1rem;
    display: none;
  }
  .nav-item.open .dropdown-menu { display: block; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .top-bar-left { display: none; }
  .hero h1 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero { min-height: 440px; }
  .hero-content { min-height: 440px; padding: 3rem 0; }
  .section { padding: 3rem 0; }
  .contact-form { padding: 1.5rem; }
}

/* auto-aliases R13 */
:root {
  --bg-dark: #0f172a;
}
