:root {
  --ink: #0b0b0d;
  --black: #020203;
  --paper: #fff9f8;
  --blush: #f7e4ea;
  --blush-strong: #f1c5d2;
  --rose: #e9698c;
  --rose-dark: #bc365e;
  --muted: #797279;
  --line: rgba(11, 11, 13, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);
  --max: 1180px;
  --header-h: 102px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-h);
  padding: 18px clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 14px solid var(--black);
  backdrop-filter: blur(16px);
}

.brand-mark {
  justify-self: center;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.15rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-header > .brand-mark:first-child {
  grid-column: 2;
}

.header-feature {
  justify-self: end;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--rose);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  z-index: 35;
  top: var(--header-h);
  left: 0;
  display: grid;
  width: min(360px, 100vw);
  padding: 28px clamp(20px, 5vw, 44px) 36px;
  color: #fff;
  background: var(--black);
  box-shadow: 20px 30px 80px rgba(0, 0, 0, 0.24);
  transform: translateX(-105%);
  transition: transform 220ms ease;
}

.site-nav.is-open {
  transform: translateX(0);
}

.site-nav a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3.4vw, 36px) 20px clamp(36px, 5vw, 58px);
  background: var(--blush);
}

.hero-stage {
  display: grid;
  justify-items: center;
  gap: clamp(14px, 2vw, 22px);
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-image-stack {
  position: relative;
  width: min(700px, 86vw);
  height: clamp(300px, 42svh, 420px);
}

.hero-image-stack::before,
.hero-image-stack::after {
  position: absolute;
  z-index: 0;
  content: "";
  border-radius: 8px;
}

.hero-image-stack::before {
  right: 4%;
  bottom: 4%;
  width: 72%;
  height: 70%;
  background: rgba(11, 11, 13, 0.14);
}

.hero-image-stack::after {
  left: 2%;
  top: 16%;
  width: 38%;
  height: 58%;
  background: rgba(255, 255, 255, 0.48);
}

.hero-image {
  position: absolute;
  z-index: 1;
  top: 8%;
  width: 48%;
  height: 74%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 14px 16px 0 rgba(11, 11, 13, 0.16);
}

.hero-image-main {
  z-index: 2;
  top: 0;
  left: 9%;
  width: 82%;
  height: 90%;
  box-shadow: 16px 18px 0 rgba(11, 11, 13, 0.2);
}

.hero-image-left {
  left: 4%;
  transform: translateY(18px) rotate(-2deg);
}

.hero-image-right {
  right: 4%;
  transform: translateY(18px) rotate(2deg);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin-top: 0;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto 16px;
}

.hero-checks span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  color: var(--rose-dark);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(11, 11, 13, 0.12);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-label,
.section-heading p {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin: 0 auto 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.48rem, 2.9vw, 2.42rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-copy p:not(.section-label) {
  max-width: 540px;
  margin: 0 auto 16px;
  color: rgba(11, 11, 13, 0.7);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0;
}

.hero-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--ink);
  border: 1px solid rgba(11, 11, 13, 0.22);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-action-primary {
  color: #fff;
  background: var(--black);
  border-color: var(--black);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--rose-dark);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
}

.slider-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 2px;
}

.slider-dots span {
  width: 7px;
  height: 7px;
  border: 1px solid rgba(11, 11, 13, 0.24);
  border-radius: 50%;
}

.slider-dots .active {
  background: var(--rose);
  border-color: var(--rose);
}

.editorial-band {
  overflow: hidden;
  padding: clamp(34px, 6vw, 64px) 0 clamp(54px, 8vw, 92px);
  color: #fff;
  background: var(--black);
}

.section-heading {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading h2,
.publish-copy h2,
.article-page h1,
.admin-hero h1 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.78rem, 3.35vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.editorial-band .section-heading h2 {
  color: rgba(255, 255, 255, 0.12);
}

.feature-row {
  display: flex;
  gap: clamp(18px, 2.8vw, 26px);
  width: 100%;
  margin: 0 0 34px;
  padding: 0 max(18px, calc((100vw - var(--max)) / 2)) 12px;
  overflow-x: auto;
  scroll-padding-left: max(18px, calc((100vw - var(--max)) / 2));
  scroll-snap-type: x proximity;
  scrollbar-color: var(--rose) rgba(255, 255, 255, 0.18);
  scrollbar-width: thin;
}

.feature-tile {
  flex: 0 0 clamp(220px, 24vw, 310px);
  min-width: 0;
  scroll-snap-align: start;
}

.feature-tile-large {
  flex-basis: clamp(320px, 40vw, 560px);
}

.feature-tile a {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.feature-tile img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-tile-large img {
  aspect-ratio: 16 / 11;
}

.feature-tile span,
.article-meta span {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-tile h3 {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.15;
}

.more-button {
  display: flex;
  width: min(210px, calc(100% - 40px));
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #fff;
  background: var(--rose);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.topics-section {
  padding: clamp(34px, 6vw, 68px) 0 clamp(76px, 10vw, 118px);
  color: #fff;
  background: var(--black);
}

.topics-section .section-heading h2 {
  color: rgba(255, 255, 255, 0.12);
}

.topic-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px 24px;
  width: min(var(--max), calc(100% - 36px));
  margin: -10px auto 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.86);
}

.topic-tabs button,
.topic-tabs a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.36);
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.topic-tabs button.active,
.topic-tabs a.active {
  color: var(--rose);
  border-bottom-color: var(--rose);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 52px) clamp(18px, 3vw, 26px);
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.article-card {
  min-width: 0;
}

.article-card a {
  display: grid;
  gap: 12px;
}

.article-card img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  background: var(--blush);
}

.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 800;
}

.article-card h3 {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 1.72vw, 1.62rem);
  line-height: 1.1;
}

.article-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

.article-card.is-hidden {
  display: none;
}

.publishing-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(72px, 11vw, 130px) max(20px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: var(--black);
}

.publish-copy p:not(.section-label) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  background: var(--rose);
  border: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.publish-panel {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.publish-panel div {
  display: grid;
  gap: 7px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}

.publish-panel span {
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.publish-panel strong {
  color: rgba(255, 255, 255, 0.9);
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  padding: 32px clamp(18px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.62);
  background: var(--black);
  border-top: 1px solid var(--line-light);
}

.site-footer strong {
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.footer-link-disabled {
  opacity: 0.55;
}

.article-page {
  color: #fff;
  background: var(--black);
}

.article-main {
  background: var(--black);
}

.article-story {
  overflow: hidden;
}

.article-masthead {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 88px) 0 clamp(28px, 4.5vw, 54px);
}

.article-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: clamp(24px, 4vw, 42px);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.article-topline a {
  color: var(--rose);
}

.article-topline span {
  margin-right: auto;
}

.article-masthead h1 {
  max-width: 800px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(1.85rem, 4.35vw, 3.65rem);
  line-height: 1.04;
}

.article-dek {
  max-width: 720px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.65vw, 1.28rem);
  line-height: 1.55;
}

.article-credit {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-lead-image {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
}

.article-lead-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-lead-image figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.article-body {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0 clamp(28px, 5vw, 52px);
}

.article-body h2 {
  margin: 52px 0 16px;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.4vw, 3.15rem);
  line-height: 1.02;
}

.article-body h3 {
  margin: 42px 0 14px;
  color: #f0b56a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.08;
}

.article-body p,
.article-body li {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.03rem, 1.35vw, 1.12rem);
  line-height: 1.82;
}

.article-body p:first-child {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.16rem, 1.7vw, 1.32rem);
  line-height: 1.72;
}

.article-body a {
  color: #fff;
  font-weight: 850;
  border-bottom: 1px solid var(--rose);
}

.article-body figure {
  margin: clamp(42px, 7vw, 70px) min(-8vw, -72px);
}

.article-body figure img {
  width: 100%;
  max-height: 740px;
  object-fit: cover;
}

.article-body figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.84rem;
}

.article-faq {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto clamp(34px, 6vw, 72px);
  padding: clamp(34px, 6vw, 58px) 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.article-faq h2 {
  margin-bottom: 24px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.faq-list {
  display: grid;
  gap: 22px;
}

.faq-item {
  display: grid;
  gap: 8px;
}

.faq-item h3 {
  margin-bottom: 0;
  color: var(--rose);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.18;
}

.faq-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.value-cta {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto clamp(58px, 9vw, 104px);
  padding: clamp(30px, 5vw, 54px) clamp(20px, 5vw, 58px);
  color: #fff;
  background: rgba(233, 105, 140, 0.11);
  border: 1px solid rgba(233, 105, 140, 0.32);
}

.value-cta h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.96;
}

.value-cta p:not(.section-label) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.04rem;
}

.value-cta-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 0 18px;
  color: #fff;
  background: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-cta-button.is-disabled {
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  cursor: not-allowed;
}

.article-endcap {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: 24px;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto clamp(70px, 10vw, 118px);
  padding: 24px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.article-endcap span {
  display: block;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-endcap strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}

.tag-row span {
  padding: 8px 11px;
  color: var(--rose);
  background: rgba(233, 105, 140, 0.1);
  border: 1px solid rgba(233, 105, 140, 0.32);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-related {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 52px) 0 clamp(48px, 7vw, 74px);
  border-top: 1px solid var(--line-light);
}

.article-related .section-heading {
  width: 100%;
  margin: 0 0 18px;
  text-align: left;
}

.article-related .section-heading p {
  margin-bottom: 5px;
  font-size: 0.68rem;
}

.article-related .section-heading h2 {
  color: rgba(255, 255, 255, 0.88);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(136px, 154px));
  justify-content: start;
  gap: 18px;
}

.related-card a {
  display: grid;
  gap: 8px;
}

.related-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.related-card span {
  color: var(--rose);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.related-card h3 {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  line-height: 1.22;
}

.category-page {
  color: #fff;
  background: var(--black);
}

.category-main {
  background: var(--black);
}

.category-hero {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 86px) 0 clamp(34px, 6vw, 70px);
}

.category-hero h1 {
  max-width: 840px;
  margin-bottom: 18px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 6.4vw, 5.4rem);
  line-height: 0.94;
}

.category-hero p:not(.section-label) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.category-hero img {
  width: 100%;
  max-height: 520px;
  margin-top: clamp(28px, 5vw, 52px);
  object-fit: cover;
}

.category-feed {
  padding: clamp(34px, 6vw, 68px) 0 clamp(56px, 8vw, 96px);
  border-top: 1px solid var(--line-light);
}

.category-feed .section-heading h2 {
  color: rgba(255, 255, 255, 0.12);
}

.category-empty {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
}

.admin-page {
  background: #f7f3f2;
}

.policy-page {
  background: #f7f3f2;
}

.policy-main {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 96px) 0;
}

.policy-article {
  padding: clamp(28px, 5vw, 58px);
  background: #fff;
  border: 1px solid var(--line);
}

.policy-article h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.policy-article h2 {
  margin: 34px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1;
}

.policy-article p {
  color: rgba(11, 11, 13, 0.72);
}

.policy-article a {
  color: var(--rose-dark);
  font-weight: 850;
  border-bottom: 1px solid currentColor;
}

.admin-hero,
.admin-shell,
.admin-login {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.admin-hero {
  padding: 56px 0 28px;
}

.admin-hero p {
  max-width: 640px;
  color: var(--muted);
}

.admin-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 28px;
  padding-bottom: 80px;
}

.admin-login {
  max-width: 520px;
  padding-bottom: 80px;
}

.is-hidden {
  display: none !important;
}

.admin-list,
.admin-form {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
}

.login-form {
  width: 100%;
}

.admin-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-list h2,
.admin-form h2 {
  margin-bottom: 18px;
  font-size: 1.18rem;
  text-transform: uppercase;
}

.admin-form-head h2 {
  margin-bottom: 0;
}

.admin-item {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.admin-item button {
  justify-self: start;
}

.admin-item h3 {
  margin-bottom: 0;
  font-size: 1rem;
}

.admin-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

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

.field label {
  color: rgba(11, 11, 13, 0.72);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
}

.body-upload-tools {
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) minmax(180px, 1fr) auto auto;
  gap: 10px;
  align-items: center;
}

.body-upload-tools input {
  min-width: 0;
}

.body-upload-tools button {
  min-height: 42px;
  padding: 0 13px;
  color: #fff;
  background: var(--ink);
  border: 0;
  cursor: pointer;
  font-weight: 850;
  white-space: nowrap;
}

.field textarea {
  min-height: 260px;
  resize: vertical;
}

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

.admin-actions button,
.admin-item button,
.admin-form-head button {
  min-height: 40px;
  padding: 0 13px;
  color: #fff;
  background: var(--ink);
  border: 0;
  cursor: pointer;
  font-weight: 850;
}

.admin-actions .publish {
  background: var(--rose);
}

.status-line {
  min-height: 22px;
  margin-top: 14px;
  color: var(--rose-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .feature-tile img,
  .article-card img,
  .related-card img {
    transition: transform 260ms ease, filter 260ms ease;
  }

  .feature-tile a:hover img,
  .article-card a:hover img,
  .related-card a:hover img {
    transform: translateY(-3px);
    filter: saturate(1.04) contrast(1.03);
  }
}

@media (max-width: 920px) {
  :root {
    --header-h: 86px;
  }

  .site-header {
    border-bottom-width: 10px;
  }

  .publishing-section,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .article-body figure {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .brand-mark {
    font-size: clamp(2.35rem, 8.2vw, 3.1rem);
  }

  .header-feature {
    max-width: 108px;
    text-align: right;
    font-size: 0.7rem;
    line-height: 1.02;
  }
}

@media (max-width: 620px) {
  :root {
    --header-h: 76px;
  }

  .site-header {
    padding: 13px 16px;
  }

  .brand-mark {
    font-size: 2rem;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-image-stack {
    width: 100%;
    height: 300px;
    margin-bottom: 0;
    transform: none;
  }

  .hero-image-main {
    left: 6%;
    width: 88%;
    height: 84%;
  }

  .hero-copy {
    margin-top: 0;
  }

  .hero-checks {
    max-width: 280px;
    margin-bottom: 14px;
  }

  .hero-checks span {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.64rem;
  }

  .feature-row {
    width: 100%;
    padding: 0 18px 12px;
    scroll-padding-left: 18px;
  }

  .feature-tile,
  .feature-tile-large {
    flex-basis: min(82vw, 330px);
  }

  .feature-tile img,
  .feature-tile-large img {
    aspect-ratio: 16 / 11;
  }

  .topic-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .topic-tabs button,
  .topic-tabs a {
    flex: 0 0 auto;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .body-upload-tools {
    grid-template-columns: 1fr;
  }

  .article-topline,
  .article-endcap {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: repeat(2, minmax(136px, 154px));
    justify-content: start;
    gap: 18px 14px;
  }

  .article-topline {
    display: grid;
    justify-items: start;
    gap: 8px;
  }

  .article-masthead {
    padding-top: 38px;
  }

  .article-lead-image img {
    aspect-ratio: 4 / 5;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 760px) {
  .article-grid {
    grid-template-columns: 1fr;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
