/*
 * Энциклопедия — визуальный слой в палитре толкований / Библии (Stitch).
 */

.encyclopedia-stitch-design {
  --stitch-card-bg: hsl(95 10% 95.5%);
  --stitch-card-border: hsl(95 10% 78% / 0.55);
  --stitch-card-top: hsl(var(--gold-dark) / 0.62);
  --stitch-card-shadow:
    0 1px 0 hsl(90 20% 99% / 0.55) inset,
    0 0.55rem 1.35rem hsl(100 8% 20% / 0.03);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --reader-font: var(--font-display);
  --reader-size: 16px;
  --reader-color: inherit;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 0.85rem 2rem;
  color: hsl(25 28% 14%);
}

.encyclopedia-stitch-design > .encyclopedia-top-nav {
  display: flex;
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  box-sizing: border-box;
  position: relative;
  left: 50%;
  margin: 0 0 1.25rem;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0.72rem max(1rem, calc(50vw - min(50vw - 1rem, 460px)));
  border: 0;
  border-bottom: 1px solid hsl(35 20% 84% / 0.85);
  background: hsl(36 30% 94.5%);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.encyclopedia-stitch-design > .encyclopedia-top-nav .section-back-link {
  color: hsl(var(--gold-dark));
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.encyclopedia-stitch-design > .encyclopedia-top-nav .section-back-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.encyclopedia-stitch-design .encyclopedia-header {
  display: block;
  margin-bottom: 1rem;
}

.encyclopedia-stitch-design .section-settings-title-inline {
  margin: 0 0 1rem;
  color: hsl(var(--gold-dark));
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.55rem, 3.2vw, 1.9rem);
  letter-spacing: 0.02em;
}

.encyclopedia-stitch-design .encyclopedia-intro {
  margin: 0 0 1rem;
  color: hsl(30 10% 42%);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.45;
}

.encyclopedia-stitch-design .cmd-tools {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.encyclopedia-stitch-design .cmd-tools__card {
  padding: 0.95rem 1.05rem 1.05rem;
  border: 1px solid var(--stitch-card-border);
  border-top: 3px solid var(--stitch-card-top);
  border-radius: 0.7rem;
  background: var(--stitch-card-bg);
  box-shadow: var(--stitch-card-shadow);
}

.encyclopedia-stitch-design .cmd-tools__title {
  margin: 0 0 0.75rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid hsl(var(--border) / 0.45);
  color: hsl(var(--gold-dark));
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.encyclopedia-stitch-design .cmd-tools__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 0.75rem 1rem;
}

.encyclopedia-stitch-design .cmd-tools__filters label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 10rem;
}

.encyclopedia-stitch-design .cmd-tools__filters label:has(#encyTopicSelect) {
  min-width: 14rem;
  flex: 1 1 16rem;
}

.encyclopedia-stitch-design .cmd-tools__filters label > span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: hsl(30 12% 38%);
  font-family: var(--font-display);
}

.encyclopedia-stitch-design .cmd-select,
.encyclopedia-stitch-design .ency-select {
  min-width: 11rem;
  min-height: 2.4rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid hsl(var(--border) / 0.85);
  border-radius: 0.5rem;
  background: hsl(0 0% 100% / 0.72);
  color: hsl(25 28% 14%);
  font-family: inherit;
}

.encyclopedia-stitch-design #encyTopicSelect {
  min-width: 14rem;
  width: 100%;
}

/* Метаинформация выбранной темы */
.encyclopedia-stitch-design .ency-meta-panel {
  margin: 0 0 1.15rem;
  padding: 0.95rem 1.05rem 1.05rem;
  border: 1px solid var(--stitch-card-border);
  border-top: 3px solid var(--stitch-card-top);
  border-radius: 0.7rem;
  background: var(--stitch-card-bg);
  box-shadow: var(--stitch-card-shadow);
}

.encyclopedia-stitch-design .ency-meta-title {
  margin: 0 0 0.45rem;
  color: hsl(var(--gold-dark));
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
}

.encyclopedia-stitch-design .ency-meta-description {
  margin: 0 0 0.4rem;
  color: hsl(30 10% 42%);
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.45;
}

.encyclopedia-stitch-design .ency-meta-extra {
  color: hsl(30 10% 42%);
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.encyclopedia-stitch-design .ency-content {
  display: block;
}

.encyclopedia-stitch-design .ency-article-panel {
  padding: 0.95rem 1.05rem 1.05rem;
  border: 1px solid var(--stitch-card-border);
  border-top: 3px solid var(--stitch-card-top);
  border-radius: 0.7rem;
  background: var(--stitch-card-bg);
  box-shadow: var(--stitch-card-shadow);
}

.encyclopedia-stitch-design .ency-empty {
  color: hsl(30 10% 42%);
  font-family: var(--font-display);
  font-size: 1.02rem;
}

.encyclopedia-stitch-design .ency-article-header {
  margin-bottom: 0.85rem;
}

.encyclopedia-stitch-design .ency-btn {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  background: hsl(0 0% 100% / 0.65);
}

.encyclopedia-stitch-design .ency-article h2 {
  margin: 0 0 0.55rem;
  color: hsl(var(--gold-dark));
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
}

.encyclopedia-stitch-design .ency-article-description,
.encyclopedia-stitch-design .ency-article-meta {
  color: hsl(30 10% 42%);
  font-family: var(--font-display);
}

.encyclopedia-stitch-design .ency-article-content {
  font-family: var(--reader-font);
  font-size: var(--reader-size);
  color: var(--reader-color, inherit);
  line-height: 1.65;
}

.encyclopedia-stitch-design .ency-article-content a {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
  cursor: text;
}

body.dark .encyclopedia-stitch-design {
  color: hsl(36 18% 88%);
}

body.dark .encyclopedia-stitch-design > .encyclopedia-top-nav {
  background: hsl(25 12% 14%);
  border-bottom-color: hsl(30 10% 28% / 0.85);
}

body.dark .encyclopedia-stitch-design .cmd-tools__card,
body.dark .encyclopedia-stitch-design .ency-meta-panel,
body.dark .encyclopedia-stitch-design .ency-article-panel {
  background: hsl(25 12% 16%);
  border-color: hsl(30 10% 30% / 0.7);
}

body.dark .encyclopedia-stitch-design .cmd-select,
body.dark .encyclopedia-stitch-design .ency-select,
body.dark .encyclopedia-stitch-design .ency-btn {
  background: hsl(25 12% 18%);
  color: hsl(36 18% 88%);
  border-color: hsl(30 10% 32%);
}

body.dark .encyclopedia-stitch-design .ency-meta-title {
  color: hsl(var(--gold-light));
}

body.dark .encyclopedia-stitch-design .ency-meta-description,
body.dark .encyclopedia-stitch-design .ency-meta-extra {
  color: hsl(36 12% 70%);
}
