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

:root {
  --cream:    #F4EFE4;
  --ink:      #1C1C1C;
  --ink-mid:  #3D3D3D;
  --ink-soft: #6B6B6B;
  --gold:     #C8933A;
  --gold-lt:  #E8B96A;
  --steel:    #4A6B8A;
  --steel-lt: #EBF1F7;
  --rule:     #C8B89A;
  --white:    #FFFFFF;
}

html { font-size: 16px; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'PT Sans', sans-serif;
  line-height: 1.6;
}

/* ── MASTHEAD ── */
.masthead {
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
}
.masthead__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 0;
}
.masthead__logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 16px;
}
.masthead__logo-wrap img {
  max-width: 680px;
  width: 100%;
  height: auto;
}
.masthead__dateline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'PT Sans', sans-serif;
  font-size: 11px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 0;
  border-top: 1px solid var(--rule);
}

/* ── NAV ── */
.nav {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
}
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 8px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: #D4C9B8;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__links { display: flex; }
.nav__search { margin-left: auto; }

.nav__item {
  display: block;
  padding: 13px 18px;
  font-family: 'PT Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #D4C9B8;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav__item:hover, .nav__item--active {
  color: var(--gold-lt);
  background: rgba(255,255,255,0.06);
}

/* ── TAG ── */
.tag {
  display: inline-block;
  background: var(--steel);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  font-family: 'PT Sans', sans-serif;
}
.tag--gold { background: var(--gold); }

/* ── PAGE WRAPPER ── */
.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION LABEL ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px 0 20px;
}
.section-label__text {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.section-label__rule {
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.section-label__link {
  font-size: 12px;
  color: var(--steel);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  font-family: 'PT Sans', sans-serif;
}
.section-label__link:hover { text-decoration: underline; }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--white);
  margin-top: 28px;
}
.hero__image {
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s;
}
.hero:hover .hero__image img { transform: scale(1.02); }

.hero__body {
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--rule);
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 14px;
  margin-top: 14px;
}
.hero__title a { color: inherit; text-decoration: none; }
.hero__title a:hover { text-decoration: underline; }

.hero__desc {
  font-family: 'PT Serif', serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-mid);
  flex: 1;
}
.hero__meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-soft);
}
.hero__author { font-weight: 700; color: var(--ink-mid); }

.btn-read {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 20px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-family: 'PT Sans', sans-serif;
  transition: background 0.15s;
}
.btn-read:hover { background: var(--steel); }

/* ── TOP-3 STRIP ── */
.top3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-top: none;
  margin-bottom: 8px;
}
.top3__item {
  background: var(--white);
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
}
.top3__image {
  overflow: hidden;
  margin-bottom: 14px;
}
.top3__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s;
}
.top3__item:hover .top3__image img { transform: scale(1.03); }

.top3__title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
  margin-top: 10px;
}
.top3__title a { color: inherit; text-decoration: none; }
.top3__title a:hover { text-decoration: underline; }

.top3__desc {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.55;
  flex: 1;
}
.top3__meta {
  margin-top: 12px;
  font-size: 11px;
  color: var(--ink-soft);
}

/* ── RUBRIC SECTION ── */
.rubric { margin-bottom: 12px; }

.rubric__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

/* ── CARD ── */
.card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s;
}
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

.card__image {
  overflow: hidden;
}
.card__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s;
}
.card:hover .card__image img { transform: scale(1.04); }

.card__image-empty {
  height: 160px;
  background: #E8E0D0;
}

.card__body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
  margin-top: 10px;
}
.card__title a { color: inherit; text-decoration: none; }
.card__title a:hover { text-decoration: underline; }

.card__desc {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.5;
  flex: 1;
}
.card__meta {
  margin-top: 12px;
  font-size: 11px;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
}
.card__author { font-weight: 700; }

/* ── ARTICLE LIST (category filtered view) ── */
.article-list { list-style: none; }
.article-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
}
.article-item:last-child { border-bottom: none; }
.article-item__cover {
  width: 140px;
  min-width: 140px;
}
.article-item__cover img {
  width: 100%;
  height: auto;
  display: block;
}
.article-item__cover-empty {
  width: 140px;
  min-width: 140px;
  height: 80px;
  background: #E8E0D0;
}
.article-item__body { flex: 1; }
.article-item__title a {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.3;
}
.article-item__title a:hover { text-decoration: underline; }
.article-item__lead {
  font-size: 13px;
  color: var(--ink-mid);
  margin-top: 5px;
  line-height: 1.5;
}
.article-item__meta {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── PAGINATION ── */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  padding: 6px 12px;
  border: 1px solid var(--rule);
  font-size: 14px;
  text-decoration: none;
  color: var(--steel);
  background: var(--white);
  font-family: 'PT Sans', sans-serif;
}
.pagination .current {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.pagination a:hover { background: #F0E8D8; }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--rule);
  margin: 36px 0;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  max-width: 780px;
  margin: 24px auto 0;
  padding: 0 24px;
  font-size: 12px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--steel); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb__sep { color: var(--rule); }

/* ── ARTICLE LAYOUT ── */
.article-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

/* ── ARTICLE HEADER ── */
.article-header { padding: 20px 0 0; }

.article-header__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.2;
  margin: 16px 0 18px;
  color: var(--ink);
}
.article-header__lead {
  font-family: 'PT Serif', serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-mid);
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 24px;
}
.article-header__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 28px;
  font-size: 13px;
  color: var(--ink-soft);
}
.meta-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.meta-author__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--steel);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.meta-author__name {
  font-weight: 700;
  color: var(--ink-mid);
  font-size: 14px;
}
.meta-author__role {
  font-size: 11px;
  color: var(--ink-soft);
}
.meta-dot { color: var(--rule); }
.meta-time { display: flex; align-items: center; gap: 5px; }
.meta-time svg { opacity: 0.5; }

/* ── ARTICLE COVER ── */
.article-cover {
  width: 100%;
  overflow: hidden;
  margin-bottom: 36px;
}
.article-cover img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── ARTICLE BODY ── */
.article-body {
  font-family: 'PT Serif', serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-mid);
}
.article-body p { margin-bottom: 1.4em; }
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 2em 0 0.6em;
  line-height: 1.3;
}
.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 1.8em 0 0.5em;
}
.article-body h4 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 1.6em 0 0.4em;
}
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body ul, .article-body ol { margin: 0 0 1.4em 1.4em; }
.article-body li { margin-bottom: 0.4em; }
.article-body a { color: var(--steel); }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 20px;
  margin: 1.6em 0;
  font-style: italic;
  color: var(--ink-mid);
}
.article-body figure { margin: 1.2em 0; }
.article-body img { max-width: 100%; height: auto; display: block; margin: 1em 0; }

/* Tilda-specific classes */
.article-body .t-redactor__text { display: block; margin-bottom: 0.8em; }

/* Pull-quote */
.article-body .pull-quote,
.pull-quote {
  background: var(--steel-lt);
  border-left: 4px solid var(--steel);
  padding: 20px 24px;
  margin: 2em 0;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.45;
  color: var(--steel);
}

/* Infobox */
.article-body .infobox,
.infobox {
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 2em 0;
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-mid);
}
.infobox__title {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ── ARTICLE FOOTER ── */
.article-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.article-tag {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--rule);
  font-size: 12px;
  color: var(--ink-soft);
  text-decoration: none;
  font-family: 'PT Sans', sans-serif;
  transition: border-color 0.15s, color 0.15s;
}
.article-tag:hover { border-color: var(--steel); color: var(--steel); }

.share-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.share-row__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  font-family: 'PT Sans', sans-serif;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-mid);
  text-decoration: none;
  background: var(--white);
  cursor: pointer;
  font-family: 'PT Sans', sans-serif;
  transition: background 0.15s, border-color 0.15s;
}
.share-btn:hover { background: var(--steel-lt); border-color: var(--steel); }

/* ── AUTHOR BOX ── */
.author-box {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 24px;
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}
.author-box__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--steel);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  flex-shrink: 0;
  font-family: 'PT Sans', sans-serif;
}
.author-box__name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.author-box__role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 10px;
  font-family: 'PT Sans', sans-serif;
}
.author-box__bio {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.6;
}

/* ── COMMENTS ── */
.comments-section { margin-bottom: 48px; }
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}

/* ── RELATED ARTICLES ── */
.related-section { margin-bottom: 60px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.related-card {
  background: var(--white);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s;
}
.related-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.related-card__img {
  overflow: hidden;
}
.related-card__img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s;
}
.related-card:hover .related-card__img img { transform: scale(1.04); }
.related-card__img-empty {
  height: 120px;
  background: #E8E0D0;
}
.related-card__body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.related-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 8px;
  color: var(--ink);
}
.related-card__meta {
  margin-top: auto;
  padding-top: 10px;
  font-size: 11px;
  color: var(--ink-soft);
}

/* ── ARTICLE NAV PREV/NEXT ── */
.nav-articles {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-family: 'PT Sans', sans-serif;
  font-size: 14px;
}
.nav-articles a {
  color: var(--steel);
  text-decoration: none;
  max-width: 45%;
  line-height: 1.4;
}
.nav-articles a:hover { text-decoration: underline; }
.nav-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
  margin-bottom: 4px;
}
.nav-articles .nav-next { text-align: right; margin-left: auto; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: #A09580;
  margin-top: 56px;
  padding: 36px 24px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__copy { font-size: 13px; line-height: 1.6; }
.footer__copy strong { color: #D4C9B8; }
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.footer__brand:hover { opacity: 1; }
.footer__brand-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8A7D6A;
}
.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #D4C9B8;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
}
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero__body { border-left: none; border-top: 1px solid var(--rule); }
  .top3, .rubric__grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav__inner { padding: 0 16px; }
  .nav__burger { display: flex; }
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  }
  .nav__links.is-open { display: flex; }
  .nav__item {
    padding: 14px 20px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    white-space: normal;
  }
  .nav__brand {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold-lt);
    padding: 13px 0;
    letter-spacing: 0.02em;
  }
  .article-body { font-size: 16px; }
  .author-box { flex-direction: column; align-items: flex-start; }
  .article-item__cover, .article-item__cover-empty { width: 100px; min-width: 100px; }
}

@media (max-width: 600px) {
  .top3, .rubric__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 22px; }
  .masthead__logo-wrap img { max-width: 320px; }
  .article-item { flex-direction: column; }
  .article-item__cover, .article-item__cover-empty { width: 100%; min-width: unset; }
}

@media (max-width: 480px) {
  .related-grid { grid-template-columns: 1fr; }
  .masthead__dateline { flex-direction: column; align-items: flex-start; gap: 2px; }
}

/* ── SEARCH ─────────────────────────────────────────────────────── */
.nav__search { display:flex; align-items:center; }
.nav__search form { display:flex; align-items:center; }
.nav__search-input {
  width: 140px;
  padding: 2px 6px 2px 0;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.3);
  background: transparent;
  color: #fff;
  font-family: 'PT Sans', sans-serif;
  font-size: 13px;
  outline: none;
  transition: width .25s ease, border-color .2s ease;
}
.nav__search-input::placeholder { color: rgba(255,255,255,.45); }
.nav__search:focus-within .nav__search-input {
  width: 200px;
  border-bottom-color: var(--gold);
}
.nav__search-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.75);
  padding: 4px 6px;
  line-height: 1;
  transition: color .2s;
}
.nav__search-btn:hover { color: var(--gold); }

/* Страница поиска */
.search-form {
  display: flex;
  gap: 0;
  margin: 24px 0 8px;
  max-width: 560px;
}
.search-form__input {
  flex: 1;
  padding: 10px 14px;
  font-family: 'PT Sans', sans-serif;
  font-size: 16px;
  border: 2px solid var(--rule);
  border-right: none;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.search-form__input:focus { border-color: var(--ink); }
.search-form__btn {
  padding: 10px 20px;
  background: var(--ink);
  color: #fff;
  border: none;
  font-family: 'PT Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.search-form__btn:hover { background: var(--gold); }

.search-meta {
  font-family: 'PT Sans', sans-serif;
  font-size: 13px;
  color: var(--ink-mid);
  margin: 16px 0;
}

/* Подсветка совпадений */
mark {
  background: #fff3b0;
  color: var(--ink);
  padding: 0 1px;
  border-radius: 2px;
}

.nav__item--search-mobile { display: none; }

@media (max-width: 860px) {
  .nav__search { display: none; }
  .nav__item--search-mobile { display: block; }
}
