/* ==========================================================================
   Den Socialpædagogiske Vej — design system
   Signature idea: "vejen" — a single guiding line that runs through the
   hero and becomes the literal connector between the four steps of the
   working process. Calm, structured, grounded — no photography of people;
   an abstract landscape/path mark carries the warmth instead.
   ========================================================================== */

:root {
  /* Color — lyserød / beige / creme, as requested by kunden.
     paper is deliberately warm: the earlier value sat at 1.10 contrast
     against pure white, so on a phone (where no other tone is visible
     at once) the whole site read as white. */
  --ink: #40282c;
  --ink-soft: #684b50;
  --stone: #ecdcc6;
  --stone-2: #e0cbaf;
  --paper: #faf0e2;
  --white: #ffffff;
  --moss: #c98894;
  --moss-dark: #7d4854;
  --moss-tint: #f5e3e6;
  --ochre: #ba8f5f;
  --ochre-dark: #74512c;
  --line: #d9be9f;
  --focus: #7d4854;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", monospace;

  /* Scale */
  --step-0: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.4vw, 1.375rem);
  --step-2: clamp(1.5rem, 1.3rem + 0.8vw, 1.9rem);
  --step-3: clamp(2rem, 1.6rem + 1.6vw, 2.9rem);
  --step-4: clamp(2.6rem, 2rem + 2.6vw, 4.2rem);

  --container: 1120px;
  --radius: 3px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0; color: var(--ink); }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

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

/* ---------- Utility ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--ochre-dark);
  display: inline-block;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  z-index: 200;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.skip-link:focus { left: 12px; top: 12px; }

.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--stone { background: var(--stone); }
.section--ink { background: var(--ink); color: var(--stone); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--white); }
.section--border-top { border-top: 1px solid var(--line); }

.lede {
  font-size: var(--step-1);
  color: var(--ink-soft);
  max-width: 56ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.btn-primary { background: var(--moss-dark); color: var(--white); }
.btn-primary:hover { background: #66373f; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { border-color: var(--moss); color: var(--moss-dark); }
.section--ink .btn-ghost { color: var(--stone); border-color: var(--stone-2); }
.section--ink .btn-ghost:hover { border-color: var(--white); color: var(--white); }
/* .nav-list a otherwise wins on specificity: its padding-bottom pushed the
   label off-centre vertically and its colour greyed out the white text */
.nav-list a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 24px;
}
.nav-list a.btn-primary,
.nav-list a.btn-primary:hover { color: var(--white); }
.btn-arrow { transition: transform 160ms ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 242, 234, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
  /* Header spans the full viewport so the logo and nav sit at the edges,
     rather than being pulled inward by the 1120px content container */
  max-width: none;
  padding-inline: clamp(24px, 4vw, 64px);
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}
.brand-mark { color: var(--ochre-dark); }
.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-list a {
  text-decoration: none;
  font-size: 0.92rem;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 4px;
}
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--ink); }
.nav-list a.btn:hover, .nav-list a.btn[aria-current="page"] { color: var(--white); }
.nav-list a.btn[aria-current="page"]::after { display: none; }
.nav-list a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--ochre-dark);
}
.nav-cta { display: none; }
@media (min-width: 860px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 11px;
  cursor: pointer;
  /* Without this the icon inherits the UA default button colour,
     which renders as link-blue on iOS */
  color: var(--moss-dark);
}
@media (min-width: 860px) { .nav-toggle { display: none; } }
.nav-toggle svg { width: 18px; height: 18px; }

@media (max-width: 859px) {
  .nav-list {
    position: fixed;
    inset: 65px 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }
  .nav-list.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-list li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-list a { display: block; padding: 14px 2px; }
  /* Inside the open mobile menu the CTA should read as an ordinary
     nav item, not a filled button */
  .nav-list a.btn.nav-cta {
    display: block;
    background: none;
    border: none;
    color: var(--ink-soft);
    font-family: var(--font-body);
    font-size: 0.92rem;
    letter-spacing: normal;
    text-transform: none;
    text-align: left;
    padding: 14px 2px;
    margin: 0;
  }
  .nav-list a.btn.nav-cta:hover,
  .nav-list a.btn.nav-cta[aria-current="page"] { color: var(--ink); }
  .nav-list a.btn.nav-cta .btn-arrow { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 76px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 40px;
  align-items: end;
  padding-bottom: 48px;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.3fr 0.9fr; }
}
.hero h1 { font-size: var(--step-4); margin-top: 18px; max-width: 15ch; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.hero-note {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
  border-left: 1px solid var(--ochre-dark);
  padding-left: 14px;
  max-width: 34ch;
}

/* The path mark: a horizon line that runs the width of the page and
   underpins the hero — the visual root of "vejen" across the whole site */
.path-mark { width: 100%; height: auto; display: block; }
.path-mark .path-line {
  fill: none;
  stroke: var(--moss);
  stroke-width: 2;
  stroke-linecap: round;
}
.path-mark .path-dot { fill: var(--ochre-dark); }

/* ---------- Cards ---------- */
.grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card--collapsible { padding: 0 20px; gap: 0; }
@media (min-width: 761px) {
  .card--collapsible { padding: 32px 28px; }
  .card { transition: background-color 200ms ease; }
  .grid .card:hover { background: var(--stone); }
  .section--stone .grid .card:hover { background: var(--paper); }
}
.section--stone .card { background: var(--stone); }
.card-index {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ochre-dark);
}
.card h3 { font-size: var(--step-1); }
.card p { color: var(--ink-soft); }
.card-list { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.card-list li {
  color: var(--ink-soft);
  font-size: 0.94rem;
  padding-left: 18px;
  position: relative;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 7px; height: 1px;
  background: var(--ochre-dark);
}

/* ---------- Section headers ---------- */
.section-head { max-width: 62ch; margin-bottom: 48px; }
.section-head h2 { font-size: var(--step-3); margin-top: 14px; }

/* Shared H1 for interior pages. Previously each page carried its own
   inline font-size, so none of them picked up the mobile scale-down. */
.page-title {
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3.4rem);
  margin-top: 16px;
  max-width: 20ch;
}
.page-title + .lede { margin-top: 18px; max-width: 62ch; }

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 699px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: var(--stone);
  padding: 28px 22px;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--moss-dark);
}
.stat span { color: var(--ink-soft); font-size: 0.88rem; }

/* ---------- Process / waypoints (real ordered sequence — numbering earns its keep here) ---------- */
.process {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-line {
  position: absolute;
  left: 27px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: var(--line);
}
@media (min-width: 720px) { .process-line { left: 39px; } }
.step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 720px) { .step { grid-template-columns: 80px 1fr; gap: 32px; } }
.step:first-child { border-top: none; }
.step-marker {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--moss);
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  color: var(--moss-dark);
  z-index: 1;
}
@media (min-width: 720px) { .step-marker { width: 80px; height: 80px; font-size: 1.1rem; } }
.step h3 { font-size: var(--step-2); margin-bottom: 10px; }
.step-list { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 16px; }
.step-list li {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  padding-left: 14px;
  position: relative;
}
.step-list li::before { content: "—"; position: absolute; left: 0; color: var(--ochre-dark); }

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink);
  background: var(--stone);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
}
.section--stone .tag { background: var(--paper); }

/* ---------- Quote / values block ---------- */
.value-block {
  border-left: 1px solid var(--ochre-dark);
  padding-left: 26px;
}
.value-block p { font-size: var(--step-1); font-family: var(--font-display); font-style: italic; color: var(--ink); max-width: 44ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 56px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-detail { display: flex; flex-direction: column; gap: 22px; }
.contact-detail dt { font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); }
.contact-detail dd { margin: 4px 0 0; font-size: var(--step-1); }
.contact-detail a { text-decoration: none; border-bottom: 1px solid var(--line); }
.contact-detail a:hover { border-color: var(--moss); color: var(--moss-dark); }

.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.form-field label { font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit;
  font-size: 1rem;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--moss);
}
.form-note { font-size: 0.84rem; color: var(--ink-soft); margin-top: 14px; }
.form-success {
  display: none;
  background: var(--moss-tint);
  border: 1px solid var(--moss);
  color: var(--moss-dark);
  padding: 16px 18px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  margin-bottom: 22px;
}
.form-success.is-visible { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--stone-2); padding: 64px 0 28px; }
.footer-grid { display: grid; gap: 40px; margin-bottom: 48px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr; } }
.footer-brand { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); }
.footer-tagline { margin-top: 12px; color: var(--stone-2); max-width: 32ch; font-size: 0.92rem; }
.footer-heading { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: #b0a096; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; color: var(--stone-2); font-size: 0.92rem; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #5c464a;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #ac9b93;
}

/* ---------- CTA band ---------- */
.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}
.cta-band h2 { font-size: var(--step-2); max-width: 20ch; }

/* ---------- Disclosure: collapsible on phones, open on desktop ----------
   The <h3> lives inside <summary> so the heading stays visible and
   semantic at every width. Below 761px the card collapses behind a tap;
   above it, JS forces `open` and the toggle affordance is removed so it
   reads as an ordinary card. Pages ship with `open` in the HTML, so if
   JS never runs everything is still readable. */
details.disclosure {
  border: none;
  margin: 0;
  padding: 0;
}
details.disclosure > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 0 16px;
}
details.disclosure > summary::-webkit-details-marker { display: none; }
details.disclosure > summary::marker { content: ""; }
details.disclosure > summary h3 { font-size: var(--step-1); }

/* Icon + title group inside the summary */
.summary-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.card-icon {
  flex: none;
  width: 30px;
  height: 30px;
  color: var(--moss-dark);
}
.card-icon svg { width: 100%; height: 100%; display: block; }
@media (min-width: 761px) {
  .card-icon { width: 36px; height: 36px; }
  .summary-main { gap: 16px; }
}
details.disclosure > summary .chev {
  flex: none;
  width: 26px; height: 26px;
  border: 1px solid var(--moss-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 180ms ease;
  font-family: var(--font-mono);
  font-size: 1rem;
  line-height: 1;
  color: var(--moss-dark);
}
details.disclosure[open] > summary .chev { transform: rotate(45deg); }
.disclosure-body { padding-bottom: 22px; }
.disclosure-body p { color: var(--ink-soft); }
.disclosure-body .card-list,
.disclosure-body .tag-list { margin-top: 14px; }

@media (min-width: 761px) {
  details.disclosure > summary {
    cursor: default;
    padding: 0 0 12px;
  }
  details.disclosure > summary .chev { display: none; }
  .disclosure-body { padding-bottom: 0; }
}

/* Sub-variant: a heading already sits above the toggle, so the summary
   is a small label on phones and disappears entirely on desktop. */
details.disclosure--sub > summary {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--moss-dark);
  padding: 14px 0 10px;
  border-top: 1px solid var(--line);
  margin-top: 14px;
}
details.disclosure--sub > summary .chev { width: 22px; height: 22px; font-size: 0.9rem; }
@media (min-width: 761px) {
  details.disclosure--sub > summary { display: none; }
}

/* ---------- Mobile spacing tightening ----------
   Sections/cards used the same generous desktop padding on phones too,
   which is what turned pages with many cards/clusters (Ydelser, Målgrupper)
   into very long scrolls. Content is unchanged — only the air around it
   shrinks below 640px. */
@media (max-width: 640px) {
  .section { padding: 44px 0; }
  .section--tight { padding: 32px 0; }
  .hero { padding-top: 32px; }
  .hero-grid { gap: 18px; padding-bottom: 24px; }
  .hero h1 { font-size: 2rem; max-width: 20ch; margin-top: 10px; }
  .hero-actions { margin-top: 20px; }
  .section-head { margin-bottom: 28px; }
  /* Collapsible cards keep their own compact padding — same specificity
     means a bare .card rule here would silently override it. */
  .card:not(.card--collapsible) { padding: 22px 20px; gap: 10px; }
  .stat { padding: 18px 16px; }
  .step { padding: 22px 0; gap: 14px; }
  .step-marker { width: 44px; height: 44px; font-size: 0.85rem; }
  .process-line { left: 21px; }
  .cta-band { gap: 16px; }
  .site-footer { padding: 40px 0 22px; }
  .footer-grid { gap: 26px; margin-bottom: 28px; }
  .value-block { padding-left: 18px; }
  /* Decorative only — it reads as clutter at phone width */
  .path-mark { display: none; }
  /* Tags were rendering one per line on phones, costing a whole screen */
  .tag { font-size: 0.72rem; padding: 6px 11px; }
  .tag-list { gap: 7px; }
  /* A phone shows roughly one card at a time, so section-level
     alternation never registers. Alternating the cards themselves is
     what actually breaks up a long stack. */
  .grid .card:nth-child(even) { background: var(--stone); }
  .section--stone .grid .card:nth-child(even) { background: var(--stone-2); }
}

/* ---------- Mobile: the road as structure ----------
   Below 761px the even card grid becomes a serpentine — cards sit
   alternately left and right, joined by a curving road segment drawn in
   the gap between them. The road stops being decoration and becomes the
   thing that carries you down the page, which is what a phone needs when
   only one screen is visible at a time. */
@media (max-width: 760px) {
  .grid {
    display: block;
    background: none;
    border: none;
  }

  /* A bare text block wrapped in .grid is not part of the serpentine */
  .grid--plain > .card {
    width: 100%;
    border: none;
    background: transparent;
    margin-bottom: 0;
  }
  .grid--plain > .card::before,
  .grid--plain > .card::after { display: none; }

  .grid:not(.grid--plain) > .card {
    position: relative;
    width: 84%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    margin-bottom: 62px;
  }
  .grid:not(.grid--plain) > .card:nth-child(odd) { margin-right: auto; margin-left: 0; }
  .grid:not(.grid--plain) > .card:nth-child(even) { margin-left: auto; margin-right: 0; }
  .section--stone .grid:not(.grid--plain) > .card { background: var(--stone); }
  .grid:not(.grid--plain) > .card:last-child { margin-bottom: 0; }

  /* The connector spans the horizontal distance between one card's
     bottom centre (42%) and the next card's top centre (58%). */
  .grid:not(.grid--plain) > .card::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 42%;
    width: 16%;
    height: 62px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20100%20100%22%20preserveAspectRatio%3D%22none%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M0%200%20C0%2042%2C%20100%2058%2C%20100%20100%22%20stroke%3D%22%23ba8f5f%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.75;
    pointer-events: none;
  }
  /* Odd cards sit left, so the road runs left-to-right; even cards sit
     right, so the same curve is mirrored. */
  .grid:not(.grid--plain) > .card:nth-child(even)::after { transform: scaleX(-1); }
  .grid:not(.grid--plain) > .card:last-child::after { display: none; }

  /* A waypoint where the road leaves each card */
  .grid:not(.grid--plain) > .card::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 42%;
    width: 7px;
    height: 7px;
    margin: -3.5px 0 0 -3.5px;
    border-radius: 50%;
    background: var(--moss);
    z-index: 1;
  }
  .grid:not(.grid--plain) > .card:nth-child(even)::before { left: 58%; }
  .grid:not(.grid--plain) > .card:last-child::before { display: none; }
}
