* { box-sizing:border-box; }
  body { margin:0; background:var(--cream); color:var(--ink);
         font-family:var(--font-sans); font-size:15px; line-height:1.6; }
  /* Grid and flex children default to min-width:auto, which lets a wide table
     push the whole page sideways. This is the rule the signed-in mockup was
     missing on all seventeen routes. */
  .l-wrap > *, .l-sec > * { min-width:0; }
  .l-wrap { max-width:var(--wrap); margin:0 auto; padding:0 16px; }
  .l-sec { padding:38px 0; }
  .l-alt { background:var(--surface-2); border-block:1px solid var(--line-soft); }
  .l-sub { font-size:var(--text-base); line-height:1.62; color:var(--ink-2);
           margin:0; max-width:66ch; }
  /* A link in a lede had no colour and came out in the browser's own
     -webkit-link — rgb(158,158,255) in dark, #0000EE in light. .l-sub is on
     every page, so this was one page today and any page that adds a link to a
     lede tomorrow. Set here rather than on the page that happened to have
     one. */
  .l-sub a { color:var(--gold-dk); text-underline-offset:2px; }
  /* A CENTRED SECTION, for pages whose head is centred too. Lives here rather
     than in a page's stylesheet because two clusters use it now — it was
     .ai-c in ai_astrologer.py, and pages/dasha.py picked up the class without
     the rule, so its ledes rendered left under centred heads and looked like
     an oversight. margin-inline is not optional: .l-sub caps at 66ch, so
     centring the text without centring the box leaves a centred column
     sitting on the left of the wrap.
     Only the lede. Lists, tables and cards inside a .l-ctr stay left —
     centred body copy is ragged on both edges and a centred bulleted list
     stops forming a column to scan. */
  .l-ctr .l-sub { text-align:center; margin-inline:auto; }
  /* TWO LEDES GO SIDE BY SIDE. One is fine stacked: 66ch keeps a line
     readable and the grid or panel under it carries the width. Two of them
     stacked is not — they fill the left half of the band, the right half is
     empty, and under a full-width heading with a full-width panel below it
     the pair reads as a column that has been cut off rather than as air.
     Measured at 1280: 582px of a 1180px section, 49% of it, twice over.

     A track each, so both keep the SAME measure they had — this is a layout
     fix, not a wider line. Stretching one paragraph across 1180px would give
     150 characters to a line that is already at 74.

     auto-fit rather than two fixed columns, because the home page has a pair
     inside a half-width column; there they stack again rather than becoming
     two forty-character ribbons.

     .l-sub KEEPS ITS 66ch. Each track comes out at 552px against a 582px
     cap, so the track is what governs in two columns and the cap is what
     governs when it falls back to one — which is the width it has today.
     Overriding the cap to none looked tidier and gave a 736px tablet a
     93-character line, which is the fault this rule exists to avoid.

     min(400px, 100%), NOT 400px. A minimum track wider than the container
     does not shrink — it overflows it, and at 320px the whole page scrolled
     sideways by 26px. min() caps the floor at whatever room there is. */
  .l-lede { display:grid; gap:10px 44px; margin-bottom:20px;
            grid-template-columns:repeat(auto-fit, minmax(min(400px, 100%), 1fr)); }
  .l-mb { margin-bottom:20px; }
  .l-mt { margin-top:22px; }
  .l-signin, .l-signup { text-decoration:none; white-space:nowrap; }
  .l-act-u, .l-act-a { display:flex; align-items:center; gap:8px; }
  /* The drawer carries Sign in and Sign up and nothing else now — the theme
     toggle moved to top_nav's `bar`, which is the header at every width. Its
     own display and gap belong to the component, in ui.py, so the breakpoint
     that hides it there is not overruled from here. */
  .c-drawer-a .l-signin, .c-drawer-a .l-signup {
      flex:1; min-height:44px; padding:0 15px; justify-content:center; }
  /* Date and time are one question, asked once. Both values are short enough
     to sit side by side even at 360px, and pairing them stops the form
     reading as five separate chores. */
  /* Date and time side by side, and STACKED on the narrowest phones. The two
     were always a 1fr 1fr grid; what changed is that the time trigger now
     reads 09:15 PM as four flex spans rather than one string, so its
     min-content is wider than half of a 288px card and the card grew to 311 —
     7px of sideways scroll on the page the whole site links to. minmax(0,1fr)
     alone would have kept the row and clipped the readout instead. */
  .l-dt { display:grid; grid-template-columns:1fr; gap:10px; }
  @media (min-width:360px) {
    .l-dt { grid-template-columns:minmax(0,1fr) minmax(0,1fr); }
  }
  /* Part of the hero's left column, not a band of its own. It anchors the
     bottom of that column so it finishes level with the form card. */
  /* Inside the form card the list sits under the button, separated by a rule
     rather than by more whitespace — it is what pressing the button gets you,
     so it should read as part of the button's promise. */
  .l-cardsub { margin:2px 0 14px; }
  .l-cardinc { margin-top:14px; padding-top:14px;
               border-top:1px solid var(--line-soft); }
  .l-inc { list-style:none; margin:0; padding:0; display:grid; gap:9px; }
  .l-inc li { display:flex; align-items:flex-start; gap:9px; }
  .l-inc svg { flex:none; margin-top:2px; color:var(--gold-dk); }
  .l-inc span { font-size:14px; line-height:1.45; color:var(--ink-2); }

  .l-samp { display:flex; align-items:center; gap:13px; padding:14px 16px;
            text-decoration:none; color:var(--ink); border:1px solid var(--line);
            border-radius:var(--r-card); background:var(--surface); }
  .l-samp:hover { border-color:var(--gold); background:var(--gold-bg); }
  /* Between the two-column breakpoint and 1024 the left column runs 9px past
     the card, because the headline takes an extra line before the columns are
     wide enough. Four pixels off the padding and four off the stack gap close
     it without anyone being able to tell the difference. */

  .l-samp > svg:first-child { flex:none; color:var(--gold-dk); }
  .l-samp > svg:last-child { flex:none; color:var(--ink-3); margin-left:auto; }
  .l-samp span { min-width:0; }
  .l-samp b { display:block; font-size:14.5px; font-weight:700; }
  .l-samp i { display:block; font-style:normal; font-size:12.5px;
              color:var(--ink-3); margin-top:2px; line-height:1.45; }
  .l-dt .c-pf { margin-bottom:0; }
  .l-dth { margin:6px 0 var(--space-3); }
  .l-mb2 { margin-bottom:16px; }

  .l-mark { display:block; width:34px; height:34px; flex:none; }
  .l-mark img { display:block; width:100%; height:100%; border-radius:19%; }

  /* proof row */
  .l-proof { background:var(--gold-bg); border-block:1px solid var(--line); }
  .l-pfr { display:grid; grid-template-columns:repeat(2,1fr); gap:0;
           padding:4px 0; }
  .l-pf { padding:18px 4px 18px 18px; }
  /* Hairlines, not a colour change, do the separating — and only between
     cells that are actually side by side, which changes at each breakpoint. */
  .l-pf:nth-child(2n) { border-left:1px solid var(--line); }
  .l-pf:nth-child(n+3) { border-top:1px solid var(--line); }
  .l-pf:first-child { padding-left:0; }
  .l-pf b { display:block; font-family:var(--font-serif); font-size:29px;
            line-height:1.05; font-weight:600; color:var(--gold-dk);
            letter-spacing:-.015em; }
  .l-pf span { display:block; font-size:13.5px; font-weight:650; margin-top:5px;
               color:var(--ink); }
  .l-pf i { display:block; font-style:normal; font-size:12.5px; color:var(--ink-3);
            margin-top:2px; }
  @media (min-width:760px) {
    .l-pfr { grid-template-columns:repeat(4,1fr); }
    .l-pf:nth-child(n+3) { border-top:0; }
    .l-pf:nth-child(n+2) { border-left:1px solid var(--line); }
  }

  /* panchang */
  .l-panch { display:grid; gap:8px; grid-template-columns:repeat(2,1fr); }
  .l-pc { padding:13px 14px; border:1px solid var(--line); border-radius:var(--r-in);
          background:var(--surface); }
  .l-pc span { display:block; font-family:var(--font-mono); font-size:9px;
               letter-spacing:.13em; color:var(--ink-3); }
  .l-pc b { display:block; font-size:15px; margin-top:5px; }
  .l-pc i { display:block; font-style:normal; font-size:12px; color:var(--ink-3); }
  .l-pc.c-t-good b { color:var(--good); } .l-pc.c-t-bad b { color:var(--bad); }
  @media (min-width:700px) { .l-panch { grid-template-columns:repeat(3,1fr); } }
  @media (min-width:1000px) { .l-panch { grid-template-columns:repeat(6,1fr); } }

  /* rashifal */
  .l-rsg { display:grid; gap:7px; grid-template-columns:repeat(3,1fr); }
  .l-rs { display:flex; flex-direction:column; align-items:center; gap:1px;
          min-height:98px; justify-content:center; padding:12px 5px;
          border:1px solid var(--line); border-radius:var(--r-in);
          background:var(--surface); text-decoration:none; color:var(--ink);
          text-align:center; }
  .l-rs:hover { border-color:var(--gold); background:var(--gold-bg); }
  .l-rs .c-sym { color:var(--gold-dk); margin-bottom:4px; }
  .l-rs b { font-size:12.5px; font-weight:650; }
  .l-rs i { font-style:normal; font-size:10.5px; color:var(--ink-3); }
  .l-rs u { text-decoration:none; font-size:12px; color:var(--gold-dk); }
  @media (min-width:560px) { .l-rsg { grid-template-columns:repeat(4,1fr); } }
  @media (min-width:900px) { .l-rsg { grid-template-columns:repeat(6,1fr); } }

  /* tools */
  .l-tools { display:grid; gap:12px; }
  .l-ti { display:grid; place-items:center; width:40px; height:40px;
          border-radius:11px; color:var(--gold-dk); background:var(--gold-bg);
          margin-bottom:11px; }
  .l-tl { display:flex; flex-wrap:wrap; gap:6px; margin-top:13px; }
  .l-tl a { display:inline-flex; align-items:center; min-height:44px;
            font-size:12.5px; font-weight:600; padding:0 14px;
            border-radius:var(--r-pill); color:var(--ink-2);
            border:1px solid var(--line); background:var(--surface);
            text-decoration:none; }
  .l-tl a:hover { color:var(--gold-dk); border-color:var(--gold);
                  background:var(--gold-bg); }
  @media (min-width:720px) { .l-tools { grid-template-columns:repeat(2,1fr); } }

  /* astrologers */
  /* .h-astro in home.py sets display on top of this and is the only caller,
     so anything layout-ish added here is dead. The phone rail lives there. */
  .l-astro { display:grid; gap:11px; grid-template-columns:repeat(1,1fr); }
  .l-ah { display:flex; align-items:center; gap:11px; }
  .l-an { display:block; font-size:15px; font-weight:700; }
  .l-as { display:block; font-size:12.5px; color:var(--ink-3); }
  .l-am { display:flex; gap:5px; margin-top:12px; }
  @media (min-width:600px) { .l-astro { grid-template-columns:repeat(2,1fr); } }
  @media (min-width:1000px) { .l-astro { grid-template-columns:repeat(4,1fr); } }

  /* The unknown-birth-time escape hatch belongs inside the time picker, where
     someone reaches it at the exact moment they realise they cannot answer. */
  .l-unk { margin-top:14px; padding-top:12px; border-top:1px solid var(--line-soft); }
  .l-faq { margin-top:16px; }


/* ── page head ────────────────────────────────────────── */
.s-crumb { padding-top:16px; }
.s-top { padding:22px 0 6px; }
.s-head { max-width:64ch; }
/* With a form beside it the header is the full width and the two columns
   share it, so the reading underneath is not squeezed into a rail. */
.s-head-2 { max-width:none; display:grid; gap:26px;
            grid-template-columns:minmax(0,1fr); align-items:start; }
.s-head-2 > * { min-width:0; }
@media (min-width:960px) {
  .s-head-2 { grid-template-columns:minmax(0,1fr) minmax(0,380px); }
}
.s-head-t { max-width:64ch; }
.s-eyebrow { display:inline-block; font-family:var(--font-mono); font-size:10px;
             letter-spacing:.14em; text-transform:uppercase; color:var(--gold-dk);
             padding:5px 10px; border-radius:var(--r-pill);
             background:var(--gold-bg); margin-bottom:14px; }
.s-h1 { font-family:var(--font-serif); font-size:clamp(27px,5.2vw,42px);
        line-height:1.08; letter-spacing:-.021em; font-weight:600;
        margin:0 0 13px; text-wrap:balance; }
.s-h1 em { font-style:normal; color:var(--gold-dk); }
.s-dek { font-size:var(--text-md); line-height:1.62; color:var(--ink-2);
         margin:0; max-width:58ch; }
/* What the page gives back, named. See page_head() for why it is only on the
   fourteen with a full birth-details form. */
.s-ret { margin-top:18px; max-width:58ch; }
.s-ret ul { margin:8px 0 0; padding:0; list-style:none; display:grid;
            gap:5px; }
.s-ret li { position:relative; padding-left:18px; font-size:14px;
            line-height:1.55; color:var(--ink-2); }
.s-ret li::before { content:''; position:absolute; left:2px; top:9px;
                    width:5px; height:5px; border-radius:50%;
                    background:var(--gold-solid); }
@media (min-width:960px) {
  .s-head-fill { align-items:stretch; }
  .s-head-fill > .s-head-t { display:flex; flex-direction:column; }
  .s-head-fill .s-meta { margin-top:auto; padding-top:16px; }
}
/* The facts a dek would otherwise carry as adjectives. Mono, so they read as
   data rather than as more sentence. */
/* THE CENTRED HEAD, for pages that are not asking for a birth time. The
   default sits beside a form card and runs to 64ch down the left; a page
   whose top is a choice rather than a form leaves that whole right-hand
   column empty, and the text reads as the caption of something that failed
   to load. Two pages want this — the tarot hub, whose top half is six
   readings, and the astrologer pages, whose top half is a roster — so it
   lives here rather than being written twice. */
.s-head-c { max-width:700px; margin-inline:auto; text-align:center; }
.s-head-c .s-eyebrow { font-size:11.5px; letter-spacing:.09em; font-weight:700;
          border:1px solid var(--gold-lt); padding:5px 13px; margin-bottom:16px; }
.s-head-c .s-h1 { font-size:clamp(30px,5.6vw,46px); }
.s-head-c .s-dek { margin-inline:auto; max-width:62ch; }
.s-head-c .s-meta { justify-content:center; }

.s-meta { display:flex; flex-wrap:wrap; gap:8px 18px; margin-top:16px;
          font-family:var(--font-mono); font-size:11px; letter-spacing:.04em;
          color:var(--ink-3); }
.s-meta span { display:flex; align-items:center; gap:7px; }
.s-meta span + span::before { content:''; width:3px; height:3px; flex:none;
          border-radius:50%; background:var(--line); margin-left:-11px; }

/* ── related ──────────────────────────────────────────── */
.s-rel { display:grid; gap:10px; grid-template-columns:1fr; }
@media (min-width:620px) { .s-rel { grid-template-columns:repeat(2,1fr); } }
@media (min-width:960px) { .s-rel { grid-template-columns:repeat(3,1fr); } }
.s-rel > * { min-width:0; }
.s-rel-i { display:flex; align-items:flex-start; gap:12px; padding:14px 16px;
           min-height:44px; text-decoration:none; color:var(--ink);
           background:var(--surface); border:1px solid var(--line);
           border-radius:var(--r-card); }
.s-rel-i:hover { border-color:var(--gold); background:var(--gold-bg); }
.s-rel-k { flex:none; display:grid; place-items:center; width:32px; height:32px;
           border-radius:9px; background:var(--gold-bg); color:var(--gold-dk); }
.s-rel-x { min-width:0; display:flex; flex-direction:column; line-height:1.4; }
.s-rel-x b { font-size:14px; font-weight:650; }
.s-rel-x i { font-style:normal; font-size:12.5px; color:var(--ink-3);
             margin-top:2px; }

/* ── closing CTA ──────────────────────────────────────── */
.s-cta { display:grid; gap:20px; align-items:center; padding:28px;
         border-radius:var(--r-card); border:1px solid var(--gold-lt);
         background:
           radial-gradient(120% 140% at 88% 0%, var(--gold-bg) 0%, transparent 64%),
           var(--surface); }
@media (min-width:820px) {
  .s-cta { grid-template-columns:1fr auto; gap:34px; padding:32px 36px; } }
.s-cta > * { min-width:0; }
.s-cta h2 { font-family:var(--font-serif); font-size:clamp(21px,3.4vw,28px);
            line-height:1.16; letter-spacing:-.018em; font-weight:600;
            margin:0 0 9px; text-wrap:balance; }
.s-cta p { font-size:var(--text-base); line-height:1.6; color:var(--ink-2);
           margin:0; max-width:52ch; }
.s-cta-b { display:flex; flex-wrap:wrap; gap:10px; }
.s-cta-b > * { flex:1 1 auto; }
.s-cta-alt { display:inline-flex; align-items:center; justify-content:center;
             gap:8px; text-decoration:none; white-space:nowrap; }
.s-cta-alt svg { color:var(--gold-dk); }

  .x-top { display:grid; gap:24px; grid-template-columns:1fr; align-items:start; }
  /* A grid item defaults to min-width:auto, so a table with a min-width
     pushes the whole page sideways instead of scrolling inside its own
     container. 438px of horizontal scroll at 320px, from one table. */
  .x-top > div { min-width:0; }
  @media (min-width:900px) { .x-top { grid-template-columns:minmax(0,320px) 1fr; } }
  /* Top-aligned on purpose, unlike .w-pair on dasha. The right-hand side
     here is a table of five to sixteen rows, so stretching the score card to
     match made it 709px tall holding 60 characters on choghadiya — a worse
     result than the 53px of raggedness it fixed on lucky-name. A small card
     beside a long table belongs at the top of it. */
  .x-pair { display:grid; gap:20px; grid-template-columns:1fr;
    align-items:start; }
  @media (min-width:900px) {
    .x-pair { grid-template-columns:minmax(0,330px) minmax(0,1fr); }
  }
  .x-pair > * { min-width:0; }
  .x-pair .x-big { margin-bottom:0; }
  .x-big { padding:20px 22px; border:1px solid var(--gold-lt);
           border-radius:var(--r-card); background:var(--gold-bg);
           text-align:center; margin-bottom:14px; }
  .x-big b[data-v] { display:block; font-family:var(--font-serif);
                     font-size:52px; font-weight:600; line-height:1;
                     color:var(--gold-dk); margin:6px 0 3px; }
  .x-big i { display:block; font-style:normal; font-size:16px; font-weight:600;
             color:var(--ink); }
  .x-big em { display:block; font-style:normal; font-family:var(--font-mono);
              font-size:11px; color:var(--ink-3); margin-top:6px; }
  .x-tbl { border:1px solid var(--line); border-radius:var(--r-card);
           background:var(--surface); overflow:auto; max-height:560px; }
  .x-tbl table { width:100%; border-collapse:collapse; font-size:13px;
                 min-width:420px; }
  .x-tbl th { position:sticky; top:0; background:var(--surface); text-align:left;
              font-family:var(--font-mono); font-size:9.5px; letter-spacing:.11em;
              text-transform:uppercase; color:var(--ink-3); font-weight:400;
              padding:11px 14px; border-bottom:1px solid var(--line); }
  .x-tbl td { padding:10px 14px; border-bottom:1px solid var(--line);
              color:var(--ink-2); font-variant-numeric:tabular-nums; }
  .x-tbl td b { color:var(--gold-dk); }
  .x-tbl tr:last-child td { border-bottom:0; }
  .x-mine td { background:var(--gold-bg); }
  .x-mine td b { color:var(--ink); }
  .x-states { display:grid; gap:12px; grid-template-columns:1fr; }
  @media (min-width:840px) { .x-states { grid-template-columns:repeat(3,1fr); } }
  .x-state { min-width:0; padding:16px 18px; border:1px solid var(--line);
             border-radius:var(--r-card); background:var(--surface); }
  .x-state b { display:block; font-size:14px; font-weight:600; color:var(--ink);
               margin:5px 0 7px; }
  .x-state p { font-size:13px; line-height:1.6; color:var(--ink-2); margin:0; }
  .x-sel { display:grid; gap:10px; grid-template-columns:repeat(2,1fr); }
  .x-times { display:grid; gap:10px; grid-template-columns:repeat(2,1fr); }
  .x-note { font-size:14px; line-height:1.65; color:var(--ink-2);
            max-width:74ch; margin:0 0 18px; }

  /* g-, not c-. The first version of this used .c-ring, which lib/ui.py
     already owns and caps at max-width:330px — the ring rendered at 330 in a
     526px card and I spent a measurement working out why it would not grow.
     checks/clash.py named it in one line. c- is the shell's namespace; a
     page that adds to it is borrowing trouble, so this page has its own
     letter the way rahu-kaal has r-. */
  /* ── twenty-four hours, in sixteen ──────────────────────────── */
  .g-two { display:grid; gap:20px; grid-template-columns:1fr;
           align-items:stretch; }
  @media (min-width:900px) {
    .g-two { grid-template-columns:minmax(0,1fr) minmax(0,1fr); }
  }
  .g-two > * { min-width:0; }
  /* A grid item should not also cap its own height. */
  .g-two > .x-tbl { max-height:none; }
  .g-arc { display:flex; flex-direction:column; justify-content:center;
           padding:16px 18px; border:1px solid var(--line);
           border-radius:var(--r-card); background:var(--surface); }
  /* The ring fills its column. Capped at 460 it left the card, which is
     stretched to the sixteen-row table beside it, about 150px taller than
     anything in it. */
  .g-dome { position:relative; max-width:560px; width:100%;
            margin:6px auto; container-type:inline-size; }
  .g-ring { display:block; width:100%; height:auto; }

  /* Solid, hollow, hatched. Not three colours — see ring16(). */
  .g-w path { stroke:var(--ink-3); stroke-width:.75; }
  .g-w-g path { fill:var(--gold-solid); stroke:var(--gold-solid); }
  .g-w-n path { fill:var(--rail); }
  .g-w-a path { fill:url(#g-hatch); }
  .g-hl { stroke:var(--ink-3); stroke-width:2; }
  .g-tick { stroke:var(--ink); stroke-width:2; }
  /* ── 11px HERE IS NOT 11px ON THE GLASS ──
     This is SVG text, so the specified size is multiplied by the transform
     that maps the 640-unit viewBox onto whatever width .g-dome has. The dome
     is max-width:560, so the multiplier is never even 1: 0.88 at its widest,
     0.39 on a 320 screen. "sunrise" and "sunset" — the two words saying which
     end of the ring is which — were drawn at 9.6px at best and 4.3px at
     worst. Not a phone bug. 11px here never once reached 11px on any screen
     this site is viewed on.

     STEPPED AGAINST THE CONTAINER, because the multiplier IS the container's
     width and no unit inverts it: 1cqw grows with the box and what is needed
     shrinks with it. .g-dome already declares container-type:inline-size, so
     each step is spec x (container / 640), landing just over the floor:

       container 560 -> 14 x 0.875 = 12.3    container 320 -> 23 x 0.500 = 11.5
       container 410 -> 18 x 0.641 = 11.5    container 250 -> 29 x 0.391 = 11.3

     checks/public-mobile.mjs measures this the way a reader gets it, through
     getScreenCTM(), so the arithmetic above is asserted and not trusted. */
  .g-tk { fill:var(--ink-2); font-family:var(--font-mono); font-size:14px; }
  @container (max-width:520px) { .g-tk { font-size:18px; } }
  @container (max-width:380px) { .g-tk { font-size:23px; } }
  @container (max-width:300px) { .g-tk { font-size:29px; } }

  /* The answer stands in the middle of the ring, sized against the ring so
     it fits at every width the ring takes. */
  .g-in { position:absolute; left:50%; top:50%; width:46%;
          transform:translate(-50%,-50%); }
  .g-in .x-big { margin:0; padding:0; border:0; background:none; }
  .g-in .x-big b[data-v] { font-size:clamp(20px, 9cqw, 40px); }
  /* The floor is the clamp's minimum. These sit inside the ring and are
     sized against it on purpose; what was wrong is only how small they
     were allowed to get — 10px and 9px, on the line naming the period
     and the one giving its hours. */
  .g-in .x-big i { font-size:clamp(11px, 3cqw, 13px); }
  .g-in .x-big em { font-size:clamp(11px, 2.4cqw, 13px); }

  .g-key { display:flex; flex-wrap:wrap; gap:6px 16px; margin-top:4px;
           font-family:var(--font-mono); font-size:11px; color:var(--ink-3); }
  .g-k { display:inline-flex; align-items:center; gap:6px; }
  .g-k::before { content:''; width:13px; height:13px; border-radius:3px;
                 border:1px solid var(--ink-3); flex:none; }
  .g-k-g::before { background:var(--gold-solid); border-color:var(--gold-solid); }
  .g-k-n::before { background:var(--rail); }
  .g-k-a::before { background:repeating-linear-gradient(45deg,
                     var(--ink-3) 0 2px, transparent 2px 5px); }

.c-seo { display:grid; gap:16px; grid-template-columns:1fr; max-width:78ch; }
@media (min-width:900px) { .c-seo { grid-template-columns:repeat(2,1fr);
                                    max-width:none; } }
.c-seo-s h3 { font-family:var(--font-serif); font-size:18px; font-weight:600;
              color:var(--ink); margin:0 0 7px; }
.c-seo-s p { font-size:13.5px; line-height:1.7; color:var(--ink-2); margin:0;
             max-width:72ch; }