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

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

:root {
  --bg: #F8F9FB;
  --surface: #FFFFFF;
  --border: #E4E7EE;
  --text-primary: #1A1D27;
  --text-secondary: #4B5163;
  --text-muted: #8A90A0;
  --indigo: #4338CA;
  --indigo-light: #EEF2FF;
  --indigo-mid: #6366F1;
  --orange: #EA580C;
  --orange-light: #FFF7ED;
  --orange-mid: #F97316;
  --green: #16A34A;
  --green-light: #F0FDF4;
  --red: #DC2626;
  --red-light: #FEF2F2;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,.10), 0 4px 8px rgba(0,0,0,.06);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lora', Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.font-sans {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.25;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ─── LAYOUT ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 20px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ─── SITE HEADER ───────────────────────────────────────────── */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-mid) 100%);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -1px;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.logo-text span {
  color: var(--indigo);
}

.logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--indigo-light);
  color: var(--indigo);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-search {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background .2s;
  color: var(--text-secondary);
}
.btn-search:hover { background: var(--indigo-light); color: var(--indigo); }
.btn-search svg { width: 17px; height: 17px; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: .3s;
}

/* ─── TOP BAR ───────────────────────────────────────────────── */
.top-bar {
  background: var(--text-primary);
  color: #fff;
  padding: 6px 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar-date { color: rgba(255,255,255,.65); }
.top-bar-links { display: flex; gap: 16px; }
.top-bar-links a { color: rgba(255,255,255,.8); transition: color .2s; }
.top-bar-links a:hover { color: var(--orange-mid); }
.breaking-strip {
  background: var(--orange);
  color: #fff;
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  overflow: hidden;
}
.breaking-strip-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.breaking-label {
  background: rgba(0,0,0,.2);
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.breaking-ticker { overflow: hidden; flex: 1; }
.breaking-ticker-inner {
  display: inline-flex;
  gap: 60px;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb {
  padding: 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--indigo); }
.breadcrumb span { margin: 0 6px; }

/* ─── CATEGORY BADGE ────────────────────────────────────────── */
.cat-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  line-height: 1.5;
}
.cat-politika { background: var(--indigo-light); color: var(--indigo); }
.cat-ekonomija { background: var(--green-light); color: var(--green); }
.cat-drustvo { background: var(--orange-light); color: var(--orange); }
.cat-svijet { background: #F0F4FF; color: #3B5BDB; }
.cat-analitika { background: #F5F0FF; color: #7C3AED; }
.cat-kultura { background: #FFF0F6; color: #E91E8C; }
.cat-sport { background: #F0FFF4; color: #2D6A4F; }

/* ─── HERO SECTION ──────────────────────────────────────────── */
.hero-section {
  padding: 40px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  grid-template-rows: auto auto;
  gap: 24px;
}

.hero-lead {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.hero-lead img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-lead-content {
  padding: 28px 32px 32px;
}

.hero-lead-content h1 {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.2;
  margin: 12px 0 14px;
  color: var(--text-primary);
}

.hero-lead-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: var(--text-muted);
}
.hero-meta a { color: var(--indigo); font-weight: 600; }

.hero-secondary {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-sec-item {
  background: var(--surface);
  padding: 16px 20px;
  transition: background .2s;
  cursor: pointer;
}
.hero-sec-item:hover { background: var(--indigo-light); }
.hero-sec-item:hover h3 { color: var(--indigo); }
.hero-sec-item h3 {
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
  margin: 7px 0 6px;
  color: var(--text-primary);
  transition: color .2s;
}
.hero-sec-item .meta-small {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: var(--text-muted);
}

.hero-thirds {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ─── ARTICLE CARD ──────────────────────────────────────────── */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-image { position: relative; overflow: hidden; }
.card-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform .4s;
}
.card:hover .card-image img { transform: scale(1.03); }
.card-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 {
  font-size: 15.5px;
  line-height: 1.3;
  margin: 10px 0 10px;
  color: var(--text-primary);
}
.card-body h3 a:hover { color: var(--indigo); }
.card-body p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: auto;
}
.card-meta-left { display: flex; align-items: center; gap: 10px; }
.read-time {
  background: var(--bg);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ─── CARD HORIZONTAL ───────────────────────────────────────── */
.card-h {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 0;
  transition: box-shadow .25s;
}
.card-h:hover { box-shadow: var(--shadow-md); }
.card-h .card-image { flex-shrink: 0; width: 160px; }
.card-h .card-image img { width: 160px; height: 100%; min-height: 120px; object-fit: cover; }
.card-h .card-body { padding: 16px 18px; }
.card-h .card-body h3 { font-size: 14px; margin: 6px 0 8px; }
.card-h .card-body p { font-size: 13px; margin-bottom: 10px; }

/* ─── LIST ARTICLE ──────────────────────────────────────────── */
.article-list-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.article-list-item:last-child { border-bottom: none; }
.article-list-img { flex-shrink: 0; width: 110px; height: 78px; border-radius: var(--radius-sm); overflow: hidden; }
.article-list-img img { width: 100%; height: 100%; object-fit: cover; }
.article-list-body h3 {
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 6px;
}
.article-list-body h3 a:hover { color: var(--indigo); }
.article-list-body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 8px;
}
.article-list-meta {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
}

/* ─── SECTION HEADER ────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  position: relative;
}
.section-header::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--indigo);
}
.section-header h2 {
  font-size: 20px;
  color: var(--text-primary);
}
.section-header .see-all {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--indigo);
  display: flex;
  align-items: center;
  gap: 5px;
}
.section-header .see-all:hover { color: var(--indigo-mid); }

/* ─── GRID LAYOUTS ──────────────────────────────────────────── */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-2-1 { display: grid; grid-template-columns: 1fr 340px; gap: 28px; }

/* ─── PAGE SECTION ──────────────────────────────────────────── */
.page-section { padding: 52px 0; }
.page-section + .page-section { padding-top: 0; }
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ─── SIDEBAR ───────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.sidebar-widget {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-list li {
  border-bottom: 1px solid var(--border);
  padding: 11px 0;
}
.sidebar-list li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-list a {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.35;
  display: block;
  transition: color .2s;
}
.sidebar-list a:hover { color: var(--indigo); }
.sidebar-list .meta-sm {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
}

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: background .2s, color .2s, border-color .2s;
}
.tag:hover {
  background: var(--indigo-light);
  color: var(--indigo);
  border-color: var(--indigo-light);
}

/* ─── STATS STRIP ───────────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, var(--indigo) 0%, #3730A3 100%);
  padding: 40px 0;
  color: #fff;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item h3 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.stat-item p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.75);
}

/* ─── NEWSLETTER ────────────────────────────────────────────── */
.newsletter-block {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFFBF5 100%);
  border: 1px solid #FED7AA;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.newsletter-text h3 { font-size: 22px; margin-bottom: 8px; }
.newsletter-text p { font-size: 14px; color: var(--text-secondary); }
.newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.newsletter-form input {
  padding: 11px 16px;
  border: 1.5px solid #FED7AA;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  width: 240px;
  background: #fff;
  outline: none;
  transition: border-color .2s;
}
.newsletter-form input:focus { border-color: var(--orange); }
.newsletter-success {
  display: none;
  background: var(--green-light);
  border: 1px solid #86EFAC;
  color: var(--green);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--indigo); color: #fff; }
.btn-primary:hover { background: #3730A3; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: #C2410C; }
.btn-outline {
  background: transparent;
  color: var(--indigo);
  border: 1.5px solid var(--indigo);
}
.btn-outline:hover { background: var(--indigo-light); }
.btn-ghost {
  background: var(--bg);
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--indigo-light); color: var(--indigo); border-color: var(--indigo-light); }
.btn-sm { font-size: 12.5px; padding: 7px 15px; }
.btn-lg { font-size: 15px; padding: 13px 28px; }

/* ─── ARTICLE CONTENT ───────────────────────────────────────── */
.article-page { padding: 40px 0 60px; }
.article-header { margin-bottom: 30px; }
.article-header h1 {
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.2;
  margin: 14px 0 18px;
  color: var(--text-primary);
}
.article-header .lead {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  border-left: 3px solid var(--orange);
  padding-left: 18px;
  margin: 18px 0;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.article-meta-bar .author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--indigo-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--indigo);
  flex-shrink: 0;
}
.article-meta-bar .author-info { flex: 1; }
.article-meta-bar .author-info strong {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
}
.article-meta-bar .author-info span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
}
.article-meta-bar .article-stats {
  display: flex;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: var(--text-muted);
}

.article-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}
.article-hero-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}
.article-hero-img figcaption {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: var(--text-muted);
  padding: 10px 14px;
  background: var(--bg);
  text-align: center;
  font-style: italic;
}

.article-body { font-size: 16.5px; line-height: 1.8; color: var(--text-primary); }
.article-body h2 {
  font-size: 22px;
  margin: 34px 0 14px;
  color: var(--text-primary);
}
.article-body h3 { font-size: 19px; margin: 28px 0 12px; }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 16px 0 20px 24px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 4px solid var(--orange);
  padding: 16px 22px;
  margin: 28px 0;
  background: var(--orange-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  font-size: 17px;
  color: var(--text-secondary);
}
.article-body blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}
.article-body .highlight-box {
  background: var(--indigo-light);
  border-left: 4px solid var(--indigo);
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-body .highlight-box p { margin-bottom: 0; color: var(--indigo); font-size: 15px; }

.article-tags { margin: 36px 0 30px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.article-tags strong {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-right: 4px;
}

.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 28px 0;
}
.share-bar span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 4px;
}
.share-btn {
  padding: 7px 16px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity .2s;
}
.share-btn:hover { opacity: .85; }
.share-fb { background: #1877F2; color: #fff; }
.share-tw { background: #1DA1F2; color: #fff; }
.share-li { background: #0A66C2; color: #fff; }
.share-copy { background: var(--bg); color: var(--text-secondary); border: 1px solid var(--border); }

/* ─── AUTHOR BOX ────────────────────────────────────────────── */
.author-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  gap: 20px;
  margin: 32px 0;
}
.author-box-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--indigo-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--indigo);
}
.author-box-info h4 {
  font-size: 16px;
  margin-bottom: 6px;
}
.author-box-info p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.author-box-info .author-role {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--indigo);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

/* ─── ANALYTICS CARD ────────────────────────────────────────── */
.analytics-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow .25s, transform .25s;
}
.analytics-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.analytics-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.analytics-card-body { padding: 24px 26px 28px; }
.analytics-card-body .category-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.analytics-card-body h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.analytics-card-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}
.analytics-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ─── FEATURED QUOTE ────────────────────────────────────────── */
.featured-quote {
  background: linear-gradient(135deg, var(--indigo) 0%, #3730A3 100%);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.featured-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 30px;
  font-size: 200px;
  font-family: Georgia, serif;
  color: rgba(255,255,255,.08);
  line-height: 1;
}
.featured-quote blockquote {
  font-size: 22px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.featured-quote cite {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  color: rgba(255,255,255,.8);
}

/* ─── CATEGORY PAGE HEADER ──────────────────────────────────── */
.cat-page-header {
  padding: 32px 0 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.cat-page-header h1 { font-size: 32px; margin: 8px 0 10px; }
.cat-page-header p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 620px;
}

/* ─── PAGINATION ────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 0;
}
.page-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: .2s;
  text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  background: var(--indigo);
  color: #fff;
  border-color: var(--indigo);
}
.page-btn.wide { width: auto; padding: 0 14px; }

/* ─── CONTACT PAGE ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}
.contact-form-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 { font-size: 22px; margin-bottom: 8px; }
.contact-form-wrap > p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg);
  outline: none;
  transition: border-color .2s, background .2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
  background: #fff;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-wrap { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h4 {
  font-size: 14px;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.contact-info-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--indigo-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--indigo);
}
.contact-icon svg { width: 16px; height: 16px; }
.contact-info-text strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.contact-info-text span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-secondary);
}

.success-message {
  display: none;
  background: var(--green-light);
  border: 1.5px solid #86EFAC;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 20px;
  color: var(--green);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.success-message.visible { display: block; }

/* ─── POLICY PAGES ──────────────────────────────────────────── */
.policy-page { padding: 48px 0 72px; }
.policy-content h1 { font-size: 32px; margin-bottom: 10px; }
.policy-content .policy-intro {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.policy-content h2 {
  font-size: 20px;
  margin: 36px 0 14px;
  color: var(--text-primary);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.policy-content h3 { font-size: 17px; margin: 22px 0 10px; }
.policy-content p { margin-bottom: 16px; font-size: 15px; line-height: 1.75; color: var(--text-secondary); }
.policy-content ul { margin: 12px 0 18px 22px; list-style: disc; }
.policy-content ol { margin: 12px 0 18px 22px; list-style: decimal; }
.policy-content li { margin-bottom: 8px; font-size: 15px; color: var(--text-secondary); line-height: 1.65; }
.policy-content a { color: var(--indigo); text-decoration: underline; }
.policy-meta {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-bottom: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* ─── ABOUT PAGE ────────────────────────────────────────────── */
.about-hero {
  padding: 52px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-hero h1 { font-size: 36px; margin-bottom: 18px; line-height: 1.2; }
.about-hero p { font-size: 15.5px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 18px; }
.about-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-hero-img img { width: 100%; height: 360px; object-fit: cover; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--indigo);
  transition: box-shadow .2s, transform .2s;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.value-icon {
  width: 48px;
  height: 48px;
  background: var(--indigo-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--indigo);
}
.value-icon svg { width: 22px; height: 22px; }
.value-card h3 { font-size: 17px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ─── AUTHORS PAGE ──────────────────────────────────────────── */
.author-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.author-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.author-card-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: var(--indigo-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--indigo);
  border: 3px solid var(--indigo-light);
}
.author-card h3 { font-size: 17px; margin-bottom: 5px; }
.author-card .role {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--indigo);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.author-card p { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.author-card .articles-count {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── SEARCH PAGE ───────────────────────────────────────────── */
.search-hero {
  background: linear-gradient(135deg, var(--indigo) 0%, #3730A3 100%);
  padding: 52px 0;
  color: #fff;
  text-align: center;
}
.search-hero h1 { font-size: 32px; margin-bottom: 12px; color: #fff; }
.search-hero p { font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: 28px; }
.search-box {
  display: flex;
  max-width: 580px;
  margin: 0 auto;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.search-box input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  color: var(--text-primary);
}
.search-box button {
  padding: 14px 24px;
  background: var(--orange);
  border: none;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.search-box button:hover { background: #C2410C; }

/* ─── ARCHIVE ───────────────────────────────────────────────── */
.archive-filter-bar {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-select {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: var(--text-primary);
  background: var(--bg);
  outline: none;
  cursor: pointer;
}
.filter-select:focus { border-color: var(--indigo); }

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: #14161E;
  color: rgba(255,255,255,.75);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin: 14px 0 20px;
}
.footer-brand .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.footer-brand .footer-contact-item svg {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--orange-mid);
}

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--orange-mid); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
}
.footer-bottom-links {
  display: flex;
  gap: 18px;
}
.footer-bottom-links a {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ─── COOKIE BANNER ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1E2030;
  color: #fff;
  padding: 18px 24px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}
.cookie-banner p a { color: var(--orange-mid); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ─── UTILITIES ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); font-family: 'Inter', sans-serif; font-size: 13px; }
.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.hidden { display: none; }

/* ─── MOBILE NAV OVERLAY ────────────────────────────────────── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 200;
  display: none;
}
.mobile-nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--surface);
  z-index: 201;
  padding: 24px;
  transform: translateX(-100%);
  transition: transform .3s ease;
  overflow-y: auto;
}
.mobile-nav-panel.open { transform: translateX(0); }
.mobile-nav-panel .mobile-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.mobile-nav-panel a {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
  transition: color .2s;
}
.mobile-nav-panel a:hover { color: var(--indigo); }

/* ─── PROGRESS BAR ──────────────────────────────────────────── */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--orange);
  z-index: 999;
  width: 0;
  transition: width .1s;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-secondary { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-hero { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2-1 { grid-template-columns: 1fr; }
  .hero-thirds { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .newsletter-block { flex-direction: column; padding: 28px 24px; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .article-hero-img img { height: 220px; }
  .card-h { flex-direction: column; }
  .card-h .card-image { width: 100%; }
  .card-h .card-image img { width: 100%; height: 180px; }
  .top-bar-links { display: none; }
}

@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-lead img { height: 220px; }
  .featured-quote { padding: 28px 24px; }
  .featured-quote blockquote { font-size: 17px; }
}
