﻿/* === AMVVD — Asociația Militarilor Veterani și Veteranilor cu Dizabilități === */
/* === Design militar premium 2026 === */

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

/* ─── Variabile ─────────────────────────────────────────── */
:root {
  --c-bg:       #07090d;
  --c-bg2:      #0d1117;
  --c-bg3:      #121820;
  --c-surface:  #171e28;
  --c-surface2: #1e2733;
  --c-olive:    #2a3d18;
  --c-olive2:   #3d5a22;
  --c-gold:     #c8a855;
  --c-gold2:    #e2c47a;
  --c-red:      #8b1c1c;
  --c-red2:     #b52828;
  --c-text:     #e0ddd0;
  --c-text2:    #a8a49a;
  --c-border:   rgba(200,168,85,.18);
  --c-border2:  rgba(200,168,85,.08);
  --ro-blue:    #002B7F;
  --ro-yellow:  #FCD116;
  --ro-red:     #CE1126;
  --radius:     6px;
  --radius2:    12px;
  --shadow:     0 8px 32px rgba(0,0,0,.55);
  --shadow2:    0 20px 60px rgba(0,0,0,.7);
  --transition: .22s cubic-bezier(.4,0,.2,1);
  --max-w:      1240px;
  --font-head:  'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-body:  'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  --font-serif: 'Crimson Pro', Georgia, serif;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ─── Fundal: textură discretă militară ──────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(42,61,24,.35) 0%, transparent 70%),
    linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg2) 100%);
  pointer-events: none;
}
body > * { position: relative; z-index: 1; }

/* ─── Bandă tricolor sus ─────────────────────────────────── */
.tricolor {
  display: flex;
  height: 4px;
  position: sticky;
  top: 0;
  z-index: 200;
}
.tricolor span { flex: 1; }
.tricolor span:nth-child(1) { background: var(--ro-blue); }
.tricolor span:nth-child(2) { background: var(--ro-yellow); }
.tricolor span:nth-child(3) { background: var(--ro-red); }

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 4px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 5vw, 64px);
  height: 70px;
  background: rgba(7,9,13,.88);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--c-text);
  flex-shrink: 0;
}
.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
}
.brand-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  color: var(--c-text);
}
.brand-text small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text2);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.site-nav a:hover { color: var(--c-gold); background: rgba(200,168,85,.08); }
.site-nav a.active { color: var(--c-gold); }
.site-nav a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--c-gold);
  margin-top: 2px;
  border-radius: 1px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 9px 10px;
  cursor: pointer;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: rgba(200,168,85,.06);
  flex-shrink: 0;
}
.nav-toggle:hover { border-color: var(--c-gold); }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--c-gold);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Nav Dropdown ────────────────────────────────────────── */
.nav-dropdown {
  position: relative;
}
.nav-dd-btn {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text2);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-dd-btn:hover,
.nav-dropdown.open .nav-dd-btn { color: var(--c-gold); background: rgba(200,168,85,.08); }
.nav-arrow { font-size: 9px; opacity: .7; transition: transform var(--transition); display: inline-block; }
.nav-dropdown.open .nav-arrow { transform: rotate(180deg); }

.nav-submenu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 6px;
  z-index: 200;
  display: none;
  flex-direction: column;
  gap: 2px;
}
.nav-dropdown.open .nav-submenu { display: flex; }
.nav-submenu li { list-style: none; }
.nav-submenu li a {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text2);
  padding: 9px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-submenu li a:hover { color: var(--c-gold); background: rgba(200,168,85,.1); }

/* ─── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(.45) saturate(.6);
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(7,9,13,.85) 40%, rgba(7,9,13,.3) 100%),
    linear-gradient(to top,   rgba(7,9,13,.9) 0%, transparent 50%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px clamp(24px, 6vw, 80px) 100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.hero-text { min-width: 0; }
.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-logo-img {
  width: clamp(180px, 20vw, 320px);
  height: auto;
  filter:
    drop-shadow(0 0 48px rgba(200,168,85,.55))
    drop-shadow(0 0 16px rgba(200,168,85,.35))
    drop-shadow(0 8px 32px rgba(0,0,0,.6));
  animation: logo-pulse 4s ease-in-out infinite;
}
@keyframes logo-pulse {
  0%,100% { filter: drop-shadow(0 0 48px rgba(200,168,85,.55)) drop-shadow(0 0 16px rgba(200,168,85,.35)) drop-shadow(0 8px 32px rgba(0,0,0,.6)); }
  50%     { filter: drop-shadow(0 0 70px rgba(200,168,85,.8))  drop-shadow(0 0 28px rgba(200,168,85,.55)) drop-shadow(0 8px 32px rgba(0,0,0,.6)); }
}
[data-theme="light"] .hero-logo-img {
  filter:
    drop-shadow(0 0 32px rgba(122,92,15,.5))
    drop-shadow(0 0 12px rgba(122,92,15,.3))
    drop-shadow(0 8px 24px rgba(0,0,0,.25));
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-logo-wrap { display: none; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-gold);
  border: 1px solid rgba(200,168,85,.4);
  padding: 7px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '★';
  font-size: 10px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: .01em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--c-gold);
}
.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(224,221,208,.78);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.7;
  font-family: var(--font-serif);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(224,221,208,.5);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::before {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(200,168,85,.6));
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ─── Butoane ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-gold);
  color: #0a0c0e;
}
.btn-primary:hover { background: var(--c-gold2); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,168,85,.3); }
.btn-outline {
  background: transparent;
  color: var(--c-text);
  border: 1px solid rgba(224,221,208,.3);
}
.btn-outline:hover { border-color: var(--c-gold); color: var(--c-gold); background: rgba(200,168,85,.06); }
.btn-ghost {
  background: transparent;
  color: var(--c-gold);
  padding: 10px 0;
  font-size: 12px;
}
.btn-ghost:hover { color: var(--c-gold2); }
.btn-ghost::after { content: ' →'; }

/* ─── Secțiuni ────────────────────────────────────────────── */
.section {
  padding: clamp(64px, 8vw, 112px) clamp(24px, 6vw, 80px);
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-full {
  padding: clamp(64px, 8vw, 112px) clamp(24px, 6vw, 80px);
}
.section-full .inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--c-text);
  line-height: 1.1;
}
.section-desc {
  color: var(--c-text2);
  font-family: var(--font-serif);
  font-size: 18px;
  margin-top: 12px;
  max-width: 520px;
}

/* ─── Linie decorativă ────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: clamp(40px, 5vw, 72px) 0;
  color: var(--c-gold);
  opacity: .35;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-gold), transparent);
}
.divider span { font-family: var(--font-head); font-size: 18px; letter-spacing: .2em; }

/* ─── Stats bar ───────────────────────────────────────────── */
.stats-bar {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border2);
  border-bottom: 1px solid var(--c-border2);
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--c-border2);
  transition: background var(--transition);
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(200,168,85,.05); }
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
  letter-spacing: .02em;
}
.stat span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-text2);
  margin-top: 8px;
}

/* ─── Article cards ───────────────────────────────────────── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.article-grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.article-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border2);
  border-radius: var(--radius2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.article-card:hover {
  border-color: rgba(200,168,85,.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-media {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--c-surface2);
  flex-shrink: 0;
  position: relative;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.article-card:hover .card-media img { transform: scale(1.05); }
.card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-surface2), var(--c-olive));
  color: var(--c-gold);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .7;
}
.card-placeholder::before {
  content: '★  AMVVD';
}
.card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-gold);
  color: #0a0c0e;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  opacity: .8;
  margin-bottom: 10px;
}
.card-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .01em;
  color: var(--c-text);
  margin-bottom: 12px;
}
.card-title a { transition: color var(--transition); }
.card-title a:hover { color: var(--c-gold); }
.card-excerpt {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--c-text2);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-read {
  margin-top: 18px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  opacity: .75;
  transition: opacity var(--transition);
}
.article-card:hover .card-read { opacity: 1; }
.card-read::after { content: ' →'; }

/* ─── Articol featured (mare) ─────────────────────────────── */
.article-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 420px;
}
.article-featured .card-media { aspect-ratio: unset; height: 100%; }
.article-featured .card-body { padding: 40px 44px; justify-content: center; }
.article-featured .card-title { font-size: 28px; }
.article-featured .card-excerpt { -webkit-line-clamp: 5; }

/* ─── Pagina arhivă ───────────────────────────────────────── */
.archive-header {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border2);
  padding: 64px clamp(24px, 6vw, 80px) 48px;
}
.archive-header .inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.archive-controls {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px clamp(24px, 6vw, 80px);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid var(--c-border2);
}
.search-wrap {
  flex: 1;
  min-width: 260px;
  position: relative;
}
.search-wrap::before {
  content: '⌕';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-text2);
  font-size: 18px;
  pointer-events: none;
}
.search-input {
  width: 100%;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text);
  font: inherit;
  font-size: 15px;
  padding: 12px 16px 12px 42px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.search-input::placeholder { color: var(--c-text2); opacity: .6; }
.search-input:focus { border-color: var(--c-gold); box-shadow: 0 0 0 3px rgba(200,168,85,.12); }

.filter-select {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text);
  font: inherit;
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
  appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a855' fill='none' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.filter-select:focus { border-color: var(--c-gold); }
.filter-select option { background: var(--c-surface2); }

.results-count {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--c-text2);
  white-space: nowrap;
}
.results-count strong { color: var(--c-gold); }

.archive-grid-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px clamp(24px, 6vw, 80px) 80px;
}
.no-results {
  text-align: center;
  padding: 80px 20px;
  color: var(--c-text2);
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: .1em;
}

/* ─── Pagina articol ──────────────────────────────────────── */
.article-page { min-height: 80vh; }

.article-hero {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border2);
  padding: 80px clamp(24px, 6vw, 80px) 60px;
}
.article-hero .inner {
  max-width: 860px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 12px;
  font-family: var(--font-head);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text2);
}
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--c-gold); }
.breadcrumb span { color: var(--c-gold); opacity: .5; }

.article-hero-date {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-hero-date::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-gold);
}
.article-hero-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.15;
  color: var(--c-text);
  margin-bottom: 20px;
}
.article-hero-intro {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--c-text2);
  line-height: 1.65;
  font-style: italic;
}

.article-shell {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px clamp(24px, 6vw, 80px) 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

.article-content {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.8;
  color: rgba(224,221,208,.88);
}
.article-content h1, .article-content h2, .article-content h3, .article-content h4 {
  font-family: var(--font-head);
  color: var(--c-text);
  margin: 2em 0 .6em;
  line-height: 1.2;
  letter-spacing: .02em;
}
.article-content h2 { font-size: 26px; font-weight: 700; }
.article-content h3 { font-size: 20px; font-weight: 600; }
.article-content p { margin-bottom: 1.4em; }
.article-content img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  border-radius: var(--radius);
  margin: 2em auto;
  border: 1px solid var(--c-border2);
}
.article-content .wp-block-image { text-align: center; }
.article-content object[type="application/pdf"] { border: 1px solid var(--c-border); border-radius: var(--radius); }
.article-content a { color: var(--c-gold); text-decoration: underline; text-underline-offset: 3px; }
.article-content a:hover { color: var(--c-gold2); }
.article-content strong { color: var(--c-text); font-weight: 600; }
.article-content ul, .article-content ol { padding-left: 1.8em; margin-bottom: 1.4em; }
.article-content li { margin-bottom: .5em; }
.article-content blockquote {
  border-left: 3px solid var(--c-gold);
  padding: 16px 24px;
  background: rgba(200,168,85,.06);
  margin: 2em 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--c-text2);
}

/* WordPress block classes compatibility */
.article-content .has-text-align-center { text-align: center; }
.article-content .has-text-align-left   { text-align: left; }
.article-content .has-text-align-right  { text-align: right; }
.article-content .wp-block-image { margin: 20px auto; }
.article-content .wp-block-image.is-style-rounded img { border-radius: 50%; }
.article-content .wp-block-image img { height: auto; }
.article-content .aligncenter { display: block; margin-left: auto; margin-right: auto; }
.article-content figure { margin: 16px 0; }
.article-content .wp-block-file { margin: 16px 0; padding: 12px 16px; background: rgba(200,168,85,.06); border-radius: var(--radius); border: 1px solid var(--c-border); }
.article-content .wp-block-file object { display: block; width: 100%; min-height: 300px; margin-bottom: 8px; }
.article-content .has-inline-color { }

.article-aside {
  position: sticky;
  top: 90px;
}
.aside-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border2);
  border-radius: var(--radius2);
  padding: 28px;
  margin-bottom: 20px;
}
.aside-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-border2);
}
.aside-card p {
  font-size: 14px;
  color: var(--c-text2);
  line-height: 1.6;
  margin-bottom: 12px;
}
.aside-card p:last-child { margin-bottom: 0; }
.aside-card a { color: var(--c-gold); }
.aside-card a:hover { color: var(--c-gold2); }

/* ─── Secțiunea misiune ───────────────────────────────────── */
.mission-strip {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border2);
  border-bottom: 1px solid var(--c-border2);
}
.mission-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(64px, 8vw, 100px) clamp(24px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-style: italic;
  color: var(--c-text);
  line-height: 1.5;
  border-left: 3px solid var(--c-gold);
  padding-left: 28px;
}
.mission-quote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.values-list { display: flex; flex-direction: column; gap: 20px; }
.value-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.value-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(200,168,85,.12);
  border: 1px solid rgba(200,168,85,.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--c-gold);
  margin-top: 2px;
}
.value-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--c-text);
  margin-bottom: 4px;
}
.value-desc {
  font-size: 14px;
  color: var(--c-text2);
  line-height: 1.55;
}

/* ─── CTA banner ──────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--c-olive) 0%, var(--c-olive2) 100%);
  border-top: 1px solid rgba(200,168,85,.2);
  border-bottom: 1px solid rgba(200,168,85,.2);
}
.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px clamp(24px, 6vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: .02em;
  margin-bottom: 8px;
}
.cta-text p { color: rgba(224,221,208,.7); font-family: var(--font-serif); font-size: 17px; }

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border2);
  padding: clamp(48px, 6vw, 80px) clamp(24px, 6vw, 80px) 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact p { font-size: 13px; color: var(--c-text2); line-height: 1.55; margin: 0; }
.footer-contact a { color: var(--c-gold); }
.footer-contact .fc-label { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--c-text2); opacity: .55; margin-top: 8px; }
.footer-anpc {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-anpc a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-text2);
  border: 1px solid var(--c-border);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color var(--transition), border-color var(--transition);
}
.footer-anpc a:hover { color: var(--c-gold); border-color: rgba(200,168,85,.35); }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand img { width: 52px; height: 52px; object-fit: contain; }
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--c-text);
}
.footer-brand-tagline {
  font-size: 13px;
  color: var(--c-gold);
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.footer-brand p { font-size: 14px; color: var(--c-text2); line-height: 1.65; max-width: 320px; }

.footer-col-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-border2);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--c-text2);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--c-gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--c-border2);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--c-text2); }
.footer-tricolor { display: flex; gap: 6px; }
.footer-tricolor span {
  width: 20px; height: 3px;
  border-radius: 2px;
}
.footer-tricolor span:nth-child(1) { background: var(--ro-blue); }
.footer-tricolor span:nth-child(2) { background: var(--ro-yellow); }
.footer-tricolor span:nth-child(3) { background: var(--ro-red); }

/* ─── Back to top ─────────────────────────────────────────── */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 90;
}
#btt.visible { opacity: 1; transform: translateY(0); }
#btt:hover { background: var(--c-surface2); }

/* ─── Pagina Misiune ──────────────────────────────────────── */
.page-hero {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border2);
  padding: 80px clamp(24px, 6vw, 80px) 72px;
}
.page-hero .inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero .section-title { margin-top: 12px; }

.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--c-border2);
  position: relative;
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
  padding-top: 4px;
}
.timeline-content h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.timeline-content p { font-size: 15px; color: var(--c-text2); line-height: 1.6; }

/* ─── Pagina Contact ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form label {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-text2);
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text);
  font: inherit;
  font-size: 15px;
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  margin-bottom: 20px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--c-text2); opacity: .5; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--c-gold); box-shadow: 0 0 0 3px rgba(200,168,85,.1); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-border2);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { font-size: 22px; margin-top: 2px; flex-shrink: 0; }
.contact-info-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 4px;
}
.contact-info-value { font-size: 15px; color: var(--c-text2); }

/* ─── Utilități ───────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.text-gold { color: var(--c-gold); }
.text-muted { color: var(--c-text2); }
.mt-auto { margin-top: auto; }

/* ─── Mobile ──────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .site-nav { gap: 2px; }
  .site-nav > a, .nav-dd-btn { font-size: 11px; font-weight: 700; padding: 7px 9px; letter-spacing: .08em; }
  .nav-submenu li a { font-size: 11px; font-weight: 700; }
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--c-border2); }
  .stat:nth-child(odd) { border-right: 1px solid var(--c-border2); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }

  .article-featured {
    grid-template-columns: 1fr;
    grid-column: 1;
  }
  .article-featured .card-media { aspect-ratio: 16/9; }

  .mission-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .article-shell { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .site-nav { display: none; flex-direction: column; align-items: stretch; position: absolute; top: 70px; left: 0; right: 0; height: calc(100vh - 74px); height: calc(100svh - 74px); background: #0a0d12; padding: 24px 24px 60px; z-index: 99; border-top: 1px solid var(--c-border2); overflow-y: auto; }
  .site-nav.open { display: flex; }
  .site-nav > a { display: block; width: 100%; text-align: left; font-size: 17px !important; font-weight: 700 !important; padding: 14px 16px !important; border-radius: 0; border-bottom: 1px solid var(--c-border2); letter-spacing: .12em !important; }
  .site-nav > a.active::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-dropdown { width: 100%; }
  .nav-dd-btn { font-size: 17px !important; font-weight: 700 !important; padding: 14px 16px !important; border-radius: 0; border-bottom: 1px solid var(--c-border2); width: 100%; justify-content: space-between; letter-spacing: .12em !important; }
  .nav-dropdown.open .nav-dd-btn { border-bottom-color: transparent; }
  .nav-submenu { position: static; min-width: 0; width: 100%; border-radius: 0; box-shadow: none; background: rgba(200,168,85,.06); border: none; border-left: 2px solid var(--c-gold); margin-bottom: 4px; padding: 4px 0; }
  .nav-submenu li a { font-size: 14px !important; font-weight: 700 !important; padding: 10px 20px; border-radius: 0; border-bottom: 1px solid rgba(200,168,85,.1); }

  .hero { min-height: 100svh; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .article-grid.grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; }
}

@media (max-width: 420px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat { border-right: none; }
  .stat:nth-child(odd) { border-right: none; }
}

/* ─── Print ───────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .article-aside, #btt, .tricolor { display: none; }
  .article-shell { grid-template-columns: 1fr; }
  body { background: #fff; color: #000; }
  .article-content { color: #111; }
}

/* ══════════════════════════════════════════════════════════════
   LIGHT MODE — tema luminoasă militară (hârtie, cerneală, alamă)
   ══════════════════════════════════════════════════════════════ */

[data-theme="light"] {
  --c-bg:       #f2efe6;
  --c-bg2:      #ede9df;
  --c-bg3:      #e8e4d8;
  --c-surface:  #e4e0d3;
  --c-surface2: #d9d4c5;
  --c-olive:    #3a5020;
  --c-olive2:   #4e6c2a;
  --c-gold:     #7a5c0f;
  --c-gold2:    #9a7520;
  --c-red:      #7a1818;
  --c-red2:     #9e2222;
  --c-text:     #1a1e12;
  --c-text2:    #4a4e3a;
  --c-border:   rgba(60,50,20,.2);
  --c-border2:  rgba(60,50,20,.1);
  --shadow:     0 8px 32px rgba(0,0,0,.12);
  --shadow2:    0 20px 60px rgba(0,0,0,.2);
}

/* Fundal light */
[data-theme="light"] body::before {
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(58,80,32,.12) 0%, transparent 70%),
    linear-gradient(180deg, #f2efe6 0%, #ede9df 100%);
}

/* Header */
[data-theme="light"] .site-header {
  background: rgba(242,239,230,.92);
  border-bottom-color: rgba(60,50,20,.15);
}
[data-theme="light"] .site-nav a { color: #4a4e3a; }
[data-theme="light"] .site-nav a:hover { color: var(--c-gold); background: rgba(122,92,15,.08); }
[data-theme="light"] .site-nav a.active { color: var(--c-gold); }
[data-theme="light"] .nav-dd-btn { color: #4a4e3a; }
[data-theme="light"] .nav-dd-btn:hover,
[data-theme="light"] .nav-dropdown.open .nav-dd-btn { color: var(--c-gold); background: rgba(122,92,15,.08); }
[data-theme="light"] .nav-submenu { background: #fff7ed; border-color: rgba(60,50,20,.15); }
[data-theme="light"] .nav-submenu li a { color: #4a4e3a; }
[data-theme="light"] .nav-submenu li a:hover { color: var(--c-gold); background: rgba(122,92,15,.08); }
[data-theme="light"] .brand-text strong { color: #1a1e12; }

/* Hero overlay mai deschis */
[data-theme="light"] .hero-overlay {
  background:
    linear-gradient(to right, rgba(242,239,230,.75) 30%, rgba(242,239,230,.2) 100%),
    linear-gradient(to top, rgba(242,239,230,.85) 0%, transparent 50%);
}
[data-theme="light"] .hero-title { color: #1a1e12; }
[data-theme="light"] .hero-sub   { color: rgba(26,30,18,.7); }

/* Stats bar */
[data-theme="light"] .stats-bar { background: var(--c-surface); }
[data-theme="light"] .stat:hover { background: rgba(122,92,15,.06); }

/* Article cards */
[data-theme="light"] .article-card { background: #fff; border-color: rgba(60,50,20,.12); }
[data-theme="light"] .article-card:hover { border-color: rgba(122,92,15,.4); box-shadow: 0 8px 32px rgba(0,0,0,.1); }
[data-theme="light"] .card-placeholder { background: linear-gradient(135deg, var(--c-surface), var(--c-surface2)); }
[data-theme="light"] .card-title a:hover { color: var(--c-gold); }
[data-theme="light"] .card-excerpt { color: #5a5e4a; }

/* Archive */
[data-theme="light"] .archive-header { background: var(--c-surface); }
[data-theme="light"] .search-input {
  background: #fff;
  border-color: rgba(60,50,20,.2);
  color: #1a1e12;
}
[data-theme="light"] .search-input:focus { border-color: var(--c-gold); }
[data-theme="light"] .filter-select { background: #fff; border-color: rgba(60,50,20,.2); color: #1a1e12; }

/* Articol */
[data-theme="light"] .article-hero { background: var(--c-surface); }
[data-theme="light"] .article-content { color: #2a2e20; }
[data-theme="light"] .article-content h1,
[data-theme="light"] .article-content h2,
[data-theme="light"] .article-content h3 { color: #1a1e12; }
[data-theme="light"] .article-content blockquote { background: rgba(122,92,15,.06); }
[data-theme="light"] .aside-card { background: #fff; }

/* Mission strip */
[data-theme="light"] .mission-strip { background: var(--c-surface); }
[data-theme="light"] .value-icon { background: rgba(122,92,15,.1); border-color: rgba(122,92,15,.25); }

/* CTA */
[data-theme="light"] .cta-banner { background: linear-gradient(135deg, #d6dfc8, #c8d4b4); }
[data-theme="light"] .cta-text h2 { color: #1a1e12; }
[data-theme="light"] .cta-text p  { color: rgba(26,30,18,.65); }
[data-theme="light"] .btn-outline  { color: #1a1e12; border-color: rgba(26,30,18,.3); }
[data-theme="light"] .btn-outline:hover { color: var(--c-gold); border-color: var(--c-gold); }

/* Footer */
[data-theme="light"] .site-footer { background: var(--c-surface); }
[data-theme="light"] .footer-brand-name { color: #1a1e12; }
[data-theme="light"] .footer-links a { color: #4a4e3a; }
[data-theme="light"] .footer-links a:hover { color: var(--c-gold); }
[data-theme="light"] .footer-bottom p { color: #5a5e4a; }

/* Back to top */
[data-theme="light"] #btt { background: #fff; border-color: rgba(60,50,20,.2); }
[data-theme="light"] #btt:hover { background: var(--c-surface); }

/* Nav mobile */
[data-theme="light"] .site-nav.open { background: rgba(242,239,230,.97); }
[data-theme="light"] .nav-toggle span { background: var(--c-gold); }
@media (max-width: 900px) {
  [data-theme="light"] .site-nav { background: #f2efe6; }
  [data-theme="light"] .nav-dd-btn { color: #4a4e3a; border-bottom-color: rgba(60,50,20,.12); }
  [data-theme="light"] .nav-submenu { background: rgba(122,92,15,.06); border-left-color: var(--c-gold); }
  [data-theme="light"] .site-nav > a { border-bottom-color: rgba(60,50,20,.12); }
}

/* Buton toggle tema */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-text2);
  font-size: 17px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.theme-toggle:hover { background: rgba(200,168,85,.1); border-color: var(--c-gold); color: var(--c-gold); }
[data-theme="light"] .theme-toggle { border-color: rgba(60,50,20,.2); color: #4a4e3a; }
[data-theme="light"] .theme-toggle:hover { background: rgba(122,92,15,.1); border-color: var(--c-gold); color: var(--c-gold); }

/* Buton temă din interiorul meniului (mobil) — ascuns pe desktop */
.theme-toggle--menu { display: none; }

@media (max-width: 900px) {
  /* pe mobil ascundem cercul din header; rămâne doar hamburgerul */
  .site-header > .theme-toggle:not(.theme-toggle--menu) { display: none; }

  /* butonul temă devine un rând în meniu, la fel ca linkurile */
  .theme-toggle--menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    height: auto;
    border: none;
    border-top: 1px solid var(--c-border2);
    border-radius: 0;
    margin-top: 10px;
    padding: 16px;
    background: none;
    color: var(--c-text2);
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .theme-toggle--menu .tt-icon { font-size: 20px; line-height: 1; color: var(--c-gold); }
  .theme-toggle--menu:hover { background: rgba(200,168,85,.08); color: var(--c-gold); }
}

/* ══════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ══════════════════════════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 clamp(16px, 4vw, 48px);
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.22,.68,0,1.2);
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  pointer-events: all;
}
.cookie-banner-inner {
  max-width: 1240px;
  margin: 0 auto 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-gold);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
[data-theme="light"] .cookie-banner-inner {
  background: #fff;
  box-shadow: 0 -8px 40px rgba(0,0,0,.12);
}
.cookie-banner-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}
.cookie-banner-text {
  flex: 1;
  min-width: 220px;
}
.cookie-banner-text h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--c-text);
  margin-bottom: 6px;
}
.cookie-banner-text p {
  font-size: 13px;
  color: var(--c-text2);
  line-height: 1.55;
  margin: 0;
}
.cookie-banner-text a {
  color: var(--c-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: var(--c-gold2); }

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-banner-actions .btn {
  font-size: 12px;
  padding: 11px 20px;
  white-space: nowrap;
}

/* Buton setari suplimentar */
.cookie-btn-settings {
  background: transparent;
  border: none;
  color: var(--c-text2);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 11px 8px;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.cookie-btn-settings:hover { color: var(--c-gold); }

@media (max-width: 640px) {
  .cookie-banner-inner { padding: 20px; gap: 16px; flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { flex: 1; text-align: center; justify-content: center; }
}

/* ── Mobile fine-tuning ── */
@media (max-width: 640px) {
  .article-content { overflow-wrap: break-word; }
  .article-content h2 { font-size: 21px; }
  .article-content h3 { font-size: 17px; }
  .article-content object[type="application/pdf"] { height: 380px !important; }
  .page-hero .section-title { font-size: 30px; }
  .section { padding-left: 14px; padding-right: 14px; }
}