:root {
  --crimson: #d70000;
  --crimson-dark: #a80000;
  --ink: #0a0a0a;
  --ink-2: #1f1f1f;
  --paper: #ffffff;
  --paper-2: #f6f4ef;
  --bone: #fafaf7;
  --muted: #6b6b6b;
  --line: rgba(10, 10, 10, 0.1);
  --line-strong: rgba(10, 10, 10, 0.22);
  --pad: clamp(20px, 4vw, 56px);
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --mono: "JetBrains Mono", monospace;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid #a80000;
  outline-offset: 4px;
}

button {
  color: inherit;
  font: inherit;
}

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

.blog-shell {
  min-height: 70vh;
  padding: 148px var(--pad) 96px;
}

.blog-inner {
  margin: 0 auto;
  max-width: 1280px;
}

.blog-kicker {
  align-items: center;
  color: var(--crimson);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  gap: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.blog-kicker::before {
  background: var(--crimson);
  content: "";
  height: 2px;
  width: 28px;
}

.blog-header {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
  margin-bottom: 64px;
}

.blog-header h1,
.post-header h1 {
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.94;
  margin: 20px 0 0;
}

.blog-header h1 em,
.post-header h1 em {
  color: var(--crimson);
  font-family: var(--serif);
  font-weight: 400;
}

.blog-header p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
  max-width: 42ch;
}

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

.post-card-item-featured {
  grid-column: 1 / -1;
}

.post-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.post-card:hover {
  border-color: rgba(215, 0, 0, 0.45);
  box-shadow: 0 24px 60px -36px rgba(10, 10, 10, 0.55);
  transform: translateY(-4px);
}

.post-card-media {
  aspect-ratio: 16 / 10;
  background: var(--paper-2);
  overflow: hidden;
}

.post-card-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}

.post-card:hover .post-card-media img {
  transform: scale(1.035);
}

.post-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.post-card-item-featured .post-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
  min-height: 430px;
}

.post-card-item-featured .post-card-media {
  aspect-ratio: auto;
}

.post-card-item-featured .post-card-body {
  justify-content: center;
  padding: clamp(36px, 5vw, 64px);
}

.post-card-item-featured .post-card h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.02;
  margin-bottom: 18px;
}

.post-card-item-featured .post-card p {
  font-size: 16px;
  line-height: 1.7;
}

.post-card-meta,
.post-meta {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10px;
  gap: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-card-meta span + span::before,
.post-meta span + span::before {
  color: var(--line-strong);
  content: "·";
  margin-right: 10px;
}

.post-card-category {
  color: var(--crimson);
  font-weight: 600;
}

.post-card h2 {
  font-size: 24px;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 14px 0 10px;
}

.post-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 24px;
}

.post-card-link {
  color: var(--crimson);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-top: auto;
  text-transform: uppercase;
}

.blog-state {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  padding: 48px 24px;
  text-align: center;
}

.blog-state[hidden],
.post-view[hidden] {
  display: none;
}

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

.story-page {
  background: #fbfbfa;
}

.story-topbar {
  align-items: center;
  background: #17191a;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  font-family: var(--sans);
  font-size: 10px;
  height: 32px;
  justify-content: space-between;
  left: 0;
  letter-spacing: 0.01em;
  padding: 0 max(var(--pad), calc((100vw - 1280px) / 2 + 32px));
  position: fixed;
  right: 0;
  top: 0;
  z-index: 42;
}

.story-topbar a {
  color: white;
}

.story-page .nav {
  top: 32px;
}

.post-shell {
  background-color: #fbfbfa;
  min-height: 70vh;
  padding: 140px var(--pad) 34px;
}

.post-inner {
  margin: 0 auto;
  max-width: 1120px;
}

.post-header {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  gap: clamp(32px, 5vw, 68px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px);
  position: relative;
}

.post-header-copy {
  align-self: center;
  min-width: 0;
}

.post-back {
  align-items: center;
  color: var(--muted);
  display: inline-flex;
  font-family: var(--mono);
  font-size: 10px;
  gap: 6px;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.post-back .material-symbols-rounded {
  font-size: 16px;
}

.post-back:hover {
  color: var(--crimson);
}

.post-header .blog-kicker {
  display: flex;
}

.post-header h1 {
  font-size: clamp(42px, 5.5vw, 68px);
  letter-spacing: -0.052em;
  line-height: 0.98;
  margin: 16px 0 18px;
  max-width: none;
}

.post-dek {
  color: #4e4e4e;
  font-family: var(--sans);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 50ch;
}

.post-header-cover {
  align-self: stretch;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: -20px;
  min-height: 300px;
  overflow: hidden;
}

.post-header-cover[hidden],
.post-hero[hidden],
.post-stats[hidden],
.reading-mode-card[hidden],
.related-stories[hidden] {
  display: none;
}

.post-header-cover img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.post-template-journal .post-header-cover img {
  object-fit: contain;
  object-position: center;
}

.post-template-feature .post-header {
  background: transparent;
  border: 0;
  border-radius: 0;
  grid-template-columns: minmax(0, 1fr);
  min-height: 248px;
  overflow: visible;
  padding: 16px 290px 24px 36px;
}

.post-template-feature .post-header::after {
  background: url('/assets/blog/generated/featured-story-curly-brace-reference.webp') center / contain no-repeat;
  content: '';
  height: 128px;
  pointer-events: none;
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-48%);
  width: 225px;
}

.post-template-feature .post-header-copy {
  position: relative;
  z-index: 1;
}

.post-template-feature .post-header h1 {
  font-size: clamp(40px, 4.4vw, 48px);
  max-width: 9.5em;
}

.post-view.post-template-feature {
  margin-inline: auto;
  max-width: 1030px;
}

.post-view.post-template-brief {
  margin-inline: auto;
  max-width: 1030px;
}

.post-template-brief .post-header {
  background: rgba(255, 255, 255, 0.96);
  grid-template-columns: minmax(0, 1fr);
  min-height: 390px;
  padding: clamp(44px, 7vw, 76px);
}

.post-template-brief .post-header-copy {
  max-width: 850px;
}

.post-template-brief .post-header h1 {
  font-size: clamp(48px, 6.4vw, 76px);
  max-width: 12em;
}

.post-template-brief .post-content-grid {
  gap: 38px;
  grid-template-columns: 180px minmax(0, 720px);
  margin-top: 0;
}

.post-template-brief .post-body {
  font-size: clamp(16px, 1.2vw, 17px);
  line-height: 1.58;
}

.post-template-brief .post-tags {
  margin-left: 218px;
  max-width: 720px;
}

.post-template-journal:not(.post-has-header-cover) .post-header {
  grid-template-columns: minmax(0, 1fr);
}

.post-template-journal .post-back {
  display: none;
}

.post-template-journal .post-header {
  gap: 44px;
  grid-template-columns: minmax(0, 620px) minmax(340px, 1fr);
}

.post-template-journal .post-header h1 {
  font-size: clamp(42px, 3.8vw, 46px);
  max-width: none;
}

.post-view.is-reading-mode.post-template-journal .post-header {
  grid-template-columns: minmax(0, 1fr);
}

.post-hero {
  margin: 26px 0 24px;
}

.post-hero-image {
  aspect-ratio: 16 / 7;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  object-fit: cover;
  overflow: hidden;
  width: 100%;
}

.post-template-feature .post-hero-image {
  aspect-ratio: 16 / 5;
}

.reading-mode-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  gap: 16px;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  margin: 24px 0 38px;
  padding: 18px 22px;
}

.reading-mode-card > .material-symbols-rounded {
  color: var(--crimson);
  font-size: 34px;
}

.reading-mode-card div {
  display: grid;
  gap: 3px;
}

.reading-mode-card strong {
  font-size: 14px;
}

.reading-mode-card small {
  color: var(--muted);
  font-size: 11px;
}

.reading-mode-card button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--crimson);
  border-radius: 7px;
  color: var(--crimson);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  gap: 6px;
  letter-spacing: 0.1em;
  min-height: 38px;
  padding: 0 14px;
  text-transform: uppercase;
}

.reading-mode-card button:hover {
  background: var(--crimson);
  color: white;
}

.reading-mode-card button .material-symbols-rounded {
  font-size: 16px;
}

.post-content-grid {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: 180px minmax(0, 650px) minmax(160px, 190px);
  justify-content: center;
}

.post-template-journal .post-content-grid,
.post-view.is-reading-mode .post-content-grid {
  grid-template-columns: 180px minmax(0, 650px);
}

.post-template-feature .post-content-grid {
  gap: 28px;
  grid-template-columns: 70px minmax(0, 650px) minmax(150px, 180px);
}

.cms-blog-preview .post-shell {
  padding-top: 28px;
}

.cms-blog-preview nav,
.cms-blog-preview #sankofa-footer {
  display: none !important;
}

.cms-blog-preview [data-post-title],
.cms-blog-preview [data-post-excerpt],
.cms-blog-preview [data-post-category],
.cms-blog-preview [data-post-author],
.cms-blog-preview [data-post-author-bio],
.cms-blog-preview [data-post-body],
.cms-blog-preview [data-post-header-cover],
.cms-blog-preview [data-post-hero] {
  cursor: pointer;
  outline-offset: 5px;
}

.cms-blog-preview .cms-blog-edit-target {
  cursor: pointer;
  outline-offset: 5px;
}

.cms-blog-preview [data-post-title]:hover,
.cms-blog-preview [data-post-excerpt]:hover,
.cms-blog-preview [data-post-category]:hover,
.cms-blog-preview [data-post-author]:hover,
.cms-blog-preview [data-post-author-bio]:hover,
.cms-blog-preview [data-post-body]:hover,
.cms-blog-preview [data-post-header-cover]:hover,
.cms-blog-preview [data-post-hero]:hover {
  outline: 2px solid rgba(215, 0, 0, 0.7);
}

.cms-blog-preview .cms-blog-edit-target:hover,
.cms-blog-preview .cms-blog-edit-target:focus-visible {
  outline: 2px solid rgba(215, 0, 0, 0.7);
}

.post-byline {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 2px 26px 0 0;
}

.post-template-feature .post-byline {
  border-right: 0;
  min-height: 0;
  padding: 4px 0 0;
}

.post-template-feature .post-byline > span:not(.post-share-heading),
.post-template-feature .post-author,
.post-template-feature .post-byline > p {
  display: none;
}

.post-template-feature .post-share-heading {
  margin-top: 0;
}

.post-template-feature .post-share-actions {
  align-items: flex-start;
  flex-direction: column;
}

.post-byline > span,
.post-byline small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.post-author {
  align-items: center;
  display: flex;
  gap: 10px;
  margin: 18px 0 16px;
}

.post-author img {
  height: 42px;
  object-fit: contain;
  width: 42px;
}

.post-author div {
  display: grid;
  gap: 2px;
}

.post-author strong {
  font-size: 13px;
  line-height: 1.25;
}

.post-byline > p {
  color: #575757;
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
}

.post-share-heading {
  margin-top: 30px;
}

.post-share-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.post-share-actions button,
.post-share-actions a {
  align-items: center;
  background: white;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  padding: 0;
  width: 36px;
}

.post-share-actions button:hover,
.post-share-actions a:hover {
  border-color: var(--crimson);
  color: var(--crimson);
}

.post-share-actions .material-symbols-rounded {
  font-size: 18px;
}

.post-share-status {
  color: var(--crimson) !important;
  letter-spacing: 0 !important;
  margin-top: 8px;
  min-height: 14px;
  text-transform: none !important;
}

.post-body-column {
  min-width: 0;
}

.post-body {
  color: #282828;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(15px, 1.08vw, 15.5px);
  line-height: 1.48;
}

.post-body p {
  margin: 0 0 0.7em;
}

.post-body h2,
.post-body h3 {
  font-family: var(--sans);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.post-body h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin: 1.7em 0 0.6em;
}

.post-body h3 {
  font-size: clamp(21px, 2.5vw, 28px);
  margin: 1.5em 0 0.55em;
}

.post-body ul,
.post-body ol {
  margin: 0 0 1.5em;
  padding-left: 1.3em;
}

.post-body li {
  margin-bottom: 0.45em;
  padding-left: 0.25em;
}

.post-body li::marker {
  color: var(--crimson);
  font-family: var(--sans);
  font-weight: 800;
}

.post-body blockquote {
  border-left: 3px solid var(--crimson);
  color: var(--ink);
  font-size: 1.1em;
  font-style: italic;
  margin: 1.8em 0;
  padding: 0.1em 0 0.1em 1.1em;
}

.post-body .post-pull-quote {
  font-family: var(--serif);
  font-size: clamp(18px, 1.65vw, 21px);
  line-height: 1.25;
  margin: 1em 0;
  position: relative;
}

.post-pull-quote p {
  margin: 0;
}

.post-pull-quote footer {
  color: var(--crimson);
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  margin-top: 12px;
}

.post-body a {
  color: var(--crimson);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.post-body strong {
  color: var(--ink);
  font-weight: 800;
}

.post-body u {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.post-body > p:first-child::first-letter {
  color: var(--crimson);
  float: left;
  font-family: var(--sans);
  font-size: 4.1em;
  font-weight: 900;
  line-height: 0.78;
  margin: 0.12em 0.12em 0 0;
}

.post-inline-gallery {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.8em 0;
}

.post-inline-gallery-single {
  grid-template-columns: 1fr;
}

.post-inline-gallery img {
  aspect-ratio: 1.9 / 1;
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.post-stats {
  background: #f5f3ef;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.post-stats article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 2px;
  padding: 22px 18px;
}

.post-stats article:last-child {
  border-bottom: 0;
}

.post-stats strong {
  color: var(--crimson);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.post-stats b {
  font-size: 11px;
}

.post-stats p {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
  margin: 2px 0 0;
}

.post-view.is-reading-mode .post-hero,
.post-view.is-reading-mode .post-header-cover,
.post-view.is-reading-mode .post-inline-gallery,
.post-view.is-reading-mode .post-stats {
  display: none;
}

.post-view.is-reading-mode .reading-mode-card {
  background: #fffaf9;
  border-color: rgba(215, 0, 0, 0.18);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 42px auto 0;
  max-width: 980px;
}

.post-tags:empty {
  display: none;
}

.post-tags a {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 11px;
  padding: 6px 10px;
}

.post-tags a:hover {
  border-color: var(--crimson);
  color: var(--crimson);
}

.related-stories {
  margin-top: 58px;
}

.related-heading {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.related-heading > span {
  background: var(--crimson);
  height: 2px;
  width: 26px;
}

.related-heading h2 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

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

.post-template-feature .related-story-grid {
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.post-template-feature .related-story-card {
  grid-template-columns: 44% minmax(0, 1fr);
}

.post-template-feature .related-story-card > span {
  padding: 11px;
}

.related-story-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  min-height: 116px;
  overflow: hidden;
}

.related-story-card:hover {
  border-color: rgba(215, 0, 0, 0.38);
}

.related-story-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.related-story-card > span {
  align-content: center;
  display: grid;
  gap: 6px;
  padding: 14px;
}

.related-story-card small {
  color: var(--crimson);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related-story-card strong {
  font-size: 13px;
  line-height: 1.2;
}

.related-story-card em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
}

.post-end {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin: 52px auto 0;
  max-width: 980px;
  padding-top: 22px;
}

.post-template-feature .post-end,
.post-template-journal .post-end {
  display: none;
}

.story-page .footer {
  background: #121415;
  color: white;
}

.story-page .footer-logo-bird {
  filter: grayscale(1) brightness(0) invert(1);
}

.story-page .footer-desc,
.story-page .footer-col h2,
.story-page .footer-bottom {
  color: rgba(255, 255, 255, 0.62);
}

.story-page .footer-col a,
.story-page .footer-social a {
  color: rgba(255, 255, 255, 0.88);
}

.story-page .footer-social a {
  border-color: rgba(255, 255, 255, 0.28);
}

.story-page .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.post-end > span {
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
}

.post-end a {
  align-items: center;
  color: var(--crimson);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-end a .material-symbols-rounded {
  font-size: 16px;
}

@media (max-width: 960px) {
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-card-item-featured .post-card {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  }

}

@media (max-width: 820px) {
  .post-template-journal .post-header {
    grid-template-columns: 1fr;
  }

  .post-template-brief .post-content-grid {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .post-template-brief .post-tags {
    margin-left: 192px;
  }

  .post-content-grid {
    gap: 32px;
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .post-template-feature .post-stats:not([hidden]) {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .post-template-feature .post-content-grid {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .post-template-feature .related-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .post-stats article {
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .post-stats article:last-child {
    border-right: 0;
  }
}

@media (max-width: 720px) {
  .blog-shell,
  .post-shell {
    padding-top: 132px;
  }

  .story-topbar {
    font-size: 8px;
    padding-inline: 18px;
  }

  .post-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .blog-header {
    grid-template-columns: 1fr;
    margin-bottom: 44px;
  }

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

  .post-card-item-featured .post-card {
    display: flex;
    min-height: 0;
  }

  .post-card-item-featured .post-card-media {
    aspect-ratio: 16 / 10;
  }

  .post-card-item-featured .post-card-body {
    padding: 28px 24px 30px;
  }

  .post-card-item-featured .post-card h2 {
    font-size: 28px;
  }

  .post-content-grid {
    grid-template-columns: 1fr;
  }

  .post-template-journal .post-content-grid,
  .post-template-brief .post-content-grid,
  .post-view.is-reading-mode .post-content-grid {
    grid-template-columns: 1fr;
  }

  .post-template-brief .post-header {
    min-height: 0;
    padding: 34px 24px;
  }

  .post-template-brief .post-tags {
    margin-left: 0;
  }

  .post-byline {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 0;
    padding: 0 0 26px;
  }

  .post-hero {
    margin: 18px 0;
  }

  .post-hero-image {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
  }

  .post-header,
  .post-template-feature .post-header {
    gap: 24px;
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .post-template-journal .post-header {
    grid-template-columns: 1fr;
  }

  .post-template-feature .post-header {
    min-height: 0;
    overflow: hidden;
    padding: 28px 110px 28px 4px;
  }

  .post-template-feature .post-header::after {
    height: 88px;
    opacity: 0.72;
    right: -44px;
    width: 155px;
  }

  .post-header h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .post-header-cover {
    margin: 0;
    min-height: 240px;
  }

  .reading-mode-card {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 18px;
  }

  .reading-mode-card button {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .post-template-feature .post-stats:not([hidden]) {
    display: flex;
    grid-column: auto;
  }

  .post-stats article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .post-stats article:last-child {
    border-bottom: 0;
  }

  .post-inline-gallery,
  .related-story-grid,
  .post-template-feature .related-story-grid {
    grid-template-columns: 1fr;
  }

  .post-template-feature .post-content-grid {
    grid-template-columns: 1fr;
  }

  .post-template-feature .post-byline {
    border-bottom: 0;
    padding-bottom: 8px;
  }

  .post-template-feature .post-share-actions {
    align-items: center;
    flex-direction: row;
  }

  .post-inline-gallery img {
    aspect-ratio: 16 / 10;
  }

  .related-story-card {
    min-height: 124px;
  }

  .post-end {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
  }
}

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