/* PIDSnap stylesheet.
 *
 * Hand-authored rather than generated. The brief specifies Tailwind, but Tailwind's
 * build-step-free option is the Play CDN, which generates styles at runtime with
 * JavaScript — and section 8.2 requires every content page to render fully without
 * JavaScript, with an LCP target under two seconds. A single small stylesheet with no
 * runtime satisfies both; see README for how to move to the Tailwind CLI if a build step
 * becomes acceptable.
 *
 * System font stack, no webfont, no external request anywhere in this file.
 */

:root {
  --ink: #14181d;
  --ink-soft: #4a5561;
  --ink-faint: #6b7785;
  --rule: #dfe3e8;
  --rule-soft: #edf0f3;
  --page: #ffffff;
  --panel: #f7f8fa;
  --brand: #1f4e79;
  --brand-dark: #163a5a;
  --brand-tint: #eef3f8;
  --warm: #c2410c;

  --critical: #b42318;
  --critical-bg: #fef3f2;
  --critical-rule: #fecdc9;
  --warning: #b54708;
  --warning-bg: #fffaeb;
  --warning-rule: #fedf89;
  --info: #475467;
  --info-bg: #f2f4f7;
  --info-rule: #e4e7ec;
  --good: #067647;
  --good-bg: #ecfdf3;
  --good-rule: #abefc6;

  --measure: 68ch;
  --radius: 6px;
  --shadow: 0 1px 2px rgba(16, 24, 40, 0.06), 0 1px 3px rgba(16, 24, 40, 0.1);

  --space-tight: 12px;
  --space: 20px;
  --space-loose: 36px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

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

a {
  color: var(--brand);
  text-underline-offset: 2px;
}

a:hover {
  color: var(--brand-dark);
}

/* ---- layout ---------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.wrap--narrow {
  max-width: 760px;
}

.stack > * + * {
  margin-top: 1rem;
}

.grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 700px) {
  .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.section {
  padding-block: 44px;
}

.section--tint {
  background: var(--panel);
  border-block: 1px solid var(--rule-soft);
}

/* ---- typography ------------------------------------------------------------ */

h1, h2, h3, h4 {
  line-height: 1.25;
  margin: 0 0 0.5em;
  letter-spacing: -0.011em;
  font-weight: 650;
}

h1 { font-size: 2.05rem; }
h2 { font-size: 1.45rem; margin-top: 2rem; }
h3 { font-size: 1.13rem; margin-top: 1.5rem; }

p, li {
  max-width: var(--measure);
}

p { margin: 0 0 1rem; }

.lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

.muted { color: var(--ink-faint); }
.small { font-size: 0.9rem; }
.mono {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.92em;
}


@media (max-width: 699px) {
  h1 { font-size: clamp(1.5rem, 5vw, 2.05rem); }
  h2 { font-size: clamp(1.2rem, 4vw, 1.45rem); margin-top: 1.5rem; }
  h3 { margin-top: 1.2rem; }
  .lede { font-size: 0.97rem; }
  .section { padding-block: 28px; }
  .card { padding: 14px; }
  figure { padding: 10px; margin: 1rem 0; }
}

/* ---- header and footer ----------------------------------------------------- */

.masthead {
  border-bottom: 1px solid var(--rule);
  background: var(--page);
}

.masthead__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  padding-block: 14px;
  position: relative;
}

.brand {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand span { color: var(--brand); }

.masthead nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-left: auto;
  font-size: 0.95rem;
}

.masthead nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

/* The signed-in/signed-out area: one filled object so "my area" reads as distinct from
   the content links. --brand against white text is the same pairing as the primary button,
   which already clears AA. Desktop shape is a pill; the phone override further down turns
   the same markup into a column. */
.masthead__account {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--brand);
  border-radius: var(--radius);
  padding: 3px;
  order: -1;
}

.masthead nav .masthead__account a,
.masthead nav .masthead__account button {
  color: #fff;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
  line-height: 1.2;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.masthead nav .masthead__account a:hover,
.masthead nav .masthead__account button:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.masthead nav .masthead__account form {
  display: flex;
  padding: 0;
  margin: 0;
}

/* Who is signed in. The colour says "your area"; this says whose. Phone only — on desktop
   the pill is already unambiguous and the row has no space for an address. */
.masthead__identity {
  display: none;
}

/* Persistent tuning balance. A subtle chip in the pill on desktop so the user can always
   see how much tuning they have left. */
.masthead__balance {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}


.masthead__menu > summary {
  display: none;
  list-style: none;
  cursor: pointer;
}

.masthead__menu > summary::-webkit-details-marker { display: none; }

.masthead__menu > summary span,
.masthead__menu > summary span::before,
.masthead__menu > summary span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink-soft);
  border-radius: 1px;
}

.masthead__menu > summary span::before,
.masthead__menu > summary span::after {
  content: "";
}

.masthead__menu > summary span::before { transform: translateY(-6px); }
.masthead__menu > summary span::after  { transform: translateY(4px); }

.masthead__menu[open] > summary span {
  background: transparent;
}

.masthead__menu[open] > summary span::before {
  transform: rotate(45deg);
}

.masthead__menu[open] > summary span::after {
  transform: rotate(-45deg);
}

@media (max-width: 699px) {
  .masthead__inner {
    gap: 8px 14px;
    padding-block: 10px;
  }

  .masthead__menu {
    margin-left: auto;
    position: relative;
  }

  .masthead__menu > summary {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    position: relative;
  }

  .masthead__menu nav {
    display: none;
    position: absolute;
    top: 100%;
    right: -20px;
    background: var(--page);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(16, 24, 40, 0.12);
    padding: 0;
    min-width: 232px;
    max-width: 76vw;
    /* The account block is flush to the top edge, so the panel has to clip it to its own
       radius or the filled corners square off the rounding. */
    overflow: hidden;
    z-index: 100;
  }

  /* The account area becomes the top section of the dropdown: a column of full-width rows
     in the same rhythm and on the same 16px gutter as the content links below, so the
     panel reads as one list with a coloured head rather than a banner with a list stuck
     under it. Laying it out horizontally here is what made it wrap into ragged rows. */
  .masthead__account {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
    gap: 0;
    padding: 0;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
  }

  .masthead nav .masthead__account a,
  .masthead nav .masthead__account button {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 16px;
    border-radius: 0;
    font-size: 0.95rem;
    text-align: left;
  }

  .masthead nav .masthead__account form {
    width: 100%;
  }

  /* The last row of the group is the secondary one — Sign out when signed in, Sign in when
     signed out. It carries the section's closing rule as a white hairline, which reads on
     --brand without introducing a second colour, and drops to regular weight so the
     primary destination above it is the one the eye lands on. */
  .masthead nav .masthead__account > :last-child,
  .masthead nav .masthead__account > :last-child button {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    font-weight: 400;
  }

  .masthead nav .masthead__account > form:last-child {
    border-top: 0;
  }

  .masthead__identity {
    display: block;
    padding: 10px 16px 4px;
    font-size: 0.78rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.72);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .masthead__balance {
    background: transparent;
    border-radius: 0;
  }

  .masthead__menu[open] nav {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    margin-left: 0;
  }

  .masthead__menu nav a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    font-size: 0.95rem;
    min-height: 44px;
    white-space: nowrap;
    color: var(--ink-soft);
    text-decoration: none;
  }

  .masthead__menu nav a:hover {
    background: var(--brand-tint);
    color: var(--brand);
  }

}

@media (min-width: 700px) {
  .masthead__menu > summary {
    display: none;
  }

  /* A closed <details> sizes itself from its summary, and the summary is hidden here — so
     the element measured 0 wide and the nav inside it laid itself out in a zero-width
     column off the edge of the masthead. The desktop menu was invisible. Removing the
     details' own box hands the nav straight to .masthead__inner's flex row, which is where
     it belongs on a wide screen; the element still works as a disclosure on a phone. */
  .masthead__menu {
    display: contents;
  }

  /* A closed <details> also hides its own content box, which no `display` on the nav can
     override. Both have to be neutralised for the row to lay out. */
  .masthead__menu::details-content {
    display: contents;
    content-visibility: visible;
  }

  /* On desktop the account pill sits at the end of the row, distinct from the content
     links to its left. */
  .masthead__account {
    order: 1;
  }

  /* Always show the nav on desktop regardless of details open state. */
  .masthead__menu nav {
    display: flex !important;
    flex-wrap: wrap;
    gap: 18px;
    margin-left: auto;
    font-size: 0.95rem;
  }
}

.footer {
  margin-top: 56px;
  border-top: 1px solid var(--rule);
  background: var(--panel);
  padding-block: 36px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.footer h2 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  margin: 0 0 0.6em;
}

.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 5px; }
.footer a { color: var(--ink-soft); text-decoration: none; }
.footer a:hover { color: var(--brand); text-decoration: underline; }

/* ---- components ------------------------------------------------------------ */

.card {
  background: var(--page);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 20px;
}

.card--flat { box-shadow: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  font-size: 0.97rem;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover { background: var(--brand-dark); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--brand);
  border-color: var(--rule);
}

.btn--ghost:hover { background: var(--brand-tint); color: var(--brand-dark); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chip--critical { background: var(--critical-bg); color: var(--critical); border-color: var(--critical-rule); }
.chip--warning  { background: var(--warning-bg);  color: var(--warning);  border-color: var(--warning-rule); }
.chip--info     { background: var(--info-bg);     color: var(--info);     border-color: var(--info-rule); }
.chip--good     { background: var(--good-bg);     color: var(--good);     border-color: var(--good-rule); }

.breadcrumbs {
  font-size: 0.87rem;
  color: var(--ink-faint);
  padding-block: 14px;
}

.breadcrumbs a { color: var(--ink-faint); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand); text-decoration: underline; }

figure {
  margin: 1.5rem 0;
  padding: 14px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--panel);
}

figure svg { display: block; width: 100%; height: auto; background: #fff; border-radius: 3px; }

figcaption {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: var(--measure);
}

/* ---- findings -------------------------------------------------------------- */

.finding {
  border: 1px solid var(--rule);
  border-left-width: 4px;
  border-radius: var(--radius);
  padding: 16px 18px;
  background: var(--page);
}

.finding + .finding { margin-top: 12px; }
.finding--critical { border-left-color: var(--critical); }
.finding--warning  { border-left-color: var(--warning); }
.finding--info     { border-left-color: var(--info); }

.finding__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.finding__title { font-weight: 650; margin: 0; font-size: 1.02rem; }
.finding__lead { margin: 0 0 8px; }

details.finding__more summary {
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--brand);
  font-weight: 600;
}

details.finding__more[open] summary { margin-bottom: 10px; }
details.finding__more p { font-size: 0.95rem; color: var(--ink-soft); }

.cause {
  border-top: 1px solid var(--rule-soft);
  padding-top: 18px;
  margin-top: 18px;
}

.cause h3 { margin-top: 0; }
.cause dt { font-weight: 650; font-size: 0.87rem; color: var(--ink-faint); margin-top: 10px; }
.cause dd { margin: 2px 0 0; max-width: var(--measure); }

/* ---- meter ----------------------------------------------------------------- */

.meter {
  height: 8px;
  border-radius: 999px;
  background: var(--rule-soft);
  overflow: hidden;
}

.meter__fill { height: 100%; background: var(--brand); }

/* ---- forms ----------------------------------------------------------------- */

label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }

select { min-height: 44px; }

input[type="text"], input[type="email"], input[type="password"],
input[type="number"], select, textarea {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  font: inherit;
  font-size: max(16px, 0.97rem);
  background: var(--page);
  color: var(--ink);
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
  border-color: var(--brand);
}

.field + .field { margin-top: 14px; }
.field__hint { font-size: 0.85rem; color: var(--ink-faint); margin-top: 4px; font-weight: 400; }
.field--flagged input { border-color: var(--warning); background: var(--warning-bg); }

input[type="checkbox"] {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  accent-color: var(--brand);
  cursor: pointer;
}

fieldset { border: 1px solid var(--rule); border-radius: var(--radius); padding: 16px; margin: 0 0 18px; }
legend { font-weight: 650; padding: 0 6px; font-size: 0.95rem; }

details.form-group {
  margin: 0 0 18px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0;
}

details.form-group > summary {
  padding: 14px 16px;
  font-weight: 650;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}

details.form-group > summary::-webkit-details-marker { display: none; }

details.form-group > summary::before {
  content: "+";
  font-weight: 400;
  font-size: 1.2rem;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
  color: var(--ink-faint);
  transition: transform 0.15s;
}

details.form-group[open] > summary::before { content: "\2212"; }

details.form-group .form-group__body {
  padding: 0 16px 16px;
}

.alert {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--critical-rule);
  background: var(--critical-bg);
  color: var(--critical);
  font-size: 0.95rem;
}

.alert--info { border-color: var(--info-rule); background: var(--info-bg); color: var(--info); }

/* ---- tables ---------------------------------------------------------------- */

.table-scroll { overflow-x: auto; }

table { border-collapse: collapse; width: 100%; font-size: 0.94rem; }
th, td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--rule-soft); vertical-align: top; }
th { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-faint); }

/* ---- instruction panel ----------------------------------------------------- */

.instruction {
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  background: var(--brand-tint);
  padding: 20px;
}

.instruction h2 { margin-top: 0; color: var(--brand-dark); }
.instruction__body { white-space: pre-line; max-width: var(--measure); }

.convention-note {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--rule);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ---- utility --------------------------------------------------------------- */

.row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.row--end { justify-content: flex-end; }
.list-plain { list-style: none; padding: 0; margin: 0; }
.list-plain li + li { margin-top: 8px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ---- spacing utilities ------------------------------------------------------ */

.space-tight  { margin-top: var(--space-tight); }
.space        { margin-top: var(--space); }
.space-loose  { margin-top: var(--space-loose); }

/* ---- badge (long labels, square, wraps) ------------------------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--rule);
  background: var(--panel);
  color: var(--ink-soft);
}

/* ---- row-link (clickable full-width rows) ----------------------------------- */

.row-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--rule-soft);
  text-decoration: none;
  color: inherit;
}

.row-link:hover,
.row-link:focus-visible {
  background: var(--brand-tint);
}

.row-link__main {
  font-weight: 600;
  flex: 1;
  min-width: 0;
}

.row-link__meta {
  font-size: 0.85rem;
  color: var(--ink-faint);
  flex-shrink: 0;
}

.row-link__chev {
  font-size: 1.2rem;
  color: var(--ink-faint);
  flex-shrink: 0;
}

/* ---- kv (key/value label-then-value block) ---------------------------------- */

.kv {
  margin: 0;
  padding: 0;
}

.kv__pair {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid var(--rule-soft);
}

.kv__pair:last-child {
  border-bottom: none;
}

.kv__label {
  font-size: 0.82rem;
  color: var(--ink-faint);
  font-weight: 400;
  flex-shrink: 0;
}

.kv__value {
  font-weight: 600;
  text-align: right;
  min-width: 0;
  word-break: break-word;
}

.kv__value--mono {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.92em;
}

/* ---- page-header ------------------------------------------------------------ */

.page-header {
  margin-bottom: var(--space-loose);
}

.page-header__title {
  margin: 0 0 4px;
}

.page-header__meta {
  font-size: 0.9rem;
  color: var(--ink-faint);
  margin: 0;
}

.page-header__actions {
  margin-top: var(--space);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--brand); color: #fff;
  padding: 10px 16px; z-index: 10;
}
.skip-link:focus { left: 0; }

/* ---- modal ----------------------------------------------------------------- */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(16, 24, 40, .55);
  overflow-y: auto;
  padding: 16px;
}

.modal:target,
.modal.is-open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  display: block;
}

.modal__panel {
  position: relative;
  background: var(--page);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  padding: 20px;
  margin: 24px auto;
  box-shadow: var(--shadow);
  z-index: 1;
}

.modal__close {
  font-size: 1.5rem;
  line-height: 1;
  text-decoration: none;
  color: var(--ink-soft);
  padding: 4px 8px;
  border-radius: 4px;
}

.modal__close:hover {
  color: var(--ink);
  background: var(--panel);
}

@media (max-width: 699px) {
  .modal__panel {
    max-width: none;
    margin: 12px auto;
    padding: 14px;
    border-radius: 8px;
  }
}

/* ---- loading overlay --------------------------------------------------------- */

.loading {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,42,63,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  padding: 24px;
}

.loading.is-active { display: flex; }

.loading__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255,255,255,0.25);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---- homepage diagram grid -------------------------------------------------- */

.diagram-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .diagram-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

.diagram-step {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--page);
  overflow: hidden;
  margin: 0;
}

.diagram-step svg,
.diagram-step img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
}

.diagram-step figcaption {
  padding: 10px 12px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--rule-soft);
  line-height: 1.4;
}

.diagram-step__label {
  display: block;
  padding: 8px 12px;
  font-family: system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--ink-faint);
  text-align: center;
  border-top: 1px solid var(--rule-soft);
  line-height: 1.35;
}
