/* ============================================================
 * LDS Journal — Public stylesheet
 * Editorial / academic aesthetic. Fraunces (serif display) +
 * Geist (sans body). Deep ruby / crimson on warm cream paper.
 * Asymmetric type-driven layouts.
 * ============================================================ */

:root {
  /* Colour system — deep red palette
     (variable names kept for backward-compat; values are now red/burgundy)
  */
  --ink:        #1A0A0A;   /* near-black, faint red undertone */
  --ink-soft:   #3A2222;
  --paper:      #FAF6EF;   /* warm cream */
  --paper-2:    #F2EBDD;   /* deeper cream / panel bg */
  --line:       #E5D9D2;   /* hairline rule, warm */
  --forest:     #6B1418;   /* primary brand — deep crimson (matches logo) */
  --forest-2:   #8B1A1F;   /* lighter crimson for italics & hover (logo subtitle) */
  --ochre:      #B8761F;   /* warm gold accent — pairs with red */
  --ochre-deep: #9C5A0E;
  --rust:       #8E3B1C;   /* secondary accent */
  --garnet:     #3D0808;   /* very dark crimson */
  --muted:      #6B5B5B;

  /* Type */
  --ff-display: "Fraunces", "Times New Roman", Georgia, serif;
  --ff-body:    "Geist", "Helvetica Neue", Arial, sans-serif;

  /* Spatial */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --container: 1240px;
  --radius: 4px;
}

/* ---- Reset / base ------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(1200px 600px at 90% -10%, rgba(184,118,31,.08), transparent 60%),
    radial-gradient(800px 400px at -10% 110%, rgba(107,20,24,.08), transparent 60%);
  background-attachment: fixed;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: none; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration: underline; color: var(--ochre-deep); }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 .6em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); font-variation-settings: "opsz" 144, "wght" 480, "SOFT" 30; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-variation-settings: "opsz" 60, "wght" 500; }
h3 { font-size: 1.35rem; font-variation-settings: "opsz" 36, "wght" 550; }
h4 { font-size: 1rem; font-variation-settings: "opsz" 24, "wght" 600; text-transform: uppercase; letter-spacing: .08em; }
p { margin: 0 0 1em; }
em, i { font-style: italic; }
strong { font-weight: 600; }
hr { border: 0; border-top: 1px solid var(--line); margin: 3rem 0; }
::selection { background: var(--forest); color: var(--paper); }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--paper); padding: .75rem 1rem; z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---- Layout utilities ------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 880px; }

.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section--tight { padding: 2.5rem 0; }

/* ---- Header / Nav ----------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: #6B1418;
  border-bottom: 1px solid rgba(0,0,0,.18);
  color: #FAF6EF;
}
.site-header .brand__wordmark {
  /* The logo is crimson on transparent — give it a small cream backdrop
     so the wordmark stays legible against the new dark-red bar. */
  background: #FAF6EF;
  padding: .35rem .65rem;
  border-radius: 6px;
}
.site-header .pill {
  background: rgba(255,255,255,.14);
  color: #FAF6EF;
  border-color: rgba(255,255,255,.25);
}
.site-header .pill--ghost {
  background: transparent;
  color: rgba(250,246,239,.85);
  border: 1px solid rgba(255,255,255,.25);
}
.site-header .site-nav a {
  color: rgba(250,246,239,.82);
}
.site-header .site-nav a:hover {
  color: #FAF6EF;
}
.site-header .site-nav a:hover::after {
  background: #F0CFA0;        /* warm gold underline on dark bg */
}
.site-header .site-nav a.cta {
  background: #FAF6EF;
  color: #6B1418;
  border: 1px solid transparent;
}
.site-header .site-nav a.cta:hover {
  background: #fff;
  color: #6B1418;
}
.site-header .nav-toggle span {
  background: #FAF6EF;
}
.site-header__bar {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: center;
  padding: 1.1rem var(--gutter);
}
.site-header__brand { display: flex; flex-direction: column; gap: .35rem; }
.site-header__meta { display: flex; gap: .5rem; flex-wrap: wrap; }

.brand { display: inline-flex; align-items: center; gap: .9rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand__wordmark {
  display: block;
  height: 96px; width: auto;
  max-width: 100%;
}
.brand__icon {
  display: none;
  height: 56px; width: 56px;
}
@media (max-width: 960px) {
  .brand__wordmark { height: 80px; }
}
@media (max-width: 720px) {
  .brand__wordmark { display: none; }
  .brand__icon     { display: block; }
}

.pill {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  padding: .25rem .6rem; border-radius: 99px; font-weight: 500;
}
.pill--ghost { background: transparent; color: var(--ink-soft); border: 1px solid var(--line); }
.pill--accent { background: var(--ochre); color: var(--ink); }

.site-nav { display: flex; gap: 1.8rem; align-items: center; flex-wrap: nowrap; }
.site-nav a {
  font-size: .92rem; font-weight: 500; color: var(--ink-soft); position: relative;
  white-space: nowrap;          /* prevent "Current Issue" / "For Authors" wrapping */
  padding: .25rem 0;
}
.site-nav a:hover { color: var(--forest); text-decoration: none; }
.site-nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.4rem;
  height: 2px; background: var(--ochre);
}
.site-nav a.cta {
  background: var(--ink); color: var(--paper);
  padding: .55rem 1rem; border-radius: var(--radius);
  font-weight: 500;
}
.site-nav a.cta:hover { background: var(--forest); }
.site-nav a.cta::after { display: none; }

/* On smaller laptops where 8 items + big logo no longer fit comfortably,
   tighten gaps before falling back to the hamburger. */
@media (max-width: 1180px) {
  .site-nav { gap: 1.3rem; }
  .site-nav a { font-size: .88rem; }
}

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; transition: .2s; }

@media (max-width: 1024px) {
  .site-header__bar { grid-template-columns: 1fr auto; }
  .site-nav {
    position: fixed; inset: 64px 0 0 0;
    background: #6B1418;
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 2rem var(--gutter); transform: translateX(100%); transition: transform .3s;
    border-top: 1px solid rgba(0,0,0,.18);
    overflow-y: auto;
  }
  .site-nav.open { transform: translateX(0); }
  .site-header .site-nav a {
    font-size: 1.4rem; font-family: var(--ff-display); padding: .8rem 0;
    width: 100%; border-bottom: 1px solid rgba(255,255,255,.1); white-space: normal;
    color: #FAF6EF;
  }
  .site-header .site-nav a:hover::after { display: none; }
  .site-header .site-nav a.cta {
    background: #FAF6EF; color: #6B1418;
    padding: .8rem 1rem; margin-top: 1rem; border: 0;
  }
  .nav-toggle { display: block; }
}

/* ---- Hero (home) ------------------------------------------------------ */
.hero {
  padding: clamp(3rem, 8vw, 7rem) 0 clamp(2rem, 5vw, 4rem);
  position: relative; overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
@media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__eyebrow {
  font-size: .78rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--ochre-deep); font-weight: 600; margin-bottom: 1.2rem;
  display: inline-flex; align-items: center; gap: .8rem;
}
.hero__eyebrow::before {
  content: ""; width: 40px; height: 1px; background: var(--ochre-deep);
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  font-variation-settings: "opsz" 144, "wght" 420, "SOFT" 50;
  line-height: 0.96; margin: 0 0 1.5rem;
  letter-spacing: -0.025em;
}
.hero__title em {
  font-variation-settings: "opsz" 144, "wght" 320, "SOFT" 80;
  color: var(--forest); font-style: italic;
}
.hero__lede {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 14, "wght" 380;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.5;
  color: var(--ink-soft); max-width: 50ch;
}
.hero__stats { display: flex; flex-direction: column; gap: 1.2rem; }
.hero__stat {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 1rem;
}
.hero__stat-n {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 144, "wght" 350;
  font-size: clamp(2.4rem, 4vw, 3.2rem); line-height: 1; color: var(--forest);
}
.hero__stat-l { font-size: .85rem; color: var(--muted); text-align: right; max-width: 18ch; }

/* ---- Issue strip on home --------------------------------------------- */
.current-issue {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.current-issue__inner {
  display: grid; grid-template-columns: 280px 1fr; gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (max-width: 768px) { .current-issue__inner { grid-template-columns: 1fr; } }
.current-issue__cover {
  position: relative;
}
.current-issue__cover img {
  border-radius: 2px;
  box-shadow:
    -2px 4px 0 var(--ink),
    -4px 8px 24px rgba(20,33,27,.18);
}
.current-issue__cover-meta {
  margin-top: 1rem; font-size: .8rem;
  display: flex; flex-direction: column; gap: .35rem;
  border-left: 2px solid var(--ochre); padding-left: .75rem;
}
.current-issue__cover-meta strong { font-weight: 600; }

.section-eyebrow {
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: .6rem;
}

/* ---- Article cards ---------------------------------------------------- */
.article-list { display: flex; flex-direction: column; gap: 0; }
.article-list > * + * { border-top: 1px solid var(--line); }

.article-card {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 1.5rem;
  padding: 1.6rem 0; align-items: start;
  transition: padding .2s;
}
.article-card:hover { padding-left: .5rem; }
.article-card__num {
  font-family: var(--ff-display); font-variation-settings: "opsz" 60, "wght" 300;
  font-size: 2.2rem; color: var(--muted); line-height: 1;
}
.article-card__body { min-width: 0; }
.article-card__section {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ochre-deep); font-weight: 600; margin-bottom: .4rem;
}
.article-card__title {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-variation-settings: "opsz" 36, "wght" 480;
  line-height: 1.2; margin: 0 0 .5rem; color: var(--ink);
}
.article-card__title a { color: inherit; }
.article-card__title a:hover { color: var(--forest); text-decoration: none; }
.article-card__authors {
  font-size: .92rem; color: var(--ink-soft); margin: 0 0 .4rem;
}
.article-card__meta {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  font-size: .8rem; color: var(--muted);
}
.article-card__meta a { color: var(--muted); }
.article-card__meta a:hover { color: var(--ochre-deep); }
.article-card__actions { display: flex; gap: .5rem; align-items: center; }

@media (max-width: 640px) {
  .article-card { grid-template-columns: 1fr; gap: .4rem; }
  .article-card__num { font-size: 1.4rem; color: var(--ochre-deep); }
  .article-card__actions { margin-top: .5rem; }
}

/* ---- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.2rem;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink); border-radius: var(--radius);
  font-family: var(--ff-body); font-size: .9rem; font-weight: 500;
  cursor: pointer; transition: .2s;
  text-decoration: none;
}
.btn:hover { background: var(--forest); border-color: var(--forest); color: var(--paper); text-decoration: none; }
.btn--ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--line);
}
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--accent { background: var(--ochre); color: var(--ink); border-color: var(--ochre); }
.btn--accent:hover { background: var(--ochre-deep); border-color: var(--ochre-deep); color: var(--paper); }
.btn--sm { padding: .4rem .8rem; font-size: .82rem; }

/* ---- Single article page --------------------------------------------- */
.article-hero {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}
.article-hero__crumb {
  font-size: .8rem; color: var(--muted); margin-bottom: 1.5rem;
}
.article-hero__crumb a { color: var(--muted); }
.article-hero__crumb a:hover { color: var(--forest); }
.article-hero__type {
  display: inline-block; background: var(--ochre); color: var(--ink);
  padding: .3rem .8rem; border-radius: var(--radius);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 1.2rem;
}
.article-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-variation-settings: "opsz" 144, "wght" 440, "SOFT" 30;
  line-height: 1.04; letter-spacing: -0.02em;
  margin: 0 0 1.4rem; max-width: 22ch;
}
.article-hero__authors {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; margin-bottom: 1.5rem;
}
.article-hero__author { max-width: 30ch; }
.article-hero__author-name {
  font-weight: 600; color: var(--ink); font-size: 1rem;
}
.article-hero__author-aff {
  font-size: .85rem; color: var(--muted); font-style: italic;
  font-family: var(--ff-display); font-variation-settings: "opsz" 14, "wght" 350;
}

.article-meta-bar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem 2rem; margin-top: 2rem;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
}
.article-meta-bar dt {
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .3rem; font-weight: 500;
}
.article-meta-bar dd { margin: 0; font-size: .95rem; color: var(--ink); font-weight: 500; }
.article-meta-bar dd a { color: var(--forest); font-weight: 500; word-break: break-word; }

.article-body {
  display: grid; grid-template-columns: 1fr 280px; gap: 4rem;
  padding-top: 3rem;
}
@media (max-width: 960px) { .article-body { grid-template-columns: 1fr; gap: 2.5rem; } }

.article-abstract h2 {
  font-size: 1rem; text-transform: uppercase; letter-spacing: .15em;
  color: var(--ochre-deep); margin-bottom: 1rem;
  font-family: var(--ff-body); font-weight: 600;
}
.article-abstract p {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 14, "wght" 380;
  font-size: 1.15rem; line-height: 1.55; color: var(--ink);
}
.article-abstract p:first-of-type::first-letter {
  font-size: 3.6em; float: left; line-height: 0.9;
  padding: .1em .1em 0 0; color: var(--forest);
  font-variation-settings: "opsz" 144, "wght" 550;
}

.article-aside {
  position: sticky; top: 100px; align-self: start;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.aside-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 1.2rem;
  border-radius: var(--radius);
}
.aside-card h4 {
  margin: 0 0 .8rem; font-family: var(--ff-body); text-transform: uppercase;
  font-size: .72rem; letter-spacing: .15em; color: var(--ochre-deep);
}
.aside-card__row { display: flex; justify-content: space-between; padding: .35rem 0; border-top: 1px dashed var(--line); font-size: .85rem; }
.aside-card__row:first-of-type { border-top: 0; }
.aside-card__row strong { color: var(--ink); font-weight: 600; }

.keyword-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.keyword-chips a {
  font-size: .78rem; padding: .25rem .65rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 99px; color: var(--ink-soft);
}
.keyword-chips a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); text-decoration: none; }

.citation-box {
  background: #fff;
  color: var(--ink);
  padding: 1.1rem 1.3rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--forest);
  border-radius: var(--radius);
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 24, "wght" 460;
  font-size: 1.05rem; line-height: 1.55;
  letter-spacing: -0.005em;
}
.citation-box em { color: var(--forest); font-style: italic;
                    font-variation-settings: "opsz" 24, "wght" 460; }
.citation-box a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.citation-box a:hover { color: var(--forest-2); }

/* ---- Archives grid --------------------------------------------------- */
.archive-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2.5rem 2rem;
}
.archive-issue { display: block; color: var(--ink); }
.archive-issue:hover { text-decoration: none; }
.archive-issue__cover {
  aspect-ratio: 3/4; background: var(--paper-2);
  border: 1px solid var(--line); overflow: hidden;
  position: relative; transition: transform .3s, box-shadow .3s;
}
.archive-issue__cover img { width: 100%; height: 100%; object-fit: cover; }
.archive-issue:hover .archive-issue__cover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}
.archive-issue__cover--placeholder {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 144, "wght" 400;
  font-size: 2.4rem; color: var(--forest); text-align: center; padding: 1rem;
  background: linear-gradient(135deg, var(--paper-2), var(--paper));
}
.archive-issue__title {
  font-family: var(--ff-display);
  font-variation-settings: "opsz" 24, "wght" 500;
  font-size: 1.05rem; margin: .9rem 0 .2rem;
}
.archive-issue__sub { font-size: .82rem; color: var(--muted); }

/* ---- Search ----------------------------------------------------------- */
.search-form {
  display: flex; gap: 0; border: 1px solid var(--ink); border-radius: var(--radius); overflow: hidden;
  max-width: 600px;
}
.search-form input {
  flex: 1; padding: .9rem 1.1rem;
  border: 0; background: var(--paper);
  font-family: var(--ff-body); font-size: 1rem; color: var(--ink);
}
.search-form input:focus { outline: none; background: var(--paper-2); }
.search-form button {
  padding: 0 1.4rem; background: var(--ink); color: var(--paper);
  border: 0; cursor: pointer; font-weight: 500;
}
.search-form button:hover { background: var(--forest); }

/* ---- Footer ----------------------------------------------------------- */
.site-footer {
  background: var(--ink); color: var(--paper);
  padding: 4rem 0 0;
  margin-top: 6rem;
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--ochre), transparent);
}
.site-footer__grid {
  max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
@media (max-width: 880px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer__col h4 {
  color: var(--ochre); font-size: .78rem; letter-spacing: .2em;
  text-transform: uppercase; margin-bottom: 1rem;
  font-family: var(--ff-body); font-weight: 600;
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col li { margin-bottom: .5rem; }
.site-footer__col a { color: var(--paper); opacity: .8; font-size: .92rem; }
.site-footer__col a:hover { opacity: 1; color: var(--ochre); }
.site-footer__col p { color: rgba(250,246,239,.7); font-size: .9rem; }
.site-footer__cc a { font-size: .8rem; color: var(--ochre); }
.brand--footer .brand__mark { background: var(--paper); color: var(--ink); }
.site-footer__bottom {
  border-top: 1px solid rgba(250,246,239,.15);
  max-width: var(--container); margin: 0 auto; padding: 1.5rem var(--gutter);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .82rem; opacity: .6;
}

/* ---- Pagination ------------------------------------------------------- */
.pagination {
  display: flex; gap: .5rem; justify-content: center; margin: 3rem 0;
}
.pagination a, .pagination span {
  padding: .55rem .9rem; border: 1px solid var(--line);
  font-size: .9rem; border-radius: var(--radius);
  color: var(--ink-soft); background: var(--paper);
}
.pagination a:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); text-decoration: none; }
.pagination .current { background: var(--ink); color: var(--paper); border-color: var(--ink); font-weight: 600; }

/* ---- Notice / empty --------------------------------------------------- */
.notice {
  padding: 2rem; background: var(--paper-2); border: 1px solid var(--line);
  border-left: 4px solid var(--ochre); border-radius: var(--radius);
  font-family: var(--ff-display); font-style: italic;
  font-variation-settings: "opsz" 14, "wght" 380;
}

/* ---- Page intro ------------------------------------------------------ */
.page-intro { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem); }
.page-intro h1 {
  font-size: clamp(2rem, 4vw, 3.4rem); margin: .5rem 0 .8rem;
  font-variation-settings: "opsz" 144, "wght" 460, "SOFT" 30;
}
.page-intro p { font-family: var(--ff-display); font-variation-settings: "opsz" 14, "wght" 380; font-size: 1.1rem; color: var(--ink-soft); max-width: 65ch; }

/* ---- Section heading -------------------------------------------------- */
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 1.5rem; padding-bottom: .8rem; border-bottom: 1px solid var(--ink);
}
.section-head h2 { margin: 0; font-size: 1.5rem; font-variation-settings: "opsz" 36, "wght" 520; }
.section-head__count {
  font-size: .8rem; color: var(--muted); font-variation-settings: "opsz" 14, "wght" 400;
  font-family: var(--ff-display); font-style: italic;
}

/* ---- Loading dots animation ----------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up:nth-child(2) { animation-delay: .05s; }
.fade-up:nth-child(3) { animation-delay: .1s; }
.fade-up:nth-child(4) { animation-delay: .15s; }
.fade-up:nth-child(5) { animation-delay: .2s; }
.fade-up:nth-child(6) { animation-delay: .25s; }

/* ---- Print ------------------------------------------------------------ */
@media print {
  .site-header, .site-footer, .article-aside, .article-card__actions { display: none; }
  body { background: white; }
}
