:root {
  --m3-background: #141314;
  --m3-surface-0:  #0f0e0f;
  --m3-surface-1:  #1c1b1d;
  --m3-surface-2:  #211f21;
  --m3-surface-3:  #2b292b;
  --m3-surface-4:  #363436;

  --m3-on-surface:         #f4f2f3;
  --m3-on-surface-variant: #d6d1d7;
  --m3-outline:            #928f94;

  --m3-primary:                #e8556f;
  --m3-primary-bright:         #ef6a80;
  --m3-secondary-container:    #771e30;
  --m3-on-secondary-container: #ffd9de;

  --m3-error-dark: #93000a;
  --m3-do-dark:    #15803d;
  --m3-caution:    #ffce22;
  --m3-on-caution: #3a2900;

  --m3-list-hover: rgb(203 196 204 / 8%);

  --code-ink: #f0eef4;

  --bg:           var(--m3-background);
  --bg-raised:    var(--m3-surface-1);
  --bg-inset:     var(--m3-surface-2);
  --line:         var(--m3-surface-3);
  --line-soft:    var(--m3-surface-2);
  --ink:          var(--m3-on-surface);
  --ink-2:        var(--m3-on-surface-variant);
  --ink-3:        var(--m3-outline);
  --accent:       var(--m3-primary);
  --accent-hover: var(--m3-primary-bright);

  --font-body: "Google Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-code: "Google Sans Code", ui-monospace, SFMono-Regular, Menlo, monospace;

  --sidebar-w: 300px;
  --content-w: 760px;
}

* { box-sizing: border-box; }
html { color-scheme: dark; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);

  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

:where(.shell) a { color: var(--accent); text-underline-offset: 3px; }

:where(.shell) a:hover { color: var(--accent-hover); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px; }
code {
  font-family: var(--font-code);
  font-size: 0.875em;
  background: var(--m3-surface-2);
  border: 1px solid var(--m3-surface-4);
  border-radius: 4px;
  padding: 0.12em 0.4em;
  color: var(--code-ink);
  white-space: nowrap;
}

pre code,
.field-name,
.endpoint-path,
.endpoint-host {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: inherit;
  white-space: inherit;
}

.shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) minmax(0, 1fr);
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  border-right: 1px solid var(--line);
  padding: 22px 16px 64px;
  font-size: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}

.sidebar-body { display: flex; flex-direction: column; gap: 20px; }

.nav-toggle-input { position: absolute; opacity: 0; width: 0; height: 0; }
.nav-toggle { display: none; }

.switcher-field { display: flex; flex-direction: column; gap: 5px; }

.switcher-label {
  font-family: var(--font-code);
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 0 2px;
}

.switcher { position: relative; }

.switcher-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--bg-raised);
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
}
.switcher-summary::-webkit-details-marker { display: none; }
.switcher-summary:hover { background: var(--bg-inset); border-color: var(--ink-3); }

.switcher-value { min-width: 0; overflow-wrap: anywhere; }

.switcher-caret {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--ink-3);
  transition: transform 140ms ease;
}
.switcher[open] .switcher-caret { transform: rotate(180deg); }
.switcher[open] .switcher-summary { border-color: var(--ink-3); background: var(--bg-inset); }

.switcher-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--bg-inset);
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);

  max-height: min(380px, 70vh);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.switcher-list {
  list-style: none;
  margin: 0;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.switcher-option {
  display: block;
  padding: 5px 9px;
  border-radius: 3px;
  color: var(--ink-2);
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.4;
}
.switcher-option:hover { background: var(--bg-raised); color: var(--ink); }
.switcher-option[aria-current="page"] {
  background: var(--bg-raised);
  color: var(--ink);
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  .switcher-caret {
    transition: none;
  }
}

.nav-group { display: flex; flex-direction: column; gap: 7px; }

.nav-group > h3 {
  font-family: var(--font-code);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
  padding: 0 9px;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 9px;
  border-radius: 4px;
  color: var(--ink-2);
  text-decoration: none;
  line-height: 1.45;
}
.nav-link:hover { background: var(--m3-list-hover); color: var(--ink); }

.nav-link[aria-current="page"] {
  background: var(--m3-secondary-container);
  color: #fff;
}

.nav-link--lead { font-weight: 500; color: var(--ink); }

.nav-text { min-width: 0; overflow-wrap: anywhere; }

.nav-verb {
  flex-shrink: 0;
  font-family: var(--font-code);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.nav-link:hover .nav-verb { color: var(--ink-2); }
.nav-link[aria-current="page"] .nav-verb { color: inherit; opacity: 0.75; }

.nav-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border-radius: 4px;
  color: var(--ink-2);
  line-height: 1.45;
}
.nav-summary::-webkit-details-marker { display: none; }
.nav-summary:hover { background: var(--m3-list-hover); color: var(--ink); }

.nav-count {
  margin-left: auto;
  font-family: var(--font-code);
  font-size: 10.5px;
  color: var(--ink-3);
  font-variant-numeric: tabular-nums;
}

.chev {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
  color: var(--ink-3);
  transition: transform 140ms ease;
}
details[open] > .nav-summary > .chev,
details[open] > .switcher-summary .chev { transform: rotate(90deg); }

.switcher-summary .chev { transition: transform 140ms ease; }

.nav-children {
  margin: 2px 0 4px 17px;
  padding-left: 9px;
  border-left: 1px solid var(--line-soft);
}

@media (prefers-reduced-motion: reduce) {
  .chev {
    transition: none;
  }
}

.content { padding: 46px 44px 120px; min-width: 0; }
.content > * { max-width: var(--content-w); }

.breadcrumb {
  font-family: var(--font-code);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 14px;
}

h1 {
  font-size: 36px;
  line-height: 44px;
  font-weight: var(--display-weight, 475);
  letter-spacing: 0;
  margin: 0 0 16px;
  text-wrap: balance;
}

h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: var(--display-weight, 475);
  letter-spacing: 0;
  margin: 48px 0 12px;
}

h3 { font-size: 16px; line-height: 24px; font-weight: 500; letter-spacing: 0; margin: 32px 0 8px; }

.endpoint-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 30px;
}

.endpoint {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: var(--font-code);
  font-size: 13.5px;
  overflow-x: auto;
}

.endpoint-url { white-space: nowrap; }
.endpoint-host { color: var(--ink-3); }
.endpoint-path { color: var(--ink); font-weight: 500; }

.endpoint-tag {
  margin-left: auto;
  padding-left: 18px;
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  white-space: nowrap;
}
.endpoint-tag--link { text-decoration: none; }
.endpoint-tag--link:hover { color: var(--accent-hover); }

.verb {
  flex-shrink: 0;
  padding: 0.34em 0.72em;
  border-radius: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  background: var(--m3-do-dark);
  color: #fff;
}

.placeholder-flag {
  display: inline-block;
  padding: 0.34em 0.72em;
  border-radius: 0.375rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  background: var(--m3-caution);
  color: var(--m3-on-caution);
  margin: 0 0 22px;
}

.spec-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 30px;
  padding: 10px 24px 10px 16px;
  border-radius: 20px;
  background: var(--m3-secondary-container);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}
.spec-download:hover {
  background-image: linear-gradient(var(--m3-list-hover), var(--m3-list-hover));
  color: #fff;
}
.spec-download-icon { flex-shrink: 0; width: 16px; height: 16px; }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 30px;
}
.fact { background: var(--bg-raised); padding: 12px 15px; }
.fact dt {
  font-family: var(--font-code);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 3px;
}
.fact dd { margin: 0; font-size: 13.5px; color: var(--ink); line-height: 1.5; }

.facts:has(+ .facts-note) { margin-bottom: 10px; }
.prose .facts-note { margin: 0 0 30px; font-size: 13.5px; color: var(--ink-3); }

.callout {
  border: 1px solid var(--line);
  border-left: 2px solid var(--ink-3);
  border-radius: 0 8px 8px 0;
  background: var(--bg-raised);
  padding: 15px 18px;
  margin: 26px 0;
}
.callout--warning { border-left-color: var(--m3-caution); }
.callout--info { border-left-color: var(--m3-primary); }
.callout-title { font-weight: 600; color: var(--ink); margin: 0 0 5px; font-size: 15px; }
.callout-body { color: var(--ink-2); font-size: 14.5px; line-height: 1.65; }
.callout-body p { margin: 0; }
.callout-body p + p { margin-top: 10px; }

.table-scroll { overflow-x: auto; margin: 0 0 8px; }

.api-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 520px;
}
.api-table th {
  text-align: left;
  font-family: var(--font-code);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 0 14px 8px 0;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.api-table td {
  padding: 11px 14px 11px 0;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
  color: var(--ink-2);
  line-height: 1.6;
}
.api-table tr:last-child td { border-bottom: 0; }

.cell-name { white-space: nowrap; }
.cell-name code { font-weight: 500; }
.cell-type {
  font-family: var(--font-code);
  font-size: 12.5px;
  color: var(--ink-3);
  white-space: nowrap;
}
.cell-sub,
.cell-eg {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: var(--ink-3);
}
.cell-eg code,
.cell-sub code {
  margin-right: 5px;
  display: inline-block;
  margin-bottom: 3px;
}

.pill {
  display: inline-block;
  margin-left: 8px;
  padding: 0.3em 0.6em;
  border-radius: 0.375rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  vertical-align: middle;
  background: var(--m3-surface-4);
  color: var(--m3-on-surface-variant);
}
.pill--req { background: var(--m3-error-dark); color: #fff; }

.tabs { margin: 0 0 10px; }
.tab-input { position: absolute; opacity: 0; width: 0; height: 0; }

.tab-bar {
  display: flex;
  gap: 2px;
  border-bottom: 1px solid var(--line);
  margin-bottom: -1px;
}

.tab-label {
  cursor: pointer;
  padding: 7px 13px;
  font-size: 13px;
  color: var(--ink-3);
  border: 1px solid transparent;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  line-height: 1.5;
}
.tab-label:hover { color: var(--ink); }

.tab-panel { display: none; }

.tabs .tab-input:nth-of-type(1):checked ~ .tab-bar .tab-label:nth-of-type(1),
.tabs .tab-input:nth-of-type(2):checked ~ .tab-bar .tab-label:nth-of-type(2),
.tabs .tab-input:nth-of-type(3):checked ~ .tab-bar .tab-label:nth-of-type(3) {
  color: var(--ink);
  background: var(--bg-raised);
  border-color: var(--line);
}
.tabs .tab-input:nth-of-type(1):checked ~ .tab-panel:nth-of-type(1),
.tabs .tab-input:nth-of-type(2):checked ~ .tab-panel:nth-of-type(2),
.tabs .tab-input:nth-of-type(3):checked ~ .tab-panel:nth-of-type(3) { display: block; }
.tab-input:focus-visible ~ .tab-bar .tab-label { outline: 1px dashed var(--ink-3); }

.prose > .code { margin: 0 0 10px; }
.code pre {
  margin: 0;
  tab-size: 2;
  padding: 16px 18px;
  overflow-x: auto;
  background: var(--m3-surface-0) !important;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.75;
}
.code pre code {
  font-family: var(--font-code);
  background: none;
  border: 0;
  padding: 0;
  font-size: inherit;
}

.code-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 10px;
}
.code-panel-head {
  background: var(--bg-inset);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
}
.code-dot { width: 8px; height: 8px; border-radius: 50%; }
.code-dot--r { background: #ff5f57; }
.code-dot--y { background: #febc2e; }
.code-dot--g { background: #28c840; }
.code-panel-name {
  font-family: var(--font-code);
  font-size: 11.5px;
  color: var(--ink-3);
  margin-left: 6px;
}
.code-panel .code pre { border: 0; border-radius: 0; max-height: 460px; }

.prose table:not(.api-table) {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 8px 0 26px;
}
.prose table:not(.api-table) th {
  text-align: left;
  font-family: var(--font-code);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 0 14px 8px 0;
  border-bottom: 1px solid var(--line);
}
.prose table:not(.api-table) td {
  padding: 10px 14px 10px 0;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
  color: var(--ink-2);
  line-height: 1.6;
}
.prose img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 8px 0 26px;
  display: block;
}

.prose td > p,
.prose th > p { margin: 0; }
.prose td > p + p { margin-top: 10px; }

.prose blockquote {
  position: relative;
  margin: 24px 0;
  padding: 16px 20px 16px 54px;
  background: var(--m3-surface-2);
  border: 1px solid var(--m3-surface-4);
  border-left: 3px solid var(--m3-primary);
  border-radius: 0 8px 8px 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
}

.prose blockquote::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 18px;
  height: 14px;
  background: var(--m3-primary);
  opacity: 0.85;

  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 14'%3E%3Cpath d='M0 14V7.6C0 3.4 2.3.7 6.4 0l.7 2.2C4.9 2.9 3.7 4.2 3.6 6h2.6v8zm10.9 0V7.6c0-4.2 2.3-6.9 6.4-7.6l.7 2.2c-2.2.7-3.4 2-3.5 3.8h2.6v8z'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

.prose blockquote p { margin: 0; }
.prose blockquote p + p { margin-top: 10px; }

.muted { color: var(--ink-3); }
.small { font-size: 12.5px; }

.field-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin: 0 0 10px;
}

.field,
.field-node > .field--parent {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "chev head count" "chev desc count";
  column-gap: 10px;
  padding: 11px 15px;
  font-size: 14px;
  line-height: 1.55;
}

.field--parent { list-style: none; cursor: pointer; }
.field--parent::-webkit-details-marker { display: none; }
.field--parent:hover { background: var(--bg-raised); }

.field-chev {
  grid-area: chev;
  width: 11px;
  height: 11px;
  color: var(--ink-3);
  margin-top: 6px;
  transition: transform 140ms ease;
}
.field-node[open] > .field--parent .field-chev { transform: rotate(90deg); }

.field-head {
  grid-area: head;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 9px;
  min-width: 0;
}

.field-name {
  font-family: var(--font-code);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}

.field-type {
  font-family: var(--font-code);
  font-size: 11.5px;
  color: var(--ink-3);
}

.field-desc {
  grid-area: desc;
  color: var(--ink-2);
  font-size: 13.5px;
  margin-top: 2px;
}

.field-enum { display: block; margin-top: 4px; }
.field-enum code {
  display: inline-block;
  background: var(--bg-inset);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  padding: 0.06em 0.34em;
  margin: 0 5px 4px 0;
  font-size: 11.5px;
  color: var(--ink-2);
}

.field-count {
  grid-area: count;
  align-self: start;
  font-family: var(--font-code);
  font-size: 10.5px;
  color: var(--ink-3);
  white-space: nowrap;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}

.field-children { background: rgba(0, 0, 0, 0.22); padding-left: 15px; }

.field-children .field,
.field-children .field--parent { padding-left: 12px; }

@media (prefers-reduced-motion: reduce) {
  .field-chev {
    transition: none;
  }
}

@media (max-width: 900px) {
  .shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .sidebar {
    position: static;
    height: auto;
    overflow: visible;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 12px 16px;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: var(--bg-raised);
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
  }
  .nav-toggle:hover {
    background: var(--bg-inset);
  }

  .nav-toggle-bars {
    width: 14px;
    height: 9px;
    flex-shrink: 0;
    border-top: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
  }

  .nav-toggle-input:focus-visible + .nav-toggle {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }

  .sidebar-body {
    display: none;
  }
  .nav-toggle-input:checked ~ .sidebar-body {
    display: flex;
    padding-top: 16px;
  }

  .content {
    padding: 32px 20px 80px;
  }
  h1 {
    font-size: 28px;
  }
}

.sidebar { z-index: 1; }

.top-navigation-bar,
.top-navigation-bar-solid {
  background: var(--bg-raised);
  border-bottom-color: var(--line);
  font-family: "Poppins", sans-serif;
  letter-spacing: normal;
}

.top-navigation-bar .nav-logo-row span { color: var(--ink); }

.top-navigation-bar .nav-item .nav-link,
.top-navigation-bar .nav-dropdown .dropdown-toggle,
.top-navigation-bar .cta-text { color: var(--ink-2); }

.top-navigation-bar .nav-item .nav-link:hover,
.top-navigation-bar .nav-dropdown .dropdown-toggle:hover,
.top-navigation-bar .cta-text:hover { color: var(--ink); }

.top-navigation-bar .nav-link { display: revert-layer; padding: revert-layer; border-radius: revert-layer; line-height: revert-layer; background: revert-layer; }

.top-navigation-bar .mega-menu { background: var(--bg-inset); border-color: var(--line); }

.top-navigation-bar .mega-menu a { color: var(--ink-2); }

.top-navigation-bar .mega-menu a:hover { background: var(--m3-list-hover); color: var(--ink); }

.top-navigation-bar .mega-menu .mega-label { color: var(--ink-3); }

.top-navigation-bar .nav-dropdown,
.top-navigation-bar .nav-item { border-color: var(--line); }

.top-navigation-bar .acc-icon { color: var(--ink-3); }

@media only screen and (max-width: 991px) {
  .top-navigation-bar .nav-right .cta-text {
    background: var(--accent);
    color: var(--m3-background);
  }

  .top-navigation-bar .nav-right .cta-text:hover {
    background: var(--accent-hover);
    color: var(--m3-background);
  }
}

#site-footer {
  background: var(--bg-raised);
  font-family: "Poppins", sans-serif;
  letter-spacing: normal;
  padding: 30px 0 16px;
}

#site-footer .sport-row { border-bottom-color: var(--line); }
#site-footer .sport-row a { color: var(--ink-3); }
#site-footer .sport-row a:hover { color: var(--accent); }
#site-footer .sport-row a::before { background: var(--accent); }

#site-footer .footer-brand .brand-row span { color: var(--ink); }
#site-footer .footer-brand p { color: var(--ink-3); }
#site-footer .footer-brand .email { color: var(--accent); }
#site-footer .footer-brand .copyright {
  color: color-mix(in srgb, var(--ink-3) 70%, transparent);
}

#site-footer .footer-col h4 { color: var(--ink); }
#site-footer .footer-col a { color: var(--ink-3); }
#site-footer .footer-col a:hover { color: var(--ink); }
