/* Shardjoy — core stylesheet. One file, one source of truth for layout, colour and type. */
/* Class vocabulary is site-specific: ridge (nav), banner (hero), den (card), clearing (section),
   howl (button), roster (table), chorus (faq), trail (breadcrumbs), hollow (footer), scent (cookie notice). */

@font-face {
  font-family: 'Howl Display';
  src: url('/media/fonts/howl-display.woff2?v=1') format('woff2');
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pack Sans';
  src: url('/media/fonts/pack-sans.woff2?v=1') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #060419;
  --surface: #0d0b28;
  --surface-2: #141230;
  --surface-3: #1b1740;
  --border: #2c2856;
  --text: #f5f4fb;
  --text-dim: #c7c4dd;
  --text-mute: #8f8ab3;
  --accent-a: #3646d6;
  --accent-b: #ff5ec4;
  --accent-gradient: linear-gradient(120deg, var(--accent-a) 0%, var(--accent-b) 100%);
  --focus-ring: #9fb0ff;
  --good: #8fe3b0;
  --shadow-1: 0 18px 40px -22px rgba(3, 2, 20, 0.7);
  --shadow-2: 0 24px 60px -20px rgba(54, 70, 214, 0.35);
  --radius-den: 26px 8px 26px 8px;
  --radius-den-sm: 18px 6px 18px 6px;
  --radius-pill: 999px;
  --radius-chip: 999px;
  --container: 1180px;
  --gutter: 20px;
  --font-display: 'Howl Display', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Pack Sans', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fallback-metrics: "Arial";
}

/* size-adjust fallback tuned close to Inter/Space Grotesk metrics so swap doesn't shove layout around */
@font-face {
  font-family: 'Pack Sans Fallback';
  src: local('Arial');
  size-adjust: 107%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: 'Howl Display Fallback';
  src: local('Arial');
  size-adjust: 112%;
  ascent-override: 88%;
  descent-override: 20%;
  line-gap-override: 0%;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body), 'Pack Sans Fallback', ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display), 'Howl Display Fallback', ui-sans-serif, system-ui, sans-serif;
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--text-dim); }
ul, ol { margin: 0; padding: 0; list-style: none; }

.shj-skip {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--accent-gradient); color: #08061e; padding: 12px 20px;
  border-radius: 0 0 12px 0; font-weight: 600;
}
.shj-skip:focus { left: 0; }

:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 3px; }

.shj-wrap { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); width: 100%; }

/* ---------- Header / ridge ---------- */
.shj-ridge {
  position: sticky; top: 0; z-index: 40;
  background: rgba(6, 4, 25, 0.86);
  backdrop-filter: blur(10px);
}
.shj-ridge__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 16px; gap: 16px;
}
.shj-ridge__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display), sans-serif; font-weight: 700; font-size: 20px;
  text-decoration: none; color: var(--text);
}
.shj-ridge__glyph { width: 30px; height: 30px; flex: none; }
.shj-ridge__nav { display: flex; gap: 4px; align-items: center; }
.shj-ridge__link {
  display: inline-block; padding: 9px 14px; border-radius: var(--radius-pill);
  text-decoration: none; color: var(--text-dim); font-size: 14.5px; font-weight: 500;
  transition: background-color .18s ease, color .18s ease;
}
.shj-ridge__link:hover, .shj-ridge__link:focus-visible { background: var(--surface-2); color: var(--text); }
.shj-ridge__link[aria-current="page"] { color: var(--text); background: var(--surface-3); }
.shj-ridge__toggle {
  display: none; background: var(--surface-2); border: none; color: var(--text);
  width: 42px; height: 42px; border-radius: var(--radius-pill); cursor: pointer;
  align-items: center; justify-content: center;
}
.shj-ridge__toggle svg { width: 20px; height: 20px; }

@media (max-width: 860px) {
  .shj-ridge__nav {
    position: fixed; inset: 68px 12px auto 12px; flex-direction: column; align-items: stretch;
    background: var(--surface); border-radius: 20px; padding: 10px; gap: 2px;
    box-shadow: var(--shadow-1);
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .shj-ridge__nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .shj-ridge__link { padding: 13px 16px; }
  .shj-ridge__toggle { display: inline-flex; }
}

/* ---------- Hero / banner ---------- */
.shj-banner {
  position: relative; overflow: hidden; padding-block: 96px 72px;
  isolation: isolate;
}
.shj-banner--scene { padding-block: 120px 96px; }
.shj-banner__scene {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%;
  z-index: -2;
}
.shj-banner__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,4,25,0.55) 0%, rgba(6,4,25,0.82) 68%, var(--bg) 100%),
    linear-gradient(120deg, rgba(54,70,214,0.35), rgba(255,94,196,0.18));
}
.shj-banner__inner { max-width: 760px; margin-inline: auto; text-align: center; }
.shj-banner__eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim);
  background: var(--surface-2); padding: 7px 16px; border-radius: var(--radius-pill); margin-bottom: 22px;
}
.shj-banner__title { font-size: clamp(34px, 5.4vw, 58px); margin-bottom: 20px; }
.shj-banner__accent {
  background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.shj-banner__lead {
  font-size: 18px; color: var(--text-dim); max-width: 58ch; margin-inline: auto 22px auto;
  margin-bottom: 30px;
}
.shj-banner__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.shj-banner--plain { padding-block: 64px 48px; text-align: left; }
.shj-banner--plain .shj-banner__inner { text-align: left; margin-inline: 0; max-width: 780px; }
.shj-banner--plain .shj-banner__lead { margin-inline: 0; }

/* ---------- Buttons / howl ---------- */
.shj-howl {
  display: inline-flex; align-items: center; gap: 9px; border-radius: var(--radius-pill);
  padding: 13px 26px; font-weight: 600; font-size: 15px; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease;
  font-family: var(--font-body), sans-serif;
}
.shj-howl--solid { background: var(--accent-gradient); color: #08061a; box-shadow: var(--shadow-2); }
.shj-howl--solid:hover { transform: translateY(-2px); box-shadow: 0 30px 60px -20px rgba(255,94,196,0.45); }
.shj-howl--ghost { background: transparent; border-color: var(--border); color: var(--text); }
.shj-howl--ghost:hover { border-color: var(--accent-b); color: #fff; background: var(--surface-2); }
.shj-howl--small { padding: 9px 18px; font-size: 13.5px; }
.shj-howl:active { transform: translateY(0); }
.shj-howl svg { width: 16px; height: 16px; flex: none; }

/* ---------- Sections / clearing ---------- */
.shj-clearing { padding-block: 68px; }
.shj-clearing--tight { padding-block: 44px; }
.shj-clearing--dim { background: var(--surface); }
.shj-clearing__head { max-width: 68ch; margin-bottom: 34px; }
.shj-clearing__kicker {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--accent-b); margin-bottom: 10px;
}
.shj-clearing__title { font-size: clamp(26px, 3.4vw, 36px); }
.shj-clearing__lead { font-size: 16.5px; color: var(--text-dim); }

/* reveal-on-scroll — only hides content once the bootstrap script has confirmed JS is running,
   so a no-JS visitor or crawler always sees full content with nothing hidden behind animation. */
.shj-reveal { transition: opacity .55s ease, transform .55s ease; }
html.js .shj-reveal { opacity: 0; transform: translateY(18px); }
html.js .shj-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .shj-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Genre cards ---------- */
.shj-turf { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
.shj-turf__card {
  background: var(--surface); border-radius: var(--radius-den); padding: 30px;
  text-decoration: none; color: var(--text); display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-1); position: relative; overflow: hidden;
}
.shj-turf__card::after {
  content: ""; position: absolute; inset: auto -30% -60% auto; width: 220px; height: 220px; border-radius: 50%;
  background: var(--accent-gradient); opacity: .16; filter: blur(10px);
}
.shj-turf__title { font-size: 22px; margin-bottom: 2px; }
.shj-turf__tagline { color: var(--text-mute); font-size: 14px; margin-bottom: 6px; }
.shj-turf__blurb { font-size: 15px; }
.shj-turf__go { margin-top: auto; font-weight: 600; color: var(--accent-b); font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.shj-turf__go svg { width: 16px; height: 16px; flex: none; }
@media (max-width: 720px) { .shj-turf { grid-template-columns: 1fr; } }

/* ---------- Game cards / den, grid with uneven sizes ---------- */
.shj-pack-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.shj-pack-grid--3 { grid-template-columns: repeat(3, 1fr); }
.shj-den {
  background: var(--surface); border-radius: var(--radius-den); overflow: hidden; text-decoration: none;
  color: var(--text); display: flex; flex-direction: column; box-shadow: var(--shadow-1);
  transition: transform .18s ease, box-shadow .18s ease;
}
.shj-den:hover, .shj-den:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.shj-den--feature { grid-column: span 2; grid-row: span 2; }
.shj-den--wide { grid-column: span 2; }
.shj-den__media { aspect-ratio: 1/1; background: var(--surface-2); position: relative; }
.shj-den__media img { width: 100%; height: 100%; object-fit: contain; padding: 14%; }
.shj-den--feature .shj-den__media img { padding: 10%; }
.shj-den__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.shj-den__hub { font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--accent-b); }
.shj-den__title { font-size: 17px; margin-bottom: 0; }
.shj-den--feature .shj-den__title { font-size: 22px; }
.shj-den__snippet { font-size: 14px; color: var(--text-dim); flex: 1; }
.shj-den__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 4px; }
.shj-mark {
  display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 700;
  background: var(--surface-3); color: var(--text); padding: 5px 11px; border-radius: var(--radius-chip);
}
.shj-mark--muted { background: transparent; border: 1px solid var(--border); color: var(--text-mute); font-weight: 600; }
.shj-mark svg { width: 12px; height: 12px; }

@media (max-width: 980px) { .shj-pack-grid, .shj-pack-grid--3 { grid-template-columns: repeat(2, 1fr); } .shj-den--feature, .shj-den--wide { grid-column: span 2; } }
@media (max-width: 620px) { .shj-pack-grid, .shj-pack-grid--3 { grid-template-columns: 1fr; } .shj-den--feature, .shj-den--wide { grid-column: span 1; grid-row: span 1; } .shj-den--feature .shj-den__media { aspect-ratio: 16/10; } }

/* ---------- Table / roster ---------- */
.shj-roster-wrap { overflow-x: auto; border-radius: var(--radius-den); background: var(--surface); box-shadow: var(--shadow-1); }
.shj-roster { width: 100%; border-collapse: collapse; min-width: 640px; }
.shj-roster caption { text-align: left; padding: 20px 22px 0; font-size: 13.5px; color: var(--text-mute); caption-side: top; }
.shj-roster th, .shj-roster td { padding: 14px 18px; text-align: left; font-size: 14.5px; }
.shj-roster thead th {
  font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-mute);
  border-bottom: 1px solid var(--border); font-weight: 700;
}
.shj-roster tbody tr:nth-child(odd) { background: rgba(255,255,255,0.02); }
.shj-roster tbody td:first-child, .shj-roster tbody th[scope="row"] { font-weight: 600; color: var(--text); }
.shj-roster__cap { padding: 16px 22px 22px; font-size: 13.5px; color: var(--text-mute); margin: 0; }

/* head-to-head compare table variant */
.shj-versus th, .shj-versus td { text-align: center; }
.shj-versus th[scope="row"] { text-align: left; color: var(--text-mute); font-weight: 600; text-transform: none; font-size: 13.5px; }

/* ---------- FAQ / chorus ---------- */
.shj-chorus { display: flex; flex-direction: column; gap: 10px; }
.shj-chorus__item { background: var(--surface); border-radius: var(--radius-den-sm); overflow: hidden; }
.shj-chorus__q {
  width: 100%; text-align: left; background: none; border: none; color: var(--text); cursor: pointer;
  padding: 18px 22px; font-size: 16px; font-weight: 600; display: flex; justify-content: space-between; gap: 14px;
  align-items: center; font-family: var(--font-body), sans-serif;
}
.shj-chorus__q svg { width: 18px; height: 18px; flex: none; transition: transform .2s ease; color: var(--accent-b); }
.shj-chorus__item[open] .shj-chorus__q svg { transform: rotate(180deg); }
.shj-chorus__a { padding: 0 22px 20px; font-size: 15px; color: var(--text-dim); }
/* collapsed state only applies once the bootstrap script confirms JS runs the toggle;
   without it every answer stays visible as a plain list, so nothing is ever unreachable. */
html.js .shj-chorus__a { display: none; }
html.js .shj-chorus__item[open] .shj-chorus__a { display: block; }

/* ---------- Breadcrumbs / trail ---------- */
.shj-trail { font-size: 13.5px; color: var(--text-mute); padding-top: 22px; }
.shj-trail ol { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.shj-trail a { color: var(--text-mute); text-decoration: none; }
.shj-trail a:hover { color: var(--text); text-decoration: underline; }
.shj-trail__sep { opacity: .5; }
.shj-trail [aria-current="page"] { color: var(--text-dim); }

/* ---------- Contact / correspondence ---------- */
.shj-beacon {
  background: var(--surface); border-radius: var(--radius-den); padding: 30px; box-shadow: var(--shadow-1);
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between;
}
.shj-beacon__label { font-size: 13px; color: var(--text-mute); margin-bottom: 4px; }
.shj-beacon__email { font-size: 19px; font-weight: 700; text-decoration: none; color: var(--text); word-break: break-word; }
.shj-beacon__email:hover { color: var(--accent-b); }
.shj-postal { margin-top: 18px; font-size: 14.5px; color: var(--text-dim); }

/* ---------- Review page ---------- */
.shj-verdict { font-size: 18px; color: var(--text-dim); max-width: 74ch; }
.shj-facts { background: var(--surface); border-radius: var(--radius-den); padding: 24px 26px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 22px; margin-block: 8px; }
.shj-facts dt { font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-mute); margin-bottom: 3px; }
.shj-facts dd { margin: 0; font-size: 15px; font-weight: 600; }
@media (max-width: 560px) { .shj-facts { grid-template-columns: 1fr 1fr; } }

.shj-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.shj-gallery figure { margin: 0; background: var(--surface); border-radius: var(--radius-den-sm); overflow: hidden; }
.shj-gallery img { width: 100%; height: auto; }
.shj-gallery figcaption { padding: 10px 14px; font-size: 12.5px; color: var(--text-mute); }
@media (max-width: 640px) { .shj-gallery { grid-template-columns: 1fr; } }

.shj-body { max-width: 74ch; }
.shj-body h2 { font-size: 23px; margin-top: 1.6em; }
.shj-body p { font-size: 16px; }

.shj-scales { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.shj-scales__block { background: var(--surface); border-radius: var(--radius-den-sm); padding: 20px 22px; }
.shj-scales__block h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.shj-scales__block--pro h3 { color: var(--good); }
.shj-scales__block--con h3 { color: var(--accent-b); }
.shj-scales__block li { display: flex; gap: 10px; padding: 7px 0; font-size: 14.5px; color: var(--text-dim); align-items: flex-start; }
.shj-scales__block li svg { width: 15px; height: 15px; flex: none; margin-top: 3px; }
@media (max-width: 620px) { .shj-scales { grid-template-columns: 1fr; } }

.shj-kin { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
.shj-kin a { display: block; background: var(--surface); border-radius: var(--radius-den-sm); padding: 14px 16px; text-decoration: none; color: var(--text); font-size: 14.5px; font-weight: 600; }
.shj-kin a:hover { background: var(--surface-3); }
.shj-kin span { display: block; font-weight: 400; color: var(--text-mute); font-size: 12.5px; margin-top: 3px; }
@media (max-width: 760px) { .shj-kin { grid-template-columns: 1fr; } }

.shj-score {
  display: inline-flex; align-items: baseline; gap: 6px; background: var(--surface); border-radius: var(--radius-pill);
  padding: 10px 18px 10px 14px;
}
.shj-score b { font-family: var(--font-display), sans-serif; font-size: 22px; }
.shj-score span { font-size: 12.5px; color: var(--text-mute); }

/* ---------- Listicle ---------- */
.shj-tally { counter-reset: shj-tally; display: flex; flex-direction: column; gap: 22px; }
.shj-tally__item { display: grid; grid-template-columns: 76px 1fr; gap: 20px; background: var(--surface); border-radius: var(--radius-den); padding: 22px 24px; align-items: start; }
.shj-tally__num {
  counter-increment: shj-tally; font-family: var(--font-display), sans-serif; font-size: 38px;
  background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.shj-tally__num::before { content: counter(shj-tally, decimal-leading-zero); }
.shj-tally__stand { font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--accent-b); font-weight: 700; margin-bottom: 4px; }
.shj-tally__title { font-size: 20px; margin-bottom: 8px; }
@media (max-width: 640px) { .shj-tally__item { grid-template-columns: 1fr; } }

/* ---------- Sitemap page ---------- */
.shj-mapgroups { display: grid; gap: 26px; grid-template-columns: repeat(4, 1fr); }
.shj-mapgroup { background: var(--surface); border-radius: var(--radius-den-sm); padding: 22px 24px; }
.shj-mapgroup h2 { font-size: 16px; margin-bottom: 12px; }
.shj-mapgroup li { padding: 5px 0; }
.shj-mapgroup a { text-decoration: none; color: var(--text-dim); font-size: 14.5px; }
.shj-mapgroup a:hover { color: var(--text); text-decoration: underline; }
@media (max-width: 860px) { .shj-mapgroups { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .shj-mapgroups { grid-template-columns: 1fr; } }

/* ---------- Legal pages ---------- */
.shj-statute { max-width: 74ch; }
.shj-statute h2 { font-size: 20px; margin-top: 1.7em; }
.shj-statute__updated { font-size: 13.5px; color: var(--text-mute); margin-bottom: 26px; }

/* ---------- Footer / hollow ---------- */
.shj-hollow { background: var(--surface); margin-top: 40px; padding-block: 56px 30px; }
.shj-hollow__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 40px; }
.shj-hollow__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-family: var(--font-display), sans-serif; font-weight: 700; font-size: 19px; margin-bottom: 12px; }
.shj-hollow__blurb { font-size: 14px; color: var(--text-mute); max-width: 34ch; }
.shj-hollow h3 { font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-mute); margin-bottom: 14px; }
.shj-hollow li { padding: 5px 0; }
.shj-hollow a { text-decoration: none; color: var(--text-dim); font-size: 14.5px; }
.shj-hollow a:hover { color: var(--text); }
.shj-hollow__contact { font-size: 14px; color: var(--text-dim); }
.shj-hollow__contact a { display: inline-block; margin-top: 6px; font-weight: 600; color: var(--text); }
.shj-hollow__bottom { padding-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between; font-size: 13px; color: var(--text-mute); }
@media (max-width: 900px) { .shj-hollow__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .shj-hollow__grid { grid-template-columns: 1fr; } }

/* ---------- Cookie notice / scent ---------- */
.shj-scent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60; max-width: 560px; margin-inline: auto;
  background: var(--surface-2); border-radius: var(--radius-den); padding: 20px 22px; box-shadow: var(--shadow-1);
  display: flex; flex-direction: column; gap: 14px;
}
.shj-scent[hidden] { display: none; }
.shj-scent p { font-size: 13.5px; color: var(--text-dim); margin: 0; }
.shj-scent__actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }

/* ---------- Back to top ---------- */
.shj-totop {
  position: fixed; right: 18px; bottom: 18px; z-index: 50; width: 46px; height: 46px; border-radius: var(--radius-pill);
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text); display: flex;
  align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-1);
}
.shj-totop[hidden] { display: none; }
.shj-totop svg { width: 18px; height: 18px; }

/* ---------- Utility ---------- */
.shj-vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.shj-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .shj-grid-2 { grid-template-columns: 1fr; } }
.shj-lede { font-size: 17px; color: var(--text-dim); max-width: 68ch; }
.shj-stack { display: flex; flex-direction: column; gap: 22px; }
.shj-stack li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-dim); font-size: 15px; }
.shj-stack li svg { width: 17px; height: 17px; flex: none; margin-top: 4px; color: var(--accent-b); }
