/* ============================================
   Шалаграма-шила · Global Design System
   ============================================ */

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

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ---------- Токены: светлая тема (по умолчанию) ---------- */
:root {
  --ink:        #1a1612;
  --parchment:  #f5f0e8;
  --stone:      #8c7b6b;
  --gold:       #b8956a;
  --gold-light: #d4b896;
  --deep:       #2d2520;
  --muted:      #6b5e52;
  --border:     #e0d5c5;

  /* Шлоки */
  --shloka-bg:        #f0ebe0;
  --shloka-border:    #c9aa84;
  --devanagari-color: #3d2e1a;
  --translit-color:   #5c4a35;
  --translation-bg:   #faf7f2;
  --source-color:     #9a8470;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w:      720px;
  --gap:        2rem;
  --header-h:   70px;  /* высота фиксированного хедера */

  /* Переключатель темы */
  --theme-btn-bg:     rgba(0,0,0,0.06);
  --theme-btn-color:  var(--stone);

  /* Карточки статей */
  --card-bg:          #faf7f2;
  --card-shadow:      0 4px 20px rgba(0, 0, 0, 0.05);
  --card-shadow-hover:0 8px 30px rgba(0, 0, 0, 0.08);
}

/* ---------- Токены: тёмная тема ---------- */
[data-theme="dark"] {
  --ink:        #d4cfc7;
  --parchment:  #1e2430;
  --stone:      #7a8499;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --deep:       #e8c97a;
  --muted:      #9aa0ae;
  --border:     #2e3747;

  --shloka-bg:        #242d3d;
  --shloka-border:    #4a5a72;
  --devanagari-color: #e8c97a;
  --translit-color:   #b8c8d8;
  --translation-bg:   #1a2132;
  --source-color:     #7a8499;

  --theme-btn-bg:     rgba(255,255,255,0.08);
  --theme-btn-color:  var(--gold-light);

  --card-bg:          #242d3d;
  --card-shadow:      0 4px 20px rgba(255, 255, 255, 0.03);
  --card-shadow-hover:0 8px 30px rgba(255, 255, 255, 0.05);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--ink);
  background: var(--parchment);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease, color 0.3s ease;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-block: 2rem 0.75rem; }
h3 { font-size: 1.25rem; margin-block: 1.5rem 0.5rem; }
h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-block: 1.4rem 0.4rem;
}

p { margin-block: 0.9rem; }

/* ---------- Списки в теле статьи ---------- */
article ul,
article ol {
  padding-left: 1.6em;
  margin-block: 0.9rem;
}

article ul { list-style: disc; }
article ol { list-style: decimal; }

article li { margin-block: 0.3rem; }

article ul ul,
article ol ol,
article ul ol,
article ol ul {
  padding-left: 1.4em;
  margin-block: 0.2rem;
}

article p {
  line-height: 2.1;
}

article { font-size: 1rem; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--deep); }

blockquote {
  border-left: 2px solid var(--gold);
  padding: 0.6rem 1.4rem;
  margin: 1.5rem 0;
  color: var(--muted);
  font-style: italic;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

img { max-width: 100%; border-radius: 4px; }

.main-photo {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  margin-block: 1.5rem;
  filter: sepia(12%);
}

/* ---------- Header & Nav ---------- */
nav {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--border);
  padding: 1.2rem var(--gap);
  background: var(--parchment);
  transition: background 0.3s ease, border-color 0.3s ease;
  z-index: 100;
}

.site-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: auto;
}
.site-title:hover { color: var(--gold); }

nav a:not(.site-title) {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
nav a:not(.site-title):hover,
nav a.active { color: var(--gold); border-color: var(--gold); }

/* Ссылка «Содержание» в хедере: иконка + текст */
.nav-contents {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto; /* прижимаем к правому краю, перед переключателем языка */
}
.nav-contents svg { flex-shrink: 0; }

/* ---------- Welcome page ---------- */
.welcome-hero {
  text-align: center;
  padding: 8rem 0 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.welcome-hero .site-name {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 3rem;
}
.welcome-hero .sanskrit {
  display: block;
  font-size: 2rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.welcome-langs {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.welcome-lang-btn {
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.8rem 2rem;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
  text-decoration: none;
}
.welcome-lang-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184, 149, 106, 0.06);
}

/* ---------- Кнопка переключения темы ---------- */
.theme-toggle {
  background: var(--theme-btn-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--theme-btn-color);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.theme-toggle svg { width: 1rem; height: 1rem; display: block; }

/* Иконки: показываем нужную в зависимости от темы */
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun  { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun  { display: block; }

/* ---------- Main ---------- */
main {
  flex: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: var(--header-h) auto 0;
  padding: 3rem var(--gap);
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem var(--gap);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--stone);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy { margin: 0; }

/* RSS-ссылка */
.rss-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.3em 0.7em;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.rss-link:hover {
  color: #e07b39;
  border-color: #e07b39;
  background: rgba(224, 123, 57, 0.06);
}
[data-theme="dark"] .rss-link:hover {
  color: #f0a060;
  border-color: #f0a060;
  background: rgba(240, 160, 96, 0.08);
}
.rss-icon { flex-shrink: 0; transition: color 0.2s; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  max-width: none;
  margin-inline: 0;

  /* Десктоп: прилипающие крошки сверху */
  position: sticky;
  top: var(--header-h);
  z-index: 99;
  background: var(--parchment);
  margin-left: calc(-1 * var(--gap));
  margin-right: calc(-1 * var(--gap));
  padding: 0.65rem var(--gap);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

[data-theme="dark"] .breadcrumbs {
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

@media (max-width: 600px) {
  main, article, .contents-page {
    display: flex;
    flex-direction: column;
  }
  .breadcrumbs {
    order: 99;
    top: auto;
    bottom: 0;
    border-bottom: none;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
    margin-bottom: 0;
    margin-top: 2rem;
    padding: 1rem var(--gap);
  }
  [data-theme="dark"] .breadcrumbs {
    box-shadow: 0 -4px 20px rgba(255,255,255,0.02);
  }
}

.breadcrumbs a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--gold); }

.breadcrumb-sep {
  color: var(--gold-light);
  font-size: 0.8rem;
  line-height: 1;
  user-select: none;
}

.breadcrumb-current {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  max-width: 30ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- Section header ---------- */
.section-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}
.section-header h1 { margin-top: 0.25rem; }
.section-desc {
  color: var(--muted);
  font-style: italic;
  margin-top: 0.5rem;
  font-size: 1rem;
}
.section-meta { margin-bottom: 0.5rem; }
.section-sanskrit {
  font-size: 1.4rem;
  color: var(--gold);
  display: block;
}

/* ---------- Post list ---------- */
.post-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.post-item {
  padding: 1.5rem 1.8rem;
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1rem;
  align-items: baseline;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
}

.post-title {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
  transition: color 0.2s;
  grid-column: 1;
  text-decoration: none;
}
.post-item:hover .post-title { color: var(--gold); }

.post-summary {
  grid-column: 1;
  font-size: 0.9rem;
  color: var(--muted);
  font-family: var(--font-sans);
  font-style: normal;
  margin-top: 0.2rem;
}

.post-date {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--stone);
  white-space: nowrap;
}

.post-item-meta {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  justify-content: flex-end;
}

.empty-state {
  color: var(--muted);
  font-style: italic;
  padding: 1.5rem 0;
  text-align: center;
}

/* ---------- Article / Post body ---------- */
.post-header {
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}
.post-header h1 { margin-bottom: 0.5rem; margin-top: 0.75rem; }

.post-meta {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--stone);
  text-transform: uppercase;
}

/* Лид-абзац (description) под шапкой статьи */
.article-lead {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  margin-top: 0;
}

/* Дата + жанр в одну строку */
.post-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

/* Жанр-бейдж */
.post-genre {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.1em 0.55em;
}
.post-genre--list {
  font-size: 0.65rem;
  margin-left: 0.5rem;
}

/* Мета-информация об авторе в статье */
.article-meta {
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--stone);
}
.article-meta a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.article-meta a:hover { text-decoration: underline; }

/* ---------- Home page ---------- */
.home-hero {
  text-align: center;
  padding: 4rem 0 3rem;
  margin-bottom: 3rem;
}
.home-hero .site-name {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ink);
  line-height: 1.1;
}
.home-hero .tagline {
  font-family: var(--font-serif);
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
}
.home-hero .sanskrit {
  display: block;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ---------- Table of Contents (главная) ---------- */
.table-of-contents {
  max-width: var(--max-w);
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.toc-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  width: 100%;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.3s ease;
  color: inherit;
}
.toc-item:last-child { border-bottom: 1px solid var(--border); }
.toc-item:hover { background: rgba(184, 149, 106, 0.03); }

.toc-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 1.5rem;
  border-right: 1px solid var(--gold-light);
  margin-right: 1.5rem;
}
.toc-index {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--stone);
  letter-spacing: 0.1em;
}
.toc-sanskrit {
  font-size: 1.1rem;
  color: var(--gold);
  margin-top: 0.25rem;
}
.toc-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.toc-title {
  margin: 0;
  font-size: 1.6rem;
  color: var(--ink);
  transition: color 0.2s;
}
.toc-item:hover .toc-title { color: var(--gold); }
.toc-desc {
  margin: 0.4rem 0 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
}

/* ---------- Задачи / Чек-листы ---------- */
.contains-task-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0.5rem 0 1rem;
}

.task-list-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}
.task-list-item:hover {
  background-color: rgba(184, 149, 106, 0.06);
}
.task-list-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.1rem;
  height: 1.1rem;
  border: 1.5px solid var(--stone);
  border-radius: 3px;
  background-color: transparent;
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin: 0;
}
.task-list-item input[type="checkbox"]:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}
.task-list-item input[type="checkbox"]::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1rem 1rem white;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
.task-list-item input[type="checkbox"]:checked::before {
  transform: scale(1);
}

/* ---------- Шлоки (санскритские стихи) ---------- */
/* Группировка — чисто через CSS: деванагари начинает блок,
   элементы склеиваются через margin:0 + border-bottom:none,
   :has() определяет последний элемент для нижнего отступа       */

p.devanagari {
  margin: 2rem 0 0;
  padding: 1.1rem 1.4rem 0.85rem;
  background: var(--shloka-bg);
  border: 1px solid var(--shloka-border);
  border-left: 3px solid var(--shloka-border);
  border-bottom: none;
  border-radius: 0 6px 0 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 2;
  color: var(--devanagari-color);
  letter-spacing: 0.02em;
  white-space: pre-line;
  transition: background 0.3s ease, border-color 0.3s ease;
}

p.translit {
  margin: 0;
  padding: 0.5rem 1.4rem 0.9rem;
  background: var(--shloka-bg);
  border: 1px solid var(--shloka-border);
  border-left: 3px solid var(--shloka-border);
  border-top: 1px solid var(--border);
  border-bottom: none;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.85;
  color: var(--translit-color);
  white-space: pre-line;
  transition: background 0.3s ease, border-color 0.3s ease;
}

p.translation {
  margin: 0 0 2.5rem;
  padding: 0.9rem 1.4rem;
  background: var(--translation-bg);
  border: 1px solid var(--shloka-border);
  border-left: 3px solid var(--shloka-border);
  border-top: 1px solid var(--border);
  border-radius: 0 0 6px 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink);
  transition: background 0.3s ease, border-color 0.3s ease;
}
/* Когда после перевода идёт источник — убираем нижний радиус и отступ */
p.translation:has(+ p.source) {
  margin-bottom: 0;
  border-bottom: none;
  border-radius: 0;
}

p.source {
  margin: 0 0 2.5rem;
  padding: 0.35rem 1.4rem 0.5rem;
  background: var(--translation-bg);
  border: 1px solid var(--shloka-border);
  border-left: 3px solid var(--shloka-border);
  border-top: 1px dashed var(--border);
  border-radius: 0 0 6px 0;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--source-color);
  transition: background 0.3s ease, border-color 0.3s ease;
}
p.source p { margin: 0; }

/* ---------- Страница автора ---------- */
.author-profile {
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--gold-light);
}
.author-profile-inner {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

/* Аватар */
.author-avatar-wrap { flex-shrink: 0; }
.author-avatar {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  filter: sepia(20%) contrast(0.95);
  border: 2px solid var(--gold-light);
  transition: filter 0.3s ease, border-color 0.3s ease;
}
.author-avatar:hover {
  filter: sepia(0%) contrast(1);
  border-color: var(--gold);
}

/* Инициалы (fallback) */
.author-avatar-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  background: linear-gradient(135deg, var(--shloka-bg) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
  user-select: none;
}

/* Текст профиля */
.author-profile-text {
  flex: 1;
  min-width: 0;
}
.author-profile-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  margin-top: 0.1rem;
  color: var(--ink);
}

.author-bio {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--muted);
}
.author-bio p { font-style: italic; margin-block: 0.6rem; }
.author-bio p:first-child { margin-top: 0; }
.author-bio p:last-child  { margin-bottom: 0; }

.author-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin-top: 1.2rem;
}
.author-contact-link {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.author-contact-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ---------- Индекс работ автора ---------- */
.author-index h2 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--stone);
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
}
.author-index h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0.5rem auto 0;
}

.author-section-group { margin-bottom: 3rem; }
.author-section-group h3 {
  font-size: 1.1rem;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
}

.author-section-group .post-list { list-style: none; padding: 0; }
.author-section-group li {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.6rem 0;
  transition: transform 0.2s ease;
}
.author-section-group li:hover { transform: translateX(5px); }
.author-section-group time {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--stone);
  min-width: 85px;
  flex-shrink: 0;
}
.author-section-group a {
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.author-section-group a:hover { border-bottom-color: var(--gold-light); }

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  :root { --gap: 1.2rem; }

  .post-item { grid-template-columns: 1fr; }
  .post-date, .post-item-meta { grid-column: 1; grid-row: auto; justify-content: flex-start; }
  .site-header { padding: 1rem var(--gap); }

  .toc-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .toc-meta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-right: none;
    border-bottom: 1px solid var(--gold-light);
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 0.5rem;
  }

  .author-profile-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .author-profile-text h1 { font-size: 2rem; }
  .author-contacts { justify-content: center; }

  .author-section-group li { flex-direction: column; gap: 0.2rem; }
  .author-section-group time { font-size: 0.75rem; }

  .breadcrumb-current { max-width: 20ch; }
}

/* ---------- Страница содержания ---------- */
.contents-page { padding-bottom: 2rem; }

.contents-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.contents-section:last-child { border-bottom: none; }

.contents-section-header { margin-bottom: 1.2rem; }

.contents-section-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.contents-section-link:hover .contents-section-name { color: var(--gold); }

.contents-section-sanskrit {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-light);
  line-height: 1.2;
  margin-bottom: 0.2rem;
  transition: color 0.2s;
}
.contents-section-link:hover .contents-section-sanskrit { color: var(--gold); }

.contents-section-name {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin: 0 0 0.5rem;
  transition: color 0.2s;
}

.contents-section-desc {
  font-size: 0.85rem;
  color: var(--stone);
  font-style: italic;
  margin: 0;
}

/* Список статей */
.contents-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contents-item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  padding: 0.55rem 0.5rem;
  border-radius: 4px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.contents-item:hover {
  background: rgba(184, 149, 106, 0.06);
  transform: translateX(4px);
}

.contents-item a {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.contents-item:hover a {
  color: var(--gold);
  border-bottom-color: var(--gold-light);
}

.contents-item-desc {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--stone);
  font-style: italic;
  flex-basis: 100%;
  padding-left: 0.1rem;
}

@media (max-width: 600px) {
  .nav-contents span { display: none; } /* только иконка на мобиле */
}

/* ---------- Индекс авторов (/authors/) ---------- */
.authors-index-page { padding-bottom: 2rem; }

.authors-list-index {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.author-card {
  border-bottom: 1px solid var(--border);
}
.author-card:first-child { border-top: 1px solid var(--border); }

.author-card-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.2rem 0.25rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  border-radius: 4px;
}
.author-card-link:hover { background: rgba(184, 149, 106, 0.05); }

/* Аватар */
.author-card-avatar-wrap { flex-shrink: 0; }
.author-card-avatar {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  filter: sepia(15%) contrast(0.95);
  border: 1.5px solid var(--gold-light);
  transition: filter 0.25s, border-color 0.25s;
}
.author-card-link:hover .author-card-avatar {
  filter: sepia(0%) contrast(1);
  border-color: var(--gold);
}

.author-card-avatar-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-light);
  background: linear-gradient(135deg, var(--shloka-bg) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
}

/* Текст карточки */
.author-card-body {
  flex: 1;
  min-width: 0;
}
.author-card-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--ink);
  margin: 0 0 0.15rem;
  transition: color 0.2s;
}
.author-card-link:hover .author-card-name { color: var(--gold); }

.author-card-count {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}

/* Стрелка справа */
.author-card-arrow {
  flex-shrink: 0;
  color: var(--border);
  transition: color 0.2s, transform 0.2s;
}
.author-card-link:hover .author-card-arrow {
  color: var(--gold);
  transform: translateX(4px);
}

/* ---------- Ссылка «Авторы» на странице Содержания ---------- */
.contents-authors-link {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-end;
}

.contents-authors-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.45em 1em;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.contents-authors-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184, 149, 106, 0.05);
}

/* ============================================================
   История изменений
   ============================================================ */

/* ---------- Блок ссылок на историю внутри статьи ---------- */
.article-history {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.article-history-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-block: 0 1rem;
}

.article-history-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.article-history-item a {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.article-history-item a:hover {
  color: var(--gold);
  border-color: var(--border);
}

.article-history-date {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--stone);
  white-space: nowrap;
  flex-shrink: 0;
}
.article-history-item a:hover .article-history-date {
  color: var(--gold-light);
}

.article-history-msg {
  color: inherit;
}

/* ---------- Страница версии (history-version.njk) ---------- */
.history-version-page {
  font-size: 0.9rem;
}

.history-version-label {
  margin-bottom: 0.25rem;
}

.history-version-commit {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.history-commit-msg {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

.history-version-hint {
  margin-top: 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.history-version-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.history-nav-btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 0.35em 0.85em;
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.history-nav-btn--prev,
.history-nav-btn--next {
  color: var(--stone);
  background: transparent;
}
.history-nav-btn--prev:hover,
.history-nav-btn--next:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.history-nav-btn--current {
  color: var(--gold);
  border-color: var(--gold);
  background: transparent;
  margin-inline: auto;
}
.history-nav-btn--current:hover {
  background: color-mix(in srgb, var(--gold) 12%, transparent);
}

.history-nav-btn--disabled {
  color: var(--border);
  border-color: var(--border);
  pointer-events: none;
  user-select: none;
}

/* ---------- Заголовки секций на странице версии ---------- */
.history-section-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-block: 2.5rem 1rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

/* ---------- Diff мета-данных ---------- */
.history-meta-diff {
  margin-top: 0.5rem;
}

.meta-diff-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.6rem 1.5rem;
  align-items: start;
  background: var(--shloka-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 1.2rem;
}

.meta-diff-key {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  padding-top: 0.15rem;
}

.meta-diff-list dd {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  margin: 0;
}

.diff-arrow {
  color: var(--stone);
  font-size: 0.8rem;
}

/* Inline diff-бейджи для мета-полей */
.diff-inline {
  display: inline-block;
  padding: 0.15em 0.5em;
  border-radius: 3px;
  font-size: 0.82rem;
  line-height: 1.5;
}
.diff-inline--added {
  background: rgba(34, 197, 94, 0.13);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.diff-inline--removed {
  background: rgba(239, 68, 68, 0.10);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.2);
  text-decoration: line-through;
}
[data-theme="dark"] .diff-inline--added {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.2);
}
[data-theme="dark"] .diff-inline--removed {
  background: rgba(239, 68, 68, 0.10);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.18);
}

/* Бейджи в подсказке */
.diff-badge {
  display: inline-block;
  padding: 0.05em 0.45em;
  border-radius: 3px;
  font-size: 0.78em;
  font-weight: 500;
}
.diff-badge--added {
  background: rgba(34, 197, 94, 0.13);
  color: #15803d;
}
.diff-badge--removed {
  background: rgba(239, 68, 68, 0.10);
  color: #b91c1c;
}
[data-theme="dark"] .diff-badge--added  { color: #4ade80; }
[data-theme="dark"] .diff-badge--removed { color: #f87171; }

/* ---------- Построчный diff тела ---------- */
.diff-body {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.diff-chunk {
  padding: 0.5rem 1.2rem;
  border-bottom: 1px solid transparent;
  line-height: 1.75;
}
.diff-chunk:last-child { border-bottom: none; }

/* Нейтральные строки */
.diff-chunk--unchanged {
  background: transparent;
}
/* Убираем лишние отступы у тегов внутри chunk */
.diff-chunk p:first-child { margin-top: 0.1rem; }
.diff-chunk p:last-child  { margin-bottom: 0.1rem; }

/* Добавленные строки */
.diff-chunk--added {
  background: rgba(34, 197, 94, 0.08);
  border-left: 3px solid #22c55e;
}
[data-theme="dark"] .diff-chunk--added {
  background: rgba(34, 197, 94, 0.07);
  border-left-color: #4ade80;
}

/* Удалённые строки */
.diff-chunk--removed {
  background: rgba(239, 68, 68, 0.07);
  border-left: 3px solid #ef4444;
  opacity: 0.85;
}
[data-theme="dark"] .diff-chunk--removed {
  background: rgba(239, 68, 68, 0.09);
  border-left-color: #f87171;
}

/* ---------- Кнопка «Наверх» ---------- */
.scroll-to-top {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--parchment);
  color: var(--stone);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.scroll-to-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-to-top:hover {
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* На мобиле кнопка чуть выше, чтобы не перекрываться со sticky-крошками */
@media (max-width: 600px) {
  .scroll-to-top {
    bottom: 5rem;
    right: 1rem;
  }
}

/* ============================================================
   Форма обратной связи
   ============================================================ */

/* Страховка: атрибут hidden всегда скрывает элемент */
.feedback-dialog [hidden] { display: none !important; }

/* Обёртка кнопки-триггера */
.feedback-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* Кнопка «Оставить отзыв» */
.feedback-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.5em 1.2em;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.feedback-trigger:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(184, 149, 106, 0.05);
}

/* ── Dialog ──────────────────────────────────────────── */
.feedback-dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  width: min(520px, calc(100vw - 2rem));
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--parchment);
  color: var(--ink);
  padding: 0;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  transition: background 0.3s ease, color 0.3s ease;
}
/* Анимация появления */
@keyframes dialog-in {
  from { opacity: 0; transform: translateY(-12px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.feedback-dialog[open] {
  animation: dialog-in 0.22s ease;
}
/* Backdrop */
.feedback-dialog::backdrop {
  background: rgba(26, 22, 18, 0.55);
  backdrop-filter: blur(3px);
}
[data-theme="dark"] .feedback-dialog::backdrop {
  background: rgba(0, 0, 0, 0.65);
}

/* Внутренний контейнер с паддингами */
.feedback-dialog-inner {
  padding: 1.75rem 2rem 2rem;
}
@media (max-width: 600px) {
  .feedback-dialog-inner { padding: 1.25rem 1.2rem 1.5rem; }
}

/* Шапка диалога */
.feedback-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.feedback-dialog-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0;
}

/* Кнопка закрытия */
.feedback-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  color: var(--stone);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.feedback-close:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Мета статьи */
.feedback-article-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.feedback-meta-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.feedback-article-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}
.feedback-meta-authors {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--muted);
}

/* Заметка о приватности */
.feedback-note {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-family: var(--font-serif);
  color: var(--stone);
  margin: 0;
  line-height: 1.4;
}
.feedback-note svg {
  flex-shrink: 0;
  margin-top: 0.2em;
  opacity: 0.7;
}

/* ── Форма ───────────────────────────────────────────── */
.feedback-form { display: flex; flex-direction: column; gap: 1.1rem; }

/* Fieldset для кнопок оценки */
.feedback-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.feedback-legend {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.65rem;
}

/* Кнопки голосования */
.feedback-rating {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.feedback-vote {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.5em 1.1em;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  color: var(--stone);
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
  user-select: none;
}
.feedback-vote:hover {
  border-color: var(--gold-light);
  color: var(--ink);
}
/* Активное состояние «Одобряю» */
.feedback-vote--approve.is-active {
  color: #15803d;
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.08);
}
[data-theme="dark"] .feedback-vote--approve.is-active {
  color: #4ade80;
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(34, 197, 94, 0.1);
}
/* Активное состояние «Не одобряю» */
.feedback-vote--disapprove.is-active {
  color: #b91c1c;
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.07);
}
[data-theme="dark"] .feedback-vote--disapprove.is-active {
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.4);
  background: rgba(239, 68, 68, 0.1);
}

/* Поля формы */
.feedback-field { display: flex; flex-direction: column; gap: 0.35rem; }

.feedback-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}

.feedback-input,
.feedback-textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.55em 0.85em;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  resize: vertical;
  line-height: 1.6;
}
.feedback-input::placeholder,
.feedback-textarea::placeholder { color: var(--stone); opacity: 0.7; }

.feedback-input:focus,
.feedback-textarea:focus {
  border-color: var(--gold);
  background: var(--parchment);
}
.feedback-textarea { min-height: 110px; }

/* Ошибка */
.feedback-error {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: #b91c1c;
  margin: 0;
}
[data-theme="dark"] .feedback-error { color: #f87171; }

/* Кнопка отправки */
.feedback-actions { display: flex; justify-content: flex-end; }

.feedback-submit {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--parchment);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 0.55em 1.5em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}
.feedback-submit:hover {
  background: var(--deep);
  border-color: var(--deep);
}
[data-theme="dark"] .feedback-submit {
  color: var(--parchment);
}
[data-theme="dark"] .feedback-submit:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--deep);
}

/* Экран успеха */
.feedback-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 0 1rem;
  text-align: center;
  color: var(--gold);
}
.feedback-success p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

