/* ==========================================================================
   CYPRUS LIBERATION - Πρωτοβουλία Πολιτών για την Κύπρο
   Stylesheet (v17 framework)
   No external fonts or CDNs: the site must render fully offline / behind ngrok.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
     -------------------------------------------------------------------------- */
:root {
  --paper:        #fdfcfa;
  --paper-2:      #f4f2ee;
  --surface:      #ffffff;
  --ink:          #1a1a1a;
  --ink-soft:     #4a4a4a;
  --ink-faint:    #767676;
  --rule:         #dcd8d0;
  --rule-strong:  #bfb9ae;

  --accent:       #7a2e2e;

  --serif: Georgia, "Times New Roman", "Iowan Old Style", Palatino, serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono:  ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --wrap: 1120px;
  --wrap-narrow: 760px;
  --radius: 2px;
  --shadow: 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-lift: 0 2px 8px rgba(0, 0, 0, .09);
  --focus: 0 0 0 3px rgba(122, 46, 46, .3);
}

html[data-theme="dark"] {
  --paper:        #16181a;
  --paper-2:      #1c1f22;
  --surface:      #202326;
  --ink:          #e8e6e3;
  --ink-soft:     #b6b3ae;
  --ink-faint:    #8d8a85;
  --rule:         #33373b;
  --rule-strong:  #474c52;

  --accent:       #c98b8b;

  --shadow: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-lift: 0 2px 10px rgba(0, 0, 0, .55);
  --focus: 0 0 0 3px rgba(201, 139, 139, .35);
}

/* --------------------------------------------------------------------------
   2. Reset & base
     -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
 -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
 -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img, svg { max-width: 100%; height: auto; display: block; }

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
a:hover { color: var(--ink); }

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: var(--radius);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.22;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.05rem); }
h3 { font-size: 1.22rem; }
h4 { font-size: 1.02rem; font-family: var(--sans); font-weight: 700; }

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

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

code, kbd, pre { font-family: var(--mono); font-size: .88em; }
code {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: .1em .35em;
}

blockquote {
  margin: 1.6rem 0;
  padding: .2rem 0 .2rem 1.3rem;
  border-left: 3px solid var(--accent);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 1.06rem;
}

table { border-collapse: collapse; width: 100%; font-size: .95rem; }
th, td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--rule); vertical-align: top; }
th { font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); }

/* --------------------------------------------------------------------------
   3. Bilingual switching (EL / EN)
   Both languages ship in the HTML; CSS hides the inactive one.
   This keeps the site usable with JavaScript disabled (Greek shows by default).
     -------------------------------------------------------------------------- */
html[data-lang="el"] .lang-en,
html[data-lang="en"] .lang-el { display: none !important; }

/* --------------------------------------------------------------------------
   4. Layout helpers
     -------------------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap-narrow { max-width: var(--wrap-narrow); }
.stack > * + * { margin-top: 1.1rem; }
.center { text-align: center; }
.muted { color: var(--ink-soft); }
.small { font-size: .88rem; }
.mono { font-family: var(--mono); font-size: .85em; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: .7rem 1.1rem;
  z-index: 200;
}
.skip-link:focus { left: 8px; top: 8px; }

/* --------------------------------------------------------------------------
   5. Header / navigation
     -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
 -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
}

.header-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 0 .8rem;
}

.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; color: inherit; margin-right: auto; }
.brand:hover { color: inherit; }

.brand-mark {
  width: 42px; height: 42px; flex: none;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .02em;
  background: transparent;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  line-height: 1.1;
  display: block;
}
.brand-tag {
  display: block;
  font-size: .705rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: .2rem;
}

.header-tools { display: flex; align-items: center; gap: .45rem; }

.lang-switch {
  display: flex;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}
.lang-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .07em;
  padding: .38rem .68rem;
  cursor: pointer;
}
.lang-switch button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }

/* Icon buttons use inline SVG rather than text glyphs (☀ ☰): glyph fonts carry
   their own side bearings and baseline offsets, so a character never sits
   truly centred in a circular button - and on iOS some of them render as a
   colour emoji at a different size entirely. A symmetric 24×24 viewBox does. */
.icon-btn {
  appearance: none;
  width: 36px; height: 36px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 0;
}
.icon-btn:hover { color: var(--ink); border-color: var(--ink-faint); }

.icon-btn svg {
  width: 18px;
  height: 18px;
  display: block;
  /* grid centring positions the box; the viewBox is symmetric, so the artwork
     inside it lands on the exact centre of the circle. */
  grid-area: 1 / 1;
}

/* The toggle shows the theme it switches *to*, matching its aria-label. */
html[data-theme="light"] .icon-sun { display: none; }
html[data-theme="dark"]  .icon-moon { display: none; }

.nav-toggle { display: none; }

.site-nav { border-top: 1px solid var(--rule); }
.site-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .2rem 1.4rem;
}
.site-nav a {
  display: block;
  padding: .72rem 0;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .855rem;
  font-weight: 600;
  letter-spacing: .045em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a[aria-current="page"] { color: var(--accent); border-bottom-color: var(--accent); }

@media (max-width: 860px) {
  .nav-toggle { display: grid; }
  /* 36px is below the comfortable touch-target size on a phone. */
  .icon-btn { width: 42px; height: 42px; }
  .icon-btn svg { width: 20px; height: 20px; }
  .lang-switch button { padding: .5rem .8rem; }
  .site-nav { display: none; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; padding-block: .3rem .8rem; }
  .site-nav a { padding: .62rem .1rem; border-bottom: 1px solid var(--rule); margin: 0; }
  .site-nav a[aria-current="page"] { border-bottom-color: var(--rule); }
  .brand-tag { display: none; }
}

/* --------------------------------------------------------------------------
   6. Page header / hero
     -------------------------------------------------------------------------- */
.page-head {
  padding: 3.2rem 0 2.4rem;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.page-head .eyebrow {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .8rem;
}
.page-head .lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 66ch;
  margin-top: .9rem;
}

.hero {
  padding: clamp(3rem, 8vw, 5.6rem) 0 clamp(2.6rem, 6vw, 4rem);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.hero h1 { max-width: 18ch; margin-bottom: .55rem; }
.hero .lede { font-size: clamp(1.05rem, 2vw, 1.24rem); color: var(--ink-soft); max-width: 60ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.9rem; }

/* --------------------------------------------------------------------------
   7. Buttons & pills
     -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .68rem 1.25rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { color: var(--paper); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn-secondary:hover { color: var(--ink); border-color: var(--ink); }
.btn[aria-disabled="true"],
.btn:disabled {
  background: var(--paper-2);
  color: var(--ink-faint);
  border-color: var(--rule);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem .5rem;
  align-items: baseline;
  font-size: .82rem;
  color: var(--ink-faint);
  letter-spacing: .01em;
}
.entry-tags .sep { color: var(--rule-strong); }

/* --------------------------------------------------------------------------
   8. Sections & cards
     -------------------------------------------------------------------------- */
.section { padding: clamp(2.6rem, 6vw, 4.2rem) 0; }
.section + .section { border-top: 1px solid var(--rule); }
.section-head { margin-bottom: 2rem; max-width: 68ch; }
.section-head h2 { margin-bottom: .4rem; }
.section-head p { color: var(--ink-soft); margin: 0; }

.grid { display: grid; gap: 1.1rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  transition: border-color .14s ease, box-shadow .14s ease, transform .14s ease;
}
a.card { text-decoration: none; color: inherit; }
a.card:hover { color: inherit; border-color: var(--rule-strong); box-shadow: var(--shadow-lift); transform: translateY(-2px); }
.card h3 { margin: 0; font-size: 1.16rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: .945rem; }
.card .card-index {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--accent);
  text-transform: uppercase;
}
.card-foot { margin-top: auto; padding-top: .5rem; font-size: .82rem; font-weight: 600; color: var(--accent); }

/* Notice boxes */
.notice {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.15rem 1.3rem;
  font-size: .945rem;
  color: var(--ink-soft);
}
.notice h4 { margin: 0 0 .35rem; color: var(--ink); }

/* --------------------------------------------------------------------------
   9. Content index (archive / analysis / publications / dialogue)
     -------------------------------------------------------------------------- */
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-items: center;
  padding: 1.1rem 0 1.4rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 1.6rem;
}
.toolbar input[type="search"],
.toolbar select {
  font: inherit;
  font-size: .9rem;
  padding: .55rem .75rem;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  min-width: 0;
}
.toolbar input[type="search"] { flex: 1 1 260px; }
.toolbar .result-count { margin-left: auto; font-size: .82rem; color: var(--ink-faint); }

.entry-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.entry {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 0 1.6rem;
}
.entry:first-child { border-top: 1px solid var(--rule); }
.entry-meta { font-size: .78rem; color: var(--ink-faint); font-family: var(--mono); letter-spacing: .04em; padding-top: .25rem; }
.entry-body h3 { font-size: 1.14rem; margin: 0 0 .3rem; }
.entry-body h3 a { color: var(--ink); text-decoration: none; }
.entry-body h3 a:hover { color: var(--accent); }
.entry-summary { color: var(--ink-soft); font-size: .95rem; margin: .3rem 0 .55rem; }
.entry-tags { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.entry-cite {
  font-size: .82rem;
  color: var(--ink-faint);
  font-family: var(--mono);
  margin-top: .5rem;
  padding-left: .7rem;
  border-left: 2px solid var(--rule);
}

@media (max-width: 620px) {
  .entry { grid-template-columns: 1fr; gap: .5rem; }
  .entry-meta { padding-top: 0; }
}

.empty-state {
  padding: 3rem 1rem;
  text-align: center;
  color: var(--ink-faint);
  border: 1px dashed var(--rule-strong);
  border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   10. Prose (legal & about pages)
     -------------------------------------------------------------------------- */
.prose { max-width: 74ch; }
.prose h2 { margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--rule); }
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { margin-top: 1.7rem; }
.prose ul, .prose ol { padding-left: 1.3rem; margin: 0 0 1.1em; }
.prose li { margin-bottom: .45em; }
.prose li::marker { color: var(--accent); }

.toc {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper-2);
  padding: 1.1rem 1.3rem;
  margin-bottom: 2.2rem;
}
.toc h4 { font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 .6rem; }
.toc ol { margin: 0; padding-left: 1.15rem; font-size: .93rem; }
.toc li { margin-bottom: .3em; }

.def-list { display: grid; grid-template-columns: minmax(190px, 260px) 1fr; gap: .1rem 1.4rem; margin: 0; }
.def-list dt { font-weight: 700; font-size: .85rem; letter-spacing: .03em; color: var(--ink-faint); padding: .7rem 0; border-top: 1px solid var(--rule); }
.def-list dd { margin: 0; padding: .7rem 0; border-top: 1px solid var(--rule); }
@media (max-width: 620px) {
  .def-list { grid-template-columns: 1fr; }
  .def-list dd { border-top: 0; padding-top: 0; }
}

/* --------------------------------------------------------------------------
   11. Petitions - deliberately inactive forms
     -------------------------------------------------------------------------- */
.form-disabled {
  position: relative;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.7rem;
}
.form-disabled fieldset { border: 0; margin: 0; padding: 0; }
.form-disabled legend { padding: 0; font-family: var(--serif); font-size: 1.2rem; font-weight: 600; margin-bottom: 1rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); margin-bottom: 1rem; }
.field label { display: block; font-size: .8rem; font-weight: 700; letter-spacing: .04em; color: var(--ink-faint); margin-bottom: .35rem; }
.field input, .field textarea {
  width: 100%;
  font: inherit;
  font-size: .93rem;
  padding: .6rem .75rem;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  background: var(--paper-2);
  color: var(--ink-faint);
}
.field input:disabled, .field textarea:disabled { cursor: not-allowed; opacity: .75; }
.form-disabled::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: repeating-linear-gradient(135deg, transparent 0 14px, color-mix(in srgb, var(--ink-faint) 7%, transparent) 14px 28px);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   12. Footer
     -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--rule);
  background: var(--paper-2);
  padding: 3rem 0 2rem;
  margin-top: 3rem;
  font-size: .92rem;
}
.footer-grid { display: grid; gap: 2rem; grid-template-columns: 1.4fr repeat(3, minmax(150px, 1fr)); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 {
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 .8rem;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: .45rem; }
.footer-grid a { color: var(--ink-soft); text-decoration: none; }
.footer-grid a:hover { color: var(--accent); text-decoration: underline; }

.footer-identity { font-size: .85rem; color: var(--ink-soft); }
.footer-identity dt { font-weight: 700; color: var(--ink-faint); font-size: .74rem; letter-spacing: .05em; text-transform: uppercase; margin-top: .6rem; }
.footer-identity dd { margin: .1rem 0 0; }

.footer-bottom {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  align-items: center;
  font-size: .82rem;
  color: var(--ink-faint);
}
.footer-bottom .spacer { margin-left: auto; }

/* --------------------------------------------------------------------------
   13. Print
     -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .toolbar, .hero-actions, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .card, .notice { break-inside: avoid; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   14. Hosted-document link
   An entry whose document is held locally gets an explicit control. Without
   it, a hosted document and a bare citation look identical in the list.
     -------------------------------------------------------------------------- */
.doc-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: .7rem;
  padding: .4rem .8rem;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
}
.doc-link:hover {
  border-color: var(--ink);
  background: var(--paper-2);
  color: var(--ink);
}
.doc-link svg { width: 15px; height: 15px; flex: none; }

/* Toolbar toggle: restrict the index to documents held on this site. */
.toggle-hosted {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .75rem;
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
.toggle-hosted:hover { border-color: var(--ink-faint); color: var(--ink); }
.toggle-hosted input { accent-color: var(--ink); width: 15px; height: 15px; cursor: pointer; margin: 0; }
.toggle-hosted:has(input:checked) {
  border-color: var(--ink);
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   15. Entry body text and attached media
     -------------------------------------------------------------------------- */
.entry-text {
  margin: .9rem 0 .2rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
  max-width: 68ch;
}
.entry-text p { margin: 0 0 .9em; }
.entry-text p:last-child { margin-bottom: 0; }

.entry-media {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 1rem 0 .4rem;
  max-width: 760px;
}
.entry-media img,
.entry-media video {
  width: 100%;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper-2);
}
.entry-media img { cursor: zoom-in; object-fit: cover; max-height: 340px; }
.entry-media audio { width: 100%; grid-column: 1 / -1; }

/* A single image should not be stretched across the full grid width. */
.entry-media:has(> :only-child) { grid-template-columns: minmax(0, 520px); }

/* --------------------------------------------------------------------------
   16. Footer legal notice
   -------------------------------------------------------------------------- */
.footer-legal {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule);
  max-width: 78ch;
}
.footer-legal h4 {
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 .9rem;
}
.footer-legal p {
  font-size: .84rem;
  line-height: 1.6;
  color: var(--ink-faint);
  margin: 0 0 .7rem;
}
.footer-legal-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.3rem;
}
.footer-legal-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .84rem;
  border-bottom: 1px solid var(--rule-strong);
}
.footer-legal-links a:hover { color: var(--ink); border-bottom-color: var(--ink); }
