:root {
  --color-bg: #f8f7f4;
  --color-bg-soft: #f2f4f4;
  --color-panel: #ffffff;
  --color-panel-muted: #ebeeef;
  --color-text: #2d3435;
  --color-muted: #596061;
  --color-border: rgba(172, 179, 180, 0.45);
  --color-accent: #c9870a;
  --color-accent-strong: #e09a1a;
  --color-ink: #1c1c1e;
  --color-tool: #2d3435;
  --shadow-soft: 0 24px 80px rgba(20, 18, 15, 0.08);
  --radius-card: 12px;
  --radius-badge: 2px;
}

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

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Epilogue", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.has-mobile-menu {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
p,
blockquote {
  margin: 0;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.site-shell {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
}

.site-frame {
  min-height: calc(100vh - 180px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  padding: 14px 24px;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  box-shadow: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.button .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
}

.button--accent {
  background: var(--color-accent);
  color: var(--color-ink);
}

.button--accent:hover {
  background: var(--color-accent-strong);
}

.button--outline {
  border-color: #acb3b4;
  background: transparent;
  color: var(--color-text);
  font-weight: 500;
}

.button--outline .material-symbols-outlined {
  color: var(--color-accent);
  font-size: 16px;
}

.button--outline:hover {
  background: var(--color-bg-soft);
}

.button--ghost {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  padding: 12px 16px;
}

.button--ghost .material-symbols-outlined {
  color: var(--color-accent);
  font-size: 16px;
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: var(--color-ink);
}

.site-header__top {
  height: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header__top-inner,
.site-header__main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-header__tagline {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-header__top-actions,
.site-header__mobile-controls {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-header__language-wrap {
  position: relative;
}

.site-header__language,
.site-header__mobile-language,
.site-header__menu-toggle {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.site-header__language,
.site-header__mobile-language {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-header__language span {
  font-size: 8px;
}

.site-header__language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: #2c2c2e;
  margin-top: 8px;
  padding: 8px 0;
  box-shadow: var(--shadow-soft);
}

.site-header__language-menu a {
  display: block;
  padding: 6px 12px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.72);
  transition: background-color 0.15s ease, color 0.15s ease;
}

.site-header__language-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.site-header__language-wrap.is-open .site-header__language-menu {
  display: block;
}

.site-header__cta-link {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.site-header__cta-link:hover {
  color: var(--color-accent-strong);
}

.site-header__main {
  height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header__brand {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: opacity 0.15s ease;
}

.site-header__brand:hover {
  opacity: 0.86;
}

.site-header__nav {
  display: flex;
  align-items: stretch;
  gap: 24px;
  height: 100%;
}

.site-header__nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  margin-top: 2px;
  border-bottom: 2px solid transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 500;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.site-header__nav-link:hover {
  color: rgba(255, 255, 255, 0.88);
}

.site-header__nav-link.is-active {
  border-bottom-color: var(--color-accent);
  color: var(--color-accent);
}

.site-header__mobile-controls {
  display: none;
}

.site-header__mobile-menu {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--color-ink);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.site-header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
}

.site-header__mobile-link {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.site-header__mobile-link:hover {
  color: #fff;
}

.site-header__mobile-link.is-active {
  color: var(--color-accent);
  font-weight: 700;
}

.site-header__mobile-cta {
  padding-top: 12px;
}

.site-footer {
  margin-top: 112px;
  background: var(--color-ink);
  color: #fff;
  padding: 56px 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__brand {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.site-footer__links {
  display: flex;
  gap: 32px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
  transition: color 0.15s ease;
}

.site-footer__links a:hover {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__copy {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page,
.archive-page,
.article-page {
  padding-top: 80px;
  padding-bottom: 120px;
}

.hero {
  margin-bottom: 64px;
}

.hero__eyebrow,
.archive-page__eyebrow,
.sidebar-panel__eyebrow,
.breadcrumbs,
.news-list h3 {
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 900;
}

.hero__eyebrow,
.archive-page__eyebrow {
  margin-bottom: 16px;
}

.hero__title,
.archive-page h1,
.article-content h1 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero__title {
  max-width: 880px;
  margin-bottom: 28px;
  font-size: clamp(2.75rem, 4vw, 4.25rem);
}

.hero__lead,
.archive-page__header p,
.article-content__lead {
  max-width: 720px;
  color: var(--color-muted);
  line-height: 1.7;
}

.hero__lead {
  margin-bottom: 40px;
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(172, 179, 180, 0.3);
}

.hero__stat {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.hero__stat-value {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.hero__stat-label {
  display: inline-block;
  white-space: pre-line;
  font-size: 12px;
  color: var(--color-muted);
  line-height: 0.8;
}

.hero__stat-divider {
  width: 1px;
  height: 38px;
  background: rgba(172, 179, 180, 0.4);
  flex: 0 0 auto;
}

.topic-filters {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  margin-bottom: 64px;
  border-bottom: 1px solid rgba(172, 179, 180, 0.3);
  scrollbar-width: none;
}

.topic-filters::-webkit-scrollbar {
  display: none;
}

.topic-filters__item {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding-bottom: 12px;
  white-space: nowrap;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.topic-filters__item:hover {
  color: var(--color-text);
}

.topic-filters__item.is-active {
  border-bottom: 2px solid var(--color-text);
  color: var(--color-text);
  font-weight: 700;
}

.home-layout,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
}

.home-main {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.home-sidebar {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-self: start;
}

.home-sidebar > .sidebar-panel,
.home-sidebar > .news-list {
  margin: 0;
}

.content-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-heading p {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.6;
}

.section-heading a {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.15s ease;
}

.section-heading a:hover {
  color: var(--color-accent);
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 16px;
  border-bottom: 1px solid #ebeeef;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: var(--radius-card);
  transition: background-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.article-row:hover {
  background: var(--color-bg-soft);
  box-shadow: none;
  border-bottom-color: #ebeeef;
}

.article-row.is-featured {
  background: #ffffff;
}

.article-row.is-featured:hover {
  background: var(--color-bg-soft);
}

.article-list .article-row.is-featured {
  padding-left: 20px;
  padding-right: 20px;
}

.article-list .article-row.is-featured .article-row__content {
  padding-right: 8px;
}

.article-row:active {
  transform: translateY(1px);
}

.article-row__content {
  flex: 1;
  min-width: 0;
}

.article-row__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.article-row__eyebrow,
.article-content__eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.article-row__eyebrow {
  color: var(--color-muted);
}

.article-row.is-featured .article-row__eyebrow {
  color: var(--color-accent);
}

.article-content__eyebrow {
  color: var(--color-accent);
}

.article-row__date,
.article-content__meta,
.related-links span,
.news-list small {
  color: var(--color-muted);
  font-size: 11px;
}

.article-row__badge {
  background: var(--color-accent);
  color: var(--color-ink);
  border-radius: var(--radius-badge);
  padding: 2px 6px 1px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

.article-row h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.28;
  transition: color 0.15s ease;
}

.article-row:hover h3 {
  color: var(--color-accent);
}

.article-row p {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-row__arrow {
  color: var(--color-muted);
  font-size: 20px;
  transition: color 0.15s ease, transform 0.15s ease;
}

.article-row:hover .article-row__arrow {
  color: var(--color-accent);
  transform: translateX(2px);
}

.sidebar-panel {
  border-radius: var(--radius-card);
  padding: 30px 28px;
  box-shadow: 0 0 0 1px rgba(172, 179, 180, 0.08);
}

.sidebar-panel--dark {
  position: sticky;
  top: 88px;
  border: 1px solid var(--color-tool);
  background: var(--color-tool);
  color: #fff;
  box-shadow: none;
}

.sidebar-panel--light {
  border: 1px solid #acb3b4;
  background: var(--color-panel);
  box-shadow: none;
}

.sidebar-panel--dark h3,
.sidebar-panel--light h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
}

.sidebar-panel--dark h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.sidebar-panel--light h3 {
  font-size: 14px;
}

.sidebar-panel--dark .sidebar-panel__eyebrow {
  margin-bottom: 18px;
}

.sidebar-panel--dark p,
.sidebar-panel--light p,
.bot-box p {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}

.sidebar-panel--dark p,
.sidebar-panel--dark .sidebar-panel__eyebrow,
.sidebar-panel--dark .sidebar-panel__note {
  color: #d6d4d3;
}

.sidebar-panel__divider {
  margin-top: 24px;
  border-top: 1px solid rgba(172, 179, 180, 0.2);
  padding-top: 24px;
}

.sidebar-panel__divider p {
  margin-bottom: 16px;
}

.sidebar-panel__note {
  margin-top: 20px;
  text-align: center;
  font-size: 11px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.newsletter-form input,
.archive-search input {
  width: 100%;
  border: 1px solid rgba(172, 179, 180, 0.3);
  border-radius: 4px;
  background: var(--color-bg-soft);
  padding: 12px 14px;
  color: var(--color-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.newsletter-form input:hover,
.archive-search input:hover {
  border-color: rgba(172, 179, 180, 0.55);
}

.archive-search {
  position: relative;
  flex: 1;
  max-width: 360px;
}

.archive-search span {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #acb3b4;
}

.archive-search input {
  padding-left: 38px;
  background: #fff;
}

.news-list h3 {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ebeeef;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.news-list a {
  display: block;
  padding: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.news-list a:hover strong {
  color: var(--color-accent);
}

.news-list a:hover {
  transform: translateX(2px);
}

.news-list span {
  display: block;
  margin-bottom: 4px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.45;
}

.rules-slider__card {
  border-radius: var(--radius-card);
  background: var(--color-panel);
  padding: 28px 30px;
  box-shadow: none;
}

.rules-slider__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 22px;
}

.rules-slider__counter {
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.rules-slider__controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rules-slider__controls button,
.rules-slider__dots button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.rules-slider__controls button {
  color: var(--color-accent);
  font-size: 18px;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.rules-slider__controls button:hover {
  opacity: 0.72;
  transform: translateY(-1px);
}

.rules-slider__body {
  min-height: 136px;
  transition: opacity 0.3s ease;
}

.rules-slider__body.is-transitioning {
  opacity: 0;
}

.rules-slider__body h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 800;
}

.rules-slider__body p {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.65;
}

.rules-slider__body a {
  display: inline-block;
  margin-top: 18px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
}

.rules-slider__body a:hover {
  opacity: 0.72;
}

.rules-slider__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 22px;
}

.rules-slider__dots button {
  width: 8px;
  height: 4px;
  border-radius: 999px;
  background: #acb3b4;
  transition: width 0.15s ease, background-color 0.15s ease;
}

.rules-slider__dots button.is-active {
  width: 20px;
  background: var(--color-accent);
}

.upload-zone__surface {
  width: 100%;
  margin-top: 16px;
  padding: 0;
  border: 2px dashed rgba(172, 179, 180, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease, transform 0.15s ease;
}

.upload-zone.is-dragging .upload-zone__surface,
.upload-zone.has-file .upload-zone__surface {
  border-color: var(--color-accent);
  background: rgba(201, 135, 10, 0.08);
}

.upload-zone__surface:hover {
  border-color: rgba(201, 135, 10, 0.6);
}

.upload-zone__surface:hover .material-symbols-outlined,
.upload-zone__surface:hover strong,
.upload-zone__surface:hover span,
.upload-zone__surface:hover small,
.upload-zone.is-dragging .upload-zone__surface .material-symbols-outlined,
.upload-zone.is-dragging .upload-zone__surface strong,
.upload-zone.is-dragging .upload-zone__surface span,
.upload-zone.is-dragging .upload-zone__surface small {
  color: var(--color-accent);
}

.upload-zone__empty,
.upload-zone__filled {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  justify-content: center;
  min-height: 164px;
  padding: 30px 18px;
}

.upload-zone__empty span,
.upload-zone__filled span,
.upload-zone__empty small,
.upload-zone__swap {
  color: #acb3b4;
  font-size: 11px;
}

.upload-zone__empty .material-symbols-outlined,
.upload-zone__filled .material-symbols-outlined {
  font-size: 28px;
  color: #acb3b4;
}

.upload-zone__empty strong,
.upload-zone__filled strong {
  font-size: 13px;
  font-weight: 700;
}

.upload-zone__empty small {
  margin-top: 2px;
}

.upload-zone__filled .material-symbols-outlined {
  color: #4ade80;
}

.upload-zone__swap {
  margin-top: 2px;
  text-decoration: underline;
}

.upload-zone__submit {
  width: 100%;
  margin-top: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
}

.newsletter-form .button,
.sidebar-panel__divider .button {
  padding-top: 12px;
  padding-bottom: 12px;
}

.newsletter-form .button {
  font-size: 14px;
  padding-left: 16px;
  padding-right: 16px;
}

.archive-page__header {
  margin-bottom: 52px;
  }

.archive-page h1 {
  margin-bottom: 22px;
  font-size: 2.4rem;
}

.archive-controls__row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.archive-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.archive-filters__button {
  border: 1px solid #acb3b4;
  border-radius: 999px;
  background: transparent;
  color: var(--color-muted);
  cursor: pointer;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.archive-filters__button:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.archive-filters__button.is-active {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: #fff;
}

.archive-controls__count {
  margin-bottom: 32px;
  color: var(--color-muted);
  font-size: 11px;
}

.archive-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.archive-empty {
  padding: 80px 0;
  text-align: center;
}

.archive-empty .material-symbols-outlined {
  display: block;
  margin-bottom: 12px;
  color: #acb3b4;
  font-size: 40px;
}

.archive-empty strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.archive-empty p {
  color: var(--color-muted);
  font-size: 13px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 52px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  line-height: 1.5;
}

.breadcrumbs span {
  color: #acb3b4;
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: start;
  gap: 72px;
}

.article-content__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.article-content h1 {
  margin-bottom: 32px;
  font-size: 2.4rem;
  max-width: 760px;
}

.article-content__lead {
  margin-bottom: 48px;
  font-size: 1.05rem;
  font-weight: 500;
}

.article-quote {
  margin: 40px 0;
  border-left: 3px solid var(--color-accent);
  padding: 0 0 0 24px;
  position: relative;
}

.article-quote p {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
}

.article-quote cite {
  display: block;
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 12px;
  font-style: normal;
}

.article-body {
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.8;
}

.article-body p {
  margin-bottom: 1.55em;
}

.article-body blockquote {
  margin: 1.8em 0;
  border-left: 3px solid rgba(201, 135, 10, 0.75);
  padding: 2px 0 2px 18px;
  color: var(--color-text);
}

.article-body blockquote p:last-child {
  margin-bottom: 0;
}

.article-body h2 {
  margin: 2.5em 0 1em;
  color: var(--color-text);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  scroll-margin-top: 100px;
}

.pargitargalt-callout {
  margin: 40px 0;
  border-radius: var(--radius-card);
  background: var(--color-panel);
  padding: 24px 28px;
  box-shadow: 0 18px 40px rgba(20, 18, 15, 0.04);
}

.pargitargalt-callout__eyebrow,
.sidebar-panel__eyebrow--muted {
  margin-bottom: 14px;
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pargitargalt-callout p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  border-top: 1px solid #ebeeef;
  padding-top: 32px;
}

.article-tags span {
  border-radius: 999px;
  background: #ebeeef;
  padding: 4px 12px;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
}

.article-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.article-sidebar .sidebar-panel--light {
  border: 0;
  padding: 20px;
}

.article-toc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.related-links__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-toc a {
  border-left: 2px solid transparent;
  padding: 5px 0 5px 10px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.4;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.article-toc a:hover {
  color: var(--color-text);
  border-left-color: var(--color-accent);
}

.article-toc a.is-active {
  border-left-color: var(--color-accent);
  color: var(--color-accent);
  font-weight: 600;
}

.bot-box__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
}

.bot-box__title .material-symbols-outlined,
.bot-box a {
  color: var(--color-accent);
}

.bot-box a {
  font-size: 12px;
  font-weight: 700;
  transition: color 0.15s ease;
}

.article-sidebar .bot-box p {
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1.625;
}

.bot-box a:hover {
  color: var(--color-accent-strong);
}

.related-links .sidebar-panel__eyebrow--muted {
  margin-bottom: 16px;
}

.related-links a {
  display: block;
  padding: 0;
  transition: color 0.15s ease;
}

.related-links a:hover strong {
  color: var(--color-accent);
}

.related-links span {
  display: block;
  margin-bottom: 4px;
}

.related-links strong {
  display: block;
  font-size: 14px;
  line-height: 1.4;
}

.page-fallback {
  padding-top: 72px;
  padding-bottom: 112px;
}

.page-fallback__content {
  border-radius: var(--radius-card);
  background: var(--color-panel);
  padding: 40px;
}

@media (max-width: 960px) {
  .site-header__top,
  .site-header__nav {
    display: none;
  }

  .site-header__mobile-controls {
    display: flex;
  }

  .home-layout,
  .article-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-sidebar,
  .article-sidebar,
  .sidebar-panel--dark {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(1080px, calc(100% - 32px));
  }

  .home-page,
  .archive-page,
  .article-page {
    padding-top: 52px;
    padding-bottom: 88px;
  }

  .site-footer__inner,
  .section-heading,
  .archive-controls__row {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 14px;
    align-items: start;
  }

  .hero__stat-divider {
    display: none;
  }

  .hero__stat {
    align-items: flex-start;
  }

  .hero__title,
  .archive-page h1,
  .article-content h1 {
    font-size: 2.15rem;
  }

  .hero__lead,
  .archive-page__header p,
  .article-content__lead {
    font-size: 15px;
  }

  .hero {
    margin-bottom: 52px;
  }

  .topic-filters {
    gap: 18px;
    margin-bottom: 44px;
  }

  .home-main {
    gap: 56px;
  }

  .home-sidebar {
    gap: 32px;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 28px;
  }

  .hero__actions {
    width: 100%;
  }

  .article-row {
    width: 100%;
    gap: 14px;
    padding: 22px 14px;
  }

  .article-row h3 {
    font-size: 18px;
  }

  .archive-page__header {
    margin-bottom: 36px;
  }

  .archive-controls__row {
    gap: 12px;
    margin-bottom: 24px;
  }

  .archive-search {
    max-width: none;
    width: 100%;
  }

  .sidebar-panel {
    padding: 24px 20px;
  }

  .article-layout {
    gap: 40px;
  }

  .article-content__meta {
    gap: 10px;
    margin-bottom: 24px;
  }

  .article-content__lead {
    margin-bottom: 40px;
  }

  .article-quote {
    margin: 40px 0;
    padding-left: 18px;
  }

  .pargitargalt-callout {
    padding: 20px 20px;
  }

  .article-tags {
    gap: 6px;
    margin-top: 40px;
    padding-top: 28px;
  }

  .button {
    width: 100%;
  }
}
