/*------------------------------------*\
  SITE FOOTER
  - Italic, understated legal / disclaimer
  - Utility links intentionally override typography
\*------------------------------------*/
.site-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e5e5;

  text-align: center;
  color: #777;
  font-size: 0.7rem;

  /* Legal / archival tone */
  font-family: var(--font-serif, Georgia, "Times New Roman", serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.45;

  /* Enables true italic in variable fonts where supported */
  font-variation-settings: "ital" 1;
}

.site-footer__text {
  margin-bottom: 0.5rem;
  font-style: inherit;
}

.site-footer__text:last-child {
  margin-bottom: 0;
}

/*------------------------------------*\
  FOOTER UTILITY LINKS
  - Sans-serif, upright, more readable
  - Explicitly opt out of footer italic styling
\*------------------------------------*/
.site-footer__links {
  margin: 0;
}

.site-footer__links-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.site-footer__links-list li {
  position: relative;
  padding: 0 0.75rem;
}

.site-footer__links-list li:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.12);
  font-size: 0.8rem;
  line-height: 1;
  pointer-events: none;
}

.site-footer__links-list a {
  /* Typography override */
  font-family: var(
    --font-body,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    sans-serif
  );
  font-size: 0.75rem;          /* slightly larger than disclaimer */
  font-style: normal;
  font-weight: 500;            /* improves scanability without shouting */
  letter-spacing: 0.01em;

  color: #666;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__links-list a:hover,
.site-footer__links-list a:focus-visible {
  color: #111;
  text-decoration: none;
}

/*------------------------------------*\
  FOOTER SUBTLE DIVIDER
\*------------------------------------*/
.site-footer__divider {
  width: 100%;
  height: 1px;
  margin: 1rem 0 0.75rem;
  background-color: rgba(0, 0, 0, 0.06);
}