/* ============================================================
   ВПЕРЁД — Main Stylesheet
   Pixel-perfect from HTML prototypes in /app/Windows/
   ============================================================ */

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

:root {
  --blue:     #1a3a6e;
  --gold:     #e8a020;
  --red:      #c0392b;
  --light:    #f5f3ee;
  --white:    #fff;
  --gray:     #7a7a7a;
  --border:   #ddd8ce;
  --text:     #1c1c1c;
  --header-h: 67px;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--light);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
a:hover { color: var(--blue); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TOPBAR ───────────────────────────────────── */
.topbar {
  background: var(--blue);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  padding: 6px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: rgba(255,255,255,0.7); margin-left: 14px; }
.topbar a:hover { color: #fff; }

/* ── HEADER ───────────────────────────────────── */
header {
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 64px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -1px;
  flex-shrink: 0;
}
.logo span { color: var(--gold); }
.logo:hover { color: var(--blue); }

nav { display: flex; gap: 2px; flex: 1; align-items: center; }
nav li { list-style: none; display: contents; }
nav a {
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  padding: 6px 8px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
nav a:hover,
nav a.current-menu-item { background: var(--blue); color: #fff; }

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.search-box {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  background: var(--light);
}
.search-box input {
  border: none;
  background: none;
  outline: none;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  width: 120px;
  color: var(--text);
}

.social-icons { display: flex; gap: 5px; align-items: center; }
.social-icons a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.social-icons a:hover { background: var(--gold); color: #fff; transform: scale(1.1); }
.social-icons a svg { display: block; }

.btn-support {
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn-support:hover { opacity: 0.85; color: #fff; }

/* ── SUBNAV ───────────────────────────────────── */
.subnav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.subnav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 8px 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.subnav li { list-style: none; display: contents; }
.subnav a { color: var(--gray); font-weight: 500; font-size: 12px; }
.subnav a:hover { color: var(--blue); }
.subnav a.active,
.subnav a.current-menu-item { color: var(--blue); font-weight: 700; }

/* ── SECTION HEADERS ─────────────────────────── */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.section-label {
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
}
.section-label.gold   { background: var(--gold); }
.section-label.red    { background: var(--red); }
.section-label.green  { background: #2e7d32; }
.section-label.purple { background: #6a1b9a; }
.section-more { font-size: 11px; font-weight: 600; color: var(--blue); }
.section-more:hover { color: var(--gold); }

/* ── 3-COL MAIN WRAP ─────────────────────────── */
.main-wrap {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 260px 1fr 280px;
  gap: 24px;
  align-items: start;
  animation: fadeUp 0.5s ease both;
}

/* ── LEFT: NEWS LIST ─────────────────────────── */
.news-list { display: flex; flex-direction: column; }
.news-item { padding: 11px 0; border-bottom: 1px solid var(--border); }
.news-item:last-child { border-bottom: none; }
.news-item h3 {
  font-family: 'PT Serif', serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 5px;
  cursor: pointer;
  transition: color 0.2s;
}
.news-item h3:hover { color: var(--blue); }
.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 11px;
}
.views { display: flex; align-items: center; gap: 3px; }

/* ── CENTER: FEATURED ────────────────────────── */
.feat-visual {
  width: 100%;
  height: 330px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  cursor: pointer;
  position: relative;
  background: linear-gradient(145deg, #0d2b5c 0%, #1a6e9a 55%, #c8910a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-visual:hover .feat-overlay { opacity: 1; }
.feat-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,25,60,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}
.feat-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.5px;
}
.feat-deco { opacity: 0.18; }
.featured h2 {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  cursor: pointer;
}
.featured h2:hover { color: var(--blue); }
.featured p { font-size: 14px; color: #444; line-height: 1.65; margin-bottom: 12px; }
.read-more {
  color: var(--blue);
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.read-more:hover { color: var(--gold); }
.featured-footer {
  display: flex;
  justify-content: space-between;
  color: var(--gray);
  font-size: 12px;
  margin-top: 10px;
}

/* ── RIGHT: TEXT LIST ────────────────────────── */
.right-col { display: flex; flex-direction: column; gap: 22px; }
.moldova-flag-banner {
  background: linear-gradient(90deg, #003DA5 0%, #003DA5 33%, #FFD100 33%, #FFD100 66%, #CC0001 66%, #CC0001 100%);
  height: 6px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.text-item { padding: 11px 0; border-bottom: 1px solid var(--border); }
.text-item:last-child { border-bottom: none; }
.text-item h4 {
  font-family: 'PT Serif', serif;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 6px;
}
.text-item h4:hover { color: var(--blue); }
.item-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--gray);
  flex-wrap: wrap;
}

/* ── TAGS ─────────────────────────────────────── */
.tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tg-life, .ct-red  { background: #fce4d6; color: #c0392b; }
.tg-hist, .ct-blue { background: #d6eaf8; color: #1a6ea8; }
.tg-anal, .ct-gold { background: #fdebd0; color: #ca6f1e; }
.ct-green          { background: #e8f5e9; color: #2e7d32; }
.ct-purple         { background: #f3e5f5; color: #6a1b9a; }

/* ── RUBRIC SECTIONS ──────────────────────────── */
.rubrics-wrap {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.rubric-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 12px;
}
.rubric-head-left { display: flex; align-items: center; gap: 12px; }
.rubric-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}
.rubric-more {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
}
.rubric-more:hover { color: var(--gold); }

/* ── CARDS GRID ───────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cards-grid.two { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0,0,0,0.07);
  cursor: pointer;
  transition: transform 0.22s, box-shadow 0.22s;
  border: 2px solid transparent;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.13); }
.card.active-card { border-color: var(--blue); }

.card-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-img .card-brand {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.5px;
  z-index: 2;
}
.card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.35));
  pointer-events: none;
}

/* Card gradient backgrounds ci-1…ci-12 */
.ci-1  { background: linear-gradient(135deg, #1a3a6e 0%, #2c6fa8 60%, #3d8fb5 100%); }
.ci-2  { background: linear-gradient(135deg, #4a235a 0%, #7d3c98 60%, #a569bd 100%); }
.ci-3  { background: linear-gradient(135deg, #1a5276 0%, #1f618d 60%, #2980b9 100%); }
.ci-4  { background: linear-gradient(135deg, #922b21 0%, #c0392b 60%, #e74c3c 100%); }
.ci-5  { background: linear-gradient(135deg, #1e8449 0%, #239b56 60%, #52be80 100%); }
.ci-6  { background: linear-gradient(135deg, #784212 0%, #a04000 60%, #ca6f1e 100%); }
.ci-7  { background: linear-gradient(135deg, #1c2833 0%, #2c3e50 60%, #566573 100%); }
.ci-8  { background: linear-gradient(135deg, #0e6655 0%, #1abc9c 60%, #76d7c4 100%); }
.ci-9  { background: linear-gradient(135deg, #6e2f1a 0%, #935116 60%, #ca8a04 100%); }
.ci-10 { background: linear-gradient(135deg, #212f3d 0%, #1a3a6e 60%, #2e86c1 100%); }
.ci-11 { background: linear-gradient(135deg, #5b2333 0%, #943126 60%, #e74c3c 100%); }
.ci-12 { background: linear-gradient(135deg, #154360 0%, #1a5276 60%, #2471a3 100%); }

/* Card illustration / silhouette */
.card-illustration, .card-illus {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.card-illustration .person, .card-illus .person {
  width: 90px;
  height: 160px;
  background: rgba(255,255,255,0.15);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  position: absolute;
  bottom: 0;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.2);
}
.card-illus .person { width: 75px; height: 130px; }
.card-illustration .person::before,
.card-illus .person::before {
  content: '';
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
}
.card-illus .person::before { width: 38px; height: 38px; top: -24px; }
.card-illustration .person2,
.card-illus .p2 { left: 56%; }
.card-illustration .scene-icon,
.card-illus .scene {
  position: absolute;
  top: 18px;
  left: 18px;
  opacity: 0.35;
}
.card-illustration .scene-icon2 {
  position: absolute;
  top: 18px;
  right: 18px;
  opacity: 0.25;
}

/* Card body */
.card-body { padding: 14px 15px 16px; }
.card-body h3 {
  font-family: 'PT Serif', serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  color: var(--text);
  transition: color 0.2s;
}
.card:hover .card-body h3 { color: var(--blue); }
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
}
.card-views { display: flex; align-items: center; gap: 6px; }
.card-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 6px;
}

/* ── ARCHIVE PAGE ─────────────────────────────── */
.rubric-hero {
  background: linear-gradient(135deg, #0d2b5c 0%, #1a4a8e 60%, #c8910a 100%);
  padding: 48px 0 40px;
  animation: fadeUp 0.5s ease both;
}
.rubric-hero--istorii   { background: linear-gradient(135deg,#0d2b5c 0%,#1a4a8e 60%,#c8910a 100%); }
.rubric-hero--analitika { background: linear-gradient(135deg,#0d2b5c 0%,#1a3a6e 60%,#2c6fa8 100%); }
.rubric-hero--zhizn     { background: linear-gradient(135deg,#5b1a1a 0%,#922b21 60%,#e74c3c 100%); }
.rubric-hero--video     { background: linear-gradient(135deg,#2d0a4e 0%,#6a1b9a 60%,#ab47bc 100%); }
.rubric-hero--blogi     { background: linear-gradient(135deg,#0a2e1a 0%,#1e8449 60%,#52be80 100%); }
.rubric-hero--teksty    { background: linear-gradient(135deg,#1a2a6e 0%,#1a3a6e 60%,#2980b9 100%); }
.rubric-hero--novosti   { background: linear-gradient(135deg,#0d2b5c 0%,#1a4a8e 60%,#c8910a 100%); }
.rubric-hero--default   { background: linear-gradient(135deg,#0d2b5c 0%,#1a4a8e 60%,#c8910a 100%); }
.rubric-hero-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.rubric-breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.rubric-breadcrumb a { color: rgba(255,255,255,0.5); }
.rubric-breadcrumb a:hover { color: #fff; }
.rubric-breadcrumb .sep { color: rgba(255,255,255,0.25); }
.rubric-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}
.rubric-hero p { font-size: 15px; color: rgba(255,255,255,0.75); max-width: 560px; line-height: 1.6; }
.rubric-stats { display: flex; gap: 28px; }
.rstat { text-align: center; }
.rstat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  display: block;
}
.rstat-label { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; }

.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 90;
}
.filter-inner {
  max-width: 1200px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tab {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--blue); color: var(--blue); }
.filter-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.sort-box { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray); }
.sort-select {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  font-family: 'Manrope', sans-serif;
  outline: none;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
}

.archive-wrap {
  max-width: 1200px;
  margin: 28px auto 40px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
}
.results-count { font-size: 13px; color: var(--gray); margin-bottom: 18px; }
.results-count strong { color: var(--text); }
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card.featured-card {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.card.featured-card .card-img { height: auto; min-height: 220px; }
.card.featured-card .card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card.featured-card .card-body h3 { font-size: 20px; margin-bottom: 12px; }
.card.featured-card .card-body .feat-excerpt {
  font-size: 13px; color: #555; line-height: 1.6; margin-bottom: 14px;
}
.archive-grid .card-img { height: 180px; }
.archive-grid .card-body { padding: 13px 14px 15px; }
.archive-grid .card-body h3 { font-size: 14px; }

.load-more { text-align: center; margin-top: 28px; }
.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 2px solid var(--blue);
  border-radius: 6px;
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  background: var(--white);
  transition: all 0.2s;
}
.load-more-btn:hover { background: var(--blue); color: #fff; }

/* ── SINGLE ARTICLE ───────────────────────────── */
.article-wrap {
  max-width: 1200px;
  margin: 32px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  animation: fadeUp 0.5s ease both;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: var(--border); }
.breadcrumb .current { color: var(--text); font-weight: 600; }

.article-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--blue);
  color: #fff;
  margin-bottom: 14px;
}
.article-tag.red    { background: var(--red); }
.article-tag.gold   { background: var(--gold); }
.article-tag.purple { background: #6a1b9a; }
.article-tag.green  { background: #2e7d32; }

.article h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}
.article-lead {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  line-height: 1.65;
  color: #333;
  font-style: italic;
  margin-bottom: 20px;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.author-info { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #2980b9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.author-avatar-img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; display: block; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: 13px; line-height: 1.3; }
.author-role { font-size: 11px; color: var(--gray); }
.meta-divider { width: 1px; height: 32px; background: var(--border); }
.meta-item { font-size: 12px; color: var(--gray); display: flex; align-items: center; gap: 5px; }

.hero-image {
  width: 100%;
  height: 440px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
  background: linear-gradient(145deg, #0d2b5c 0%, #1a6e9a 50%, #c8910a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-deco { opacity: 0.14; }
.hero-caption { font-size: 12px; color: var(--gray); margin-bottom: 28px; font-style: italic; }

.article-body {
  font-family: 'PT Serif', serif;
  font-size: 17px;
  line-height: 1.85;
  color: #222;
}
.article-body p { margin-bottom: 22px; }
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--blue);
}
.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  margin: 28px 0 12px;
}
.article-body blockquote {
  border-left: 4px solid var(--gold);
  padding: 14px 20px;
  background: rgba(232,160,32,0.08);
  border-radius: 0 6px 6px 0;
  margin: 28px 0;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}
.article-body blockquote cite {
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  margin-top: 8px;
  color: var(--gray);
  font-family: 'Manrope', sans-serif;
}
.article-body .infobox {
  background: rgba(26,58,110,0.06);
  border: 1px solid rgba(26,58,110,0.15);
  border-radius: 8px;
  padding: 20px 22px;
  margin: 28px 0;
}
.article-body .infobox h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.article-body .infobox ul { list-style: none; }
.article-body .infobox ul li {
  font-size: 15px;
  font-family: 'Manrope', sans-serif;
  padding: 5px 0;
  border-bottom: 1px solid rgba(26,58,110,0.1);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.article-body .infobox ul li:last-child { border-bottom: none; }
.article-body .infobox ul li::before { content: '›'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

.share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 36px 0;
  flex-wrap: wrap;
}
.share-bar span { font-size: 13px; font-weight: 700; color: var(--gray); }
.share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
  font-family: 'Manrope', sans-serif;
}
.share-btn:hover { opacity: 0.85; }
.sb-fb   { background: #1877f2; color: #fff; }
.sb-tg   { background: #229ed9; color: #fff; }
.sb-tw   { background: #000; color: #fff; }
.sb-copy { background: var(--light); color: var(--text); border: 1.5px solid var(--border); }
.views-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--gray);
  margin-left: auto;
}

.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.article-tags a {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--light);
  border: 1.5px solid var(--border);
  color: var(--gray);
  transition: all 0.2s;
}
.article-tags a:hover { border-color: var(--blue); color: var(--blue); background: #fff; }

.related { margin-top: 44px; }
.related-head {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rel-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0,0,0,0.07);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rel-card:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,0.12); }
.rel-img {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ri1 { background: linear-gradient(135deg, #1a3a6e, #2980b9); }
.ri2 { background: linear-gradient(135deg, #5d4037, #a1887f); }
.ri3 { background: linear-gradient(135deg, #2e7d32, #66bb6a); }
.rel-body { padding: 12px 14px 15px; }
.rel-body h4 {
  font-family: 'PT Serif', serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
}
.rel-card:hover h4 { color: var(--blue); }
.rel-meta { font-size: 11px; color: var(--gray); display: flex; gap: 8px; }

/* ── SIDEBAR ──────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-block {
  background: var(--white);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.06);
}
.sidebar-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.sidebar-news-item, .si {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-news-item:last-child,
.si:last-child { border-bottom: none; }
.sidebar-news-item h4, .si h4 {
  font-family: 'PT Serif', serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 4px;
  cursor: pointer;
}
.sidebar-news-item h4:hover,
.si h4:hover { color: var(--blue); }
.smeta, .si-meta {
  font-size: 11px;
  color: var(--gray);
  display: flex;
  gap: 8px;
  align-items: center;
}
.svw, .views-sm { display: flex; align-items: center; gap: 6px; }

.flag-bar {
  background: linear-gradient(90deg, #003DA5 0%, #003DA5 33%, #FFD100 33%, #FFD100 66%, #CC0001 66%, #CC0001 100%);
  height: 5px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.subscribe-block, .sub-block {
  background: linear-gradient(135deg, var(--blue), #2471a3);
  color: #fff;
  border-radius: 8px;
  padding: 22px;
  text-align: center;
}
.subscribe-block h3, .sub-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-bottom: 8px;
  border: none;
  padding: 0;
  color: #fff;
}
.subscribe-block p, .sub-block p { font-size: 13px; opacity: 0.8; margin-bottom: 16px; line-height: 1.5; }
.subscribe-input, .sub-input {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}
.subscribe-input input, .sub-input input {
  flex: 1;
  border: none;
  padding: 9px 12px;
  font-size: 13px;
  font-family: 'Manrope', sans-serif;
  outline: none;
}
.subscribe-input button, .sub-input button {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 9px 14px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.tags-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
  background: var(--light);
  border: 1.5px solid var(--border);
  color: var(--gray);
  transition: all 0.2s;
  cursor: pointer;
}
.tag-pill:hover { border-color: var(--blue); color: var(--blue); background: #fff; }

/* ── SEARCH PAGE ────────────────────────────────── */
.search-hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  animation: fadeUp .4s ease both;
}
.search-hero-inner { max-width: 1200px; margin: auto; padding: 0 20px; }
.search-hero h1 { font-family: 'Playfair Display',serif; font-size: 28px; font-weight: 700; margin-bottom: 18px; }
.search-hero h1 span { color: var(--blue); }

.big-search {
  display: flex; align-items: center;
  background: var(--light); border: 2px solid var(--border);
  border-radius: 8px; overflow: hidden; max-width: 700px;
  transition: border-color .2s;
}
.big-search:focus-within { border-color: var(--blue); }
.big-search input {
  flex: 1; border: none; background: none; outline: none;
  padding: 14px 18px; font-size: 16px; font-family: 'Manrope',sans-serif; color: var(--text);
}
.big-search button {
  background: var(--blue); color: #fff; border: none;
  padding: 14px 20px; cursor: pointer; font-size: 14px; font-weight: 700;
  font-family: 'Manrope',sans-serif; transition: background .2s;
  display: flex; align-items: center; gap: 7px;
}
.big-search button:hover { background: #132d57; }

.search-hints { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; align-items: center; }
.search-hints span { font-size: 12px; color: var(--gray); }
.hint-tag {
  font-size: 12px; font-weight: 600; padding: 3px 10px;
  border-radius: 14px; background: var(--light); border: 1.5px solid var(--border);
  color: var(--gray); cursor: pointer; transition: all .2s; text-decoration: none;
}
.hint-tag:hover { border-color: var(--blue); color: var(--blue); }

.search-wrap {
  max-width: 1200px; margin: 28px auto 40px; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 280px; gap: 28px;
}
.results-area { }
.results-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px; flex-wrap: wrap; gap: 10px;
}
.results-count { font-size: 14px; color: var(--gray); }
.results-count strong { color: var(--text); font-weight: 700; }
.results-count em { color: var(--blue); font-style: normal; font-weight: 700; }

.sort-tabs { display: flex; gap: 6px; }
.sort-tab {
  font-size: 12px; font-weight: 600; padding: 5px 12px;
  border-radius: 4px; border: 1.5px solid var(--border);
  background: var(--white); color: var(--gray); cursor: pointer; transition: all .2s;
}
.sort-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }

.filters-row { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; align-items: center; }
.fchip {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; padding: 5px 11px;
  border-radius: 20px; border: 1.5px solid var(--border);
  background: var(--white); color: var(--gray); cursor: pointer; transition: all .2s;
}
.fchip:hover { border-color: var(--blue); color: var(--blue); }
.fchip.active { background: rgba(26,58,110,.08); border-color: var(--blue); color: var(--blue); }

.result-list { display: flex; flex-direction: column; }
.result-item {
  padding: 18px 0; border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: 120px 1fr; gap: 16px; cursor: pointer;
}
.result-item:last-child { border-bottom: none; }
.result-thumb {
  height: 80px; border-radius: 6px; overflow: hidden;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rt1{background:linear-gradient(135deg,#1a3a6e,#2980b9);}
.rt2{background:linear-gradient(135deg,#4a235a,#7d3c98);}
.rt3{background:linear-gradient(135deg,#2e7d32,#52be80);}
.rt4{background:linear-gradient(135deg,#922b21,#e74c3c);}
.rt5{background:linear-gradient(135deg,#784212,#ca6f1e);}
.rt6{background:linear-gradient(135deg,#1c2833,#566573);}
.rt7{background:linear-gradient(135deg,#0e6655,#76d7c4);}
.rt8{background:linear-gradient(135deg,#6e2f1a,#ca8a04);}

.result-body { }
.result-tags { display: flex; gap: 6px; margin-bottom: 6px; flex-wrap: wrap; }
.rtag { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 2px; text-transform: uppercase; }
.rtb { background: #d6eaf8; color: #1a6ea8; }
.rtr { background: #fce4d6; color: #c0392b; }
.rtg { background: #fdebd0; color: #ca6f1e; }
.rtgr{ background: #e8f5e9; color: #2e7d32; }

.result-body h3 {
  font-family: 'PT Serif',serif; font-size: 16px; font-weight: 700;
  line-height: 1.4; margin-bottom: 6px; transition: color .2s;
}
.result-item:hover h3 { color: var(--blue); }
.result-body h3 mark,
.result-excerpt mark { background: rgba(232,160,32,.25); color: inherit; border-radius: 2px; padding: 0 2px; }
.result-excerpt { font-size: 13px; color: #555; line-height: 1.6; margin-bottom: 8px; }
.result-meta { display: flex; align-items: center; gap: 12px; font-size: 11px; color: var(--gray); }
.rvw { display: flex; align-items: center; gap: 3px; }

.no-results { text-align: center; padding: 48px 0; }
.no-results h3 { font-family: 'Playfair Display',serif; font-size: 22px; margin-bottom: 8px; color: var(--gray); }
.no-results p { font-size: 14px; color: var(--gray); margin-bottom: 20px; }

.pagination { display: flex; gap: 6px; margin-top: 28px; align-items: center; justify-content: center; }
.page-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.2s;
}
.page-btn:hover { border-color: var(--blue); color: var(--blue); }
.page-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── ABOUT PAGE ───────────────────────────────── */
.about-hero {
  background: linear-gradient(145deg, #0a1f45 0%, #1a3a6e 50%, #1a5c8a 100%);
  padding: 64px 0 56px;
  text-align: center;
  animation: fadeUp 0.5s ease both;
}
.about-hero-inner { max-width: 700px; margin: auto; padding: 0 20px; }
.flag-stripe { display: flex; justify-content: center; gap: 0; margin-bottom: 28px; }
.flag-stripe span { width: 36px; height: 6px; border-radius: 3px; }
.flag-stripe .fb { background: #003DA5; }
.flag-stripe .fy { background: #FFD100; margin: 0 4px; }
.flag-stripe .fr { background: #CC0001; }
.about-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}
.about-hero h1 span { color: var(--gold); }
.about-hero p { font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.65; }

.stats-bar { background: var(--white); border-bottom: 1px solid var(--border); }
.stats-inner {
  max-width: 1000px;
  margin: auto;
  padding: 28px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--blue);
  display: block;
}
.stat-label { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.about-wrap {
  max-width: 1000px;
  margin: 48px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.mission-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.mission-block.reverse { direction: rtl; }
.mission-block.reverse > * { direction: ltr; }
.mission-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--blue);
}
.mission-text p {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 14px;
}
.accent-line { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.accent-line .line { flex: 1; height: 2px; background: var(--gold); }
.accent-line span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.mission-visual {
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv1 { background: linear-gradient(145deg, #0d2b5c, #1a6e9a, #c8910a); }
.mv2 { background: linear-gradient(145deg, #2e7d32, #1a5c8a); }
.mission-visual svg { opacity: 0.2; }

.values-section h2,
.team-section h2,
.contacts-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 32px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border-top: 4px solid var(--blue);
}
.value-card.v2 { border-top-color: var(--gold); }
.value-card.v3 { border-top-color: var(--red); }
.value-card .vicon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: rgba(26,58,110,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.value-card.v2 .vicon { background: rgba(232,160,32,0.1); }
.value-card.v3 .vicon { background: rgba(192,57,43,0.08); }
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.value-card p { font-size: 13px; color: #555; line-height: 1.65; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.12); }
.team-photo {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tp1 { background: linear-gradient(135deg, #1a3a6e, #2980b9); }
.tp2 { background: linear-gradient(135deg, #c0392b, #e74c3c); }
.tp3 { background: linear-gradient(135deg, #2e7d32, #52be80); }
.tp4 { background: linear-gradient(135deg, #6a1b9a, #ab47bc); }
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  border: 3px solid rgba(255,255,255,0.3);
}
.team-avatar-img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; display: block; border: 3px solid rgba(255,255,255,0.3); }
.team-card-body { padding: 16px 14px 0; }
.team-card-body h3 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-card-body .role { font-size: 12px; color: var(--gray); margin-bottom: 10px; }
.team-card-body p { font-size: 12px; color: #555; line-height: 1.55; }

.support-section {
  background: linear-gradient(135deg, var(--blue), #1a5c8a);
  border-radius: 14px;
  padding: 48px;
  text-align: center;
  color: #fff;
}
.support-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 14px;
}
.support-section p {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.support-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.sup-btn { padding: 13px 28px; border-radius: 8px; font-weight: 700; font-size: 15px; cursor: pointer; border: none; transition: all 0.2s; font-family: 'Manrope', sans-serif; }
.sup-primary { background: var(--gold); color: #fff; }
.sup-primary:hover { opacity: 0.88; }
.sup-secondary { background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.sup-secondary:hover { background: rgba(255,255,255,0.25); }

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(26,58,110,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card h3 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; }
.contact-card a { font-size: 13px; color: var(--blue); font-weight: 600; }
.contact-card p { font-size: 12px; color: var(--gray); line-height: 1.5; }

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: var(--blue);
  color: rgba(255,255,255,0.75);
  margin-top: 10px;
  padding: 30px 0 0;
}
body.single footer,
body.page-template-page-about footer { margin-top: 40px; }
.footer-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px 24px;
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 30px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 12px; line-height: 1.6; color: rgba(255,255,255,0.55); }
.footer-col h5 {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-col a {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

/* ── HAMBURGER ─────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  background: none; border: none;
  cursor: pointer; padding: 0; margin-left: 12px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--blue); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── MOBILE NAV ─────────────────────────────────── */
.nav-mobile {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .3s ease;
  visibility: hidden;
  pointer-events: none;
}
.nav-mobile.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.nav-mobile-inner { display: flex; flex-direction: column; padding: 20px; }
.nav-mobile-inner li { list-style: none; display: contents; }
.nav-mobile-inner a {
  font-weight: 600; font-size: 16px; color: var(--text);
  padding: 14px 0; border-bottom: 1px solid var(--border);
  display: block; transition: color .2s;
}
.nav-mobile-inner a:hover,
.nav-mobile-inner a.current-menu-item { color: var(--blue); }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1000px) {
  .archive-grid { grid-template-columns: 1fr 1fr; }
  .card.featured-card { grid-column: span 2; }
}

@media (max-width: 900px) {
  .main-wrap { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .article-wrap { grid-template-columns: 1fr; }
  .archive-wrap { grid-template-columns: 1fr; }
  .search-wrap { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .mission-block { grid-template-columns: 1fr; }
  .mission-block.reverse { direction: ltr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .card.featured-card { grid-column: span 1; grid-template-columns: 1fr; }
  .rubric-hero h1 { font-size: 30px; }
  .about-hero h1 { font-size: 34px; }
  .related-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .result-item { grid-template-columns: 1fr; }
  .result-thumb { height: 140px; width: 100%; }
}
