/* =============================================
   PRORIM — Informativno-analitički portal
   style.css
============================================= */

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

:root {
  --primary:       #1a6fa8;
  --primary-dark:  #145588;
  --accent:        #3a9bd5;
  --accent-light:  #e8f4fd;
  --accent-mid:    #c2e0f4;
  --text-dark:     #1c1c1e;
  --text-mid:      #444;
  --text-light:    #777;
  --border:        #dde3ea;
  --bg:            #ffffff;
  --bg-light:      #f6f9fc;
  --bg-dark:       #0f2540;
  --red:           #c0392b;
  --green:         #27ae60;
  --shadow-sm:     0 1px 4px rgba(0,0,0,.07);
  --shadow-md:     0 4px 16px rgba(0,0,0,.10);
  --radius:        6px;
  --radius-lg:     12px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout containers ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 56px 0; }
.section-sm { padding: 36px 0; }
.section-lg { padding: 80px 0; }

/* =============================================
   HEADER
============================================= */
.site-header {
  background: var(--bg);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
}
.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.5px;
  line-height: 1;
}
.logo-tagline {
  font-size: .72rem;
  color: var(--text-light);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 3px;
}
.header-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: .8rem;
  color: var(--text-light);
}
.header-meta span { display: flex; align-items: center; gap: 5px; }
.header-meta .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}
.header-search {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  padding: 0 14px;
  gap: 8px;
  height: 36px;
}
.header-search input {
  background: none;
  border: none;
  outline: none;
  font-size: .85rem;
  color: var(--text-dark);
  width: 180px;
}
.header-search button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
  font-size: 1rem;
  padding: 0;
  display: flex;
  align-items: center;
}

/* ---- Main Nav ---- */
.site-nav { border-top: 1px solid var(--border); }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-list li a {
  display: block;
  padding: 10px 14px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .03em;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-list li a:hover,
.nav-list li a.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}
.nav-list li a.nav-highlight {
  color: var(--red);
  font-weight: 600;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ---- Ticker ---- */
.breaking-ticker {
  background: var(--accent-light);
  border-bottom: 1px solid var(--accent-mid);
  padding: 7px 0;
  font-size: .8rem;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ticker-label {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-text {
  white-space: nowrap;
  overflow: hidden;
  color: var(--text-mid);
}
.ticker-text marquee { display: inline-block; width: 100%; }

/* =============================================
   HERO
============================================= */
.hero {
  position: relative;
  overflow: hidden;
  height: 500px;
  display: flex;
  align-items: flex-end;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,26,50,.85) 40%, rgba(10,26,50,.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px 0 44px;
}
.hero-category {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.hero-title {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  max-width: 700px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.hero-excerpt {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
}
.hero-meta a { color: rgba(255,255,255,.75); }
.hero-meta a:hover { color: var(--accent); }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s, border-color .2s;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  box-shadow: 0 4px 12px rgba(26,111,168,.3);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: transparent;
  padding-left: 0;
}
.btn-ghost:hover { color: var(--accent); }
.btn-sm { padding: 7px 16px; font-size: .8rem; }
.btn-lg { padding: 14px 30px; font-size: 1rem; }

/* Read-more arrow */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap .2s, color .2s;
}
.read-more:hover { color: var(--accent); gap: 9px; }
.read-more::after { content: "→"; }

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

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.card-category {
  font-size: .72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
  text-decoration: none;
}
.card-category:hover { color: var(--accent); }
.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
  flex: 1;
}
.card-title a { color: inherit; text-decoration: none; }
.card-title a:hover { color: var(--primary); }
.card-excerpt {
  font-size: .85rem;
  color: var(--text-light);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--text-light);
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.card-meta .author { font-weight: 500; color: var(--text-mid); }

/* Horizontal card */
.card-h {
  display: flex;
  flex-direction: row;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  transition: box-shadow .2s;
}
.card-h:hover { box-shadow: var(--shadow-md); }
.card-h .card-image {
  width: 140px;
  min-width: 140px;
  aspect-ratio: auto;
  height: 110px;
  object-fit: cover;
}
.card-h .card-body { padding: 14px; }

/* =============================================
   SIDEBAR
============================================= */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
.sidebar { }
.widget {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.widget-header {
  padding: 14px 18px;
  background: var(--bg-light);
  border-bottom: 2px solid var(--accent);
}
.widget-header h3 {
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-dark);
}
.widget-body { padding: 16px 18px; }
.widget-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .85rem;
}
.widget-list li:last-child { border-bottom: none; }
.widget-list li a { color: var(--text-mid); font-weight: 500; }
.widget-list li a:hover { color: var(--primary); }
.widget-list .small-meta {
  font-size: .75rem;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
}

/* Tag cloud */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: 20px;
  font-size: .78rem;
  color: var(--primary);
  font-weight: 500;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.tag:hover { background: var(--primary); color: #fff; }

/* =============================================
   SECTION HEADERS
============================================= */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.section-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-header h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--accent);
  border-radius: 2px;
}

/* =============================================
   BREADCRUMB
============================================= */
.breadcrumb {
  padding: 12px 0;
  font-size: .8rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* =============================================
   ARTICLE PAGE
============================================= */
.article-header { margin-bottom: 28px; }
.article-category-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 14px;
  text-decoration: none;
}
.article-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 14px;
}
.article-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 18px;
  line-height: 1.5;
}
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: .82rem;
  color: var(--text-light);
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.article-meta-bar .author-link {
  font-weight: 600;
  color: var(--primary);
}
.article-featured-image {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 10px;
  max-height: 460px;
  object-fit: cover;
}
.image-caption {
  font-size: .78rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 28px;
  font-style: italic;
}
.article-body { font-size: 1rem; line-height: 1.8; }
.article-body p { margin-bottom: 1.3rem; }
.article-body h2 {
  font-size: 1.4rem;
  margin: 2rem 0 .8rem;
  color: var(--text-dark);
}
.article-body h3 {
  font-size: 1.15rem;
  margin: 1.5rem 0 .6rem;
  color: var(--text-dark);
}
.article-body ul, .article-body ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 1.3rem;
  color: var(--text-mid);
}
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: .5rem; }
.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  background: var(--accent-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-mid);
}
.article-body strong { color: var(--text-dark); }

/* Share bar */
.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  margin-top: 32px;
}
.share-bar span {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  color: #fff;
  text-decoration: none;
}
.share-btn.fb { background: #1877f2; }
.share-btn.tw { background: #1da1f2; }
.share-btn.li { background: #0077b5; }

/* Author box */
.author-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 20px;
  margin-top: 36px;
}
.author-box .author-info h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}
.author-box .author-info p {
  font-size: .85rem;
  margin: 0;
}

/* Related articles */
.related-articles { margin-top: 48px; }

/* =============================================
   ANALYTICS / INFOGRAPHICS
============================================= */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.stat-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-card .stat-label {
  font-size: .8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.stat-card .stat-change {
  font-size: .78rem;
  font-weight: 600;
  margin-top: 4px;
}
.stat-card .stat-change.up { color: var(--green); }
.stat-card .stat-change.down { color: var(--red); }

.data-table-wrap { overflow-x: auto; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.data-table th {
  text-align: left;
  padding: 10px 14px;
  background: var(--bg-light);
  border-bottom: 2px solid var(--border);
  color: var(--text-dark);
  font-weight: 600;
  white-space: nowrap;
}
.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.data-table tr:hover td { background: var(--bg-light); }

/* =============================================
   FORMS
============================================= */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text-dark);
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(58,155,213,.15);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-note { font-size: .78rem; color: var(--text-light); margin-top: 4px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex-shrink: 0;
}
.form-check label { font-size: .85rem; color: var(--text-mid); }
.success-msg {
  display: none;
  background: #eaf7f0;
  border: 1px solid #6fcf97;
  color: #1e7e44;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  margin-top: 16px;
}
.success-msg.show { display: block; }

/* =============================================
   NEWSLETTER BANNER
============================================= */
.newsletter-banner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a4a7a 100%);
  padding: 56px 0;
  text-align: center;
}
.newsletter-banner h2 { color: #fff; margin-bottom: 10px; }
.newsletter-banner p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 11px 16px;
  border: none;
  border-radius: var(--radius);
  font-size: .9rem;
  outline: none;
}
.newsletter-success {
  display: none;
  color: #7fffb4;
  font-weight: 600;
  font-size: .95rem;
  margin-top: 14px;
}

/* =============================================
   PAGINATION
============================================= */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 0 0;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--text-mid);
  transition: background .2s, color .2s;
}
.pagination a:hover { background: var(--accent-light); color: var(--primary); border-color: var(--accent); }
.pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); font-weight: 700; }

/* =============================================
   CATEGORIES BAR
============================================= */
.categories-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.cat-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  transition: all .2s;
  text-decoration: none;
}
.cat-pill:hover, .cat-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* =============================================
   ABOUT, CONTACT, POLICY pages
============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a4a7a 100%);
  padding: 56px 0;
  text-align: center;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: box-shadow .2s;
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-card img { width: 100%; height: 200px; object-fit: cover; }
.team-card-body { padding: 18px; }
.team-card-body h4 { margin-bottom: 4px; }
.team-card-body .role {
  font-size: .8rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.team-card-body p { font-size: .85rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info h3 { margin-bottom: 20px; }
.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}
.info-icon {
  width: 42px; height: 42px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.info-text strong { display: block; font-size: .85rem; margin-bottom: 2px; }
.info-text p { font-size: .9rem; margin: 0; }

/* Policy pages */
.policy-content h2 {
  font-size: 1.3rem;
  margin: 2.2rem 0 .8rem;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.policy-content h3 { font-size: 1.05rem; margin: 1.5rem 0 .6rem; }
.policy-content ul, .policy-content ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 1rem;
  color: var(--text-mid);
}
.policy-content ol { list-style: decimal; }
.policy-content li { margin-bottom: .45rem; font-size: .95rem; }
.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .88rem;
}
.policy-content table th, .policy-content table td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
}
.policy-content table th {
  background: var(--bg-light);
  font-weight: 700;
}
.policy-last-updated {
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: .82rem;
  color: var(--primary);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* =============================================
   FAQ
============================================= */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 10px;
}
.faq-question {
  width: 100%;
  background: var(--bg-light);
  border: none;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: background .2s;
}
.faq-question:hover { background: var(--accent-light); }
.faq-question .icon { color: var(--primary); font-size: 1.2rem; transition: transform .3s; flex-shrink: 0; }
.faq-question.open .icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 16px 20px;
  font-size: .9rem;
  color: var(--text-mid);
  border-top: 1px solid var(--border);
  line-height: 1.7;
}
.faq-answer.show { display: block; }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.75);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo { margin-bottom: 14px; }
.footer-logo .logo-name { color: #fff; }
.footer-logo .logo-tagline { color: rgba(255,255,255,.5); }
.footer-about { font-size: .85rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  transition: background .2s, border-color .2s, color .2s;
  text-decoration: none;
}
.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul li {
  margin-bottom: 9px;
  font-size: .84rem;
}
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-bottom-links {
  display: flex;
  gap: 16px;
}
.footer-bottom-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-bottom-links a:hover { color: var(--accent); }

/* =============================================
   COOKIE CONSENT
============================================= */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: rgba(15,37,64,.97);
  color: rgba(255,255,255,.9);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 9999;
  font-size: .84rem;
  flex-wrap: wrap;
}
.cookie-bar p { margin: 0; color: rgba(255,255,255,.85); }
.cookie-bar a { color: var(--accent); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* =============================================
   MISC UTILITIES
============================================= */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mb-0  { margin-bottom: 0 !important; }
.mb-1  { margin-bottom: 8px; }
.mb-2  { margin-bottom: 16px; }
.mb-3  { margin-bottom: 24px; }
.mb-4  { margin-bottom: 32px; }
.mb-5  { margin-bottom: 48px; }
.mt-3  { margin-top: 24px; }
.mt-4  { margin-top: 32px; }
.mt-5  { margin-top: 48px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.bg-light { background: var(--bg-light); }
.divider { height: 1px; background: var(--border); margin: 32px 0; }
.highlight-box {
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: var(--radius);
  padding: 20px;
  margin: 1.5rem 0;
}
.highlight-box p { color: var(--text-mid); margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .header-meta { display: none; }
  .header-search { display: none; }
  .hamburger { display: flex; }
  .site-nav { display: none; }
  .site-nav.open { display: block; }
  .nav-list { flex-direction: column; padding: 8px 0; }
  .nav-list li a { border-bottom: none; border-left: 3px solid transparent; padding: 10px 20px; }
  .nav-list li a:hover, .nav-list li a.active { border-left-color: var(--accent); }
  .articles-grid { grid-template-columns: 1fr; }
  .articles-grid-2 { grid-template-columns: 1fr; }
  .articles-grid-4 { grid-template-columns: 1fr; }
  .hero { height: 380px; }
  .hero-title { font-size: 1.4rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sidebar { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .card-h .card-image { width: 100px; min-width: 100px; height: 90px; }
}
@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr; }
}
