:root {
  --umber-900: #5f2209;
  --umber-800: #7a2f0f;
  --cream-50: #f8f1e9;
  --cream-100: #f2e7db;
  --ink-900: #1f1714;
  --ink-700: #534743;
  --ink-500: #786b66;
  --line: #decfbe;
  --sage-600: #557267;
  --sage-100: #dce7df;
  --gold-300: #d8ba88;
  --sky-100: #e7f1f5;
  --max: 1200px;
  --shadow: 0 18px 40px rgba(41, 20, 11, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.template-home {
  overflow: hidden;
  background: #6f240b;
}

.template-home .site-shell {
  min-height: 100svh;
}

.template-home .topbar {
  display: none;
}

.template-cover {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 0;
  background: #6f240b;
  overflow: hidden;
}

.template-stage {
  position: relative;
  width: min(100vw, calc(100svh * 1.25));
  aspect-ratio: 5 / 4;
  background: #6f240b;
}

.template-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.template-hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hotspot {
  position: absolute;
  display: block;
  border-radius: 8px;
  cursor: pointer;
}

.hotspot:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

.hotspot-domain {
  left: 49%;
  top: 12.5%;
  width: 32%;
  height: 5.5%;
}

.hotspot-patterns {
  left: 49%;
  top: 28.7%;
  width: 43%;
  height: 5.5%;
}

.hotspot-reading {
  left: 49%;
  top: 36.5%;
  width: 46%;
  height: 5.5%;
}

.hotspot-tools {
  left: 49%;
  top: 44.5%;
  width: 39%;
  height: 5.5%;
}

.hotspot-newsdesk {
  left: 49%;
  top: 51.5%;
  width: 28%;
  height: 5.5%;
}

.hotspot-archives {
  left: 49%;
  top: 58.8%;
  width: 25%;
  height: 5.5%;
}

.hotspot-about {
  left: 36%;
  top: 92.5%;
  width: 13%;
  height: 4.5%;
}

.hotspot-contact {
  left: 54%;
  top: 92.5%;
  width: 19%;
  height: 4.5%;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(248, 241, 233, 0.82);
  border-bottom: 1px solid rgba(122, 47, 15, 0.1);
}

.topbar-inner,
.wrap {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  font-family: "Iowan Old Style", "Times New Roman", Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: 0;
  color: var(--umber-800);
}

.brand-sub {
  color: var(--ink-500);
  font-size: 0.92rem;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nav a {
  text-decoration: none;
  color: var(--ink-700);
  font-size: 0.96rem;
  padding: 8px 10px;
  border-radius: 999px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--cream-100);
  color: var(--umber-800);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-actions a,
.nav-actions button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(122, 47, 15, 0.18);
  border-radius: 8px;
  padding: 0 12px;
  background: white;
  color: var(--umber-800);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.nav-actions button {
  appearance: none;
}

.button-link {
  min-height: 42px;
  background: var(--umber-800);
  color: white;
  border-color: var(--umber-800);
}

.button-link.secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(216, 186, 136, 0.16), transparent 30%),
    linear-gradient(180deg, var(--umber-800) 0%, var(--umber-900) 100%);
  color: white;
}

.hero-inner {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 44px 0 30px;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(360px, 1.15fr);
  gap: 36px;
  align-items: center;
}

.hero-figure {
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  position: relative;
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 15% center;
  transform: scale(1.05);
}

.hero-copy {
  padding: 18px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 248, 240, 0.78);
  font-size: 0.94rem;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: "Iowan Old Style", "Times New Roman", Georgia, serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.96;
  font-weight: 500;
}

.hero-domain {
  display: inline-block;
  margin-top: 18px;
  color: rgba(255, 246, 238, 0.88);
  text-decoration: none;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.hero-lead {
  margin-top: 26px;
  max-width: 52ch;
  font-size: 1.08rem;
  color: rgba(255, 248, 241, 0.84);
}

.template-menu {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 10px;
}

.template-menu a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: white;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  line-height: 1.1;
  font-weight: 300;
}

.template-menu a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-300);
  flex: 0 0 auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0;
}

.button {
  background: white;
  color: var(--umber-800);
}

.button-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: #fffdfa;
}

.section-muted {
  background: linear-gradient(180deg, var(--sky-100), transparent 90%);
}

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

.section-header h2 {
  margin: 0;
  font-family: "Iowan Old Style", "Times New Roman", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  color: var(--umber-800);
  font-weight: 500;
}

.section-header p {
  margin: 0;
  max-width: 56ch;
  color: var(--ink-700);
}

.stats-grid,
.feature-grid,
.page-grid,
.resource-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(79, 45, 26, 0.05);
}

.stat strong {
  display: block;
  font-size: 1.9rem;
  color: var(--umber-800);
}

.stat span {
  display: block;
  margin-top: 6px;
  color: var(--ink-700);
  font-size: 0.95rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(79, 45, 26, 0.05);
}

.feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: white;
}

.feature-copy {
  padding: 18px 18px 20px;
}

.feature-kicker {
  color: var(--sage-600);
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.feature h3 {
  margin: 8px 0 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.feature p,
.resource-card p,
.page-panel p,
.list-block p {
  margin: 0;
  color: var(--ink-700);
}

.feature-link {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--umber-800);
  font-weight: 600;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.page-hero {
  background:
    linear-gradient(180deg, rgba(122, 47, 15, 0.95), rgba(95, 34, 9, 0.97)),
    var(--umber-900);
  color: white;
  padding: 42px 0 28px;
}

.page-hero p {
  max-width: 62ch;
  color: rgba(255, 248, 241, 0.82);
  font-size: 1.04rem;
}

.doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.page-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.page-panel,
.resource-card,
.list-block,
.download-list,
.timeline-block {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(79, 45, 26, 0.05);
}

.page-panel h2,
.resource-card h3,
.list-block h3,
.timeline-block h3 {
  margin: 0 0 10px;
  font-family: "Iowan Old Style", "Times New Roman", Georgia, serif;
  color: var(--umber-800);
  font-size: 1.5rem;
  line-height: 1.05;
  font-weight: 500;
}

.page-panel img,
.timeline-block img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  margin-top: 16px;
  background: white;
}

.compact-list,
.archive-list,
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.compact-list li,
.archive-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.compact-list li:first-child,
.archive-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.compact-list strong,
.archive-list strong {
  display: block;
  color: var(--ink-900);
}

.compact-list span,
.archive-list span,
.note {
  color: var(--ink-700);
  font-size: 0.95rem;
}

.download-list a,
.archive-list a {
  text-decoration: none;
  color: var(--umber-800);
}

.download-list ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.download-list li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.download-list li:first-child {
  border-top: 0;
}

.resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reading-room-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reading-room-note {
  margin-top: 28px;
  max-width: 880px;
}

.reading-room-note h2 {
  margin: 0 0 8px;
  font-family: "Iowan Old Style", "Times New Roman", Georgia, serif;
  color: var(--umber-800);
  font-size: 1.8rem;
  font-weight: 500;
}

.reading-room-note p {
  margin: 0;
  color: var(--ink-700);
  font-size: 1.08rem;
}

.reading-list-page .page-hero p,
.reading-list-page .resource-card p,
.reading-list-page .download-list,
.reading-list-page .download-list .note,
.reading-list-page .reading-room-note p {
  color: var(--umber-800);
}

.compact-resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-card {
  min-height: 220px;
}

.doc-reader {
  max-width: 980px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 44px);
  box-shadow: 0 10px 26px rgba(79, 45, 26, 0.05);
}

.doc-reader h2,
.doc-reader h3,
.doc-reader h4 {
  margin: 1.15em 0 0.35em;
  font-family: "Iowan Old Style", "Times New Roman", Georgia, serif;
  color: var(--umber-800);
  line-height: 1.1;
}

.doc-reader h2 {
  font-size: 1.7rem;
}

.doc-reader h3 {
  font-size: 1.35rem;
}

.doc-reader h4 {
  font-size: 1.08rem;
}

.doc-reader p {
  margin: 0.45em 0;
}

.doc-list-item {
  padding-left: 1.1rem;
  text-indent: -0.7rem;
}

.doc-list-item::before {
  content: "• ";
  color: var(--umber-800);
  font-weight: 700;
}

.doc-table-wrap {
  overflow-x: auto;
  margin: 18px 0;
}

.doc-table {
  width: 100%;
  border-collapse: collapse;
}

.doc-table td {
  border: 1px solid var(--line);
  padding: 8px 10px;
  vertical-align: top;
}

.notice {
  padding: 20px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(85, 114, 103, 0.12), rgba(85, 114, 103, 0.04));
  border: 1px solid rgba(85, 114, 103, 0.22);
  color: var(--ink-900);
}

.notice strong {
  color: var(--sage-600);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--sage-100);
  color: var(--sage-600);
  font-size: 0.88rem;
  font-weight: 600;
}

.timeline-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.article-stack {
  display: grid;
  gap: 16px;
}

.newsdesk-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.newsdesk-lane {
  min-height: 280px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(79, 45, 26, 0.05);
}

.lane-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--sage-100);
  color: var(--sage-600);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.newsdesk-lane h3 {
  margin: 16px 0 10px;
  font-family: "Iowan Old Style", "Times New Roman", Georgia, serif;
  color: var(--umber-800);
  font-size: 1.55rem;
  line-height: 1.08;
  font-weight: 500;
}

.newsdesk-lane p {
  margin: 0;
  color: var(--ink-700);
}

.article-slot {
  padding: 18px 20px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(79, 45, 26, 0.05);
}

.article-slot h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.article-slot p {
  margin: 0;
  color: var(--ink-700);
}

.article-slot a {
  color: var(--umber-800);
  text-decoration: none;
}

.article-slot a:hover {
  text-decoration: underline;
}

.article-source {
  font-weight: 700;
  color: var(--ink);
}

.newsdesk-status {
  margin-bottom: 24px;
}

.review-lane {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto 36px;
}

.review-lane h2,
.review-lane p {
  max-width: 860px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--ink-500);
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.timeline-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.timeline-year {
  color: var(--umber-800);
  font-weight: 700;
}

.footer {
  background: #241714;
  color: rgba(255, 248, 241, 0.82);
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 24px;
}

.footer h3 {
  margin: 0 0 12px;
  font-family: "Iowan Old Style", "Times New Roman", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer small {
  display: block;
  margin-top: 24px;
  color: rgba(255, 248, 241, 0.55);
}

@media (max-width: 1040px) {
  .hero-inner,
  .split-band,
  .page-grid,
  .footer-grid,
  .stats-grid,
  .feature-grid,
  .resource-grid,
  .compact-resource-grid,
  .newsdesk-index,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero-figure {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    align-items: start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    gap: 6px;
  }

  .nav a {
    padding: 6px 8px;
    font-size: 0.9rem;
  }

  .hero-inner {
    padding-top: 26px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .template-menu a {
    font-size: 1.3rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.staging-reference {
  max-width: 1440px;
}

.staging-table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.staging-table {
  min-width: 1500px;
  font-size: 0.88rem;
}

.staging-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  border: 1px solid var(--line);
  padding: 9px 10px;
  background: var(--umber-800);
  color: #fff;
  text-align: left;
  vertical-align: bottom;
}

.staging-table td:first-child,
.staging-table th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fff7ef;
  color: var(--umber-800);
  font-weight: 700;
}

.staging-table th:first-child {
  z-index: 3;
  background: var(--umber-800);
  color: #fff;
}

.staging-table ul {
  margin: 0;
  padding-left: 1rem;
}

.staging-table li + li {
  margin-top: 0.32rem;
}

.legacy-feed-note {
  margin-bottom: 26px;
}

.feed-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feed-card {
  min-height: 140px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(79, 45, 26, 0.05);
}

.feed-card h3 {
  margin: 0 0 8px;
  font-family: "Iowan Old Style", "Times New Roman", Georgia, serif;
  color: var(--umber-800);
  font-size: 1.12rem;
  line-height: 1.15;
}

.feed-card p {
  margin: 0 0 14px;
  color: var(--ink-700);
}

.preservation-page {
  max-width: 980px;
}

.media-table th {
  white-space: nowrap;
}

.media-link-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 26px;
}

.media-link-list a {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(122, 47, 15, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--umber-800);
  text-decoration: none;
  font-weight: 650;
}

.media-link-list a:hover {
  border-color: rgba(122, 47, 15, 0.34);
  background: rgba(255, 255, 255, 0.78);
}

.archive-link-section {
  margin-top: 26px;
}

.archive-link-section h2 {
  margin: 0 0 12px;
  font-family: "Iowan Old Style", "Times New Roman", Georgia, serif;
  color: var(--umber-800);
  font-size: 1.65rem;
  font-weight: 500;
}

.archive-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.archive-link-grid a,
.archive-link-unavailable {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(122, 47, 15, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--umber-800);
  text-decoration: none;
  font-weight: 650;
}

.archive-link-grid a:hover {
  border-color: rgba(122, 47, 15, 0.34);
  background: #fff7ef;
}

.archive-link-unavailable {
  color: var(--ink-500);
  background: rgba(255, 255, 255, 0.52);
  font-style: italic;
}

.admin-panel label {
  display: block;
  margin: 18px 0 8px;
  color: var(--umber-800);
  font-weight: 750;
}

.admin-panel textarea {
  width: 100%;
  min-height: 220px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.92rem;
  color: var(--ink-900);
  background: #fffaf5;
}

.admin-panel h3 {
  margin: 22px 0 8px;
  color: var(--umber-800);
}

.admin-toggle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 18px;
}

.admin-toggle,
.admin-inline-toggle {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(122, 47, 15, 0.16);
  border-radius: 8px;
  background: #fff;
}

.admin-toggle input,
.admin-inline-toggle input {
  margin-top: 4px;
}

.admin-toggle span {
  display: grid;
  gap: 2px;
}

.admin-toggle small {
  color: var(--ink-500);
  font-size: 0.82rem;
}

.admin-inline-toggle {
  width: fit-content;
  color: var(--umber-800);
  font-weight: 750;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.admin-actions button {
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--umber-800);
  color: #fff;
  font-weight: 750;
}

.admin-actions button + button {
  background: var(--sage-600);
}

.admin-status {
  color: var(--sage-600);
  font-weight: 750;
}

.admin-link-list {
  padding-left: 1.2rem;
  overflow-wrap: anywhere;
}

.mesh-chip-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.mesh-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(112, 37, 13, 0.2);
  border-radius: 8px;
  background: #fff;
  color: var(--umber-800);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.mesh-chip:hover {
  background: #fff7ef;
}

.mesh-table-panel {
  max-width: 1180px;
}

.mesh-table th {
  background: var(--umber-800);
  color: #fff;
  text-align: left;
}

.mesh-table th,
.mesh-table td {
  padding: 10px 12px;
}

@media (max-width: 900px) {
  .feed-archive-grid {
    grid-template-columns: 1fr;
  }

  .archive-link-grid {
    grid-template-columns: 1fr;
  }

  .admin-toggle-grid {
    grid-template-columns: 1fr;
  }
}
