@charset "utf-8";
/* ============================================================================
   HUE Legacy Ventures — public site
   Palette, type and spacing lifted from HUE_Legacy_Ventures_Company_Profile.pdf
   ========================================================================= */

/* ---------------------------------------------------------------- tokens */
:root {
  /* surfaces & ink */
  --bg:        #f6f3f9;
  --surface:   #fdfcfe;
  --surface-2: #f0ecf5;
  --ink:       #1f1b29;
  --ink-soft:  #3b3546;
  --muted:     #5b5470;
  --faint:     #8a83a0;
  --rule:      #dfd9e8;
  --rule-soft: #e9e4f0;

  /* the prism spectrum, indigo -> amber */
  --c1: #3e3a8c;
  --c2: #5c3e9a;
  --c3: #6e3f9e;
  --c4: #8a3f9c;
  --c5: #a03f94;
  --c6: #b23f8f;
  --c7: #c34c89;
  --c8: #d25a7f;
  --c9: #dd5c7a;
  --c10:#e37659;
  --c11:#e2934a;
  --c12:#eda23b;

  --accent:      var(--c1);
  --accent-soft: color-mix(in oklab, var(--accent) 12%, transparent);

  --spectrum: linear-gradient(90deg,
    var(--c1) 0%, var(--c3) 18%, var(--c5) 36%,
    var(--c7) 54%, var(--c9) 72%, var(--c11) 88%, var(--c12) 100%);

  /* type */
  --display: "Italiana", "Cormorant Garamond", Didot, "Bodoni MT", Georgia, serif;
  --serif:   "Cormorant Garamond", Cormorant, Garamond, Georgia, "Times New Roman", serif;
  --smallcaps: "Cormorant SC", "Cormorant Garamond", Georgia, serif;
  --mono:    "Courier Prime", "Courier New", ui-monospace, SFMono-Regular, monospace;

  /* The four families above, the two below and the root font-size are all
     overridden from the admin console (Typography). At the defaults the
     console emits nothing and this file is exactly what renders. */
  --body-weight:   300;    /* reading weight: Cormorant runs light, every other face reads best at 400 */
  --scale-display: 1;      /* "headline size": multiplies the display face's big sizes */

  /* metrics */
  --measure:   34rem;      /* prose column, mirrors the PDF text block */
  --page:      74rem;
  --gutter:    clamp(1.25rem, 5vw, 4.5rem);
  --rhythm:    clamp(3.5rem, 9vw, 8rem);
  --radius:    2px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:        #14121b;
    --surface:   #1b1825;
    --surface-2: #221e2e;
    --ink:       #f2eff7;
    --ink-soft:  #ddd7e8;
    --muted:     #a79fbb;
    --faint:     #7d7592;
    --rule:      #322c42;
    --rule-soft: #282235;
  }
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: var(--body-weight, 300);
  font-size: clamp(1.075rem, .55vw + .95rem, 1.235rem);
  line-height: 1.72;
  font-feature-settings: "kern" 1, "liga" 1, "onum" 1;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
/* <picture> is only a wrapper for the light/dark art — let the <img> be the
   real flex/grid child so existing layout rules keep applying to it. */
picture { display: contents; }


a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .22em; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--c5);
  outline-offset: 3px;
  border-radius: 1px;
}

::selection { background: color-mix(in oklab, var(--c5) 22%, transparent); }

/* ------------------------------------------------------------- primitives */
.wrap  { max-width: var(--page); margin-inline: auto; padding-inline: var(--gutter); }
.prose { max-width: var(--measure); }
.center{ margin-inline: auto; }

.eyebrow {
  font-family: var(--mono);
  font-size: .69rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0;
}
.eyebrow--dot { display: inline-flex; align-items: center; gap: .7rem; }
.eyebrow--dot::before {
  content: "";
  width: .48rem; height: .48rem;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

h1, h2, h3, h4 {
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--ink);
}
h1 { font-family: var(--display); font-size: calc(clamp(2.6rem, 6.5vw, 4.6rem) * var(--scale-display, 1)); }
h2 { font-family: var(--display); font-size: calc(clamp(2.05rem, 4.4vw, 3.15rem) * var(--scale-display, 1)); }
h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: 1.25; }
h4 { font-family: var(--smallcaps); font-weight: 500; font-size: 1.02rem; letter-spacing: .04em; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.standfirst {
  font-style: italic;
  color: var(--muted);
  font-size: 1.06em;
  max-width: var(--measure);
  margin: 1.1rem 0 0;
}

.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

.spectrum-rule {
  height: 2px;
  border: 0;
  background: var(--spectrum);
  opacity: .85;
  margin: 0;
}

.pullquote {
  margin: 2.2rem 0 2.4rem;
  padding: .15rem 0 .15rem 1.6rem;
  border-left: 2px solid var(--accent);
  font-style: italic;
  font-size: clamp(1.32rem, 2.3vw, 1.72rem);
  line-height: 1.42;
  color: var(--ink-soft);
  max-width: 32rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .82rem 1.5rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn--accent { border-color: var(--accent); color: var(--accent); }
.btn--accent:hover { background: var(--accent); color: #fff; }
.btn--ghost { border-color: var(--rule); color: var(--muted); }
.btn--ghost:hover { background: var(--surface-2); color: var(--ink); border-color: var(--faint); }

.skip {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--bg);
  padding: .7rem 1.1rem; z-index: 100;
  font-family: var(--mono); font-size: .8rem;
}
.skip:focus { left: 1rem; top: 1rem; }

/* ------------------------------------------------------------------ header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--rule-soft);
}
.site-header__bar {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 4.4rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .8rem;
  text-decoration: none; flex: none;
}
.brand__mark { width: 2.6rem; height: auto; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: .06em;
  color: var(--ink);
}
.brand__sub {
  font-family: var(--smallcaps);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .17em;
  color: var(--faint);
  margin-top: .18rem;
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  font-family: var(--mono);
  font-size: .705rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  padding: .35rem 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
  transition: color .2s ease, border-color .2s ease;
}
.nav a:hover { color: var(--ink); border-bottom-color: var(--accent); }
.nav a[aria-current] { color: var(--ink); border-bottom-color: var(--accent); }

.nav-toggle {
  margin-left: auto;
  display: none;
  background: none; border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: .5rem .8rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted); cursor: pointer;
}

@media (max-width: 76rem) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--rule);
    padding: .6rem var(--gutter) 1.4rem;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--rule-soft); font-size: .78rem; }
}

/* -------------------------------------------------------------------- hero */
.hero {
  padding: clamp(4rem, 12vh, 9rem) 0 clamp(3rem, 8vh, 6rem);
  position: relative;
}
.hero__mark {
  width: clamp(9rem, 22vw, 15rem);
  margin-bottom: clamp(2rem, 5vw, 3.4rem);
}
.hero__name {
  font-family: var(--display);
  font-size: calc(clamp(4.2rem, 15vw, 11rem) * var(--scale-display, 1));
  line-height: .86;
  letter-spacing: .015em;
  margin: 0;
}
.hero__sub {
  font-family: var(--smallcaps);
  font-weight: 500;
  font-size: clamp(1rem, 2.4vw, 1.7rem);
  letter-spacing: .28em;
  color: var(--muted);
  margin: .9rem 0 0;
}
.hero__statement {
  font-style: italic;
  font-size: clamp(1.2rem, 2.3vw, 1.62rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 31rem;
  margin: clamp(2.4rem, 5vw, 3.6rem) 0 0;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.6rem; }
.hero__meta {
  display: flex; justify-content: space-between; gap: 1rem;
  border-top: 1px solid var(--rule);
  margin-top: clamp(3rem, 8vw, 5rem);
  padding-top: 1.1rem;
}

/* -------------------------------------------------------------- contents */
.contents { padding: var(--rhythm) 0; }
.contents__list { list-style: none; margin: 2.4rem 0 0; padding: 0; }
.contents__row {
  display: grid;
  grid-template-columns: 2.6rem 1.4rem 1fr auto;
  align-items: baseline;
  gap: .9rem;
  padding: 1.05rem 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
  transition: padding-inline-start .25s ease;
}
.contents__list li:last-child .contents__row { border-bottom: 1px solid var(--rule); }
.contents__row:hover { padding-inline-start: .5rem; }
.contents__num { font-family: var(--mono); font-size: .68rem; color: var(--faint); letter-spacing: .1em; }
.contents__dot { width: .5rem; height: .5rem; border-radius: 50%; align-self: center; }
.contents__label { font-size: 1.18rem; color: var(--ink); }
.contents__row:hover .contents__label { color: var(--accent, var(--ink)); }
.contents__page { font-family: var(--mono); font-size: .68rem; color: var(--faint); }

/* ---------------------------------------------------------------- section */
.section {
  padding: var(--rhythm) 0;
  border-top: 1px solid var(--rule);
  scroll-margin-top: 5rem;
}
.section__head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head h2 { margin-top: .9rem; }
.section__body > :first-child { margin-top: 0; }
.section__body h2 { font-family: var(--serif); font-size: 1.55rem; margin: 2rem 0 .7rem; }
.section__body h3 { margin: 1.7rem 0 .5rem; }
.section__body ul,
.section__body ol { margin: 0 0 1.15em; padding-left: 1.25em; }
.section__body li { margin-bottom: .4em; }
.section__body blockquote {
  margin: 1.8rem 0;
  padding-left: 1.4rem;
  border-left: 2px solid var(--accent);
  font-style: italic;
  color: var(--muted);
}
.section__body strong { font-weight: 600; color: var(--ink); }
.section__body a { color: var(--accent); text-decoration-color: color-mix(in oklab, var(--accent) 40%, transparent); }
.section__body a:hover { text-decoration-color: currentColor; }
.section__body code {
  font-family: var(--mono); font-size: .86em;
  background: var(--surface-2); padding: .1em .35em; border-radius: 2px;
}

/* spec layout — the Stage / Founders / Markets / Commitment table */
.spec { margin-top: 2.4rem; }
.spec__row {
  display: grid;
  grid-template-columns: minmax(7rem, 11rem) 1fr;
  gap: 1rem clamp(1.5rem, 4vw, 3.5rem);
  padding: 1.35rem 0;
  border-top: 1px solid var(--rule-soft);
}
.spec__row:first-child { border-top: 0; padding-top: 0; }
.spec__label {
  font-family: var(--smallcaps);
  font-weight: 500;
  font-size: 1.06rem;
  letter-spacing: .045em;
  color: var(--ink);
}
.spec__body { color: var(--muted); max-width: 32rem; }
@media (max-width: 40rem) {
  .spec__row { grid-template-columns: 1fr; gap: .35rem; }
}

/* grid layout — principles */
.pgrid {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.pgrid__cell { background: var(--bg); padding: 1.9rem 1.6rem; }
.pgrid__cell h4 { margin: 0 0 .55rem; display: flex; align-items: baseline; gap: .6rem; }
.pgrid__cell h4::before {
  content: ""; width: .42rem; height: .42rem; border-radius: 50%;
  background: var(--accent); flex: none; transform: translateY(-.15em);
}
.pgrid__cell p { color: var(--muted); font-size: .96em; margin: 0; }

/* -------------------------------------------------------------- news wire */
.wire { padding: var(--rhythm) 0; border-top: 1px solid var(--rule); }
.wire__head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 1.5rem;
  margin-bottom: 2.4rem;
}
.wire__status { font-family: var(--mono); font-size: .66rem; color: var(--faint); letter-spacing: .1em; }

.filters {
  display: flex; flex-wrap: wrap; gap: .55rem;
  padding: 1.2rem 0;
  border-block: 1px solid var(--rule);
  margin-bottom: 2rem;
  align-items: center;
}
.chip {
  font-family: var(--mono); font-size: .655rem;
  letter-spacing: .13em; text-transform: uppercase;
  text-decoration: none;
  padding: .42rem .85rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--muted);
  white-space: nowrap;
  transition: all .2s ease;
}
.chip:hover { border-color: var(--faint); color: var(--ink); }
.chip[aria-current] { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.filters__search { margin-left: auto; display: flex; gap: .45rem; }
.filters__search input {
  font-family: var(--mono); font-size: .72rem;
  padding: .45rem .75rem; min-width: 12rem;
  border: 1px solid var(--rule); border-radius: var(--radius);
  background: var(--surface); color: var(--ink);
}
@media (max-width: 48rem) {
  .filters__search { margin-left: 0; width: 100%; }
  .filters__search input { flex: 1; min-width: 0; }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.card {
  background: var(--bg);
  padding: 1.6rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
  position: relative;
  transition: background .25s ease;
}
.card:hover { background: var(--surface); }
.card--featured::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 2px;
  background: var(--spectrum);
}
.card__source {
  display: flex; align-items: center; gap: .55rem; flex-wrap: wrap;
  font-family: var(--mono); font-size: .63rem;
  letter-spacing: .13em; text-transform: uppercase; color: var(--faint);
}
.card__publisher { color: var(--accent); }
.card__tier {
  border: 1px solid var(--rule); border-radius: 999px;
  padding: .1rem .45rem; font-size: .58rem; letter-spacing: .1em;
}
.card__title {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.24rem; line-height: 1.28; margin: 0;
}
.card__title a { text-decoration: none; }
.card__title a:hover { text-decoration: underline; text-decoration-color: var(--accent); }
.card__quote {
  margin: 0;
  padding-left: .9rem;
  border-left: 1px solid var(--rule);
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
  font-style: italic;
}
.card__note {
  font-family: var(--serif); font-size: .93rem; color: var(--ink-soft);
  border-top: 1px dashed var(--rule); padding-top: .6rem; margin: 0;
}
.card__note b {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--faint); display: block; margin-bottom: .25rem;
  font-weight: 400;
}
.card__foot {
  margin-top: auto; padding-top: .6rem;
  display: flex; justify-content: space-between; align-items: baseline; gap: .8rem;
  font-family: var(--mono); font-size: .63rem; letter-spacing: .1em; color: var(--faint);
}
.card__link { text-decoration: none; color: var(--muted); white-space: nowrap; }
.card__link:hover { color: var(--accent); }

.empty {
  padding: 4rem 1rem; text-align: center; color: var(--faint);
  border: 1px dashed var(--rule); font-style: italic;
}

.pager {
  display: flex; justify-content: center; align-items: center; gap: 1.2rem;
  margin-top: 2.6rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .12em; color: var(--faint);
}
.pager a { text-decoration: none; color: var(--muted); }
.pager a:hover { color: var(--ink); }

/* -------------------------------------------------------------- portfolio */
.folio {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1px; background: var(--rule); border: 1px solid var(--rule);
  margin-top: 2.6rem;
}
.folio__item {
  background: var(--bg); padding: 1.9rem 1.6rem;
  text-decoration: none; display: flex; flex-direction: column; gap: .7rem;
  transition: background .25s ease;
}
.folio__item:hover { background: var(--surface); }
.folio__logo { height: 2.6rem; width: auto; object-fit: contain; object-position: left center; }
.folio__name { font-family: var(--display); font-size: calc(1.7rem * var(--scale-display, 1)); line-height: 1.1; }
.folio__meta {
  font-family: var(--mono); font-size: .63rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--faint);
}
.folio__blurb { color: var(--muted); font-size: .98rem; margin: 0; }

.company__head { display: flex; flex-wrap: wrap; gap: 2rem; align-items: flex-end; margin-bottom: 2.4rem; }
.company__logo { max-height: 4.5rem; width: auto; }
.dl {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 1.4rem; margin: 2.4rem 0; padding: 1.4rem 0; border-block: 1px solid var(--rule);
}
.dl dt {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--faint); margin-bottom: .35rem;
}
.dl dd { margin: 0; font-size: 1.05rem; }

/* ------------------------------------------------------------------- team */
.team {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 2.4rem 2rem; margin-top: 2.6rem;
}
.team__photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  filter: grayscale(1) contrast(1.03);
  border-radius: var(--radius);
  margin-bottom: .9rem;
}
.team__name { font-family: var(--serif); font-size: 1.24rem; }
.team__role {
  font-family: var(--mono); font-size: .63rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--faint); margin: .25rem 0 .6rem;
}
.team__bio { color: var(--muted); font-size: .96rem; }

/* ------------------------------------------------------------------ forms */
.form { max-width: 34rem; margin-top: 2.4rem; }
.field { margin-bottom: 1.5rem; }
.field label {
  display: block;
  font-family: var(--mono); font-size: .655rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .5rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--serif); font-size: 1.02rem; font-weight: var(--body-weight, 300);
  color: var(--ink); background: var(--surface);
  border: 1px solid var(--rule); border-radius: var(--radius);
  padding: .8rem .9rem;
  transition: border-color .2s ease;
}
.field input:focus,
.field textarea:focus { border-color: var(--c5); }
.field textarea { min-height: 11rem; resize: vertical; line-height: 1.6; }
.field__error {
  display: block; margin-top: .45rem;
  font-family: var(--mono); font-size: .66rem; letter-spacing: .06em; color: var(--c9);
}
.field--invalid input,
.field--invalid textarea { border-color: var(--c9); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.notice {
  border: 1px solid var(--rule);
  border-left: 2px solid var(--accent);
  padding: 1.2rem 1.4rem;
  background: var(--surface);
  margin-bottom: 2rem;
}
.notice--ok { border-left-color: var(--c1); }
.notice--err { border-left-color: var(--c9); }

/* ----------------------------------------------------------------- footer */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: clamp(3rem, 7vw, 5rem) 0 3rem;
  margin-top: var(--rhythm);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(auto-fit, minmax(9rem, 1fr));
  gap: 2.5rem;
}
.site-footer h4 {
  font-family: var(--mono); font-weight: 400; font-size: .63rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--faint);
  margin: 0 0 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { text-decoration: none; color: var(--muted); font-size: .96rem; }
.site-footer a:hover { color: var(--ink); text-decoration: underline; }
.site-footer__motto {
  font-family: var(--smallcaps); font-weight: 500;
  letter-spacing: .2em; color: var(--faint); font-size: .8rem;
}
.site-footer__bar {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  border-top: 1px solid var(--rule); margin-top: 3rem; padding-top: 1.4rem;
  font-family: var(--mono); font-size: .63rem; letter-spacing: .1em; color: var(--faint);
}
.site-footer__note { max-width: 44rem; line-height: 1.8; }

/* ------------------------------------------------------------------ error */
.errpage { padding: clamp(5rem, 18vh, 12rem) 0; text-align: center; }
.errpage__code {
  font-family: var(--display); font-size: calc(clamp(5rem, 18vw, 11rem) * var(--scale-display, 1));
  line-height: .9; color: var(--rule);
}
.errpage h1 { margin: 1rem 0 .8rem; }
.errpage p { color: var(--muted); max-width: 28rem; margin-inline: auto; }

/* ------------------------------------------------------------------ print */
@media print {
  .site-header, .site-footer, .filters, .pager, .hero__actions { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .section { break-inside: avoid; border-color: #ccc; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 8pt; color: #555; }
}
