/* ============================================================
   OЕКБ.РФ — Главный файл стилей
   CSS Grid, без фреймворков, оптимизация под Core Web Vitals
   ============================================================ */

:root {
  --color-bg: #f8f6f2;
  --color-surface: #ffffff;
  --color-text: #1a1a1a;
  --color-text-secondary: #5c5c5c;
  --color-border: #e0ddd5;
  --color-accent: #8b4513;
  --color-accent-light: #a0522d;
  --color-link: #2c5f2d;
  --color-link-hover: #1a3b1a;
  --color-muted: #f0ede6;
  --gap-xs: 4px;
  --gap-sm: 8px;
  --gap-md: 16px;
  --gap-lg: 24px;
  --gap-xl: 32px;
  --gap-2xl: 48px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-card: 0 1px 4px rgba(0, 0, 0, 0.1);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Georgia", "Times New Roman", serif;
  --max-width: 1280px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--color-link);
  text-decoration: none;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}

/* Global focus ring */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Text selection */
::selection {
  background: var(--color-accent);
  color: #fff;
}

/* Heading scale */
h1 { font-size: clamp(1.5rem, 4vw, 2.25rem); line-height: 1.2; font-weight: 700; font-family: var(--font-serif); }
h2 { font-size: 1.35rem; line-height: 1.3; font-weight: 600; margin-top: var(--gap-xl); }
h3 { font-size: 1.1rem; line-height: 1.4; font-weight: 600; }

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

/* ============================================================
   Контейнер
   ============================================================ */

.o-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gap-lg);
}

.o-container--wide {
  max-width: 1440px;
}

.o-section {
  padding: var(--gap-lg) 0;
}

/* ============================================================
   Header
   ============================================================ */

.o-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: var(--gap-md) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.o-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-lg);
}

.o-header__logo a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.o-header__nav {
  display: flex;
  gap: var(--gap-lg);
  list-style: none;
}

.o-header__nav a {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.o-header__nav a:hover {
  color: var(--color-accent);
}

/* ============================================================
   Хлебные крошки
   ============================================================ */

.o-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-xs);
  list-style: none;
  padding: var(--gap-md) 0;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.o-breadcrumbs li:not(:last-child)::after {
  content: "›";
  margin: 0 var(--gap-sm);
  color: var(--color-text-secondary);
  opacity: 0.5;
}

.o-breadcrumbs a {
  color: var(--color-text-secondary);
}

.o-breadcrumbs [aria-current="page"] {
  color: var(--color-text);
  font-weight: 600;
}

/* ============================================================
   Сетки
   ============================================================ */

.o-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--gap-lg);
}

.o-grid--2col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--gap-lg);
}

.o-grid--3col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap-lg);
}

/* ============================================================
   Карточка фото
   ============================================================ */

.c-photo-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
  break-inside: avoid;
}

.c-photo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.c-photo-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-muted);
}

.c-photo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.c-photo-card:hover .c-photo-card__image img {
  transform: scale(1.03);
}

.c-photo-card__year {
  position: absolute;
  bottom: var(--gap-sm);
  left: var(--gap-sm);
  background: var(--color-text);
  color: var(--color-bg);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.c-photo-card__placeholder {
  aspect-ratio: 4/3;
  background: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  font-size: 0.85rem;
}

.c-photo-card__body {
  padding: var(--gap-md);
}

.c-photo-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: var(--gap-xs);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-photo-card__meta {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

.c-photo-card__excerpt {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  line-height: 1.4;
  margin-top: var(--gap-xs);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   Карточка До/После
   ============================================================ */

.c-before-after {
  position: relative;
  overflow: hidden;
  cursor: col-resize;
  aspect-ratio: 4/3;
}

.c-before-after__after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.c-before-after__after img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-before-after__before {
  position: relative;
  width: 100%;
  height: 100%;
}

.c-before-after__before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-before-after__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  cursor: col-resize;
  z-index: 2;
  transform: translateX(-50%);
}

.c-before-after__handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: var(--color-surface);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.c-before-after__handle::before,
.c-before-after__handle::after {
  content: "";
  display: block;
  width: 2px;
  height: 12px;
  background: var(--color-accent);
  margin: 0 2px;
}

/* ============================================================
   Видоискатель (поиск)
   ============================================================ */

.c-viewfinder {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.c-viewfinder__input {
  width: 100%;
  padding: var(--gap-md);
  padding-right: 48px;
  font-size: 1.1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: border-color 0.2s;
}

.c-viewfinder__input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.c-viewfinder__suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 50;
  display: none;
  max-height: 320px;
  overflow-y: auto;
}

.c-viewfinder__suggestions[aria-hidden="false"] {
  display: block;
}

.c-viewfinder__suggestion {
  padding: var(--gap-sm) var(--gap-md);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.15s;
}

.c-viewfinder__suggestion:hover,
.c-viewfinder__suggestion[aria-selected="true"] {
  background: var(--color-muted);
}

.c-viewfinder__quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-sm);
  margin-top: var(--gap-md);
}

.c-viewfinder__tag {
  padding: 4px 12px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--color-surface);
}

.c-viewfinder__tag:hover,
.c-viewfinder__tag:focus {
  background: var(--color-accent);
  color: var(--color-surface);
  border-color: var(--color-accent);
}

/* ============================================================
   Матрица Хабов (табы)
   ============================================================ */

.c-matrix {}
.c-matrix__tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--color-border);
  margin-bottom: var(--gap-lg);
}

.c-matrix__tab {
  padding: var(--gap-sm) var(--gap-lg);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  transition: all 0.2s;
}

.c-matrix__tab:hover {
  color: var(--color-text);
}

.c-matrix__tab[aria-selected="true"] {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  font-weight: 600;
}

.c-matrix__panel {
  display: none;
}

.c-matrix__panel[aria-hidden="false"] {
  display: block;
}

.c-matrix__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--gap-md);
}

.c-matrix__item {
  padding: var(--gap-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.2s;
}

.c-matrix__item:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card);
}

.c-matrix__item a {
  display: block;
  font-weight: 600;
  color: var(--color-text);
}

.c-matrix__item__count {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin-top: var(--gap-xs);
}

/* ============================================================
   FAQ блок
   ============================================================ */

.c-faq {}
.c-faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--gap-sm);
  background: var(--color-surface);
}

.c-faq__question {
  width: 100%;
  padding: var(--gap-md);
  text-align: left;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text);
}

.c-faq__question::after {
  content: "+";
  font-size: 1.2rem;
  color: var(--color-accent);
  transition: transform 0.2s;
}

.c-faq__question[aria-expanded="true"]::after {
  content: "−";
}

.c-faq__answer {
  padding: 0 var(--gap-md) var(--gap-md);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.c-faq__answer[aria-hidden="false"] {
  max-height: 500px;
  opacity: 1;
  padding: var(--gap-md);
  overflow: visible;
}

.c-faq__details[open] .c-faq__answer { max-height: none; opacity: 1; padding: var(--gap-md); overflow: visible; transition: none; }

/* ============================================================
   Семантические таблицы
   ============================================================ */

.c-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--gap-lg) 0;
  font-size: 0.9rem;
}

.c-table thead {
  background: var(--color-muted);
}

.c-table th {
  padding: var(--gap-sm) var(--gap-md);
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--color-border);
}

.c-table td {
  padding: var(--gap-sm) var(--gap-md);
  border-bottom: 1px solid var(--color-border);
}

.c-table tbody tr:hover {
  background: var(--color-muted);
}

/* ============================================================
   Календарь «В этот день»
   ============================================================ */

.c-calendar {}
.c-calendar__title {
  font-size: 1.2rem;
  margin-bottom: var(--gap-md);
  color: var(--color-accent);
}

.c-calendar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--gap-md);
}

/* ============================================================
   Entity Graph / Dataset блок
   ============================================================ */

.c-entity-graph {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--gap-md);
  margin: var(--gap-xl) 0;
}

.c-entity-graph__metric {
  text-align: center;
  padding: var(--gap-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.c-entity-graph__value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  font-family: var(--font-serif);
}

.c-entity-graph__label {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  margin-top: var(--gap-xs);
}

/* ============================================================
   Пагинация
   ============================================================ */

.o-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gap-sm);
  padding: var(--gap-xl) 0;
}

.o-pagination__page,
.o-pagination__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 var(--gap-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  font-size: 0.85rem;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.15s;
}

.o-pagination__page:hover,
.o-pagination__arrow:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.o-pagination__page--active {
  background: var(--color-accent);
  color: var(--color-surface);
  border-color: var(--color-accent);
  font-weight: 600;
}

/* ============================================================
   Footer
   ============================================================ */

.o-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: var(--gap-xl) 0;
  margin-top: var(--gap-2xl);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.o-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--gap-md);
}

/* ============================================================
   Утилиты
   ============================================================ */

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.u-text-center { text-align: center; }
.u-mb-sm { margin-bottom: var(--gap-sm); }
.u-mb-md { margin-bottom: var(--gap-md); }
.u-mb-lg { margin-bottom: var(--gap-lg); }
.u-mt-md { margin-top: var(--gap-md); }
.u-mt-lg { margin-top: var(--gap-lg); }
.u-mt-xl { margin-top: var(--gap-xl); }

/* ============================================================
   404 страница
   ============================================================ */

.c-error-404 {
  text-align: center;
  padding: var(--gap-2xl) 0;
}

.c-error-404__code {
  font-size: 6rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 1;
}

.c-error-404__title {
  font-size: 1.4rem;
  margin: var(--gap-md) 0;
}

/* ============================================================
   Koenig editor image styles (required by Ghost)
   ============================================================ */

.kg-width-wide {
  width: 100%;
  max-width: 100%;
}

.kg-width-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 768px) {
  :root {
    --gap-xl: 24px;
    --gap-2xl: 32px;
  }

  .o-header__inner {
    flex-direction: column;
    gap: var(--gap-sm);
  }

  .o-header__nav {
    gap: var(--gap-md);
    flex-wrap: wrap;
    justify-content: center;
  }

  .o-masonry {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--gap-sm);
  }

  .c-matrix__grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .o-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   Тёмная тема
   ============================================================ */
[data-theme="dark"] {
  --color-bg: #1a1a1a;
  --color-surface: #2d2d2d;
  --color-text: #e0ddd5;
  --color-text-secondary: #a0a0a0;
  --color-border: #3d3d3d;
  --color-accent: #d4a574;
  --color-accent-light: #e8c49a;
  --color-link: #7cb342;
  --color-link-hover: #9ccc65;
  --color-muted: #252525;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.3);
}

/* Кнопка переключения темы */
.o-theme-toggle {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  line-height: 1;
  flex-shrink: 0;
  order: -1;
  margin-right: auto;
}
html:not([data-theme]) .o-theme-toggle { visibility: hidden; }
.o-theme-toggle:hover { transform: scale(1.1); }

/* ============================================================
   Dual-range slider (два ползунка на одном треке)
   ============================================================ */
.c-range-dual {
  position: relative;
  height: 32px;
}

.c-range-dual input[type="range"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  margin: 0;
}

.c-range-dual input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
}

.c-range-dual input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid var(--color-surface);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  cursor: pointer;
  margin-top: -7px;
}

.c-range-dual input[type="range"]::-moz-range-track {
  height: 4px;
  background: var(--color-border);
  border-radius: 2px;
}

.c-range-dual input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid var(--color-surface);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  cursor: pointer;
}

/* ============================================================
   Prev/Next photo navigation
   ============================================================ */
.c-photo-nav {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  padding: var(--gap-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
  max-width: 380px;
  flex: 1;
  min-width: 200px;
}
.c-photo-nav:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--color-text);
}
.c-photo-nav--next {
  text-align: right;
  justify-content: flex-end;
}
.c-photo-nav__label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-accent);
  font-weight: 600;
}
.c-photo-nav__title {
  display: block;
  font-size: 0.85rem;
  line-height: 1.3;
  flex: 1;
}
.c-photo-nav img {
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Entity graph — hover + focus on clickable metrics */
.c-entity-graph__metric {
  transition: all 0.2s ease;
}
.c-entity-graph__metric:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.c-entity-graph__metric:focus-visible {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-card);
}

/* FAQ question hover */
.c-faq__question {
  transition: background 0.2s ease;
}
.c-faq__question:hover {
  background: var(--color-muted);
}

/* Header nav — sliding underline on hover */
.o-header__nav a {
  position: relative;
  transition: color 0.2s ease;
}
.o-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}
.o-header__nav a:hover::after {
  width: 100%;
}

/* Header logo — prevent color shift to green */
.o-header__logo a:hover {
  color: var(--color-accent-light);
  text-decoration: none;
}

/* Matrix tabs — horizontal scroll on overflow */
.c-matrix__tabs {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Viewfinder dropdown — add shadow */
.c-viewfinder__suggestions {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-secondary);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print styles */
@media print {
  .o-header, .o-footer, .o-theme-toggle, .c-viewfinder,
  .c-matrix, .c-entity-graph, .c-faq, nav { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  img { max-width: 100%; page-break-inside: avoid; }
  a { color: #000; text-decoration: underline; }
}

/* Dark theme — additional overrides */
[data-theme="dark"] .c-before-after__divider {
  background: var(--color-accent);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .c-before-after__handle {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .c-viewfinder__suggestions {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
[data-theme="dark"] .o-pagination__page--active {
  color: var(--color-bg);
}
