:root {
  color-scheme: light;
  --ink: #111714;
  --muted: #56635d;
  --subtle: #77847e;
  --canvas: #f4f6f2;
  --canvas-2: #e9eee9;
  --panel: #ffffff;
  --panel-2: #fafbf8;
  --line: rgba(17, 23, 20, 0.13);
  --line-strong: rgba(17, 23, 20, 0.22);
  --green-950: #08251b;
  --green-850: #103a2b;
  --green-650: #17684c;
  --green-100: #e7f0e9;
  --gold: #b78316;
  --gold-100: #f5ecd3;
  --steel: #244f66;
  --steel-100: #e7eef2;
  --red: #94463d;
  --shadow: 0 20px 46px rgba(17, 23, 20, 0.09);
  --shadow-soft: 0 10px 28px rgba(17, 23, 20, 0.07);
  --max: 1220px;
  --reading: 900px;
  --sticky-scroll-offset: 136px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--sticky-scroll-offset);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

a:hover {
  color: var(--green-650);
}

[id] {
  scroll-margin-top: var(--sticky-scroll-offset);
}

.is-scroll-target {
  outline: 3px solid rgba(183, 131, 22, 0.48);
  outline-offset: 8px;
  transition: outline-color 180ms ease, outline-offset 180ms ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(183, 131, 22, 0.72);
  outline-offset: 3px;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: 3.55rem;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: 2.05rem;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
  line-height: 1.25;
}

p {
  margin-bottom: 0;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px max(22px, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid rgba(0, 51, 102, 0.14);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 30px rgba(17, 23, 20, 0.05);
  backdrop-filter: blur(18px);
  transition: min-height 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 14px 36px rgba(17, 23, 20, 0.1);
}

.brand-cluster {
  display: inline-flex;
  min-width: 320px;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.brand-logo {
  width: 188px;
  height: auto;
  flex: 0 0 auto;
  transition: width 180ms ease;
}

.site-header.is-scrolled .brand-logo {
  width: 168px;
}

.publisher-link {
  display: inline-flex;
  max-width: 142px;
  min-height: 34px;
  align-items: center;
  border-left: 1px solid rgba(0, 51, 102, 0.18);
  padding-left: 12px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
  transition: color 150ms ease, border-color 150ms ease;
}

.publisher-link:hover {
  border-color: var(--gold);
  color: var(--steel);
}

.main-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 6px;
  border: 1px solid rgba(17, 23, 20, 0.08);
  border-radius: 999px;
  padding: 5px;
  background: rgba(244, 246, 242, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.main-nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 850;
  transition: background 150ms ease, color 150ms ease;
}

.main-nav a:hover,
.nav-group summary:hover {
  background: #ffffff;
  color: var(--green-950);
  box-shadow: 0 8px 18px rgba(17, 23, 20, 0.08);
}

.main-nav a.is-active,
.main-nav a[aria-current="page"],
.nav-group.has-active > summary {
  background: var(--green-950);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(17, 23, 20, 0.1);
}

.nav-group {
  position: relative;
}

.nav-group summary {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 850;
  list-style: none;
  transition: background 150ms ease, color 150ms ease;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.nav-group > div {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  width: 212px;
  gap: 3px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
  transform-origin: top right;
}

.nav-group[open] > div {
  display: grid;
}

.nav-group > div a {
  justify-content: flex-start;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  color: var(--ink);
}

.menu-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:first-child {
  transform: translate(-50%, calc(-50% - 4px));
}

.menu-toggle span:last-child {
  transform: translate(-50%, calc(-50% + 4px));
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 1.05fr) minmax(210px, 282px) minmax(300px, 0.76fr);
  gap: 30px;
  align-items: center;
  padding: 54px max(22px, calc((100% - var(--max)) / 2)) 46px;
  border-bottom: 1px solid var(--line);
  color: #ffffff;
  background:
    radial-gradient(circle at 58% 42%, rgba(183, 131, 22, 0.2), transparent 24%),
    linear-gradient(90deg, rgba(8, 37, 27, 0.96) 0%, rgba(8, 37, 27, 0.84) 43%, rgba(8, 37, 27, 0.58) 100%),
    linear-gradient(0deg, rgba(8, 37, 27, 0.52), rgba(8, 37, 27, 0.52)),
    url("/assets/assets/original/site/assets/files/5235/grease-gun.jpg") center / cover no-repeat;
}

.hero-copy,
.hero-rail,
.hero-cover {
  min-width: 0;
}

.hero-copy {
  align-self: center;
  padding-right: 4px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2d77b;
}

.lede {
  max-width: 620px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.quick-search {
  display: grid;
  max-width: 560px;
  gap: 8px;
  margin: -8px 0 20px;
}

.quick-search label {
  color: #f2d77b;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-search > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.quick-search input,
.quick-search button {
  min-height: 44px;
  border-radius: 6px;
  font: inherit;
}

.quick-search input {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 0 13px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.quick-search input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.quick-search button {
  border: 1px solid rgba(242, 215, 123, 0.64);
  padding: 0 16px;
  background: #f2d77b;
  color: var(--green-950);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 950;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.quick-search button:hover {
  border-color: #ffffff;
  background: #ffffff;
  transform: translateY(-1px);
}

.quick-search-preview {
  display: grid;
  max-width: 620px;
  max-height: min(500px, 62vh);
  gap: 12px;
  margin: -4px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  scrollbar-color: rgba(8, 37, 27, 0.36) transparent;
  scrollbar-width: thin;
}

.quick-search-preview[hidden] {
  display: none;
}

.quick-search-preview-meta {
  color: var(--steel);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quick-search-answer-header {
  display: grid;
  gap: 5px;
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(8, 37, 27, 0.1);
}

.quick-search-preview h3,
.quick-search-preview h4,
.quick-search-preview p {
  margin: 0;
}

.quick-search-preview h3 {
  color: var(--green-950);
  font-size: 1.08rem;
  line-height: 1.22;
}

.quick-search-preview h4 {
  color: var(--green-950);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quick-search-answer-header p,
.quick-search-preview > p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.quick-search-takeaways {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-search-takeaways li {
  display: grid;
  gap: 5px;
  border-left: 3px solid var(--gold);
  padding: 2px 0 2px 11px;
}

.quick-search-takeaways p {
  color: var(--ink);
  font-size: 0.83rem;
  line-height: 1.45;
}

.quick-search-takeaways a {
  font-size: 0.72rem;
}

.quick-search-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.quick-search-preview article {
  display: grid;
  gap: 3px;
  border: 1px solid rgba(17, 23, 20, 0.08);
  border-radius: 6px;
  padding: 9px;
  background: #f8faf6;
}

.quick-search-related span {
  color: var(--steel);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quick-search-preview a {
  color: var(--green-950);
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1.2;
}

.quick-search-preview a:hover {
  color: var(--green-650);
}

.quick-search-preview small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.quick-search-view-all {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  justify-self: start;
  border: 1px solid rgba(8, 37, 27, 0.16);
  border-radius: 6px;
  padding: 0 12px;
  background: var(--green-950);
  color: #ffffff !important;
  font-size: 0.76rem !important;
}

.button,
.download-link,
.pdf-edition-link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 0 15px;
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.1;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.button::after,
.download-link::after,
.pdf-edition-link::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 48%, transparent 62%);
  opacity: 0;
  transform: translateX(-130%);
}

.button.primary {
  border-color: var(--green-950);
  background: var(--green-950);
  color: #ffffff;
}

.hero-subscribe-cta {
  isolation: isolate;
  min-width: 164px;
  min-height: 52px;
  flex-direction: column;
  gap: 2px;
  border-color: rgba(242, 215, 123, 0.86) !important;
  background:
    linear-gradient(135deg, #f6d66d 0%, #ffffff 48%, #d8aa2e 100%) !important;
  background-color: #f2d77b !important;
  color: var(--green-950) !important;
  box-shadow: 0 16px 40px rgba(242, 215, 123, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-subscribe-cta span {
  position: relative;
  z-index: 1;
  overflow-wrap: anywhere;
  text-align: center;
}

.hero-subscribe-cta small {
  position: relative;
  z-index: 1;
  overflow-wrap: anywhere;
  text-align: center;
  font-size: 0.63rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  opacity: 0.78;
  text-transform: uppercase;
}

.hero-subscribe-cta::before {
  position: absolute;
  inset: -2px;
  z-index: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(242, 215, 123, 0), rgba(255, 255, 255, 0.7), rgba(242, 215, 123, 0));
  opacity: 0;
  transform: translateX(-80%);
}

.hero-subscribe-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(242, 215, 123, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-subscribe-cta:hover::before {
  opacity: 1;
  transform: translateX(80%);
  transition: transform 720ms ease, opacity 180ms ease;
}

.button.primary:hover {
  border-color: var(--green-650);
  background: var(--green-650);
  color: #ffffff;
}

.button:hover::after,
.download-link:hover::after,
.pdf-edition-link:hover::after {
  opacity: 1;
  transform: translateX(130%);
  transition: transform 620ms ease, opacity 180ms ease;
}

.button.secondary,
.download-link,
.pdf-edition-link {
  background: var(--panel);
  color: var(--green-950);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
}

.button.secondary:hover,
.download-link:hover,
.pdf-edition-link:hover {
  border-color: var(--gold);
  background: var(--gold-100);
  color: var(--green-950);
}

.proof-strip {
  display: grid;
  max-width: 560px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
}

.proof-strip div {
  min-height: 70px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.92);
}

.proof-strip dt {
  color: var(--green-950);
  font-size: 1.12rem;
  font-weight: 950;
}

.proof-strip dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero-cover {
  display: grid;
  width: 100%;
  max-width: 285px;
  justify-self: center;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 10px;
  background: var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.hero-cover img {
  width: 100%;
  height: auto;
  aspect-ratio: 640 / 826;
  object-fit: cover;
  border-radius: 4px;
}

.hero-cover,
.cover-story,
.story-board article,
.issue-shelf article,
.library-issue,
.library-search-card,
.ad-grid article,
.buyer-grid a,
.contact-routes a,
.subscribe-panel,
.page-shell {
  will-change: transform;
}

.hero-rail {
  display: grid;
  gap: 12px;
}

.hero-story,
.hero-link-list {
  border: 1px solid rgba(242, 215, 123, 0.18);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(8, 37, 27, 0.76);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.hero-story {
  border-color: rgba(242, 215, 123, 0.2);
  background:
    linear-gradient(180deg, rgba(23, 104, 76, 0.34), rgba(8, 37, 27, 0.92)),
    var(--green-950);
  color: #ffffff;
}

.hero-story span {
  color: #f2d77b;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-story h2 {
  margin-top: 8px;
  font-size: 1.55rem;
}

.hero-story p {
  color: rgba(255, 255, 255, 0.76);
}

.hero-story a:hover {
  color: #f2d77b;
}

.hero-link-list {
  display: grid;
  gap: 8px;
}

.hero-link-list h3 {
  margin: 0;
  color: #f2d77b;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-link-list a {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.91rem;
  font-weight: 850;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.hero-link-list a:hover {
  color: #f2d77b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.story-board a:hover,
.library-issue a:hover,
.issue-shelf a:hover,
.footer-nav-group a:hover,
.generated-list a:hover {
  color: var(--green-650);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ticker {
  display: flex;
  gap: 1px;
  overflow-x: auto;
  padding: 0 max(22px, calc((100% - var(--max)) / 2));
  color: #ffffff;
  background: var(--green-950);
  scrollbar-width: none;
}

.ticker a {
  display: inline-flex;
  min-width: max-content;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.8rem;
  font-weight: 850;
}

.ticker a:hover {
  color: #f2d77b;
}

.section {
  padding: 58px max(22px, calc((100% - var(--max)) / 2));
}

.section-heading {
  max-width: 840px;
  margin-bottom: 24px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading p,
.intro-copy p,
.story-board p,
.ad-grid p,
.issue-shelf small,
.library-issue li p,
.contact-routes span {
  color: var(--muted);
}

.issue-section,
.archive-section,
.write-section,
.contact-section {
  background: var(--panel);
}

.intro-section,
.library-section,
.buyers-section,
.subscribe-section {
  background: var(--canvas);
}

.issue-desk {
  display: grid;
  grid-template-columns: minmax(285px, 0.62fr) minmax(0, 1.38fr);
  gap: 16px;
}

.cover-story {
  display: grid;
  min-height: 0;
  aspect-ratio: 0.92 / 1;
  align-content: end;
  overflow: hidden;
  border-radius: 8px;
  padding: 22px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(8, 37, 27, 0.08) 0%, rgba(8, 37, 27, 0.54) 42%, rgba(8, 37, 27, 0.96) 100%),
    url("/assets/assets/original/site/assets/files/5235/grease-gun.jpg") center / cover no-repeat;
  box-shadow: 0 22px 52px rgba(17, 23, 20, 0.15);
}

.story-label {
  width: max-content;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 4px 9px;
  color: #f2d77b;
  background: rgba(8, 37, 27, 0.74);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cover-story h3 {
  max-width: 440px;
  margin-bottom: 8px;
  font-size: 1.62rem;
}

.cover-story p {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.91rem;
  line-height: 1.42;
}

.cover-story a {
  align-self: flex-start;
  width: max-content;
  margin-top: 14px;
  border-bottom: 1px solid currentColor;
  color: #f2d77b;
  font-weight: 950;
}

.story-board,
.ad-grid,
.buyer-grid,
.faq-grid,
.contact-routes,
.site-page-grid,
.category-grid {
  display: grid;
  gap: 12px;
}

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

.issue-rail {
  position: relative;
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 10px;
}

.issue-rail::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 38px;
  height: calc(100% - 64px);
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--panel) 82%);
}

.issue-rail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #ffffff, var(--panel-2));
  box-shadow: 0 10px 24px rgba(17, 23, 20, 0.045);
}

.issue-rail-header span {
  display: block;
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.issue-rail-header p {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
}

.issue-rail-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 5px;
  padding: 4px;
  border: 1px solid rgba(8, 37, 27, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.issue-rail-controls button {
  display: inline-grid;
  min-width: 40px;
  min-height: 40px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--green-950);
  cursor: pointer;
  box-shadow: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease, background 150ms ease;
}

.issue-rail-controls button span {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.issue-rail-controls button[data-issue-prev] span {
  transform: translateX(2px) rotate(-45deg);
}

.issue-rail-controls button[data-issue-next] span {
  transform: translateX(-2px) rotate(135deg);
}

.issue-rail-controls button:not(:disabled) {
  border-color: rgba(8, 37, 27, 0.1);
  background: #ffffff;
  color: var(--green-950);
  box-shadow: 0 7px 18px rgba(17, 23, 20, 0.08);
}

.issue-rail-controls button:hover:not(:disabled) {
  border-color: rgba(183, 131, 22, 0.48);
  background: linear-gradient(180deg, #123d2d, #08251b);
  color: #f2d77b;
  box-shadow: 0 12px 28px rgba(8, 37, 27, 0.16);
  transform: translateY(-1px);
}

.issue-rail-controls button:disabled {
  cursor: default;
  opacity: 0.38;
}

.issue-rail .story-board {
  grid-auto-flow: column;
  grid-auto-columns: minmax(238px, calc((100% - 24px) / 3));
  grid-template-columns: none;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 8px;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.issue-rail .story-board::-webkit-scrollbar {
  display: none;
}

.story-board article,
.ad-grid article,
.issue-shelf article,
.buyer-grid a,
.contact-routes a,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.story-board article {
  display: grid;
  min-height: 238px;
  align-content: start;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 10px 26px rgba(17, 23, 20, 0.05);
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.issue-rail .story-board article {
  min-height: 118px;
  grid-template-columns: 92px minmax(0, 1fr);
  grid-template-rows: auto;
  scroll-snap-align: start;
}

.story-board article:hover {
  border-color: rgba(183, 131, 22, 0.42);
  box-shadow: 0 18px 40px rgba(17, 23, 20, 0.1);
  transform: translateY(-2px);
}

.story-board article > div {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
}

.issue-rail .story-board article > div {
  gap: 5px;
  padding: 10px 12px;
}

.article-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #ffffff;
}

.issue-rail .article-thumb {
  width: 92px;
  height: 100%;
  min-height: 118px;
  aspect-ratio: auto;
}

.story-board span {
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-board h3 {
  margin: 0;
}

.issue-rail .story-board h3 {
  font-size: 0.93rem;
  line-height: 1.18;
}

.issue-rail .story-board p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.78rem;
  line-height: 1.34;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.intro-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(231, 240, 233, 0.96), rgba(244, 246, 242, 0.96)),
    var(--canvas-2);
}

.intro-section::after {
  position: absolute;
  right: max(22px, calc((100% - var(--max)) / 2));
  bottom: 34px;
  width: min(260px, 32vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(183, 131, 22, 0), rgba(183, 131, 22, 0.74), rgba(183, 131, 22, 0));
}

.intro-lead {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 250px;
  border-left: 4px solid var(--gold);
  padding: 24px 0 24px 22px;
}

.intro-lead h2 {
  margin-bottom: 0;
}

.intro-lead p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.02rem;
}

.intro-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: stretch;
}

.intro-copy article {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 126px;
  align-content: start;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 20, 0.1);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(17, 23, 20, 0.055);
}

.intro-copy article::before {
  width: 34px;
  height: 3px;
  content: "";
  border-radius: 99px;
  background: var(--gold);
}

.intro-copy span {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intro-copy p {
  font-size: 0.94rem;
  line-height: 1.48;
}

.archive-system {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.archive-browse-panel {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background:
    linear-gradient(180deg, #ffffff, var(--panel-2));
  box-shadow: 0 14px 34px rgba(17, 23, 20, 0.055);
}

.archive-jump {
  display: grid;
  gap: 7px;
}

.archive-jump span {
  color: var(--green-950);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.archive-jump select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--panel-2);
  font-weight: 900;
}

.archive-year-disclosure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.archive-year-disclosure summary {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  color: var(--green-950);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 950;
  list-style: none;
}

.archive-year-disclosure summary::-webkit-details-marker {
  display: none;
}

.archive-year-disclosure summary::after {
  width: 8px;
  height: 8px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.archive-year-disclosure[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.year-matrix {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 6px;
  padding: 0 10px 10px;
}

.year-chip {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 0 11px;
  color: var(--green-950);
  background: var(--panel);
  font-size: 0.8rem;
  font-weight: 950;
}

.year-chip:hover,
.year-chip.is-active {
  border-color: var(--green-950);
  background: var(--green-950);
  color: #ffffff;
}

.issue-shelf {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.issue-shelf article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 128px;
  padding: 14px;
  background: var(--panel);
}

.issue-shelf article:first-child {
  grid-template-columns: 110px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.issue-shelf img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
  border-radius: 5px;
  background: #ffffff;
}

.issue-shelf strong {
  font-size: 1rem;
  line-height: 1.24;
}

.issue-shelf-label {
  display: inline-flex;
  width: max-content;
  border-radius: 99px;
  padding: 4px 9px;
  color: var(--green-950);
  background: var(--gold-100);
  font-size: 0.72rem;
  font-weight: 950;
}

.library-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.library-stats article {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.library-stats strong {
  color: var(--green-950);
  font-size: 1.68rem;
  line-height: 1;
}

.library-stats span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.library-tools {
  position: sticky;
  z-index: 20;
  top: 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 0.22fr) minmax(156px, 0.28fr);
  gap: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(17, 23, 20, 0.11);
  border-radius: 8px;
  padding: 10px;
  background: rgba(244, 246, 242, 0.96);
  box-shadow: 0 12px 30px rgba(17, 23, 20, 0.08);
  backdrop-filter: blur(14px);
}

.library-tools label {
  display: grid;
  gap: 7px;
  color: var(--green-950);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.library-tools input,
.library-tools select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--panel);
  font-size: 0.95rem;
  text-transform: none;
}

.library-status {
  min-height: 22px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.library-layout {
  display: block;
}

.library-years {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 7px;
  min-width: 0;
}

.library-years a,
.site-page-grid a,
.category-grid a {
  display: block;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  color: var(--green-950);
  background: var(--panel);
  font-size: 0.8rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.library-years a:hover,
.site-page-grid a:hover,
.category-grid a:hover {
  border-color: var(--green-650);
  background: var(--green-100);
}

.library-results {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.library-feature {
  display: grid;
  gap: 7px;
}

.library-feature > span {
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.library-more,
.category-disclosure,
.site-links-disclosure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.library-more summary,
.category-disclosure summary,
.site-links-disclosure summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: var(--green-950);
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}

.library-more summary::-webkit-details-marker,
.category-disclosure summary::-webkit-details-marker,
.site-links-disclosure summary::-webkit-details-marker {
  display: none;
}

.library-more summary::after,
.category-disclosure summary::after,
.site-links-disclosure summary::after {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.library-more[open] summary::after,
.category-disclosure[open] summary::after,
.site-links-disclosure[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.library-more summary span,
.category-disclosure summary span,
.site-links-disclosure summary span {
  display: block;
}

.library-more summary small,
.category-disclosure summary small,
.site-links-disclosure summary small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.library-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 12px 12px;
}

.site-links-disclosure {
  margin-top: 14px;
}

.site-links-disclosure .site-page-grid {
  margin-top: 0;
  padding: 0 12px 12px;
}

.library-issue {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.library-issue-compact ul {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.library-issue-compact li {
  min-height: 78px;
}

.library-issue-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: var(--panel-2);
}

.library-issue-head span {
  color: var(--steel);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.library-issue-head h3 {
  margin: 5px 0 0;
  font-size: 1.06rem;
}

.library-issue-head > a {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 8px 10px;
  font-size: 0.74rem;
}

.library-issue ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 1px;
  list-style: none;
  background: #edf0eb;
}

.library-issue li {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 86px;
  padding: 11px;
  background: var(--panel);
}

.library-issue li span {
  color: var(--steel);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.library-issue li a {
  color: var(--ink);
  font-weight: 900;
  font-size: 0.88rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.library-open-issue {
  background: var(--green-100) !important;
}

.library-search-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--panel);
}

.library-search-card span {
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.library-search-card h3 {
  margin: 0;
}

.library-search-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.library-empty {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.site-page-grid,
.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.advertise-section {
  color: #ffffff;
  background: var(--green-950);
}

.advertise-section .eyebrow {
  color: #f2d77b;
}

.advertise-section .section-heading p,
.ad-grid p,
.faq-grid p {
  color: rgba(255, 255, 255, 0.74);
}

.planner-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: 16px;
}

.planner-board {
  display: grid;
  gap: 10px;
}

.planner-row {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.planner-row span {
  color: #f2d77b;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
}

.planner-row strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
}

.planner-row i {
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
}

.planner-row i::after {
  content: "";
  display: block;
  width: var(--fill);
  height: 100%;
  background: #f2d77b;
  transform-origin: left center;
}

.issue-shelf article,
.library-issue,
.library-search-card,
.ad-grid article,
.buyer-grid a,
.contact-routes a,
.subscribe-panel {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.issue-shelf article:hover,
.library-issue:hover,
.library-search-card:hover,
.ad-grid article:hover,
.buyer-grid a:hover,
.contact-routes a:hover {
  border-color: rgba(183, 131, 22, 0.38);
  box-shadow: 0 16px 36px rgba(17, 23, 20, 0.08);
  transform: translateY(-2px);
}

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

.ad-grid article,
.faq-grid article {
  min-height: 142px;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.advertise-section a {
  color: #f2d77b;
  font-weight: 900;
}

.faq-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.ad-grid.light article {
  border-color: var(--line);
  background: var(--panel);
}

.ad-grid.light p {
  color: var(--muted);
}

.ad-grid.light a {
  color: var(--green-650);
}

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

.buyer-grid a {
  position: relative;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 15px 16px;
  border-left: 3px solid transparent;
  font-weight: 950;
  overflow-wrap: anywhere;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.buyer-grid a::after {
  content: none;
}

.buyer-grid a:hover {
  border-left-color: var(--gold);
  background: linear-gradient(180deg, #ffffff, rgba(242, 215, 123, 0.1));
}

.category-panel {
  margin-top: 24px;
}

.category-disclosure .category-grid {
  padding: 0 12px 12px;
}

.subscribe-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--green-950);
  color: #ffffff;
}

.subscribe-panel .eyebrow {
  color: #f2d77b;
}

.subscribe-panel .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.subscribe-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

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

.contact-routes a {
  display: grid;
  gap: 8px;
  padding: 16px;
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.6fr);
  align-items: start;
  gap: 24px;
  padding: 36px max(22px, calc((100% - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(8, 37, 27, 0.98), rgba(16, 58, 43, 0.96)),
    var(--green-950);
}

.footer-brand {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 100%;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  padding-right: 24px;
}

.site-footer p {
  margin: 0;
}

.footer-logo-link {
  display: inline-grid;
  width: max-content;
  max-width: 100%;
  place-items: center;
  padding: 0;
  color: inherit;
}

.footer-logo {
  width: 164px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.14));
}

.site-footer a {
  color: #f2d77b;
  font-weight: 900;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.footer-nav-group {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-nav-group h3 {
  margin: 0 0 2px;
  color: #ffffff;
  font-size: 0.76rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-nav-group a {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.footer-nav-group a:hover,
.footer-brand a:hover {
  color: #f2d77b;
}

.generated-page {
  padding: 54px max(22px, calc((100% - var(--max)) / 2)) 82px;
  background:
    linear-gradient(180deg, rgba(0, 51, 102, 0.08) 0, rgba(0, 51, 102, 0) 260px),
    var(--canvas);
}

.breadcrumbs {
  display: flex;
  max-width: 1120px;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0 auto 14px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.breadcrumbs a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  color: var(--green-650);
}

.breadcrumbs span[aria-current="page"] {
  display: -webkit-box;
  max-width: min(520px, 100%);
  overflow: hidden;
  color: var(--ink);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.page-shell {
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
  padding: 42px;
  background: var(--panel);
  box-shadow: 0 24px 60px rgba(17, 23, 20, 0.09);
}

.article-page-shell {
  position: relative;
  max-width: 1080px;
  overflow: hidden;
  border-top-width: 0;
  padding: 48px;
  background:
    linear-gradient(135deg, rgba(231, 240, 233, 0.72), rgba(255, 255, 255, 0) 34%),
    var(--panel);
}

.page-shell h1 {
  max-width: var(--reading);
  margin-bottom: 18px;
  font-size: 2.55rem;
  line-height: 1.08;
}

.article-page-shell h1 {
  max-width: 920px;
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  line-height: 1.04;
}

.standard-page-layout {
  display: block;
}

.article-page-layout {
  display: block;
}

.page-body {
  max-width: var(--reading);
  color: var(--ink);
  font-size: 1.03rem;
  line-height: 1.68;
  overflow-wrap: anywhere;
}

.article-page-layout .page-body {
  max-width: 780px;
  margin: 28px auto 0;
}

.page-body > * + * {
  margin-top: 16px;
}

.page-body p {
  margin-bottom: 0;
}

.article-page-shell .page-body p {
  color: rgba(17, 23, 20, 0.92);
}

.page-body h2,
.page-body h3,
.page-body h4 {
  clear: both;
  margin-top: 28px;
}

.page-body h5,
.page-body h6 {
  clear: both;
  margin: 26px 0 0;
  color: var(--green-950);
  font-size: 1rem;
  line-height: 1.32;
}

.page-body h2 {
  font-size: 1.58rem;
}

.page-body h3 {
  font-size: 1.28rem;
}

.page-body h4 {
  font-size: 1.08rem;
}

.page-body a {
  color: var(--green-650);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-body ul,
.page-body ol {
  padding-left: 1.2rem;
}

.page-body li + li {
  margin-top: 6px;
}

.page-body p:has(img),
.page-body h2:has(img),
.page-body h3:has(img),
.page-body h4:has(img),
.page-body h5:has(img),
.page-body h6:has(img),
.page-body figure {
  clear: both;
  display: block;
  margin: 28px auto;
}

.page-body .article-media {
  clear: both;
  display: grid;
  max-width: min(100%, 860px);
  gap: 12px;
  justify-items: center;
  margin: 28px auto;
}

.page-body .article-media:has(> img + img) {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  align-items: start;
}

.page-body h2:has(img),
.page-body h3:has(img),
.page-body h4:has(img),
.page-body h5:has(img),
.page-body h6:has(img) {
  color: var(--green-950);
}

.page-body img {
  display: block;
  max-width: min(100%, 820px);
  height: auto;
  clear: both;
  margin: 22px auto;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 23, 20, 0.08);
}

.page-body .article-media img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}

.page-body .article-media:has(> img + img) img {
  width: 100%;
  object-fit: contain;
}

.page-body p.clearfix:has(img),
.page-body p:has(> img + img) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  align-items: start;
}

.page-body p.clearfix:has(img) img,
.page-body p:has(> img + img) img {
  width: 100%;
  max-width: 100%;
  margin: 0;
  object-fit: contain;
}

.page-body h2 img,
.page-body h3 img,
.page-body h4 img,
.page-body h5 img,
.page-body h6 img {
  display: block;
  margin: 0 auto 16px;
}

.page-body figure {
  max-width: min(100%, 860px);
  padding: 0;
}

.page-body figure img {
  margin: 0 auto;
}

.page-body figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
}

.article-page-shell .page-body > img:first-child,
.article-page-shell .page-body > p:first-child img {
  display: block;
  max-width: min(100%, 900px);
  margin-inline: auto;
  border-radius: 10px;
  box-shadow: 0 22px 54px rgba(17, 23, 20, 0.12);
}

.page-body img.align_right,
.page-body img.align_left,
.page-body img.uk-align-right,
.page-body img.uk-align-left,
.page-body img.uk-align-center,
.page-body .align_right,
.page-body .align_left,
.page-body .uk-align-right,
.page-body .uk-align-left,
.page-body .uk-align-center {
  float: none !important;
  display: block;
  width: auto;
  max-width: min(100%, 820px);
  clear: both;
  margin: 26px auto;
}

.page-body .pquote {
  float: none;
  width: min(100%, 700px);
  clear: both;
  margin: 28px auto;
  border-left: 4px solid var(--gold);
  padding: 14px;
  color: var(--green-950);
  background: var(--gold-100);
  font-size: 1.06rem;
  font-weight: 850;
}

.page-body .author-info {
  clear: both;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
}

.page-body [class*="uk-grid"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.page-body .uk-card {
  display: grid;
  align-items: center;
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--panel-2);
}

.article-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
}

.article-sidebar section {
  display: grid;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--panel-2);
}

.article-sidebar h2 {
  margin: 0 0 3px;
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-sidebar a {
  display: flex;
  min-height: 38px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--green-950);
  font-size: 0.84rem;
  font-weight: 900;
}

.article-sidebar a:first-of-type {
  border-top: 0;
}

.article-meta-line {
  display: flex;
  max-width: 900px;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}

.article-meta-line span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(36, 79, 102, 0.18);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--steel);
  background: rgba(231, 238, 242, 0.72);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-reader-dock {
  display: flex;
  max-width: 820px;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 20px;
  border: 1px solid rgba(17, 23, 20, 0.11);
  border-radius: 999px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 30px rgba(17, 23, 20, 0.055);
}

.article-reader-dock a {
  position: relative;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 7px 12px;
  background: transparent;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.article-reader-dock a::after {
  display: none;
}

.article-reader-dock a:hover {
  border-color: rgba(183, 131, 22, 0.48);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 23, 20, 0.08);
  transform: translateY(-1px);
}

.article-reader-dock span {
  color: var(--steel);
  font-size: 0.58rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-reader-dock strong {
  color: var(--green-950);
  font-size: 0.84rem;
  line-height: 1.1;
}

.article-continue {
  max-width: 920px;
  margin: 42px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.article-continue h2 {
  max-width: none;
  margin-bottom: 16px;
  font-size: 1.42rem;
}

.article-continue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.article-continue-grid a {
  display: grid;
  gap: 8px;
  min-height: 120px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--panel-2);
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.article-continue-grid a:hover {
  border-color: rgba(183, 131, 22, 0.42);
  box-shadow: 0 16px 34px rgba(17, 23, 20, 0.09);
  transform: translateY(-1px);
}

.article-continue-grid span {
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-continue-grid strong {
  color: var(--green-950);
  font-size: 0.96rem;
  line-height: 1.24;
}

.page-lede {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.utility-page,
.contact-page {
  display: grid;
  gap: 18px;
}

.utility-grid,
.contact-grid-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

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

.utility-card,
.contact-card-page {
  display: grid;
  gap: 8px;
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--panel-2);
  text-decoration: none !important;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.utility-card:hover,
.contact-card-page:hover {
  border-color: rgba(183, 131, 22, 0.42);
  box-shadow: 0 16px 34px rgba(17, 23, 20, 0.09);
  transform: translateY(-1px);
}

.utility-card span,
.contact-card-page span {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.utility-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.45;
}

.buyer-profile-card {
  position: relative;
  min-height: auto;
  gap: 8px;
  padding: 14px 38px 14px 16px;
}

.buyer-profile-card::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 16px;
  width: 7px;
  height: 7px;
  border-top: 2px solid rgba(0, 94, 73, 0.6);
  border-right: 2px solid rgba(0, 94, 73, 0.6);
  opacity: 0.62;
  transform: rotate(45deg);
  transition: opacity 150ms ease, transform 150ms ease;
}

.buyer-profile-card:hover::after {
  opacity: 1;
  transform: translateX(2px) rotate(45deg);
}

.buyer-profile-card p {
  color: var(--green-950);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.32;
}

.buyer-profile-card small {
  align-self: end;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-card-page strong {
  color: var(--green-950);
  font-size: 1rem;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.contact-card-page[href^="mailto:"] strong {
  font-size: clamp(0.78rem, 2.35vw, 1rem);
  letter-spacing: 0;
}

.utility-band,
.contact-action-panel,
.contact-address-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--green-950);
  color: #ffffff;
}

.utility-band h2,
.contact-action-panel h2,
.contact-address-panel h2 {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 1.2rem;
}

.utility-band p,
.contact-action-panel p,
.contact-address-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-action-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.contact-action-panel .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.contact-address-panel {
  display: grid;
  align-items: start;
  background: var(--panel-2);
  color: var(--ink);
}

.contact-address-panel h2 {
  color: var(--green-950);
}

.contact-address-panel p {
  color: var(--muted);
}

.current-issue-page,
.archive-page,
.advertise-page,
.buyers-page {
  display: grid;
  gap: 22px;
}

.issue-feature-panel,
.archive-command-panel,
.advertise-hero-panel {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, #ffffff, var(--panel-2));
  box-shadow: 0 16px 38px rgba(17, 23, 20, 0.07);
}

.issue-feature-panel {
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
}

.issue-feature-panel img {
  width: 150px;
  border-radius: 6px;
  box-shadow: 0 18px 34px rgba(17, 23, 20, 0.13);
}

.issue-feature-panel h2,
.advertise-hero-panel h2,
.archive-page h2,
.advertise-page h2,
.buyers-page h2 {
  margin: 0;
  font-size: 1.35rem;
}

.write-page {
  display: grid;
  gap: 28px;
}

.write-page > h2 {
  margin: 4px 0 -10px;
  color: var(--green-950);
  font-size: 1.45rem;
}

.issue-feature-panel.contributor-feature {
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 1.04fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  background: var(--panel);
}

.issue-feature-panel.contributor-feature img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border-radius: 0;
  object-fit: cover;
  object-position: 48% center;
  box-shadow: none;
}

.contributor-feature > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
}

.contributor-feature h2 {
  max-width: 20ch;
  color: var(--green-950);
  font-size: 1.7rem;
  line-height: 1.16;
}

.contributor-feature p {
  max-width: 58ch;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.contributor-feature .contact-action-buttons {
  margin-top: 22px;
}

.write-page .ad-grid,
.write-page .faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contributor-checklist {
  border-left: 4px solid var(--gold-500);
}

.archive-command-panel {
  grid-template-columns: minmax(180px, 260px) auto;
  align-items: end;
  justify-content: start;
}

.archive-year-grid,
.advertiser-logo-grid {
  display: grid;
  gap: 10px;
}

.archive-year-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.archive-year-card {
  display: grid;
  gap: 4px;
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--panel-2);
  text-decoration: none !important;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.archive-year-card strong {
  color: var(--green-950);
  font-size: 1.2rem;
}

.archive-year-card span,
.archive-year-card small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.archive-year-card:hover {
  border-color: rgba(183, 131, 22, 0.42);
  box-shadow: 0 16px 34px rgba(17, 23, 20, 0.09);
  transform: translateY(-1px);
}

.advertise-hero-panel {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.62fr);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(8, 37, 27, 0.96), rgba(16, 58, 43, 0.92));
  background-color: var(--green-950);
  color: #ffffff;
}

.advertise-hero-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.advertise-hero-panel .download-link {
  margin-top: 12px;
  border-color: rgba(242, 215, 123, 0.48);
  background: #103a2b;
  color: #f2d77b;
}

.advertise-hero-panel .planner-row {
  background: #0c2f23;
}

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

.advertiser-logo {
  display: grid;
  min-height: 112px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--panel-2);
}

.advertiser-logo img {
  max-height: 58px;
  object-fit: contain;
  filter: saturate(0.92);
}

.faq-grid.light article {
  border-color: var(--line);
  background: var(--panel-2);
}

.faq-grid.light p {
  color: var(--muted);
}

.request-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(244, 246, 242, 0.88), rgba(255, 255, 255, 0.96)),
    var(--panel);
}

.form-heading {
  display: grid;
  gap: 6px;
}

.form-heading > span {
  color: var(--steel);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-heading h2 {
  margin: 0;
  color: var(--green-950);
  font-size: 1.22rem;
}

.form-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

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

.field,
.choice-field {
  min-width: 0;
}

.field {
  display: grid;
  gap: 6px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field span,
.choice-field legend {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field-hint {
  margin-top: -2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(17, 23, 20, 0.16);
  border-radius: 6px;
  padding: 10px 11px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  line-height: 1.35;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(183, 131, 22, 0.38);
  outline-offset: 2px;
  border-color: var(--gold);
}

.choice-field {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  border: 1px solid rgba(0, 51, 102, 0.12);
  border-radius: 8px;
  padding: 12px;
}

.subscription-form .choice-field {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-field legend {
  padding: 0 5px;
}

.choice-field label {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.choice-field label > span {
  display: grid;
  gap: 2px;
  line-height: 1.25;
}

.choice-field label strong {
  color: var(--green-950);
  font-size: 0.88rem;
}

.choice-field label small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1.35;
}

.choice-field input {
  accent-color: var(--green-950);
}

.choice-field label:has(input:checked) {
  border-color: rgba(23, 104, 76, 0.46);
  background: rgba(231, 240, 233, 0.72);
  box-shadow: inset 0 0 0 1px rgba(23, 104, 76, 0.08);
}

.form-disclosure {
  border: 1px solid rgba(36, 79, 102, 0.16);
  border-radius: 8px;
  padding: 0;
  background: rgba(231, 238, 242, 0.42);
}

.form-disclosure summary {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  color: var(--green-950);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 950;
  list-style: none;
}

.form-disclosure summary::-webkit-details-marker {
  display: none;
}

.form-disclosure summary::after {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 150ms ease;
}

.form-disclosure[open] summary::after {
  transform: rotate(225deg);
}

.form-disclosure .field-grid {
  padding: 0 14px 14px;
}

.form-delivery-note {
  margin: 0 14px 14px;
  border-left: 3px solid var(--gold);
  padding: 1px 0 1px 11px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

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

.form-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(36, 79, 102, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  background: #ffffff;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.4;
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.form-consent:hover {
  border-color: rgba(23, 104, 76, 0.34);
}

.form-consent:has(input:checked) {
  border-color: rgba(23, 104, 76, 0.48);
  background: rgba(231, 240, 233, 0.62);
  box-shadow: inset 0 0 0 1px rgba(23, 104, 76, 0.08);
}

.form-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--green-950);
}

.form-consent > span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.form-consent strong {
  color: var(--green-950);
  font-size: 0.88rem;
  font-weight: 900;
}

.form-consent small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 680;
  line-height: 1.42;
}

.form-actions p {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.form-actions p.is-success {
  color: var(--green-650);
  font-weight: 850;
}

.form-actions p.is-error {
  color: #a52e32;
  font-weight: 850;
}

[data-form] .button:disabled,
[data-subscribe-modal-form] .button:disabled {
  cursor: wait;
  opacity: 0.7;
}

[data-form] .button:disabled::after,
[data-subscribe-modal-form] .button:disabled::after {
  display: none;
}

.page-body table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 0.92rem;
  table-layout: auto;
}

.page-body th,
.page-body td {
  min-width: 118px;
  border: 1px solid var(--line);
  padding: 9px;
  text-align: left;
  vertical-align: top;
}

.generated-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.generated-list article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(180deg, #ffffff, var(--panel-2));
  box-shadow: 0 12px 30px rgba(17, 23, 20, 0.055);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.generated-list article:hover {
  border-color: rgba(183, 131, 22, 0.42);
  box-shadow: 0 18px 38px rgba(17, 23, 20, 0.095);
  transform: translateY(-2px);
}

.generated-list span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 24px;
  align-items: center;
  border: 1px solid rgba(36, 79, 102, 0.18);
  border-radius: 999px;
  padding: 3px 8px;
  color: var(--steel);
  background: var(--steel-100);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.generated-list h2 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.22;
}

.generated-list h2 a {
  color: var(--green-950);
  text-decoration: none;
  background-image: linear-gradient(rgba(183, 131, 22, 0.38), rgba(183, 131, 22, 0.38));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  transition: color 150ms ease, background-size 180ms ease;
}

.generated-list article:hover h2 a,
.generated-list h2 a:hover {
  color: var(--green-650);
  background-size: 100% 2px;
}

.generated-list p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.generated-list .download-link {
  width: max-content;
  min-height: 34px;
  padding: 7px 10px;
  font-size: 0.76rem;
  text-decoration: none;
}

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

/* Editorial polish pass */
.publication-hero .hero-copy {
  position: relative;
}

.publication-hero .hero-copy::before {
  display: block;
  width: 88px;
  height: 4px;
  margin-bottom: 18px;
  content: "";
  border-radius: 99px;
  background: linear-gradient(90deg, #f2d77b, rgba(242, 215, 123, 0.18));
}

.publication-hero h1,
.section-heading h2,
.page-shell h1 {
  text-wrap: balance;
}

.publication-hero .lede {
  max-width: 560px;
  font-size: 1.18rem;
}

.hero-cover {
  position: relative;
  transform: rotate(-0.65deg);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-cover::after {
  position: absolute;
  inset: 8px;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(183, 131, 22, 0.35);
  border-radius: 5px;
}

.hero-cover:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.38);
}

.issue-section,
.archive-section,
.write-section,
.contact-section {
  border-top: 1px solid rgba(17, 23, 20, 0.06);
}

.cover-story {
  border: 1px solid rgba(242, 215, 123, 0.22);
}

.issue-rail-header,
.library-tools,
.library-more,
.library-issue,
.library-search-card,
.generated-list article {
  border-color: rgba(17, 23, 20, 0.12);
  box-shadow: 0 14px 34px rgba(17, 23, 20, 0.065);
}

.story-board article,
.issue-shelf article,
.library-search-card,
.generated-list article {
  overflow: hidden;
}

.generated-list article::before,
.library-search-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold), rgba(36, 79, 102, 0.22));
  transform: scaleX(0.28);
  transform-origin: left center;
  transition: transform 160ms ease;
}

.library-search-card {
  position: relative;
}

.generated-list article:hover::before,
.library-search-card:hover::before {
  transform: scaleX(1);
}

.library-more summary,
.library-issue-head {
  background:
    linear-gradient(90deg, rgba(231, 240, 233, 0.92), rgba(255, 255, 255, 0.98)),
    var(--panel-2);
}

.library-issue li,
.generated-list article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 248, 0.96)),
    var(--panel);
}

.article-page-shell::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  content: "";
  background: linear-gradient(90deg, var(--green-950), var(--gold), rgba(36, 79, 102, 0.86));
}

.article-page-shell::after {
  position: absolute;
  top: 28px;
  right: 38px;
  width: min(160px, 20vw);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(183, 131, 22, 0), rgba(183, 131, 22, 0.62));
}

.article-page-shell .page-body > p:first-of-type {
  color: var(--green-950);
  font-size: 1.1rem;
  line-height: 1.62;
}

.article-page-shell .page-body h2 {
  border-top: 1px solid rgba(183, 131, 22, 0.24);
  padding-top: 20px;
}

.admin-studio {
  display: grid;
  gap: 18px;
}

body:has(.admin-studio) .site-header {
  position: static;
}

.admin-hero-panel,
.admin-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  background: var(--panel-2);
}

.admin-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 18px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(8, 37, 27, 0.95), rgba(16, 58, 43, 0.88)),
    var(--green-950);
  color: #ffffff;
}

.admin-hero-panel .eyebrow {
  color: #f2d77b;
}

.admin-hero-panel h2 {
  margin-bottom: 8px;
  color: #ffffff;
}

.admin-hero-panel p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.admin-status-panel {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.admin-status-panel strong {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.25;
}

.admin-status-panel span {
  color: #f2d77b;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-workflow-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid rgba(183, 131, 22, 0.24);
  border-radius: 10px;
  padding: 10px;
  background: #ffffff;
}

.admin-workflow-step {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 2px 10px;
  align-items: center;
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(183, 131, 22, 0.07), rgba(13, 70, 50, 0.04)),
    var(--panel-2);
}

.admin-workflow-step span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: var(--green-950);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 950;
}

.admin-workflow-step strong {
  color: var(--green-950);
  font-size: 0.9rem;
  line-height: 1.2;
}

.admin-workflow-step p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.admin-publish-panel {
  display: grid;
  grid-template-columns: minmax(220px, 340px) auto minmax(220px, 1fr);
  gap: 12px;
  align-items: end;
  border: 1px solid rgba(183, 131, 22, 0.24);
  border-radius: 10px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(183, 131, 22, 0.08), rgba(13, 70, 50, 0.05)),
    #ffffff;
}

.admin-publish-panel .field {
  margin: 0;
}

.admin-publish-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.admin-publish-panel p.is-error {
  color: #9f2d20;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  background: #ffffff;
}

.admin-tabs button {
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: transparent;
  color: var(--green-950);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 950;
}

.admin-tabs button.is-active {
  background: var(--green-950);
  color: #ffffff;
}

.admin-action-row .button.subtle {
  color: var(--muted);
}

.admin-panel[hidden] {
  display: none;
}

.admin-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.admin-panel-heading h2 {
  margin-bottom: 0;
  font-size: 1.42rem;
}

.admin-panel-note {
  max-width: 620px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
}

.admin-editor-grid {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 14px;
}

.admin-finder {
  position: sticky;
  top: 92px;
  display: grid;
  align-self: start;
  gap: 12px;
}

.admin-finder select {
  min-height: 360px;
}

.admin-editor-fields {
  display: grid;
  gap: 14px;
}

.admin-code-editor {
  min-height: 320px;
  font-family: "Cascadia Code", Consolas, "Courier New", monospace;
  font-size: 0.82rem;
  line-height: 1.45;
}

.admin-body-editor {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.94rem;
  line-height: 1.55;
}

.admin-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-format-panel,
.admin-issue-builder {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(183, 131, 22, 0.24);
  border-radius: 8px;
  padding: 13px;
  background:
    linear-gradient(135deg, rgba(245, 236, 211, 0.74), rgba(231, 238, 242, 0.48)),
    #ffffff;
}

.admin-format-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.admin-format-panel.compact {
  padding: 11px;
}

.admin-format-panel strong,
.admin-builder-heading strong {
  display: block;
  color: var(--green-950);
  font-size: 0.9rem;
  line-height: 1.25;
}

.admin-format-panel p,
.admin-builder-heading p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.4;
}

.admin-helper-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.admin-helper-buttons .button {
  min-height: 36px;
  padding-inline: 11px;
  font-size: 0.76rem;
}

.admin-issue-builder {
  gap: 14px;
  margin: 2px 0;
  box-shadow: 0 14px 34px rgba(17, 23, 20, 0.055);
}

.admin-builder-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.admin-builder-heading > span {
  flex: 0 0 auto;
  border: 1px solid rgba(36, 79, 102, 0.18);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--steel);
  background: var(--steel-100);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-issue-builder .field-grid {
  gap: 10px;
}

.admin-issue-builder .admin-code-editor {
  min-height: 180px;
}

.admin-advanced-json {
  overflow: hidden;
  border: 1px solid rgba(17, 23, 20, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.admin-advanced-json summary {
  position: relative;
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: var(--green-950);
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}

.admin-advanced-json summary::-webkit-details-marker {
  display: none;
}

.admin-advanced-json summary::after {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.admin-advanced-json[open] summary::after {
  transform: rotate(225deg) translate(-2px, -2px);
}

.admin-advanced-json summary span {
  display: block;
  font-size: 0.86rem;
}

.admin-advanced-json summary small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
}

.admin-advanced-json .field {
  padding: 0 14px 14px;
}

.admin-preview-shell {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  background: #ffffff;
}

.admin-preview {
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.98rem;
}

.admin-media-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 14px;
  margin-bottom: 16px;
}

.admin-media-output {
  align-self: stretch;
}

.admin-media-output textarea {
  min-height: 100%;
}

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

.admin-rule-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
}

.admin-rule-grid h3 {
  color: var(--green-950);
}

.admin-rule-grid p {
  color: var(--muted);
  font-size: 0.92rem;
}

.subscribe-modal[hidden] {
  display: none;
}

.subscribe-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(8, 37, 27, 0.58);
  backdrop-filter: blur(14px);
}

.subscribe-modal-open {
  overflow: hidden;
}

.subscribe-modal-card {
  position: relative;
  display: grid;
  width: min(540px, 100%);
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 34px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(8, 37, 27, 0.82), rgba(8, 37, 27, 0.94)),
    url("/assets/assets/original/site/assets/files/5235/grease-gun.jpg") center / cover no-repeat;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
}

.subscribe-modal-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(242, 215, 123, 0.28), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 44%);
  pointer-events: none;
}

.subscribe-modal-card > * {
  position: relative;
  z-index: 1;
}

.subscribe-modal-logo {
  width: min(230px, 62vw);
  height: auto;
}

.subscribe-modal-card .eyebrow {
  margin-bottom: -4px;
  color: #f2d77b;
}

.subscribe-modal-card h2 {
  max-width: 430px;
  margin: 0;
  color: #ffffff;
  font-size: 2rem;
}

.subscribe-modal-card p {
  max-width: 430px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.subscribe-modal-card form {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.subscribe-modal-card label {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 900;
}

.subscribe-modal-card input[type="email"] {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0 17px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
}

.subscribe-modal-card input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.subscribe-modal-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

.subscribe-modal-check > span {
  display: grid;
  gap: 2px;
}

.subscribe-modal-check strong {
  color: #ffffff;
  font-size: 0.86rem;
}

.subscribe-modal-check small {
  min-height: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.42;
}

.subscribe-modal-check input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.subscribe-modal-card .button {
  width: max-content;
  min-width: 190px;
  border-color: #f2d77b;
  background: #f2d77b;
  color: var(--green-950);
}

.subscribe-modal-card > form > small {
  min-height: 18px;
  color: #f2d77b;
  font-weight: 850;
}

.subscribe-modal-card small.is-success {
  color: #f2d77b;
}

.subscribe-modal-card small.is-error {
  color: #ffd0d0;
}

.subscribe-modal-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
}

.subscribe-modal-close::before,
.subscribe-modal-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.subscribe-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.subscribe-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.subscribe-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .motion-reveal {
    opacity: 0.96;
    transform: translateY(14px) scale(0.992);
  }

  .motion-ready .motion-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.74, 0.25, 1);
    transition-delay: var(--motion-delay, 0ms);
  }

  .motion-ready .hero-cover.is-visible {
    transition-duration: 680ms;
  }

  .motion-ready .hero-cover.is-visible img {
    animation: issueCoverSettle 900ms cubic-bezier(0.2, 0.74, 0.25, 1) both;
  }

  .motion-ready .planner-row.is-visible i::after,
  .motion-ready .planner-row.motion-reveal i::after {
    animation: fillMeasure 820ms ease both;
    animation-delay: calc(var(--motion-delay, 0ms) + 120ms);
  }

  .nav-group[open] > div,
  .library-more[open] .library-more-grid,
  .category-disclosure[open] .category-grid,
  .site-links-disclosure[open] .site-page-grid {
    animation: menuPanelIn 170ms ease both;
  }

  .main-nav.is-open {
    animation: menuPanelIn 170ms ease both;
  }

  .subscribe-modal:not([hidden]) .subscribe-modal-card {
    animation: subscribeModalIn 260ms cubic-bezier(0.2, 0.74, 0.25, 1) both;
  }
}

@keyframes menuPanelIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes issueCoverSettle {
  from {
    transform: translateY(10px) scale(0.97);
  }
  to {
    transform: none;
  }
}

@keyframes fillMeasure {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes subscribeModalIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .motion-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1120px) {
  .site-header {
    min-height: 66px;
  }

  .brand-cluster {
    min-width: 280px;
  }

  .brand-logo {
    width: 164px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 154px;
  }

  .publisher-link {
    max-width: 112px;
    font-size: 0.62rem;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 22px;
    left: 22px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: min(72vh, 560px);
    overflow-y: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.985);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .main-nav a,
  .nav-group summary {
    min-height: 44px;
  }

  .nav-group {
    position: static;
  }

  .nav-group > div {
    position: static;
    width: auto;
    margin-top: 4px;
    padding: 6px;
    border-radius: 7px;
    background: var(--panel-2);
    box-shadow: none;
    transform: none;
  }

  .nav-group > div a {
    min-height: 38px;
    font-size: 0.76rem;
  }

  .main-nav.is-open {
    display: grid;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 270px);
    min-height: auto;
  }

  .hero-rail {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .issue-desk,
  .intro-section,
  .archive-system,
  .planner-layout,
  .subscribe-panel,
  .library-layout {
    grid-template-columns: 1fr;
  }

  .story-board,
  .buyer-grid,
  .contact-routes,
  .faq-grid,
  .utility-grid,
  .contact-grid-page,
  .site-page-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .issue-rail .story-board {
    grid-auto-columns: minmax(236px, calc((100% - 12px) / 2));
    grid-template-columns: none;
  }

  .library-years {
    position: static;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .article-page-layout {
    display: block;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .admin-hero-panel,
  .admin-publish-panel,
  .admin-editor-grid,
  .admin-media-grid {
    grid-template-columns: 1fr;
  }

  .admin-finder {
    position: static;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: 2.2rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 1.58rem;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-cluster {
    min-width: 0;
  }

  .brand-logo {
    width: 152px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 142px;
  }

  .publisher-link {
    display: none;
  }

  .main-nav {
    right: 14px;
    left: 14px;
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 34px 14px 38px;
    background-position: 58% center;
  }

  .hero-copy,
  .hero-cover,
  .hero-rail {
    grid-column: auto;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-cover {
    width: 210px;
    max-width: 70vw;
    justify-self: start;
    padding: 8px;
    transform: none;
  }

  .hero-cover:hover {
    transform: none;
  }

  .hero-rail {
    display: none;
  }

  .hero-rail > * {
    min-width: 0;
    flex: initial;
  }

  .hero-story,
  .hero-link-list {
    padding: 14px;
  }

  .hero-story h2 {
    font-size: 1.34rem;
  }

  .hero-actions .button {
    flex: 1 1 145px;
  }

  .intro-copy,
  .issue-shelf,
  .ad-grid,
  .buyer-grid,
  .contact-routes,
  .utility-grid,
  .contact-grid-page,
  .library-tools,
  .library-more-grid,
  .library-issue ul,
  .library-issue-compact ul,
  .faq-grid,
  .site-page-grid,
  .issue-feature-panel,
  .archive-command-panel,
  .advertise-hero-panel,
  .archive-year-grid,
  .advertiser-logo-grid {
    grid-template-columns: 1fr;
  }

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

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

  .archive-year-card {
    min-height: 76px;
    padding: 12px;
  }

  .archive-year-card strong {
    font-size: 1.04rem;
  }

  .archive-year-card span,
  .archive-year-card small {
    font-size: 0.7rem;
  }

  .category-grid a {
    min-height: 34px;
    padding: 7px 8px;
    font-size: 0.72rem;
  }

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

  .proof-strip {
    max-width: none;
  }

  .section {
    padding: 44px 14px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .cover-story {
    aspect-ratio: 1 / 0.82;
    min-height: 260px;
    padding: 18px;
  }

  .cover-story h3 {
    font-size: 1.38rem;
  }

  .utility-band,
  .contact-action-panel {
    display: grid;
  }

  .contact-card-page {
    min-height: 116px;
  }

  .contact-action-buttons {
    justify-content: flex-start;
  }

  .story-board {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .issue-rail-header {
    align-items: flex-start;
    padding: 12px;
  }

  .issue-rail .story-board {
    grid-auto-columns: minmax(260px, 84%);
    grid-template-columns: none;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .story-board article {
    min-height: 0;
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .story-board article:hover {
    transform: none;
  }

  .story-board article > div {
    gap: 5px;
    padding: 10px 12px;
  }

  .article-thumb {
    width: 92px;
    height: 100%;
    min-height: 96px;
    aspect-ratio: auto;
  }

  .issue-rail .article-thumb {
    min-height: 106px;
  }

  .story-board span {
    font-size: 0.6rem;
  }

  .story-board h3 {
    font-size: 0.92rem;
    line-height: 1.18;
  }

  .story-board p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .library-years {
    display: flex;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .library-years a {
    min-width: 68px;
    text-align: center;
  }

  .library-issue-head {
    flex-direction: column;
  }

  .library-issue li {
    min-height: 0;
  }

  .library-issue li p {
    display: none;
  }

  .subscribe-actions {
    justify-content: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    padding-right: 0;
    padding-bottom: 20px;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr;
  }

  .generated-page {
    padding: 28px 14px 52px;
  }

  .page-shell {
    padding: 20px;
  }

  .page-shell h1 {
    font-size: 1.92rem;
  }

  .page-body {
    line-height: 1.58;
  }

  .page-body img.align_right,
  .page-body .align_right,
  .page-body img.align_left,
  .page-body .align_left,
  .page-body .pquote {
    float: none;
    width: auto;
    max-width: 100%;
    margin: 16px 0;
  }

  .generated-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 1.76rem;
  }

  .brand-logo {
    width: 136px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 126px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .publisher-link {
    display: none;
  }

  .hero {
    gap: 14px;
    padding: 24px 12px 30px;
  }

  .lede {
    margin-bottom: 14px;
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
  }

  .hero-actions .button.primary {
    grid-column: 1 / -1;
  }

  .hero-actions .button {
    min-height: 38px;
    padding-inline: 8px;
    font-size: 0.76rem;
  }

  .hero-cover {
    width: 174px;
    max-width: 58vw;
    padding: 7px;
  }

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

  .proof-strip div {
    min-height: 54px;
    padding: 9px 7px;
  }

  .proof-strip dt {
    font-size: 0.9rem;
  }

  .proof-strip dd {
    font-size: 0.66rem;
  }

  .library-stats {
    grid-template-columns: 1fr;
  }

  .button {
    padding-inline: 10px;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: grid;
    min-height: 60px;
    grid-template-columns: minmax(0, 1fr) 46px;
    column-gap: 12px;
    padding-block: 7px;
    padding-inline: 16px;
  }

  .brand-cluster,
  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 134px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 126px;
  }

  .menu-toggle {
    width: 40px;
    height: 38px;
    justify-self: end;
  }

  .main-nav {
    right: 16px;
    left: 16px;
    width: auto;
    gap: 6px;
    padding: 10px;
    border-radius: 10px;
  }

  .main-nav a,
  .nav-group summary {
    min-height: 40px;
    padding-inline: 11px;
    font-size: 0.78rem;
  }

  .hero {
    gap: 12px;
    padding: 18px 14px 22px;
  }

  .hero h1 {
    margin-bottom: 8px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
  }

  .lede {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.38;
  }

  .hero-cover {
    display: none;
  }

  .hero-actions {
    margin-bottom: 12px;
  }

  .quick-search {
    max-width: none;
    margin: 0 0 12px;
  }

  .quick-search-preview {
    max-width: none;
  }

  .quick-search > div {
    grid-template-columns: 1fr;
  }

  .quick-search input,
  .quick-search button {
    min-height: 40px;
  }

  .library-tools {
    top: 74px;
  }

  .proof-strip div {
    min-height: 48px;
    padding: 8px 7px;
  }

  .proof-strip dt {
    font-size: 0.95rem;
  }

  .proof-strip dd {
    font-size: 0.64rem;
  }

  .section {
    padding: 30px 14px;
  }

  .section-heading {
    margin-bottom: 14px;
  }

  .section-heading p {
    font-size: 0.9rem;
    line-height: 1.44;
  }

  .issue-desk {
    gap: 10px;
  }

  .cover-story {
    aspect-ratio: auto;
    min-height: 172px;
    padding: 14px;
  }

  .story-label {
    margin-bottom: 7px;
    padding: 3px 8px;
    font-size: 0.62rem;
  }

  .cover-story h3 {
    margin-bottom: 6px;
    font-size: 1.16rem;
  }

  .cover-story p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.8rem;
    line-height: 1.34;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .cover-story a {
    margin-top: 9px;
  }

  .issue-rail-header {
    align-items: center;
    gap: 8px;
    padding: 9px 10px;
  }

  .issue-rail-header p {
    display: none;
  }

  .issue-rail-controls {
    gap: 4px;
  }

  .issue-rail-controls button {
    min-width: 44px;
    min-height: 44px;
  }

  .issue-rail .story-board {
    grid-auto-columns: minmax(230px, 76%);
    gap: 8px;
    padding-bottom: 5px;
  }

  .issue-rail .story-board article {
    min-height: 88px;
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .issue-rail .story-board article > div {
    padding: 8px 10px;
  }

  .issue-rail .article-thumb {
    width: 76px;
    min-height: 88px;
  }

  .issue-rail .story-board h3 {
    font-size: 0.82rem;
  }

  .issue-rail .story-board p {
    display: none;
  }

  .intro-section {
    gap: 12px;
  }

  .intro-lead {
    min-height: 0;
    padding: 4px 0 14px 14px;
  }

  .intro-copy article {
    min-width: 218px;
    min-height: 0;
    padding: 13px;
    scroll-snap-align: start;
  }

  .intro-copy {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
  }

  .intro-copy p {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .intro-copy p:nth-child(n + 3) {
    display: none;
  }

  .archive-system {
    gap: 10px;
  }

  .year-matrix {
    display: flex;
  }

  .archive-jump {
    padding: 11px;
  }

  .archive-jump select {
    min-height: 40px;
  }

  .year-chip {
    justify-content: center;
    min-height: 32px;
    padding: 0;
    font-size: 0.72rem;
  }

  .issue-shelf {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .issue-shelf article {
    min-width: 168px;
    padding: 11px;
    gap: 7px;
    scroll-snap-align: start;
  }

  .issue-shelf article:first-child {
    min-width: 238px;
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .issue-shelf img {
    height: 150px;
    max-height: 150px;
  }

  .issue-shelf article:first-child img {
    height: 124px;
  }

  .issue-shelf small {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.74rem;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .library-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 10px;
  }

  .library-stats article {
    gap: 3px;
    padding: 9px 7px;
  }

  .library-stats strong {
    font-size: 1.05rem;
  }

  .library-stats span {
    font-size: 0.55rem;
    line-height: 1.05;
  }

  .library-tools {
    gap: 8px;
    margin-bottom: 10px;
  }

  .library-tools input,
  .library-tools select {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.85rem;
  }

  .library-status {
    margin-bottom: 10px;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .library-issue-head {
    gap: 8px;
    padding: 12px;
  }

  .library-issue li {
    padding: 10px;
  }

  .library-issue li a {
    font-size: 0.82rem;
  }

  .library-more summary,
  .category-disclosure summary,
  .site-links-disclosure summary {
    min-height: 44px;
    padding: 10px 12px;
  }

  .planner-layout {
    gap: 10px;
  }

  .planner-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .planner-row {
    gap: 5px;
    padding: 10px;
  }

  .planner-row span {
    font-size: 1.05rem;
  }

  .planner-row strong {
    font-size: 0.7rem;
    line-height: 1.24;
  }

  .planner-row i {
    height: 4px;
  }

  .ad-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .ad-grid article,
  .faq-grid article {
    min-height: 96px;
    padding: 11px;
  }

  .ad-grid article h3,
  .faq-grid article h3 {
    font-size: 0.86rem;
    line-height: 1.18;
  }

  .ad-grid article p,
  .faq-grid article p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.73rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .buyer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .buyer-grid a {
    min-height: 46px;
    padding: 10px;
    font-size: 0.78rem;
  }

  .category-panel {
    margin-top: 12px;
  }

  .subscribe-panel {
    gap: 12px;
    padding: 14px;
  }

  .subscribe-actions {
    gap: 8px;
  }

  .subscribe-actions .button {
    min-height: 40px;
    font-size: 0.76rem;
  }

  .contact-routes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .contact-routes a {
    gap: 5px;
    padding: 10px;
  }

  .contact-routes strong,
  .contact-routes span {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .site-footer {
    gap: 16px;
    padding: 24px 18px;
  }

  .footer-logo {
    width: 148px;
  }

  .footer-brand {
    gap: 6px;
  }

  .footer-brand p,
  .footer-brand a {
    font-size: 0.82rem;
  }

  .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
  }

  .footer-nav-group {
    gap: 5px;
  }

  .footer-nav-group h3 {
    font-size: 0.69rem;
  }

  .footer-nav-group a {
    min-height: 28px;
    font-size: 0.78rem;
    line-height: 1.22;
  }

  .generated-page {
    padding: 20px 12px 42px;
  }

  .breadcrumbs {
    gap: 5px;
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .breadcrumbs a {
    min-height: 26px;
  }

  .article-page-layout {
    display: block;
  }

  .article-sidebar {
    display: none;
  }

  .page-shell {
    padding: 18px;
    border-top-width: 4px;
    box-shadow: 0 18px 42px rgba(17, 23, 20, 0.08);
  }

  .article-page-shell {
    padding: 22px 18px;
    border-top-width: 0;
  }

  .page-shell h1 {
    margin-bottom: 12px;
    font-size: 1.76rem;
    line-height: 1.08;
  }

  .article-page-shell h1 {
    font-size: 2.06rem;
    line-height: 1.02;
  }

  .article-page-shell .page-body > p:first-of-type {
    font-size: 1rem;
    line-height: 1.56;
  }

  .article-meta-line {
    margin-bottom: 14px;
  }

  .article-meta-line span {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 0.62rem;
  }

  .article-reader-dock {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    margin-bottom: 18px;
    border-radius: 12px;
    padding: 6px;
  }

  .article-reader-dock a {
    justify-content: flex-start;
    min-height: 38px;
    padding: 7px 10px;
  }

  .article-reader-dock span {
    font-size: 0.58rem;
  }

  .article-reader-dock strong {
    font-size: 0.78rem;
  }

  .article-page-layout .page-body {
    margin-top: 18px;
  }

  .article-continue {
    margin-top: 30px;
    padding-top: 22px;
  }

  .article-continue h2 {
    font-size: 1.18rem;
  }

  .article-continue-grid {
    grid-template-columns: 1fr;
  }

  .article-continue-grid a {
    min-height: 92px;
  }

  .page-lede,
  .page-body {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .page-body th,
  .page-body td {
    min-width: 132px;
  }

  .current-issue-page {
    gap: 14px;
  }

  .issue-feature-panel {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px;
  }

  .issue-feature-panel img {
    width: 112px;
  }

  .issue-feature-panel .page-lede {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 8px;
    font-size: 0.86rem;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .issue-feature-panel h2 {
    font-size: 1.04rem;
    line-height: 1.18;
  }

  .issue-feature-panel .contact-action-buttons {
    margin-top: 10px;
  }

  .write-page {
    gap: 20px;
  }

  .write-page > h2 {
    margin-bottom: -6px;
    font-size: 1.22rem;
  }

  .issue-feature-panel.contributor-feature {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .issue-feature-panel.contributor-feature img {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-position: 48% center;
  }

  .contributor-feature > div {
    padding: 20px;
  }

  .issue-feature-panel.contributor-feature h2 {
    max-width: none;
    font-size: 1.28rem;
    line-height: 1.24;
  }

  .contributor-feature p {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .contributor-feature .contact-action-buttons {
    margin-top: 16px;
  }

  .write-page .ad-grid,
  .write-page .faq-grid {
    grid-template-columns: 1fr;
  }

  .utility-page,
  .contact-page {
    gap: 12px;
  }

  .contact-page .contact-grid-page,
  .subscription-form .choice-field {
    grid-template-columns: 1fr;
  }

  .utility-grid,
  .contact-grid-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .utility-card,
  .contact-card-page {
    min-height: 92px;
    gap: 6px;
    padding: 12px;
  }

  .utility-card span,
  .contact-card-page span {
    font-size: 0.66rem;
    line-height: 1.2;
  }

  .utility-card p,
  .contact-card-page strong {
    font-size: 0.82rem;
    line-height: 1.32;
  }

  .contact-card-page[href^="mailto:"] strong {
    font-size: clamp(0.66rem, 2.4vw, 0.82rem);
  }

  .utility-band,
  .contact-action-panel,
  .contact-address-panel {
    gap: 12px;
    padding: 14px;
  }

  .utility-band h2,
  .contact-action-panel h2,
  .contact-address-panel h2 {
    font-size: 1.05rem;
  }

  .utility-band p,
  .contact-action-panel p,
  .contact-address-panel p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .contact-action-buttons {
    gap: 8px;
  }

  .contact-action-buttons .button {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.78rem;
  }

  .request-form {
    gap: 12px;
    padding: 14px;
  }

  .form-heading h2 {
    font-size: 1.08rem;
  }

  .form-heading p {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .field-grid {
    gap: 9px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 0.88rem;
  }

  .choice-field {
    gap: 8px;
    padding: 10px;
  }

  .choice-field label {
    min-height: 56px;
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .admin-hero-panel,
  .admin-panel {
    padding: 14px;
  }

  .admin-workflow-panel {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }

  .admin-workflow-step {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 3px 9px;
    padding: 10px;
  }

  .admin-workflow-step span {
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
  }

  .admin-workflow-step strong {
    font-size: 0.82rem;
  }

  .admin-workflow-step p {
    grid-column: 2;
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .admin-publish-panel {
    padding: 12px;
  }

  .admin-panel-heading {
    display: grid;
  }

  .admin-tabs {
    border-radius: 10px;
  }

  .admin-tabs button {
    flex: 1 1 120px;
    min-height: 38px;
    padding-inline: 10px;
  }

  .admin-format-panel,
  .admin-builder-heading {
    grid-template-columns: 1fr;
  }

  .admin-format-panel,
  .admin-builder-heading {
    display: grid;
  }

  .admin-helper-buttons {
    justify-content: flex-start;
  }

  .admin-builder-heading > span {
    width: max-content;
  }

  .admin-finder select {
    min-height: 220px;
  }

  .admin-code-editor {
    min-height: 260px;
    font-size: 0.76rem;
  }

  .admin-body-editor {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .admin-advanced-json summary {
    display: grid;
    min-height: 0;
    padding: 11px 34px 11px 12px;
  }

  .admin-advanced-json summary::after {
    position: absolute;
    right: 14px;
  }

  .admin-advanced-json .field {
    padding: 0 12px 12px;
  }

  .admin-preview-shell {
    padding: 12px;
  }

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

  .subscribe-modal {
    padding: 12px;
  }

  .subscribe-modal-card {
    gap: 11px;
    max-height: min(92vh, 680px);
    overflow-y: auto;
    border-radius: 12px;
    padding: 24px 18px 20px;
  }

  .subscribe-modal-card h2 {
    font-size: 1.56rem;
  }

  .subscribe-modal-card p {
    font-size: 0.92rem;
  }

  .subscribe-modal-card .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .section {
    padding: 26px 12px;
  }

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

  .ad-grid,
  .faq-grid,
  .buyer-grid,
  .contact-routes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav {
    right: 12px;
    left: 12px;
    width: auto;
  }

  .page-shell {
    padding: 16px;
  }

  .utility-grid,
  .contact-grid-page {
    grid-template-columns: 1fr;
  }

  .utility-card,
  .contact-card-page {
    min-height: 78px;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }
}

/* Final mobile readability pass for dense commercial sections. */
.subscribe-page-button {
  border-color: #f2d77b;
  background: #f2d77b;
  color: var(--green-950);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.subscribe-page-button:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--green-950);
}

@media (max-width: 760px) {
  .advertise-section .section-heading,
  .write-section .section-heading,
  .buyers-section .section-heading {
    margin-bottom: 14px;
  }

  .advertise-section .section-heading p:not(.eyebrow),
  .write-section .section-heading p:not(.eyebrow),
  .buyers-section .section-heading p:not(.eyebrow) {
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .advertise-section .planner-layout {
    display: block;
  }

  .advertise-section .planner-board {
    display: flex;
    gap: 8px;
    margin: 12px -12px 14px;
    overflow-x: auto;
    padding: 0 12px 6px;
    scroll-snap-type: x proximity;
  }

  .advertise-section .planner-row {
    flex: 0 0 178px;
    min-height: 96px;
    scroll-snap-align: start;
  }

  .advertise-section .ad-grid,
  .write-section .ad-grid,
  .scroll-grid,
  .faq-grid {
    display: flex;
    gap: 10px;
    margin-inline: -12px;
    overflow-x: auto;
    padding: 0 12px 8px;
    scroll-snap-type: x proximity;
  }

  .advertise-section .ad-grid article,
  .write-section .ad-grid article,
  .scroll-grid article,
  .faq-grid article {
    flex: 0 0 min(78vw, 270px);
    min-height: 156px;
    overflow: visible;
    padding: 14px;
    scroll-snap-align: start;
  }

  .advertise-section .ad-grid article p,
  .write-section .ad-grid article p,
  .scroll-grid article p,
  .faq-grid article p {
    display: block;
    overflow: visible;
    font-size: 0.84rem;
    line-height: 1.42;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
  }

  .write-section .ad-grid a,
  .subscribe-actions .button.secondary,
  .contact-routes span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .buyer-grid {
    display: flex;
    gap: 9px;
    margin-inline: -12px;
    overflow-x: auto;
    padding: 0 12px 8px;
    scroll-snap-type: x proximity;
  }

  .buyer-grid a {
    flex: 0 0 min(48vw, 184px);
    min-height: 58px;
    padding: 11px 12px;
    scroll-snap-align: start;
    white-space: normal;
  }

  .category-disclosure summary {
    align-items: center;
    gap: 12px;
  }

  .subscribe-panel {
    gap: 14px;
    padding: 18px 16px;
  }

  .subscribe-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .subscribe-actions .button {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .subscribe-actions .button.secondary {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }
}

@media (max-width: 430px) {
  .advertise-section .ad-grid article,
  .write-section .ad-grid article,
  .scroll-grid article,
  .faq-grid article {
    flex-basis: min(82vw, 280px);
  }

  .buyer-grid a {
    flex-basis: min(58vw, 200px);
  }
}

/* Second-pass readability: wrap words instead of hiding them. */
.breadcrumbs span[aria-current="page"] {
  display: inline;
  max-width: 100%;
  overflow: visible;
  overflow-wrap: anywhere;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
}

.issue-rail .story-board {
  grid-template-rows: repeat(2, auto);
}

.issue-rail .story-board article {
  overflow: visible;
}

.issue-rail .story-board p,
.cover-story p,
.issue-shelf small,
.issue-feature-panel .page-lede {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;
}

@media (max-width: 760px) {
  .issue-rail .story-board {
    grid-auto-columns: 100%;
    grid-template-rows: 1fr;
    gap: 12px;
    padding: 2px 2px 8px;
  }

  .issue-rail .story-board article {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    overflow: hidden;
  }

  .issue-rail .article-thumb {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .issue-rail .story-board article:first-child .article-thumb {
    object-fit: contain;
    background: #eef2ec;
  }

  .issue-rail .story-board article > div {
    gap: 6px;
    padding: 12px 13px 14px;
  }

  .issue-rail .story-board h3 {
    font-size: 1rem;
    line-height: 1.24;
  }

  .issue-rail .story-board p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .current-issue-page .generated-list,
  .archive-page .issue-list,
  .archive-page .archive-year-grid,
  .buyers-page .utility-grid,
  .buyers-page .category-grid {
    display: flex;
    gap: 10px;
    grid-template-columns: none;
    margin-inline: -12px;
    overflow-x: auto;
    padding: 0 12px 8px;
    scroll-snap-type: x proximity;
  }

  .current-issue-page .generated-list article,
  .archive-page .issue-list article,
  .archive-page .archive-year-card,
  .buyers-page .utility-grid .utility-card,
  .buyers-page .category-grid a {
    flex: 0 0 min(82vw, 286px);
    scroll-snap-align: start;
  }

  .current-issue-page .generated-list article,
  .archive-page .issue-list article {
    min-height: 178px;
  }

  .buyers-page .utility-grid .utility-card {
    min-height: 132px;
  }

  .buyers-page .category-grid a {
    display: grid;
    flex-basis: min(44vw, 170px);
    min-height: 64px;
    align-content: center;
    padding: 10px 12px;
    font-size: 0.78rem;
  }

  .archive-page .archive-year-card {
    flex-basis: min(44vw, 170px);
  }
}

@media (max-width: 430px) {
  .current-issue-page .generated-list article,
  .archive-page .issue-list article,
  .buyers-page .utility-grid .utility-card {
    flex-basis: min(84vw, 270px);
  }

  .archive-page .archive-year-card,
  .buyers-page .category-grid a {
    flex-basis: min(47vw, 152px);
  }
}

/* 2026 premium editorial and publishing experience */
.skip-link {
  position: fixed;
  z-index: 300;
  top: 10px;
  left: 12px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 6px;
  background: #ffffff;
  color: var(--green-950);
  box-shadow: var(--shadow);
  font-weight: 900;
  transform: translateY(-160%);
  transition: transform 150ms ease;
}

.skip-link:focus {
  color: var(--green-950);
  transform: none;
}

@media (max-width: 1120px) {
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .site-header {
    z-index: 200;
  }

  .main-nav.is-open {
    z-index: 100;
    border-color: rgba(17, 23, 20, 0.16);
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(17, 23, 20, 0.22);
    backdrop-filter: none;
  }
}

.main-nav .nav-subscribe {
  border: 1px solid rgba(183, 131, 22, 0.42);
  background: #f2d77b;
  color: var(--green-950);
}

.main-nav .nav-subscribe:hover,
.main-nav .nav-subscribe.is-active,
.main-nav .nav-subscribe[aria-current="page"] {
  background: var(--green-950);
  color: #ffffff;
}

textarea:focus-visible {
  outline: 3px solid rgba(183, 131, 22, 0.72);
  outline-offset: 3px;
}

.publication-hero {
  min-height: clamp(590px, 74vh, 680px);
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(34px, 5vw, 72px);
  overflow: hidden;
  align-items: center;
  padding-block: clamp(46px, 6vh, 70px);
  background:
    linear-gradient(90deg, rgba(5, 25, 18, 0.97) 0%, rgba(5, 25, 18, 0.88) 48%, rgba(5, 25, 18, 0.56) 100%),
    url("/assets/assets/premium/mli-diagnostics-service-poster.jpg") center / cover no-repeat;
}

.publication-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(5, 25, 18, 0.34));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 420ms ease;
}

.publication-hero.has-active-video .hero-media video {
  opacity: 1;
}

.publication-hero .hero-copy {
  z-index: 1;
  max-width: 690px;
}

.publication-hero .hero-copy::before {
  width: 72px;
  height: 3px;
  margin-bottom: 20px;
  background: #f2d77b;
}

.publication-hero h1 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(3.35rem, 5.3vw, 4.7rem);
  line-height: 0.96;
}

.publication-hero .lede {
  max-width: 600px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  line-height: 1.52;
}

.publication-hero .hero-actions {
  margin-bottom: 24px;
}

.publication-hero .hero-subscribe-cta {
  min-height: 50px;
  border-color: #f2d77b !important;
  background: #f2d77b !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.publication-hero .hero-subscribe-cta::before,
.publication-hero .hero-subscribe-cta::after {
  display: none;
}

.publication-hero .quick-search {
  max-width: 620px;
  margin: 0 0 18px;
}

.publication-hero .quick-search > div {
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.publication-hero .quick-search input,
.publication-hero .quick-search button {
  min-height: 48px;
  border: 0;
  border-radius: 0;
}

.publication-hero .quick-search input {
  background: transparent;
}

.publication-hero .proof-strip {
  max-width: 620px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(5, 25, 18, 0.4);
  backdrop-filter: blur(12px);
}

.publication-hero .proof-strip div {
  min-height: 64px;
  background: rgba(5, 25, 18, 0.54);
}

.publication-hero .proof-strip dt {
  color: #f2d77b;
}

.publication-hero + .section {
  padding-top: 24px;
}

.publication-hero .proof-strip dd {
  color: rgba(255, 255, 255, 0.72);
}

.hero-edition {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 18px;
  background: rgba(5, 25, 18, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.hero-edition .hero-cover {
  width: 100%;
  max-width: 190px;
  padding: 7px;
  transform: none;
}

.hero-edition .hero-cover::after {
  inset: 6px;
}

.hero-edition .hero-cover > span {
  display: block;
  padding: 8px 4px 2px;
  color: var(--green-950);
  font-size: 0.66rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
}

.hero-edition-copy {
  display: grid;
  gap: 10px;
  align-content: center;
}

.hero-edition-copy > span {
  color: #f2d77b;
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-edition-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  line-height: 1.08;
}

.hero-edition-copy h2 a:hover {
  color: #f2d77b;
}

.hero-edition-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-edition-copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.hero-edition-copy > div a {
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(242, 215, 123, 0.6);
  text-underline-offset: 4px;
}

.generated-page {
  background: var(--canvas);
}

.page-shell {
  max-width: 1100px;
  border: 0;
  border-radius: 0;
  padding: 24px 0 52px;
  background: transparent;
  box-shadow: none;
}

.article-reading-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: rgba(17, 23, 20, 0.08);
}

.article-reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.is-article-page .generated-page {
  background: #ffffff;
}

.article-page-shell {
  max-width: 1140px;
  overflow: visible;
  padding: 32px 0 68px;
  background: transparent;
}

.article-page-shell::before,
.article-page-shell::after {
  display: none;
}

.article-page-shell > .eyebrow,
.article-page-shell > h1,
.article-page-shell > .article-meta-line,
.article-page-shell > .article-deck,
.article-page-shell > .article-utility-actions,
.article-page-shell > .article-reader-dock {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}

.article-page-shell > .eyebrow {
  margin-bottom: 14px;
}

.article-page-shell h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 4.7vw, 4.35rem);
  line-height: 1.01;
  text-wrap: balance;
}

.article-deck {
  margin-top: 18px;
  color: #35433d;
  font-size: 1.22rem;
  line-height: 1.58;
  text-wrap: pretty;
}

.article-utility-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 18px;
}

.article-utility-actions button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 11px;
  background: #ffffff;
  color: var(--green-950);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 900;
}

.article-utility-actions button:hover {
  border-color: var(--gold);
  background: var(--gold-100);
}

.article-utility-actions span {
  color: var(--green-650);
  font-size: 0.75rem;
  font-weight: 850;
}

.article-reader-dock {
  max-width: 920px;
  gap: 0;
  margin-top: 18px;
  margin-bottom: 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 8px 0;
  background: transparent;
  box-shadow: none;
}

.article-reader-dock a {
  min-height: 44px;
  border-radius: 6px;
}

.article-page-layout .page-body {
  max-width: 720px;
  margin-top: 46px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-page-shell .page-body > p:first-of-type {
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.72;
}

.article-page-shell .page-body p + p {
  margin-top: 1.16em;
}

.article-page-shell .page-body h2 {
  margin-top: 54px;
  border-top: 1px solid rgba(183, 131, 22, 0.28);
  padding-top: 26px;
  font-size: 1.8rem;
  line-height: 1.2;
  scroll-margin-top: 110px;
  text-wrap: balance;
}

.article-page-shell .page-body h3 {
  margin-top: 38px;
  font-size: 1.42rem;
  line-height: 1.28;
  scroll-margin-top: 110px;
  text-wrap: balance;
}

.article-page-shell .page-body h4,
.article-page-shell .page-body h5,
.article-page-shell .page-body h6 {
  margin-top: 30px;
  scroll-margin-top: 110px;
}

.article-page-shell .page-body ul,
.article-page-shell .page-body ol {
  margin-block: 24px;
  padding-left: 1.45rem;
}

.article-page-shell .page-body li {
  padding-left: 0.2rem;
}

.article-page-shell .page-body li + li {
  margin-top: 10px;
}

.article-page-shell .page-body li::marker {
  color: var(--green-650);
  font-weight: 900;
}

.article-page-shell .page-body li > ul,
.article-page-shell .page-body li > ol {
  margin-block: 10px 0;
}

.article-page-shell .page-body figure,
.article-page-shell .page-body .article-media {
  width: min(860px, calc(100vw - 40px));
  max-width: none;
  margin: 40px 0 40px 50%;
  border: 1px solid rgba(36, 79, 102, 0.13);
  border-radius: 6px;
  padding: clamp(10px, 2vw, 18px);
  background: #f7f9f7;
  transform: translateX(-50%);
}

.article-page-shell .page-body figure img,
.article-page-shell .page-body .article-media img {
  max-height: 760px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: none;
  object-fit: contain;
}

.article-page-shell .page-body figcaption {
  margin: 10px auto 0;
  color: #52615b;
  font-size: 0.87rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.page-body blockquote {
  margin: 38px 0;
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  background: var(--gold-100);
  color: var(--green-950);
  font-size: 1.1rem;
  font-weight: 720;
  line-height: 1.7;
}

.article-page-shell .page-body table {
  margin: 34px 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 23, 20, 0.06);
  scrollbar-color: rgba(23, 104, 76, 0.42) transparent;
}

.article-page-shell .page-body th {
  border-color: rgba(36, 79, 102, 0.16);
  background: #edf3ef;
  color: var(--green-950);
  font-weight: 900;
}

.article-page-shell .page-body td {
  border-color: rgba(36, 79, 102, 0.13);
}

.article-page-shell .page-body tr:nth-child(even) td {
  background: #fafbf9;
}

.article-page-shell .page-body .author-info {
  margin-top: 52px;
  border-top: 2px solid var(--green-950);
  padding: 22px 0 0;
  color: #52615b;
  font-size: 0.96rem;
  line-height: 1.65;
}

.page-body pre,
.page-body code {
  overflow-wrap: anywhere;
}

.page-body pre {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  background: #101914;
  color: #f4f6f2;
}

.page-body video,
.page-body iframe {
  display: block;
  width: 100%;
  max-width: 860px;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 28px auto;
  border: 0;
  border-radius: 6px;
  background: #0b120e;
}

.article-continue {
  max-width: 980px;
  margin-top: 58px;
  padding-top: 32px;
}

.article-continue-grid a {
  min-height: 170px;
  overflow: hidden;
  padding: 18px;
}

.article-continue-grid a.has-media {
  grid-template-rows: 118px auto auto;
  padding: 0 0 16px;
}

.article-continue-grid a.has-media img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.article-continue-grid a.has-media span,
.article-continue-grid a.has-media strong {
  margin-inline: 16px;
}

.generated-list article.has-media {
  gap: 0;
  padding: 0;
}

.generated-list article.has-media::before {
  z-index: 2;
}

.generated-list-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 8.5;
  background: var(--canvas-2);
}

.generated-list-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.generated-list article.has-media:hover .generated-list-media img {
  transform: scale(1.025);
}

.generated-list article.has-media > div {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.admin-studio {
  gap: 12px;
}

body:has(.admin-studio) .generated-page {
  padding-top: 34px;
}

body:has(.admin-studio) .page-shell {
  max-width: 1180px;
  padding-top: 14px;
}

.admin-command-bar {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #ffffff;
}

.admin-command-status {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
}

.admin-status-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(183, 131, 22, 0.13);
}

.admin-studio.is-ready .admin-status-dot {
  background: var(--green-650);
  box-shadow: 0 0 0 5px rgba(23, 104, 76, 0.12);
}

.admin-command-status span:not(.admin-status-dot),
.admin-access-copy > strong {
  display: block;
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-command-status strong {
  display: block;
  margin-top: 2px;
  color: var(--green-950);
  font-size: 0.98rem;
  line-height: 1.3;
}

.admin-publish-panel {
  grid-template-columns: minmax(180px, 0.65fr) minmax(250px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  padding: 12px 14px;
  border-radius: 8px;
  background: #ffffff;
}

.admin-access-copy p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.admin-publish-status {
  min-width: 0;
  overflow-wrap: anywhere;
}

.admin-tabs {
  position: sticky;
  z-index: 20;
  top: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  border-radius: 8px;
  padding: 5px;
  box-shadow: 0 12px 28px rgba(17, 23, 20, 0.08);
  scrollbar-width: thin;
}

.admin-tabs button {
  flex: 1 0 auto;
  border-radius: 6px;
}

.admin-workflow-disclosure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.admin-workflow-disclosure > summary {
  position: relative;
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 42px 10px 14px;
  color: var(--green-950);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 950;
  list-style: none;
}

.admin-workflow-disclosure > summary::-webkit-details-marker {
  display: none;
}

.admin-workflow-disclosure > summary::after {
  position: absolute;
  right: 16px;
  width: 9px;
  height: 9px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.admin-workflow-disclosure[open] > summary::after {
  transform: rotate(225deg);
}

.admin-workflow-disclosure > summary small {
  color: var(--muted);
  font-size: 0.75rem;
}

.admin-workflow-panel {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.admin-panel {
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
}

.admin-panel-heading {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.admin-editor-metrics {
  display: block;
  margin-top: 6px;
  color: var(--steel);
  font-size: 0.74rem;
  font-weight: 850;
}

.admin-editor-actions {
  position: sticky;
  z-index: 14;
  bottom: 12px;
  align-items: center;
  border: 1px solid rgba(17, 23, 20, 0.14);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(17, 23, 20, 0.13);
  backdrop-filter: blur(14px);
}

.admin-editor-actions .button {
  min-height: 40px;
}

.admin-body-editor {
  min-height: 360px;
  padding: 16px;
  background: #ffffff;
  font-size: 1rem;
  line-height: 1.65;
}

.admin-format-panel,
.admin-issue-builder {
  background: #fbfaf6;
}

@media (min-width: 1121px) and (max-height: 820px) {
  .publication-hero {
    min-height: calc(100svh - 185px);
    padding-block: 22px;
  }

  .publication-hero .hero-copy::before {
    margin-bottom: 14px;
  }

  .publication-hero h1 {
    margin-bottom: 12px;
    font-size: clamp(3.1rem, 4.8vw, 4.3rem);
  }

  .publication-hero .lede,
  .publication-hero .hero-actions {
    margin-bottom: 16px;
  }

  .publication-hero .quick-search {
    margin-bottom: 14px;
  }
}

@media (min-width: 761px) and (max-width: 900px) {
  .publication-hero .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 420px;
  }

  .publication-hero .hero-actions .button {
    width: 100%;
  }

  .publication-hero .hero-subscribe-cta {
    min-width: 0;
    grid-column: auto;
  }
}

@media (max-width: 1120px) {
  .publication-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 28px;
  }

  .hero-edition {
    grid-template-columns: 126px minmax(0, 1fr);
    padding: 14px;
  }

  .hero-edition .hero-cover {
    max-width: 126px;
  }

  .admin-publish-panel {
    grid-template-columns: minmax(180px, 0.7fr) minmax(240px, 1fr) auto;
  }

  .admin-publish-status {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .advertise-section .planner-board,
  .advertise-section .ad-grid,
  .write-section .ad-grid,
  .scroll-grid,
  .faq-grid,
  .buyer-grid,
  .current-issue-page .generated-list,
  .archive-page .issue-list,
  .archive-page .archive-year-grid,
  .buyers-page .utility-grid,
  .buyers-page .category-grid,
  .article-continue-grid {
    overflow-y: hidden;
    scrollbar-width: none;
  }

  .advertise-section .planner-board::-webkit-scrollbar,
  .advertise-section .ad-grid::-webkit-scrollbar,
  .write-section .ad-grid::-webkit-scrollbar,
  .scroll-grid::-webkit-scrollbar,
  .faq-grid::-webkit-scrollbar,
  .buyer-grid::-webkit-scrollbar,
  .current-issue-page .generated-list::-webkit-scrollbar,
  .archive-page .issue-list::-webkit-scrollbar,
  .archive-page .archive-year-grid::-webkit-scrollbar,
  .buyers-page .utility-grid::-webkit-scrollbar,
  .buyers-page .category-grid::-webkit-scrollbar,
  .article-continue-grid::-webkit-scrollbar {
    display: none;
  }

  .publication-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 34px 14px 30px;
    background-position: 60% center;
  }

  .publication-hero::before {
    background: rgba(5, 25, 18, 0.76);
  }

  .hero-media video {
    display: none;
  }

  .hero-edition {
    display: none;
  }

  .publication-hero .hero-copy::before {
    width: 54px;
    margin-bottom: 14px;
  }

  .publication-hero h1 {
    margin-bottom: 10px;
    font-size: clamp(2.45rem, 12vw, 3.2rem);
    line-height: 0.98;
  }

  .publication-hero .lede {
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.48;
  }

  .publication-hero .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
  }

  .publication-hero .hero-actions .button {
    min-height: 44px;
  }

  .publication-hero .hero-actions .button.primary {
    grid-column: auto;
  }

  .publication-hero .hero-subscribe-cta {
    min-width: 0;
    grid-column: auto;
  }

  .publication-hero .quick-search > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0;
  }

  .publication-hero .quick-search button {
    border-top: 0;
    border-left: 1px solid rgba(5, 25, 18, 0.14);
    padding-inline: 12px;
    font-size: 0.76rem;
  }

  .quick-search-preview {
    max-height: min(470px, 58vh);
    padding: 13px;
  }

  .quick-search-related {
    grid-template-columns: 1fr;
  }

  .quick-search-related article {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 8px;
  }

  .quick-search-related article span,
  .quick-search-related article a {
    grid-column: 1;
  }

  .quick-search-related article small {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    text-align: right;
  }

  .publication-hero .proof-strip div {
    min-height: 56px;
    padding: 10px 8px;
  }

  .page-shell,
  .article-page-shell {
    padding: 14px 0 40px;
  }

  .article-page-shell h1 {
    font-size: clamp(2.05rem, 9.5vw, 2.85rem);
    line-height: 1.04;
  }

  .article-deck {
    margin-top: 14px;
    font-size: 1.05rem;
    line-height: 1.52;
  }

  .article-reader-dock {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
    overflow: visible;
    padding-block: 7px;
  }

  .article-reader-dock::-webkit-scrollbar,
  .article-continue-grid::-webkit-scrollbar,
  .admin-tabs::-webkit-scrollbar {
    display: none;
  }

  .article-reader-dock a {
    min-width: 0;
    padding-inline: 8px;
  }

  .article-page-layout .page-body {
    margin-top: 28px;
    font-size: 1.02rem;
    line-height: 1.74;
  }

  .article-page-shell .page-body > p:first-of-type {
    font-size: 1.08rem;
    line-height: 1.7;
  }

  .article-page-shell .page-body h2 {
    margin-top: 42px;
    padding-top: 20px;
    font-size: 1.5rem;
  }

  .article-page-shell .page-body h3 {
    margin-top: 32px;
    font-size: 1.28rem;
  }

  .article-page-shell .page-body ul,
  .article-page-shell .page-body ol {
    margin-block: 20px;
    padding-left: 1.3rem;
  }

  .article-page-shell .page-body li + li {
    margin-top: 8px;
  }

  .article-page-shell .page-body figure,
  .article-page-shell .page-body .article-media {
    width: 100%;
    margin: 30px 0;
    padding: 10px;
    transform: none;
  }

  .article-page-shell .page-body figcaption {
    font-size: 0.82rem;
  }

  .article-page-shell .page-body table {
    margin-block: 28px;
  }

  .article-continue-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }

  .article-continue-grid a {
    flex: 0 0 min(82vw, 290px);
    scroll-snap-align: start;
  }

  .generated-list article.has-media > div {
    padding: 14px;
  }

  body:has(.admin-studio) .generated-page {
    padding-top: 18px;
  }

  .admin-command-bar {
    align-items: flex-start;
    padding: 11px;
  }

  .admin-command-bar .button {
    min-height: 38px;
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .admin-command-status strong {
    font-size: 0.86rem;
  }

  .admin-publish-panel {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .admin-publish-panel .admin-action-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-tabs {
    top: 8px;
    margin-inline: -2px;
    overflow: hidden;
    scrollbar-width: none;
  }

  .admin-tabs button {
    flex: 1 1 0;
    min-width: 0;
    min-height: 46px;
    padding: 5px 4px;
    font-size: 0.7rem;
    line-height: 1.08;
    overflow-wrap: anywhere;
    text-align: center;
    white-space: normal;
  }

  .admin-workflow-disclosure > summary {
    display: grid;
    gap: 2px;
  }

  .admin-panel {
    padding: 15px;
  }

  .admin-panel-heading {
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .admin-panel-heading h2 {
    font-size: 1.3rem;
  }

  .admin-body-editor {
    min-height: 330px;
    padding: 13px;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .admin-editor-actions {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 12px;
    padding: 8px;
    backdrop-filter: none;
  }

  .admin-editor-actions .button {
    width: 100%;
    min-height: 42px;
    white-space: normal;
  }

  .admin-helper-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-helper-buttons .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .publication-hero {
    padding-inline: 12px;
  }

  .publication-hero h1 {
    font-size: 2.42rem;
  }

  .publication-hero .proof-strip dd {
    font-size: 0.61rem;
  }

  .article-utility-actions button {
    flex: 1 1 120px;
  }

  .admin-command-bar {
    display: grid;
  }

  .admin-command-bar .button {
    width: 100%;
  }

  .admin-publish-panel .admin-action-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 350px) {
  .admin-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-tabs button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media video {
    display: none;
  }
}

.article-page-layout.has-outline {
  max-width: 980px;
  margin-inline: auto;
}

.article-page-layout.has-outline .article-reading-layout {
  display: grid;
  grid-template-columns: minmax(170px, 200px) minmax(0, 720px);
  gap: 0 54px;
  align-items: start;
}

.article-page-layout.has-outline .page-body {
  grid-column: 2;
  margin: 46px 0 0;
}

.article-outline {
  position: sticky;
  top: var(--sticky-scroll-offset);
  grid-column: 1;
  grid-row: 1;
  margin-top: 46px;
}

.article-outline details {
  border-top: 2px solid var(--green-950);
  border-bottom: 1px solid var(--line);
}

.article-outline summary {
  display: grid;
  gap: 2px;
  padding: 13px 0;
  color: var(--green-950);
  cursor: pointer;
  list-style: none;
}

.article-outline summary::-webkit-details-marker {
  display: none;
}

.article-outline summary span {
  font-size: 0.82rem;
  font-weight: 950;
}

.article-outline summary small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
}

.article-outline ol {
  display: grid;
  gap: 1px;
  max-height: min(62vh, 560px);
  overflow-y: auto;
  margin: 0;
  padding: 0 0 13px;
  list-style: none;
  scrollbar-width: thin;
}

.article-outline li {
  min-width: 0;
}

.article-outline li.is-subsection {
  padding-left: 12px;
}

.article-outline a {
  display: block;
  border-left: 2px solid transparent;
  padding: 7px 8px;
  color: #4c5a54;
  font-size: 0.76rem;
  font-weight: 780;
  line-height: 1.35;
  text-decoration: none;
}

.article-outline a:hover,
.article-outline a:focus-visible {
  border-left-color: var(--gold);
  color: var(--green-950);
  background: var(--gold-100);
}

.admin-access-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-access-heading > strong {
  color: var(--steel);
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
}

.admin-connection-badge {
  display: inline-flex;
  min-height: 24px;
  flex: 0 0 auto;
  align-items: center;
  border: 1px solid rgba(159, 45, 32, 0.2);
  border-radius: 999px;
  padding: 3px 8px;
  color: #8b2b20;
  background: #fff4f1;
  font-size: 0.64rem;
  font-weight: 950;
  white-space: nowrap;
  text-transform: uppercase;
}

.admin-studio[data-admin-connection="unlocked"] .admin-connection-badge,
.admin-studio[data-admin-connection="verified"] .admin-connection-badge {
  border-color: rgba(23, 104, 76, 0.24);
  color: var(--green-650);
  background: #edf7f1;
}

.admin-publish-workspace {
  padding: 0;
}

.admin-publish-workspace > .admin-panel-heading {
  margin: 0;
  padding: 24px;
}

.admin-draft-status {
  max-width: 280px;
  margin: 3px 0 0;
  color: var(--steel);
  font-size: 0.76rem;
  font-weight: 780;
  line-height: 1.4;
  text-align: right;
}

.admin-publish-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #f7f9f7;
}

.admin-publish-progress > span {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--line);
  color: #66736d;
  font-size: 0.76rem;
  font-weight: 900;
}

.admin-publish-progress > span:last-child {
  border-right: 0;
}

.admin-publish-progress b {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid #aab4af;
  border-radius: 50%;
  font-size: 0.68rem;
}

.admin-publish-progress > span.is-complete {
  color: var(--green-950);
  background: #edf7f1;
}

.admin-publish-progress > span.is-complete b {
  border-color: var(--green-650);
  color: #ffffff;
  background: var(--green-650);
}

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

.admin-compose-main {
  min-width: 0;
}

.admin-compose-section {
  padding: 30px 30px 34px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--sticky-scroll-offset) + 60px);
}

.admin-compose-section:last-child {
  border-bottom: 0;
}

.admin-compose-heading {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 20px;
}

.admin-compose-heading > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green-950);
  font-size: 0.76rem;
  font-weight: 950;
}

.admin-compose-heading h3 {
  margin: 1px 0 4px;
  color: var(--green-950);
  font-size: 1.18rem;
  line-height: 1.2;
}

.admin-compose-heading p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.5;
}

.admin-selection-note {
  margin: 8px 0 0;
  color: var(--green-650);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.45;
}

.admin-summary-field .field-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-summary-field .field-hint button {
  border: 0;
  padding: 0;
  color: var(--green-650);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.admin-article-settings,
.admin-inline-media {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.admin-article-settings summary,
.admin-inline-media summary {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 14px 32px 14px 0;
  color: var(--green-950);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 950;
  list-style: none;
}

.admin-article-settings summary::-webkit-details-marker,
.admin-inline-media summary::-webkit-details-marker {
  display: none;
}

.admin-article-settings summary::after,
.admin-inline-media summary::after {
  position: absolute;
  top: 17px;
  right: 4px;
  width: 8px;
  height: 8px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.admin-article-settings[open] summary::after,
.admin-inline-media[open] summary::after {
  top: 21px;
  transform: rotate(225deg);
}

.admin-article-settings > .field {
  padding: 4px 0 16px;
}

.admin-inline-media summary small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 720;
}

.admin-inline-media-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 4px 0 18px;
}

.admin-inline-media-fields .admin-action-row {
  align-items: center;
}

.admin-inline-media-fields .field-hint {
  max-width: 440px;
}

.admin-publish-workspace .admin-format-panel {
  grid-template-columns: minmax(0, 1fr);
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 0 0;
  background: transparent;
}

.admin-publish-workspace .admin-helper-buttons {
  justify-content: flex-start;
}

.admin-publish-workspace .admin-body-editor {
  min-height: 430px;
}

.admin-review-section .admin-editor-actions {
  position: static;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.admin-preview-shell[data-admin-add-preview-shell] {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.admin-preview-shell[data-admin-add-preview-shell].is-stale {
  border-color: rgba(183, 131, 22, 0.58);
}

.admin-preview-heading {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 10px 14px;
}

.admin-preview-heading strong {
  color: var(--green-950);
  font-size: 0.82rem;
}

.admin-preview-heading span {
  color: var(--green-650);
  font-size: 0.7rem;
  font-weight: 900;
}

.admin-preview-heading span.is-stale {
  color: #8c5c00;
}

.admin-publish-workspace .admin-preview {
  padding: 22px;
}

.admin-publish-result {
  display: grid;
  justify-items: start;
  gap: 8px;
  margin-top: 20px;
  border-left: 4px solid var(--green-650);
  padding: 16px 18px;
  background: #edf7f1;
}

.admin-publish-result h3,
.admin-publish-result p {
  margin: 0;
}

.admin-publish-result h3 {
  color: var(--green-950);
  font-size: 1rem;
}

.admin-publish-result p {
  color: #405048;
  font-size: 0.84rem;
  line-height: 1.5;
}

.admin-readiness-panel {
  position: sticky;
  top: calc(var(--sticky-scroll-offset) + 8px);
  display: grid;
  gap: 11px;
  margin: 30px 24px 30px 0;
  border-left: 2px solid var(--green-950);
  padding: 4px 0 4px 18px;
}

.admin-readiness-panel .eyebrow {
  margin: 0;
}

.admin-readiness-panel h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 1.05rem;
  line-height: 1.25;
}

.admin-readiness-panel ul {
  display: grid;
  gap: 8px;
  margin: 2px 0;
  padding: 0;
  list-style: none;
}

.admin-readiness-panel li {
  position: relative;
  min-height: 20px;
  padding-left: 22px;
  color: #6a756f;
  font-size: 0.77rem;
  font-weight: 820;
  line-height: 1.35;
}

.admin-readiness-panel li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 11px;
  height: 11px;
  content: "";
  border: 2px solid #aeb8b3;
  border-radius: 50%;
  background: #ffffff;
}

.admin-readiness-panel li.is-complete {
  color: var(--green-950);
}

.admin-readiness-panel li.is-complete::before {
  border-color: var(--green-650);
  background: var(--green-650);
  box-shadow: inset 0 0 0 2px #ffffff;
}

.admin-readiness-panel > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 720;
  line-height: 1.45;
}

.admin-readiness-panel .button {
  width: max-content;
  min-height: 34px;
  padding-inline: 10px;
  font-size: 0.7rem;
}

.admin-publish-workspace button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

@media (max-width: 980px) {
  .article-page-layout.has-outline {
    max-width: 720px;
  }

  .article-page-layout.has-outline .article-reading-layout {
    display: block;
  }

  .article-page-layout.has-outline .page-body {
    margin: 28px auto 0;
  }

  .article-outline {
    position: static;
    margin-top: 28px;
  }

  .article-outline ol {
    max-height: 310px;
  }

  .admin-compose-layout {
    grid-template-columns: minmax(0, 1fr) 230px;
  }

  .admin-compose-section {
    padding-inline: 22px;
  }
}

@media (max-width: 900px) {
  .admin-compose-layout {
    grid-template-columns: 1fr;
  }

  .admin-readiness-panel {
    position: static;
    margin: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 22px;
  }

  .admin-readiness-panel ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .article-page-layout.has-outline .page-body {
    margin-top: 22px;
  }

  .article-outline {
    margin-top: 22px;
  }

  .article-outline details {
    border-top-width: 1px;
  }

  .article-outline summary {
    position: relative;
    padding-right: 28px;
  }

  .article-outline summary::after {
    position: absolute;
    top: 18px;
    right: 3px;
    width: 8px;
    height: 8px;
    content: "";
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
  }

  .article-outline details[open] summary::after {
    top: 22px;
    transform: rotate(225deg);
  }

  .article-outline a {
    min-height: 38px;
    padding-block: 9px;
  }

  .admin-publish-workspace > .admin-panel-heading {
    padding: 18px 15px;
  }

  .admin-publish-workspace > .admin-panel-heading,
  .admin-compose-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .admin-draft-status {
    max-width: none;
    text-align: left;
  }

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

  .admin-publish-progress > span:nth-child(2) {
    border-right: 0;
  }

  .admin-publish-progress > span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .admin-compose-section {
    padding: 24px 15px 28px;
  }

  .admin-compose-heading {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 9px;
    margin-bottom: 16px;
  }

  .admin-compose-heading > span {
    width: 26px;
    height: 26px;
  }

  .admin-compose-heading h3 {
    font-size: 1.08rem;
  }

  .admin-compose-heading p {
    font-size: 0.8rem;
  }

  .admin-summary-field .field-hint {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .admin-inline-media-fields {
    grid-template-columns: 1fr;
  }

  .admin-publish-workspace .admin-body-editor {
    min-height: 390px;
  }

  .admin-review-section .admin-editor-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-readiness-panel {
    position: static;
    order: 2;
    margin: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 22px 15px 24px;
  }

  .admin-readiness-panel ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-publish-workspace .admin-preview {
    padding: 15px;
  }
}

@media (max-width: 350px) {
  .admin-review-section .admin-editor-actions,
  .admin-readiness-panel ul {
    grid-template-columns: 1fr;
  }
}

/* Homepage feedback pass: clearer issue rails, archive covers, contact routes and training feature. */
.issue-desk {
  grid-template-columns: minmax(310px, 0.54fr) minmax(0, 1.46fr);
  gap: 18px;
  align-items: stretch;
}

.cover-story {
  display: grid;
  min-height: 0;
  aspect-ratio: auto;
  align-content: stretch;
  grid-template-rows: minmax(250px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(8, 37, 27, 0.14);
  padding: 0;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(17, 23, 20, 0.1);
}

.cover-story-media {
  display: grid;
  min-height: 250px;
  place-items: center;
  border-bottom: 1px solid rgba(8, 37, 27, 0.11);
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(8, 37, 27, 0.98), rgba(22, 70, 53, 0.92)),
    var(--green-950);
}

.cover-story-media img {
  width: auto;
  max-width: 100%;
  height: 248px;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}

.cover-story-copy {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
  padding: 18px 20px 20px;
}

.cover-story .story-label {
  margin: 0;
  color: var(--green-950);
  background: var(--gold-100);
}

.cover-story h3 {
  max-width: none;
  margin: 0;
  color: var(--green-950);
  font-size: 1.34rem;
  line-height: 1.16;
}

.cover-story p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.cover-story-copy > a {
  width: max-content;
  margin-top: 3px;
  border-bottom: 1px solid var(--gold);
  color: var(--green-950);
  font-weight: 950;
}

.issue-rail .story-board {
  grid-auto-columns: calc((100% - 12px) / 2);
  grid-template-rows: minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
  padding: 2px 2px 8px;
}

.issue-rail .story-board article {
  min-height: 0;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #ffffff;
}

.issue-rail .article-thumb {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #eef2ec;
}

.issue-rail .story-board article:first-child .article-thumb {
  object-fit: contain;
  padding: 10px;
}

.issue-rail .story-board article > div {
  gap: 7px;
  padding: 14px 15px 16px;
}

.issue-rail .story-board h3 {
  font-size: 1rem;
  line-height: 1.22;
}

.issue-rail .story-board p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.8rem;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.archive-system {
  grid-template-columns: minmax(240px, 0.3fr) minmax(0, 1fr);
  gap: 18px;
}

.issue-shelf {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.issue-shelf article,
.issue-shelf article:first-child {
  display: grid;
  min-width: 0;
  min-height: 0;
  align-content: stretch;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
}

.issue-shelf-cover {
  display: grid;
  min-height: 196px;
  place-items: center;
  border-bottom: 1px solid rgba(8, 37, 27, 0.1);
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(231, 240, 233, 0.86), rgba(247, 248, 245, 0.98)),
    var(--panel-2);
}

.issue-shelf img,
.issue-shelf article:first-child img {
  width: auto;
  max-width: 100%;
  height: 170px;
  max-height: 170px;
  object-fit: contain;
  border-radius: 3px;
  background: transparent;
  box-shadow: 0 12px 26px rgba(17, 23, 20, 0.16);
}

.issue-shelf-copy {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
  padding: 14px;
}

.issue-shelf strong {
  font-size: 0.98rem;
  line-height: 1.22;
}

.issue-shelf small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.li-feature-section {
  padding-block: 0;
  background: #08251b;
}

.li-feature {
  display: grid;
  min-height: 370px;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  color: #ffffff;
  background: #08251b;
  text-decoration: none !important;
}

.li-feature-media {
  position: relative;
  display: block;
  min-height: 370px;
  overflow: hidden;
}

.li-feature-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 37, 27, 0.08), rgba(8, 37, 27, 0.48));
}

.li-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 320ms ease;
}

.li-feature:hover .li-feature-media img {
  transform: scale(1.025);
}

.li-feature-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 13px;
  padding: clamp(30px, 4.5vw, 58px);
  background:
    linear-gradient(135deg, rgba(16, 58, 43, 0.98), rgba(8, 37, 27, 1)),
    var(--green-950);
}

.li-feature-kicker {
  color: #f2d77b;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.li-feature-logo {
  width: min(300px, 100%);
  height: 72px;
  object-fit: contain;
  object-position: left center;
  border-radius: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.96);
}

.li-feature-copy > strong {
  max-width: 580px;
  color: #ffffff;
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  line-height: 1.05;
}

.li-feature-description {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.52;
}

.li-feature-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 3px;
  border: 1px solid rgba(242, 215, 123, 0.58);
  border-radius: 6px;
  padding: 0 15px;
  color: var(--green-950);
  background: #f2d77b;
  font-size: 0.82rem;
  font-weight: 950;
}

.li-feature:hover .li-feature-action {
  background: #ffffff;
}

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

.contact-routes .contact-route {
  position: relative;
  min-height: 138px;
  align-content: start;
  gap: 7px;
  padding: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, var(--panel-2));
}

.contact-route-label {
  color: var(--steel) !important;
  font-size: 0.68rem !important;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-route strong {
  color: var(--green-950);
  font-size: 1rem;
  line-height: 1.22;
}

.contact-route small,
.contact-card-page small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.contact-route-whatsapp img,
.contact-card-whatsapp img {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
}

.contact-route-enquiry {
  border-color: rgba(183, 131, 22, 0.34) !important;
  background: linear-gradient(180deg, #fffdf5, #fbf5df) !important;
}

.contact-card-page {
  position: relative;
  align-content: start;
}

.quick-search-preview h3 {
  text-wrap: balance;
}

@media (max-width: 1120px) {
  .issue-desk {
    grid-template-columns: 1fr;
  }

  .cover-story {
    grid-template-columns: minmax(170px, 0.36fr) minmax(0, 1fr);
    grid-template-rows: 1fr;
  }

  .cover-story-media {
    border-right: 1px solid rgba(8, 37, 27, 0.11);
    border-bottom: 0;
  }

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

@media (max-width: 760px) {
  .cover-story {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .cover-story-media {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 37, 27, 0.11);
    padding: 16px;
  }

  .cover-story-media img {
    height: 196px;
  }

  .cover-story-copy {
    padding: 15px 16px 17px;
  }

  .cover-story h3 {
    font-size: 1.18rem;
  }

  .issue-rail .story-board {
    grid-auto-columns: 88%;
    grid-template-rows: minmax(0, 1fr);
  }

  .issue-rail .story-board article {
    min-height: 0;
  }

  .issue-rail .story-board p {
    -webkit-line-clamp: 3;
  }

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

  .issue-shelf {
    display: flex;
    gap: 10px;
    margin-inline: -14px;
    overflow-x: auto;
    padding: 0 14px 8px;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
  }

  .issue-shelf article,
  .issue-shelf article:first-child {
    flex: 0 0 min(76vw, 255px);
    scroll-snap-align: start;
  }

  .issue-shelf-cover {
    min-height: 190px;
  }

  .issue-shelf img,
  .issue-shelf article:first-child img {
    height: 165px;
    max-height: 165px;
  }

  .li-feature-section {
    padding-inline: 0;
  }

  .li-feature {
    grid-template-columns: 1fr;
  }

  .li-feature-media {
    min-height: 230px;
  }

  .li-feature-copy {
    gap: 11px;
    padding: 28px 18px 34px;
  }

  .li-feature-logo {
    width: min(270px, 100%);
    height: 64px;
  }

  .li-feature-copy > strong {
    font-size: 1.7rem;
  }

  .li-feature-description {
    font-size: 0.9rem;
  }

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

  .contact-routes .contact-route {
    min-height: 126px;
    padding: 14px;
  }

  .contact-route strong {
    font-size: 0.9rem;
  }

  .contact-route-whatsapp img,
  .contact-card-whatsapp img {
    top: 13px;
    right: 13px;
    width: 22px;
    height: 22px;
  }

  /* Keep mobile controls comfortable to read and tap, including on iOS. */
  input,
  select,
  textarea {
    font-size: 1rem;
  }

  button,
  .button,
  .menu-toggle,
  .archive-jump select,
  .library-tools input,
  .library-tools select,
  .field input,
  .field select {
    min-height: 44px;
  }

  .library-tools input,
  .library-tools select,
  .field input,
  .field select,
  .field textarea {
    font-size: 1rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .year-chip {
    min-width: 44px;
    min-height: 44px;
    padding-inline: 7px;
    font-size: 0.76rem;
  }

  .contact-action-buttons .button,
  .subscribe-actions .button,
  .admin-command-bar .button,
  .admin-helper-buttons .button,
  .admin-editor-actions .button,
  .admin-readiness-panel .button {
    min-height: 44px;
    font-size: 0.8rem;
  }

  .subscribe-actions .button {
    min-height: 46px;
  }

  .admin-tabs button {
    font-size: 0.76rem;
  }
}

@media (max-width: 360px) {
  .contact-routes {
    grid-template-columns: 1fr;
  }

  .contact-routes .contact-route {
    min-height: 108px;
  }
}

@media print {
  .site-header,
  .breadcrumbs,
  .article-outline,
  .article-reader-dock,
  .article-utility-actions,
  .article-reading-progress,
  .article-continue,
  .site-footer,
  .subscribe-modal {
    display: none !important;
  }

  .generated-page,
  .article-page-shell,
  .article-page-layout .page-body {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: #ffffff;
  }
}
