/* tokens.css — design tokens for the longread theme
 *
 * All colours, spacing, type scale, and layout dimensions are defined here.
 * Components import this file via main.css and reference only var() calls —
 * never hard-coded values.
 */

:root {
  /* ── Colour palette ────────────────────────────────────────────────────── */
  --ink:          #1a1a18;   /* primary body text                            */
  --ink-light:    #3d3c38;   /* secondary body text                          */
  --paper:        #faf9f5;   /* page background — warm off-white             */
  --paper-tint:   #f2efe6;   /* subtle section backgrounds                   */
  --rule:         #d4c9b0;   /* horizontal rules, borders                    */
  --accent:       #c8102e;   /* links, drop-caps, active states (FT red)     */
  --accent-dark:  #9e0c24;   /* link hover                                   */
  --muted:        #6b6455;   /* meta text, captions, timestamps              */
  --muted-light:  #9c9183;   /* placeholder text, disabled states            */

  /* ── Layout ────────────────────────────────────────────────────────────── */
  --column:  760px;           /* maximum prose column width                  */
  --wide:   1100px;           /* header / nav maximum width                  */
  --gutter:   24px;           /* horizontal page padding                     */

  /* ── Type scale ─────────────────────────────────────────────────────────  */
  /* Modular scale ×1.25 from 18px base */
  --text-xs:   0.694rem;   /*  ~12.5px  captions, labels                    */
  --text-sm:   0.833rem;   /*  ~15px    meta, bylines                       */
  --text-base: 1rem;       /*   18px    body (set on html)                  */
  --text-md:   1.125rem;   /*  ~20px    lead paragraphs                     */
  --text-lg:   1.25rem;    /*  ~22.5px  subheadings h3                      */
  --text-xl:   1.563rem;   /*  ~28px    h2                                  */
  --text-2xl:  1.953rem;   /*  ~35px    h1 article                          */
  --text-3xl:  2.441rem;   /*  ~44px    h1 homepage hero                    */
  --text-4xl:  3.052rem;   /*  ~55px    display / series title              */

  /* ── Line heights ───────────────────────────────────────────────────────  */
  --lh-tight:  1.25;
  --lh-snug:   1.45;
  --lh-body:   1.78;
  --lh-loose:  2.0;

  /* ── Font families ──────────────────────────────────────────────────────  */
  --font-serif:   'Lora', 'Georgia', serif;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-sans:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'JetBrains Mono', 'Menlo', monospace;

  /* ── Spacing scale ──────────────────────────────────────────────────────  */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.5rem;
  --space-6:  2rem;
  --space-8:  3rem;
  --space-12: 5rem;
  --space-16: 7rem;

  /* ── Transitions ────────────────────────────────────────────────────────  */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 180ms;
}
/* reset.css — minimal, opinionated reset for the longread theme
 *
 * Normalises browser inconsistencies without imposing heavy opinions.
 * Based on Josh Comeau's custom reset, adapted for print-style typography.
 */

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

* {
  margin: 0;
}

html {
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
}

ol, ul {
  list-style: none;
  padding: 0;
}

hr {
  border: none;
  border-top: 1px solid var(--rule);
}
/* layout.css — page shell: header, footer, nav, and grid
 *
 * Defines the structural skeleton. All widths reference --wide and --column
 * from tokens.css. The primary reading column is centred and constrained to
 * --column width; the site header is allowed to stretch to --wide.
 */

/* ── Body shell ──────────────────────────────────────────────────────────── */

body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-serif);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

/* ── Utility: constrained container ─────────────────────────────────────── */

.container {
  max-width: var(--wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: var(--column);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── Site header ─────────────────────────────────────────────────────────── */

.site-header {
  border-bottom: 1px solid var(--rule);
  padding-block: var(--space-4);
  position: sticky;
  top: 0;
  background-color: var(--paper);
  z-index: 100;
}

.site-header__inner {
  max-width: var(--wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

/* Wordmark */
.site-header__wordmark {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}

.site-header__wordmark:hover {
  color: var(--accent);
  transition: color var(--duration) var(--ease-out);
}

/* Navigation */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.site-nav__list {
  display: flex;
  gap: var(--space-5);
  list-style: none;
}

.site-nav__link {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-light);
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
  padding-block: var(--space-2);
  border-bottom: 2px solid transparent;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Thin rule below header on article pages */
.site-header--article {
  border-bottom-width: 3px;
  border-bottom-color: var(--ink);
}

/* ── Date ribbon (decorative, FT-style) ──────────────────────────────────── */

.date-ribbon {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--rule);
}

/* ── Site footer ─────────────────────────────────────────────────────────── */

.site-footer {
  border-top: 3px solid var(--ink);
  margin-top: var(--space-16);
  padding-block: var(--space-8);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--muted);
}

.site-footer__inner {
  max-width: var(--wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

/* ── Skip link (accessibility) ───────────────────────────────────────────── */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-4);
  z-index: 999;
  text-decoration: none;
}

.skip-link:focus {
  top: var(--space-4);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 680px) {
  .site-nav__list {
    gap: var(--space-4);
  }

  .site-nav__link {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
  }
}
/* essay.css — typography and layout for single essay pages
 *
 * Controls the reading experience: the article header (kicker, headline,
 * standfirst, byline), body prose styles, pull-quotes, asides, and the
 * series navigation bar. All widths are constrained to --column.
 */

/* ── Article wrapper ─────────────────────────────────────────────────────── */

.article {
  padding-top: var(--space-12);
  padding-bottom: var(--space-16);
}

/* ── Article header ──────────────────────────────────────────────────────── */

.article-header {
  max-width: var(--column);
  margin-inline: auto;
  padding-inline: var(--gutter);
  margin-bottom: var(--space-12);
}

/**
 * Kicker — small category label above the headline.
 * Mirrors the section tag used in FT and Economist layouts.
 */
.article-kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--space-3);
  text-decoration: none;
}

.article-kicker:hover {
  color: var(--accent-dark);
}

.article-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--space-5);
}

/**
 * Standfirst — the deck sentence below the headline.
 * Should summarise the essay's argument in 2–3 sentences.
 */
.article-standfirst {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  font-weight: 400;
  line-height: var(--lh-snug);
  color: var(--ink-light);
  border-left: 3px solid var(--accent);
  padding-left: var(--space-5);
  margin-bottom: var(--space-6);
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--muted);
  letter-spacing: 0.04em;
  padding-top: var(--space-5);
  border-top: 1px solid var(--rule);
}

.article-meta__sep {
  color: var(--rule);
}

/* ── Prose body ──────────────────────────────────────────────────────────── */

.article-body {
  max-width: var(--column);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.article-body p {
  margin-bottom: var(--space-5);
  font-size: var(--text-base);
  line-height: var(--lh-body);
  hyphens: auto;
  -webkit-hyphens: auto;
}

/**
 * Drop-cap on the first paragraph's first letter.
 * Achieved via CSS without requiring JavaScript or a shortcode.
 * Kept subtle: same colour as body text, not bold, modest size.
 */
.article-body > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.7em;
  font-weight: 400;
  float: left;
  line-height: 0.85;
  margin-right: 0.08em;
  margin-top: 0.06em;
  color: var(--ink);
}

/* Headings within prose */
.article-body h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: var(--lh-tight);
  color: var(--ink);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
  padding-top: var(--space-5);
  border-top: 1px solid var(--rule);
}

.article-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: var(--lh-snug);
  color: var(--ink);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

/* Links in prose */
.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
  transition: color var(--duration) var(--ease-out);
}

.article-body a:hover {
  color: var(--accent-dark);
}

/* Blockquote — styled as an indented pull */
.article-body blockquote {
  margin-block: var(--space-8);
  margin-inline: 0;
  padding-left: var(--space-6);
  border-left: 3px solid var(--accent);
  font-style: italic;
  color: var(--ink-light);
}

.article-body blockquote p {
  margin-bottom: var(--space-3);
}

/* Lists */
.article-body ul,
.article-body ol {
  margin-bottom: var(--space-5);
  padding-left: var(--space-6);
  list-style: revert;
}

.article-body li {
  margin-bottom: var(--space-2);
  line-height: var(--lh-body);
}

/* Inline code */
.article-body code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--paper-tint);
  padding: 0.1em 0.4em;
  border-radius: 3px;
}

/* Code blocks */
.article-body pre {
  background: var(--ink);
  color: #f0ebe0;
  padding: var(--space-5);
  border-radius: 4px;
  overflow-x: auto;
  margin-block: var(--space-6);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.article-body pre code {
  background: none;
  padding: 0;
  font-size: inherit;
}

/* Horizontal rule as section break */
.article-body hr {
  margin-block: var(--space-8);
  border: none;
  text-align: center;
}

/* Ornamental section break */
.article-body hr::after {
  content: "✦  ✦  ✦";
  font-size: var(--text-sm);
  color: var(--muted-light);
  letter-spacing: 0.5em;
}

/* Images */
.article-body figure {
  margin-block: var(--space-8);
  margin-inline: 0;
}

.article-body figure img {
  width: 100%;
  border: 1px solid var(--rule);
}

.article-body figcaption {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: var(--space-2);
  line-height: var(--lh-snug);
}

/* Footnotes (generated by Goldmark) */
.footnotes {
  margin-top: var(--space-12);
  padding-top: var(--space-5);
  border-top: 1px solid var(--rule);
  font-size: var(--text-sm);
  color: var(--muted);
}

.footnotes ol {
  padding-left: var(--space-5);
  list-style: decimal;
}

/* ── Pull-quote shortcode ─────────────────────────────────────────────────── */

.pullquote {
  max-width: var(--column);
  margin-inline: auto;
  padding-inline: var(--gutter);
  margin-block: var(--space-10, 4rem);
  text-align: center;
}

.pullquote__text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: var(--lh-snug);
  color: var(--ink);
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  padding-block: var(--space-5);
}

.pullquote__attribution {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Aside shortcode ─────────────────────────────────────────────────────── */

.article-aside {
  background: var(--paper-tint);
  border-left: 3px solid var(--rule);
  padding: var(--space-5) var(--space-6);
  margin-block: var(--space-6);
  font-size: var(--text-sm);
  color: var(--ink-light);
  line-height: var(--lh-body);
}

.article-aside p { margin-bottom: var(--space-3); }
.article-aside p:last-child { margin-bottom: 0; }

/* ── Series navigation bar ───────────────────────────────────────────────── */

.series-nav {
  max-width: var(--column);
  margin-inline: auto;
  padding-inline: var(--gutter);
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
}

.series-nav__prev { text-align: left; }
.series-nav__next { text-align: right; }

.series-nav__label {
  display: block;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: var(--space-1);
}

.series-nav__title {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  line-height: var(--lh-snug);
}

.series-nav__title:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* ── Essay subnav — tab strip linking essay / briefing / sources ─────────── */

.essay-subnav {
  max-width: var(--column);
  margin-inline: auto;
  padding-inline: var(--gutter);
  margin-bottom: var(--space-10, 4rem);
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--rule);
}

.essay-subnav__tab {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: none;
  padding: var(--space-3) var(--space-5);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;   /* sits on top of the nav border-bottom */
  transition: color var(--duration) var(--ease-out),
              border-color var(--duration) var(--ease-out);
}

.essay-subnav__tab:hover {
  color: var(--ink);
}

.essay-subnav__tab--active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ── Briefing body — suppress drop-cap, tighten spacing ─────────────────── */

.briefing-body > p:first-of-type::first-letter {
  all: unset;
}

/* ── Sources body — numbered reference list ──────────────────────────────── */

.sources-body ol {
  list-style: decimal;
  padding-left: var(--space-6);
}

.sources-body li {
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  line-height: var(--lh-body);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */


@media (max-width: 760px) {
  .article-title {
    font-size: var(--text-2xl);
  }

  .article-body > p:first-of-type::first-letter {
    font-size: 3.1em;
  }

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

  .series-nav__next {
    text-align: left;
  }
}

@media (max-width: 480px) {
  html { font-size: 16px; }

  .article {
    padding-top: var(--space-8);
  }
}
/* listing.css — index, series overview, and tag listing pages
 *
 * Two primary patterns:
 *   1. Essay listing: compact rows with date, kicker, title, standfirst.
 *   2. Series card: larger card showing series title, part count, description.
 */

/* ── Section header ──────────────────────────────────────────────────────── */

.section-header {
  max-width: var(--column);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: var(--space-12);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--rule);
  margin-bottom: var(--space-8);
}

.section-header__label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.section-header__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--space-4);
}

.section-header__desc {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  color: var(--ink-light);
  line-height: var(--lh-snug);
  max-width: 56ch;
}

/* ── Essay list ──────────────────────────────────────────────────────────── */

.essay-list {
  max-width: var(--column);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: var(--space-16);
}

.essay-list__item {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: var(--space-5);
  padding-block: var(--space-6);
  border-bottom: 1px solid var(--rule);
  transition: background var(--duration) var(--ease-out);
}

.essay-list__item:first-child {
  border-top: 1px solid var(--rule);
}

.essay-list__date {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--muted);
  letter-spacing: 0.04em;
  padding-top: 0.3em;
  line-height: var(--lh-snug);
}

.essay-list__kicker {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-2);
  text-decoration: none;
  display: inline-block;
}

.essay-list__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: var(--lh-snug);
  letter-spacing: -0.015em;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: var(--space-3);
  transition: color var(--duration) var(--ease-out);
}

.essay-list__title:hover {
  color: var(--accent);
}

.essay-list__standfirst {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  color: var(--ink-light);
  line-height: var(--lh-snug);
  margin-bottom: var(--space-3);
}

.essay-list__meta {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--muted);
}

/* ── Homepage hero — first essay gets a prominent treatment ──────────────── */

.essay-list__item--hero {
  grid-template-columns: 1fr;
  padding-bottom: var(--space-8);
  margin-bottom: var(--space-4);
}

.essay-list__item--hero .essay-list__title {
  font-size: var(--text-3xl);
}

.essay-list__item--hero .essay-list__standfirst {
  font-size: var(--text-md);
}

/* ── Series card grid ────────────────────────────────────────────────────── */

.series-grid {
  max-width: var(--wide);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: var(--space-16);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-8);
}

.series-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--duration) var(--ease-out),
              box-shadow var(--duration) var(--ease-out);
}

.series-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(26, 26, 24, 0.08);
}

.series-card__type {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.series-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: -0.015em;
  color: var(--ink);
}

.series-card__desc {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  color: var(--ink-light);
  line-height: var(--lh-snug);
  flex: 1;
}

.series-card__count {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--rule);
}

/* ── Series landing: part list ───────────────────────────────────────────── */

.series-parts {
  max-width: var(--column);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-bottom: var(--space-16);
}

.series-parts__item {
  display: flex;
  gap: var(--space-5);
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}

.series-parts__item:first-child {
  border-top: 1px solid var(--rule);
}

.series-parts__number {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--muted-light);
  min-width: 2.5rem;
  padding-top: 0.2em;
}

.series-parts__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: var(--lh-snug);
  color: var(--ink);
  margin-bottom: var(--space-2);
  transition: color var(--duration) var(--ease-out);
}

.series-parts__item:hover .series-parts__title {
  color: var(--accent);
}

.series-parts__standfirst {
  font-family: var(--font-serif);
  font-size: var(--text-sm);
  color: var(--ink-light);
  line-height: var(--lh-snug);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

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

  .essay-list__date {
    font-size: var(--text-xs);
  }

  .essay-list__item--hero .essay-list__title {
    font-size: var(--text-2xl);
  }

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