.archive-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  padding-bottom: 2.5rem;
}
.archive-pagination a {
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 0.5rem 0;
}
.article-rail p + p {
  margin-top: 0.75rem;
}
:root {
  --paper: #f7f5ef;
  --ink: #11110f;
  --muted: #6a675f;
  --line: #d8d4c9;
  --accent: #e64b2e;
  --accent-dark: #ba321d;
  --white: #fffefb;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
.shell {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.edition-bar {
  background: var(--ink);
  color: #d8d6cf;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.edition-inner {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.edition-label {
  color: #fff;
  border: 1px solid #494944;
  border-width: 0 1px;
  padding-inline: 28px;
}
.site-header {
  background: var(--paper);
  position: relative;
  z-index: 20;
}
.masthead {
  min-height: 106px;
  display: grid;
  grid-template-columns: 44px 1fr auto 44px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding-bottom: 0.12em;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.85;
}
.brand-mark {
  position: absolute;
  right: 0;
  bottom: -0.02em;
  left: 0;
  display: block;
  height: 4px;
  background: var(--accent);
}
.brand-promise {
  margin: 0 22px 0 0;
  color: var(--muted);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-style: italic;
}
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s ease;
}
.icon-button:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.icon-button svg,
.breaking a svg,
.latest-header a svg,
.latest-row svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.search-button {
  justify-self: end;
}
.menu-button {
  justify-self: start;
}
.category-nav {
  border-bottom: 1px solid var(--line);
}
.category-list {
  height: 48px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 26px;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-list::-webkit-scrollbar {
  display: none;
}
.category-list a {
  display: flex;
  align-items: center;
  position: relative;
  flex: none;
  color: #383732;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}
.category-list a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: var(--accent);
  content: '';
  opacity: 0;
}
.category-list a:hover,
.category-list a.active {
  color: var(--ink);
}
.category-list a.active::after {
  opacity: 1;
}
.search-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding-block: 24px;
  background: var(--white);
  border-bottom: 1px solid var(--ink);
  box-shadow: 0 18px 40px rgba(25, 24, 20, 0.12);
}
.search-form label,
.newsletter-section label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.search-field {
  display: flex;
  gap: 10px;
}
.search-field input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  outline: none;
}
.search-field input:focus {
  border-color: var(--accent);
}
.search-field button,
.newsletter-section button {
  padding: 0 26px;
  border: 0;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.breaking-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.breaking {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.breaking-badge {
  padding: 6px 8px 5px;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.breaking p {
  flex: 1;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
}
.breaking-story:hover {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.breaking a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.breaking a svg {
  width: 16px;
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.86fr) minmax(300px, 0.8fr);
  gap: 38px;
  padding-block: 42px 48px;
}
.lead-story {
  min-width: 0;
}
.lead-image-link {
  display: block;
  position: relative;
  overflow: hidden;
  background: #ddd8cb;
  aspect-ratio: 16 / 8.7;
}
.lead-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.04);
  transition: transform 0.6s ease;
}
.lead-image-link:hover .lead-image {
  transform: scale(1.018);
}
.image-credit {
  position: absolute;
  right: 9px;
  bottom: 7px;
  padding: 4px 6px;
  background: rgba(0, 0, 0, 0.65);
  color: rgba(255, 255, 255, 0.88);
  font-size: 9px;
}
.lead-copy {
  display: grid;
  grid-template-columns: 1fr 210px;
  column-gap: 26px;
  padding-top: 20px;
}
.story-meta {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.story-meta span:first-child {
  color: var(--accent-dark);
}
.story-meta span + span::before {
  content: '•';
  margin-right: 12px;
  color: var(--line);
}
.lead-copy h1 {
  grid-column: 1 / -1;
  max-width: 850px;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(36px, 4vw, 61px);
  font-weight: 500;
  letter-spacing: -0.038em;
  line-height: 0.99;
}
.lead-copy h1 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}
.lead-copy > p {
  margin: 17px 0 0;
  color: #45433d;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.42;
}
.byline {
  align-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}
.byline strong {
  color: var(--ink);
  font-size: 11px;
}
.avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font-family: Georgia, serif;
  font-weight: 700;
}
.top-stories {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.section-heading .rule {
  flex: 1;
  height: 1px;
  background: var(--ink);
}
.side-story {
  display: grid;
  grid-template-columns: 1fr 108px;
  gap: 16px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}
.story-kicker {
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.side-story h2 {
  margin: 7px 0 14px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.side-story h2 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.side-story time {
  color: var(--muted);
  font-size: 10px;
}
.story-label {
  color: var(--muted);
  font-size: 10px;
}
.side-story figure {
  margin: 0;
}
.side-story figure img,
.side-story-image img {
  display: block;
  width: 108px;
  height: 92px;
  object-fit: cover;
  filter: saturate(0.65);
}
.side-story-image {
  align-self: start;
  overflow: hidden;
  background: #ddd8cb;
}
.side-story-image img {
  transition: transform 0.35s ease;
}
.side-story-image:hover img {
  transform: scale(1.035);
}
.side-story figcaption {
  margin-top: 4px;
  color: var(--muted);
  font-size: 7px;
  line-height: 1.2;
}
.opinion-card {
  margin-top: 22px;
  padding: 22px;
  background: var(--ink);
  color: #fff;
}
.opinion-card .story-kicker {
  color: #f67960;
}
.opinion-card p {
  margin: 12px 0 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  line-height: 1.23;
}
.opinion-author {
  color: #b5b3ac;
  font-size: 10px;
}

.latest-section {
  padding-bottom: 64px;
}
.latest-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 4px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.latest-header > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(230, 75, 46, 0.13);
}
.latest-header h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 25px;
}
.latest-header a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.latest-header a svg {
  width: 16px;
}
.latest-row {
  display: grid;
  grid-template-columns: 64px 130px 1fr 24px;
  gap: 18px;
  align-items: center;
  min-height: 68px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.2s ease;
}
.latest-row:hover {
  padding-inline: 8px;
  background: rgba(255, 255, 255, 0.5);
}
.latest-number {
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
}
.latest-category {
  color: var(--accent-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.latest-row h3 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 500;
}
.latest-row svg {
  width: 18px;
}

.home-more {
  padding-bottom: 72px;
}
.home-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 26px;
  background: var(--line);
  border: 1px solid var(--line);
}
.home-card {
  min-width: 0;
  padding: 22px;
  background: var(--white);
}
.home-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: -22px -22px 20px;
  background: #ddd8cb;
}
.home-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.03);
  transition: transform 0.45s ease;
}
.home-card-image:hover img {
  transform: scale(1.025);
}
.home-card h3 {
  margin: 10px 0 11px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.home-card h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.home-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  line-height: 1.5;
}
.home-card small {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}
.home-empty {
  min-height: 52vh;
  padding-block: 80px;
}
.home-empty h1 {
  max-width: 850px;
  margin: 10px 0 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}
.home-empty p {
  max-width: 600px;
  color: var(--muted);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  line-height: 1.5;
}
.home-empty > a {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.newsletter-section {
  background: #dfe3d7;
  border-top: 1px solid #c1c7b8;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-block: 54px;
}
.newsletter-inner h2 {
  margin: 9px 0 7px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.035em;
}
.newsletter-inner p {
  margin: 0;
  max-width: 560px;
  color: #565b50;
  font-family: Georgia, serif;
}
.newsletter-section form > div {
  display: flex;
}
.newsletter-section input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid #b2b7aa;
  outline: none;
}
.newsletter-section input:focus {
  border-color: var(--ink);
}
.newsletter-section small {
  display: block;
  margin-top: 8px;
  color: #65695f;
  font-size: 9px;
}
.trust-links {
  display: grid;
  gap: 10px;
}
.trust-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid #aeb5a5;
  background: rgba(255, 255, 255, 0.36);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-links a:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
}
.trust-links svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-footer {
  padding: 42px 0 28px;
  background: var(--ink);
  color: #e9e6df;
}

/* Consent and audience measurement */
.cookie-consent {
  position: fixed;
  z-index: 1000;
  top: auto;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  width: min(960px, calc(100% - 40px));
  height: auto;
  min-height: 0;
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  margin: 0 auto;
  padding: 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid #3b3b37;
  background: #161614;
  color: #f5f2e9;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
}
.cookie-consent-kicker {
  color: #f67960;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cookie-consent h2 {
  margin: 7px 0 8px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(23px, 3vw, 31px);
  font-weight: 500;
  letter-spacing: -0.025em;
}
.cookie-consent p {
  max-width: 640px;
  margin: 0;
  color: #b9b6ad;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 14px;
  line-height: 1.55;
}
.cookie-consent p a {
  color: white;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 260px;
}
.cookie-consent-actions button,
.cookie-settings-trigger {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #66635d;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}
.cookie-consent-actions button:hover,
.cookie-consent-actions button:focus-visible {
  border-color: white;
  outline: none;
}
.cookie-consent-actions .cookie-primary {
  border-color: var(--accent);
  background: var(--accent);
}
.cookie-preferences {
  grid-column: 1 / -1;
  display: grid;
  gap: 1px;
  background: #3b3b37;
  border: 1px solid #3b3b37;
}
.cookie-preferences > div,
.cookie-preferences label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
  padding: 11px 15px;
  background: #22221f;
}
.cookie-preferences strong,
.cookie-preferences small {
  display: block;
}
.cookie-preferences strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
}
.cookie-preferences small {
  margin-top: 3px;
  color: #97948d;
  font-size: 9px;
}
.cookie-preferences input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
}
.cookie-status {
  color: #aaa79f;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.cookie-settings-trigger {
  position: fixed;
  z-index: 999;
  right: 14px;
  bottom: 14px;
  min-height: 34px;
  border-color: #34342f;
  background: #161614;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.18);
}
.footer-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 36px;
  border-bottom: 1px solid #3b3b37;
}
.footer-brand {
  color: white;
  font-size: 44px;
}
.footer-top p {
  margin: 0;
  color: #98968e;
  font-family: Georgia, serif;
  font-size: 14px;
  font-style: italic;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  color: #8d8b85;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom nav a:hover {
  color: white;
}
.footer-bottom p {
  margin: 0;
  text-align: right;
}

@media (max-width: 920px) {
  .lead-grid {
    grid-template-columns: 1fr;
  }
  .top-stories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    border-left: 0;
    border-top: 1px solid var(--ink);
    padding: 18px 0 0;
  }
  .top-stories .section-heading {
    grid-column: 1 / -1;
  }
  .opinion-card {
    grid-column: 1 / -1;
  }
  .lead-copy {
    grid-template-columns: 1fr 180px;
  }
  .newsletter-inner {
    gap: 36px;
  }
  .home-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 30px, 1220px);
  }
  .edition-inner span:first-child {
    display: none;
  }
  .edition-inner {
    justify-content: space-between;
  }
  .edition-label {
    padding-left: 0;
    border: 0;
  }
  .masthead {
    min-height: 82px;
    grid-template-columns: 42px 1fr 42px;
    gap: 9px;
  }
  .brand {
    justify-self: center;
    font-size: 30px;
  }
  .brand-mark {
    height: 3px;
  }
  .brand-promise {
    display: none;
  }
  .category-nav:not(.is-open) {
    display: none;
  }
  .category-nav.is-open {
    position: absolute;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  }
  .category-list {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-block: 10px;
  }
  .category-list a {
    min-height: 40px;
    border-bottom: 1px solid var(--line);
  }
  .category-list a::after {
    display: none;
  }
  .breaking {
    padding-block: 12px;
    align-items: flex-start;
  }
  .breaking p {
    font-size: 13px;
    line-height: 1.25;
  }
  .breaking a {
    display: none;
  }
  .lead-grid {
    padding-block: 24px 38px;
    gap: 34px;
  }
  .lead-image-link {
    aspect-ratio: 4 / 3;
    margin-inline: -15px;
  }
  .lead-copy {
    grid-template-columns: 1fr;
  }
  .lead-copy h1 {
    font-size: 38px;
    line-height: 1.02;
  }
  .lead-copy > p {
    font-size: 16px;
  }
  .byline {
    margin-top: 18px;
  }
  .top-stories {
    grid-template-columns: 1fr;
  }
  .side-story {
    grid-template-columns: 1fr 94px;
  }
  .side-story figure img {
    width: 94px;
    height: 86px;
  }
  .side-story-image img {
    width: 94px;
    height: 86px;
  }
  .latest-header a {
    display: none;
  }
  .latest-row {
    grid-template-columns: 45px 1fr 18px;
    gap: 11px;
    padding-block: 13px;
  }
  .latest-row .latest-category {
    grid-column: 2;
    grid-row: 1;
  }
  .latest-row h3 {
    grid-column: 2;
    font-size: 16px;
  }
  .latest-number {
    grid-row: 1 / 3;
    align-self: start;
    padding-top: 2px;
  }
  .latest-row svg {
    grid-column: 3;
    grid-row: 1 / 3;
  }
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 42px;
  }
  .home-more {
    padding-bottom: 48px;
  }
  .home-card-grid {
    grid-template-columns: 1fr;
    margin-inline: -15px;
    border-right: 0;
    border-left: 0;
  }
  .home-card:last-child:nth-child(odd) {
    grid-column: auto;
  }
  .home-card {
    padding: 20px 15px 24px;
  }
  .home-card-image {
    margin: -20px -15px 18px;
  }
  .newsletter-section form > div {
    flex-direction: column;
    gap: 8px;
  }
  .newsletter-section button {
    min-height: 46px;
  }
  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-top p {
    margin-top: 16px;
  }
  .footer-bottom p {
    text-align: left;
    line-height: 1.5;
  }
}

@media (max-width: 720px) {
  .cookie-consent {
    top: auto;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 8px;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
    width: auto;
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px - env(safe-area-inset-bottom));
    margin: 0;
    padding: 18px;
  }
  .cookie-consent-kicker {
    display: none;
  }
  .cookie-consent h2 {
    margin: 0 0 5px;
    font-size: 24px;
    line-height: 1.08;
  }
  .cookie-consent p {
    font-size: 14px;
    line-height: 1.5;
  }
  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
    min-width: 0;
    gap: 6px;
  }
  .cookie-consent-actions button {
    min-height: 44px;
    padding-inline: 10px;
    font-size: 11px;
  }
  .cookie-consent-actions button:last-child {
    grid-column: 1 / -1;
  }
  .cookie-settings-trigger {
    right: 8px;
    bottom: 8px;
    min-height: 30px;
    padding-inline: 10px;
    font-size: 8px;
  }
  .cookie-preferences > div,
  .cookie-preferences label {
    min-height: 58px;
    padding: 10px 13px;
  }
  .cookie-preferences strong {
    font-size: 16px;
  }
  .cookie-preferences small,
  .cookie-status {
    font-size: 11px;
  }
  .cookie-preferences input {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Editorial admin */
.admin-app {
  min-height: 100vh;
  background: #f1f0eb;
  color: #181816;
}
.admin-login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 110px 24px 48px;
  background: #f1f0eb;
}
.admin-login-page > .admin-brand {
  position: absolute;
  top: 34px;
  left: 36px;
}
.admin-login-card {
  width: min(100%, 440px);
  padding: 36px;
  background: white;
  border-top: 4px solid var(--accent);
  box-shadow: 0 18px 60px rgba(24, 24, 20, 0.1);
}
.admin-login-card h1 {
  margin: 6px 0 8px;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.admin-login-card > p {
  margin: 0 0 24px;
  color: var(--muted);
}
.admin-login-card form {
  display: grid;
  gap: 15px;
}
.admin-login-card label {
  display: grid;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.admin-login-card input {
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #faf9f5;
}
.admin-login-back {
  display: inline-block;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
}
.admin-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  display: flex;
  width: 230px;
  flex-direction: column;
  padding: 30px 22px;
  background: #141412;
  color: #f8f6f0;
}
.admin-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding-bottom: 4px;
  color: inherit;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.06em;
}
.admin-brand > span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
}
.admin-sidebar nav {
  display: grid;
  gap: 5px;
  margin-top: 48px;
}
.admin-sidebar nav a {
  padding: 11px 12px;
  border-radius: 4px;
  color: #aaa79f;
  font-size: 12px;
  font-weight: 700;
}
.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
  background: #2a2925;
  color: white;
}
.admin-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #34332e;
}
.admin-user > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  font-weight: 800;
}
.admin-user div {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.admin-user strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-user small {
  color: #8f8d86;
  font-size: 9px;
}
.admin-workspace {
  min-height: 100vh;
  margin-left: 230px;
  padding: 34px clamp(22px, 4vw, 56px) 80px;
}
.admin-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.admin-kicker {
  color: var(--accent-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.admin-topbar h1 {
  margin: 4px 0 0;
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 53px);
  font-weight: 500;
  letter-spacing: -0.04em;
}
.admin-topbar > div:last-child {
  display: flex;
  gap: 8px;
}
.admin-topbar > div:last-child a {
  padding: 9px 11px;
  border: 1px solid #cbc8bf;
  background: #faf9f5;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.admin-notice {
  display: block;
  margin-bottom: 18px;
  padding: 12px 15px;
  border-left: 3px solid;
  background: white;
  font-size: 12px;
}
.admin-notice.success {
  border-color: #39734a;
  color: #245c34;
}
.admin-notice.error {
  border-color: #b22d20;
  color: #8a2017;
}
.admin-editor-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
}
.admin-settings {
  display: grid;
  gap: 16px;
}
.admin-editor-card {
  padding: 24px;
  border: 1px solid #d9d6cd;
  background: #fcfbf7;
  box-shadow: 0 4px 18px rgba(30, 29, 25, 0.035);
}
.admin-card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dfdcd3;
}
.admin-card-title h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 600;
}
.admin-card-title > span:not(.status-pill) {
  color: #77746c;
  font-size: 9px;
}
.admin-editor-card label {
  display: grid;
  gap: 7px;
  margin-top: 15px;
  color: #5f5c55;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.admin-editor-card input,
.admin-editor-card textarea,
.admin-editor-card select,
.admin-library-head input {
  width: 100%;
  border: 1px solid #cbc8bf;
  border-radius: 0;
  outline: 0;
  background: white;
  color: #181816;
  font:
    13px/1.45 Arial,
    sans-serif;
  text-transform: none;
  letter-spacing: normal;
}
.admin-editor-card input,
.admin-editor-card select,
.admin-library-head input {
  min-height: 42px;
  padding: 0 12px;
}
.admin-editor-card textarea {
  resize: vertical;
  padding: 11px 12px;
}
.admin-editor-card input:focus,
.admin-editor-card textarea:focus,
.admin-editor-card select:focus,
.admin-library-head input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(230, 75, 46, 0.1);
}
.admin-body-input {
  min-height: 430px;
  font-family: Georgia, serif !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
}
.admin-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 20px;
}
.admin-actions > p {
  grid-column: 1 / -1;
  font-size: 13px;
  line-height: 1.6;
}
.admin-actions button,
.admin-library-head button {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #22221f;
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.admin-actions button.primary,
.admin-library-head button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.admin-actions button.secondary {
  background: white;
  color: #22221f;
}
.admin-schedule-button {
  width: 100%;
  min-height: 38px;
  margin-top: 8px;
  border: 1px solid #b5b1a8;
  background: #f2f0e9;
  color: #4d4a43;
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.admin-schedule-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}
.admin-actions button:disabled,
.admin-secondary-actions button:disabled {
  cursor: wait;
  opacity: 0.55;
}
.admin-secondary-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 10px;
}
.admin-secondary-actions a {
  color: #315e3d;
  font-weight: 700;
}
.admin-secondary-actions button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #a12b20;
  cursor: pointer;
}
.status-pill {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 5px;
  padding: 5px 7px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.status-pill::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: '';
}
.status-pill.draft {
  background: #e8e6df;
  color: #646159;
}
.status-pill.draft::before {
  background: #8d8a82;
}
.status-pill.published {
  background: #dcebdc;
  color: #32613b;
}
.status-pill.published::before {
  background: #3b814a;
}
.status-pill.scheduled {
  background: #e4e4f4;
  color: #4d4c7f;
}
.status-pill.scheduled::before {
  background: #6664a5;
}
.admin-image-preview {
  display: block;
  width: 100%;
  max-height: 180px;
  margin-bottom: 14px;
  object-fit: cover;
}
.admin-upload {
  display: flex !important;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px dashed #a9a69e;
  background: #f5f3ed;
  cursor: pointer;
}
.admin-upload:hover {
  border-color: var(--accent);
}
.admin-upload input {
  display: none;
}
.admin-library {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid #d9d6cd;
  background: #fcfbf7;
}
.admin-library-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
}
.admin-library-head h2 {
  margin: 4px 0 2px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}
.admin-library-head p {
  margin: 0;
  color: #77746c;
  font-size: 10px;
}
.admin-library-head > div:last-child {
  display: flex;
  gap: 8px;
}
.admin-library-head input {
  width: 220px;
}
.admin-table-wrap {
  overflow-x: auto;
}
.admin-library table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11px;
}
.admin-library th {
  padding: 10px 12px;
  border-bottom: 1px solid #aaa79f;
  color: #77746c;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}
.admin-library td {
  padding: 14px 12px;
  border-bottom: 1px solid #e4e1d9;
  color: #56534c;
}
.admin-library td:first-child {
  min-width: 310px;
}
.admin-library td strong {
  display: block;
  color: #1d1d1a;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 600;
}
.admin-library td small {
  display: block;
  margin-top: 3px;
  color: #858179;
  font-size: 9px;
}
.admin-library td:last-child button {
  padding: 7px 9px;
  border: 1px solid #cbc8bf;
  background: white;
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
}
.admin-empty {
  padding-block: 34px !important;
  text-align: center;
}
.admin-access-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 36px;
  background: #141412;
  color: white;
}
.admin-access-page > .admin-brand {
  position: absolute;
  top: 30px;
  left: 34px;
}
.admin-access-page > div {
  max-width: 640px;
}
.admin-access-page h1 {
  margin: 10px 0 16px;
  font-family: Georgia, serif;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}
.admin-access-page p {
  color: #aaa79f;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.6;
}
.admin-access-page > div > a {
  display: inline-block;
  margin-top: 14px;
  padding: 11px 14px;
  border: 1px solid #77746c;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .admin-editor-grid {
    grid-template-columns: 1fr;
  }
  .admin-settings {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .admin-sidebar {
    position: static;
    width: auto;
    min-height: auto;
    flex-direction: row;
    align-items: center;
    padding: 16px;
  }
  .admin-sidebar nav {
    display: flex;
    margin: 0 0 0 auto;
  }
  .admin-user {
    display: none;
  }
  .admin-workspace {
    margin-left: 0;
    padding: 24px 15px 60px;
  }
  .admin-settings {
    grid-template-columns: 1fr;
  }
  .admin-library-head {
    align-items: stretch;
    flex-direction: column;
  }
  .admin-library-head > div:last-child {
    flex-direction: column;
  }
  .admin-library-head input {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .admin-sidebar nav a:first-child {
    display: none;
  }
  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-topbar > div:last-child {
    width: 100%;
  }
  .admin-topbar > div:last-child a {
    flex: 1;
    text-align: center;
  }
  .admin-editor-card,
  .admin-library {
    padding: 18px;
  }
  .admin-actions {
    grid-template-columns: 1fr;
  }
}

/* Interior pages */
.eyebrow {
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.category-hero {
  padding: 58px 0 30px;
  border-bottom: 4px solid var(--ink);
}
.category-hero h1 {
  margin: 6px 0 8px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(50px, 7vw, 92px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}
.category-hero p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.45;
}
.category-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  padding: 34px 0 72px;
}
.category-feature {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--ink);
}
.category-feature img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  margin-bottom: 20px;
  object-fit: cover;
  filter: saturate(0.7);
}
.category-feature h2 {
  max-width: 800px;
  margin: 8px 0 10px;
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.category-feature h2 a:hover,
.category-card h3 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.category-feature p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.45;
}
.category-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
}
.category-card {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 12px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.category-card:nth-child(odd) {
  padding-right: 16px;
  border-right: 1px solid var(--line);
}
.card-index {
  color: #aca89d;
  font-family: Georgia, serif;
  font-size: 13px;
}
.category-card h3 {
  margin: 7px 0 9px;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.category-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.category-card time {
  color: var(--muted);
  font-size: 9px;
}
.category-sidebar {
  align-self: start;
  position: sticky;
  top: 22px;
  padding: 20px;
  border-top: 4px solid var(--ink);
  background: var(--white);
}
.category-sidebar > a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.25;
}
.category-sidebar > a strong {
  color: var(--accent);
  font-size: 22px;
  font-weight: 500;
}

.breadcrumbs {
  display: flex;
  gap: 9px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.breadcrumbs a:hover {
  color: var(--accent-dark);
}
.article-header {
  max-width: 1050px;
  padding-top: 48px;
}
.article-header h1 {
  max-width: 1000px;
  margin: 13px 0 18px;
  font-family: Georgia, serif;
  font-size: clamp(45px, 6.6vw, 86px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.99;
}
.article-deck {
  max-width: 760px;
  margin: 0;
  color: #55524a;
  font-family: Georgia, serif;
  font-size: 22px;
  line-height: 1.42;
}
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.share-actions {
  display: flex;
  gap: 8px;
}
.share-actions a,
.share-actions button {
  padding: 9px 11px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}
.share-actions a:hover,
.share-actions button:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.article-hero {
  margin-top: 34px;
}
.article-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 700px;
  object-fit: cover;
  filter: saturate(0.75);
}
.article-hero figcaption {
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
}
.article-layout {
  display: grid;
  grid-template-columns: 150px minmax(0, 680px) 210px;
  justify-content: center;
  gap: 46px;
  padding: 48px 0 80px;
}
.article-aside {
  align-self: start;
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
}
.article-aside span {
  margin-bottom: 3px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.article-aside a {
  color: var(--muted);
  font-size: 11px;
}
.article-aside a:hover {
  color: var(--accent-dark);
}
.article-body {
  min-width: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px;
  line-height: 1.75;
}
.article-body p {
  margin: 0 0 1.45em;
}
.article-body .dropcap::first-letter {
  float: left;
  margin: 0.06em 0.1em 0 0;
  color: var(--accent);
  font-size: 4.1em;
  line-height: 0.72;
}
.article-body h2 {
  margin: 1.5em 0 0.55em;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
}
.article-notice {
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  background: #f0eee7;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 11px;
  line-height: 1.5;
}
.article-body blockquote {
  margin: 38px -50px;
  padding: 25px 46px;
  border: 1px solid var(--ink);
  border-width: 1px 0;
  font-size: 27px;
  font-style: italic;
  line-height: 1.3;
  text-align: center;
}
.article-body blockquote cite {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-style: normal;
  text-transform: uppercase;
}
.article-factbox {
  margin: 34px 0;
  padding: 24px 28px;
  background: #e1e5d9;
  font-family: Arial, sans-serif;
}
.article-factbox > span {
  color: var(--accent-dark);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-factbox h3 {
  margin: 8px 0 14px;
  font-family: Georgia, serif;
  font-size: 24px;
}
.article-factbox ul {
  margin: 0;
  padding-left: 19px;
  font-size: 13px;
  line-height: 1.6;
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: Arial, sans-serif;
  font-size: 10px;
}
.article-tags a {
  padding: 7px 10px;
  border: 1px solid var(--line);
}
.article-rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.article-rail > div {
  padding: 16px;
  border-top: 3px solid var(--ink);
  background: var(--white);
}
.article-rail p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.related-section {
  padding-bottom: 72px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 20px;
  background: var(--line);
  border: 1px solid var(--line);
}
.related-grid a {
  min-height: 150px;
  padding: 24px;
  background: var(--white);
}
.related-grid a > span {
  color: var(--accent-dark);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.related-grid h3 {
  margin: 12px 0 0;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}
.related-grid time {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 10px;
}
.published-article-layout {
  grid-template-columns: minmax(0, 720px) 220px;
}
.article-body h3 {
  margin: 1.35em 0 0.45em;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}
.article-body > blockquote {
  margin: 34px 0;
}
.latest-archive {
  padding-block: 30px 80px;
}
.latest-archive > article {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.latest-archive > article img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.78);
}
.latest-archive h2 {
  max-width: 760px;
  margin: 7px 0 10px;
  font-family: Georgia, serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.latest-archive h2 a:hover {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.latest-archive article p {
  max-width: 700px;
  margin: 0 0 14px;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.5;
}
.latest-archive article small {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}
.archive-empty {
  padding: 70px 0;
  text-align: center;
}
.archive-empty h2 {
  margin-inline: auto;
}
.archive-empty p {
  margin: 0 0 18px;
  color: var(--muted);
  font-family: Georgia, serif;
}
.archive-empty a {
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.archive-image-placeholder {
  display: grid;
  aspect-ratio: 16 / 10;
  place-items: center;
  background: #dfdcd3;
  color: #8a867c;
  font-family: Georgia, serif;
  font-size: 27px;
  letter-spacing: 0.08em;
}
.search-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: end;
  gap: 42px;
}
.search-hero > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -36px;
}
.archive-search label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.archive-search > div {
  display: flex;
}
.archive-search input {
  min-width: 0;
  flex: 1;
  height: 46px;
  padding: 0 13px;
  border: 1px solid var(--ink);
  background: white;
  font:
    14px Arial,
    sans-serif;
}
.archive-search button {
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}
.search-summary {
  padding: 12px 0 18px;
  border-bottom: 1px solid var(--ink);
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 16px;
}
.search-summary strong {
  color: var(--ink);
}
.author-profile {
  padding: 58px 0 40px;
}
.author-profile > header {
  display: grid;
  grid-template-columns: 120px minmax(0, 760px);
  gap: 30px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 4px solid var(--ink);
}
.author-monogram {
  display: grid;
  width: 110px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-family: Georgia, serif;
  font-size: 38px;
}
.author-profile h1 {
  margin: 5px 0 12px;
  font-family: Georgia, serif;
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}
.author-profile header p {
  max-width: 750px;
  margin: 0;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.55;
}
.author-profile-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 700px);
  gap: 70px;
  padding-top: 36px;
}
.author-profile-grid aside {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 14px;
  border-top: 1px solid var(--ink);
}
.author-profile-grid aside span,
.author-profile-grid aside small {
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
}
.author-profile-grid aside a {
  margin-top: 10px;
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 800;
}
.author-profile-grid h2 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: 31px;
  font-weight: 500;
}
.author-profile-grid p {
  margin: 0;
  color: #4d4a43;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
}
.author-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.author-principles a {
  padding: 9px 11px;
  border: 1px solid var(--line);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.author-articles {
  padding-bottom: 70px;
}
.author-articles .latest-archive {
  padding-bottom: 0;
}
.admin-history-row {
  display: grid;
  gap: 3px;
  padding: 11px 0;
  border-bottom: 1px solid #e4e1d9;
}
.admin-history-row strong {
  font-family: Georgia, serif;
  font-size: 13px;
}
.admin-history-row span,
.admin-history-row small,
.admin-history p {
  color: #77746c;
  font-size: 9px;
}
.admin-team-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.admin-team-list {
  margin-top: 0;
}
.admin-primary-wide {
  width: 100%;
  min-height: 42px;
  margin-top: 20px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}
.admin-help {
  margin: 16px 0 0;
  color: #77746c;
  font-size: 10px;
  line-height: 1.55;
}
.admin-owner-row,
.admin-member-row {
  display: grid;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e4e1d9;
}
.admin-owner-row {
  grid-template-columns: minmax(180px, 1fr) auto;
}
.admin-member-row {
  grid-template-columns: minmax(160px, 1fr) 120px 120px 110px;
}
.admin-owner-row {
  grid-template-columns: minmax(180px, 1fr) auto;
}
.admin-owner-row strong,
.admin-member-row strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 15px;
}
.admin-owner-row small,
.admin-member-row small {
  display: block;
  margin-top: 4px;
  color: #77746c;
  font-size: 9px;
}
.admin-member-row select,
.admin-member-row button {
  min-height: 36px;
  padding: 0 9px;
  border: 1px solid #cbc8bf;
  background: white;
  font-size: 9px;
}
.admin-member-row button {
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
}
.admin-member-row.inactive {
  opacity: 0.5;
}

.info-page {
  max-width: 1050px;
  padding: 64px 0 88px;
}
.info-page > header {
  max-width: 850px;
  padding-bottom: 38px;
  border-bottom: 4px solid var(--ink);
}
.info-page h1 {
  margin: 8px 0 13px;
  font-family: Georgia, serif;
  font-size: clamp(47px, 7vw, 78px);
  font-weight: 500;
  letter-spacing: -0.05em;
}
.info-page > header p {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 21px;
  line-height: 1.45;
}
.info-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 650px);
  gap: 80px;
  padding-top: 40px;
}
.info-layout > aside {
  align-self: start;
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.info-layout > aside span {
  margin-bottom: 5px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.info-layout > aside a {
  color: var(--muted);
  font-size: 11px;
}
.info-content section {
  padding: 0 0 30px;
  scroll-margin-top: 24px;
}
.info-content h2 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.info-content p {
  margin: 0;
  color: #4d4a43;
  font-family: Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
}
.info-content p a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.last-updated {
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: Arial, sans-serif !important;
  font-size: 9px !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.not-found-page {
  min-height: 52vh;
  padding-block: 90px;
}
.not-found-page h1 {
  max-width: 760px;
  margin: 10px 0 16px;
  font-family: Georgia, serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}
.not-found-page p {
  max-width: 560px;
  margin: 0 0 30px;
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.5;
}
.not-found-page > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.not-found-page > div a {
  padding: 12px 16px;
  border: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.not-found-page > div a.primary-link {
  background: var(--ink);
  color: white;
}

@media (max-width: 980px) {
  .category-layout {
    grid-template-columns: 1fr;
  }
  .category-sidebar {
    position: static;
  }
  .article-layout {
    grid-template-columns: minmax(0, 680px) 190px;
  }
  .article-aside {
    display: none;
  }
  .admin-team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .category-hero {
    padding-top: 38px;
  }
  .category-layout {
    gap: 36px;
  }
  .category-feature img {
    aspect-ratio: 4 / 3;
  }
  .category-cards {
    grid-template-columns: 1fr;
  }
  .category-card:nth-child(odd) {
    padding-right: 0;
    border-right: 0;
  }
  .article-header {
    padding-top: 32px;
  }
  .breadcrumbs {
    margin-bottom: 24px;
  }
  .article-header h1 {
    font-size: 44px;
  }
  .article-deck {
    font-size: 18px;
  }
  .article-meta {
    align-items: flex-start;
    flex-direction: column;
  }
  .share-actions {
    width: 100%;
    overflow-x: auto;
  }
  .article-hero {
    width: 100%;
    margin-top: 28px;
  }
  .article-hero figcaption {
    padding-inline: 15px;
  }
  .article-layout {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }
  .article-rail {
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .article-body {
    font-size: 18px;
    line-height: 1.68;
  }
  .article-body h2 {
    font-size: 29px;
  }
  .article-body blockquote {
    margin-inline: 0;
    padding-inline: 12px;
    font-size: 23px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .published-article-layout {
    grid-template-columns: 1fr;
  }
  .latest-archive > article {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .info-page {
    padding-top: 42px;
  }
  .info-page > header p {
    font-size: 18px;
  }
  .info-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .info-layout > aside {
    position: static;
    display: none;
  }
  .search-hero {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .search-hero > .eyebrow {
    grid-column: auto;
    margin-bottom: -18px;
  }
  .author-profile > header,
  .author-profile-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .author-monogram {
    width: 82px;
    font-size: 29px;
  }
  .admin-member-row {
    grid-template-columns: 1fr 120px;
  }
  .admin-member-row button {
    grid-column: 1 / -1;
  }
}
