html {
  background: #111312;
  color-scheme: dark;
}

body {
  background: #111312;
  color: #f4f4f1;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

* {
  box-sizing: border-box;
}

.context-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}

.context-links a {
  border: 1px solid #3a3b38;
  border-radius: 999px;
  color: #f4f4f1;
  font-size: 13px;
  padding: 7px 10px;
  text-decoration: none;
}

.assessor-strip {
  margin-top: 24px;
  overflow: hidden;
}

.assessor-strip p {
  color: #aaa79f;
  font-size: 13px;
  margin: 0 0 10px;
}

.strip-window {
  border: 1px solid #3a3b38;
  border-radius: 8px;
  overflow: hidden;
  background: #171816;
}

.strip-track {
  animation: assessor-scroll 32s linear infinite;
  display: flex;
  gap: 10px;
  padding: 12px;
  width: max-content;
}

.strip-track span {
  background: #272825;
  border: 1px solid #3a3b38;
  border-radius: 999px;
  color: #dedcd5;
  flex: 0 0 auto;
  font-size: 13px;
  padding: 8px 12px;
  white-space: nowrap;
}

@keyframes assessor-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; flex-wrap: wrap; width: auto; }
}

.site-footer {
  border-top: 1px solid #2f302d;
  color: #c9c7c0;
  margin: 10px auto 0;
  padding: 26px 0 34px;
  width: min(1060px, calc(100% - 32px));
}

.site-footer strong {
  color: #f4f4f1;
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 8px 24px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  list-style: disc;
  margin: 0;
  padding-left: 20px;
}

.footer-links li {
  color: #c9c7c0;
  font-size: 14px;
}

.footer-links a {
  color: #c9c7c0;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover,
.context-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.seo-main {
  margin: 0 auto;
  padding: 36px 0 58px;
  width: min(920px, calc(100% - 32px));
}

.seo-main a {
  color: inherit;
}

.seo-main .home {
  color: #c9c7c0;
  display: inline-block;
  font-size: 15px;
  margin-bottom: 28px;
}

.seo-page {
  color: #f4f4f1;
}

.seo-page .kicker {
  color: #8fd0aa;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.seo-page h1 {
  font-size: clamp(32px, 4.4vw, 56px);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 18px;
}

.seo-page h2 {
  font-size: 22px;
  margin: 34px 0 12px;
}

.seo-page p,
.seo-page li {
  color: #c9c7c0;
  font-size: 17px;
  line-height: 1.58;
}

.seo-page ul {
  padding-left: 20px;
}

.lede {
  font-size: 19px;
}

.content-table {
  border-collapse: collapse;
  color: #dedcd5;
  font-size: 15px;
  margin: 20px 0;
  width: 100%;
}

.content-table th,
.content-table td {
  border-bottom: 1px solid #393a36;
  padding: 11px 0;
  text-align: left;
  vertical-align: top;
}

.content-table th:last-child,
.content-table td:last-child {
  text-align: right;
}

.cta-band {
  background: #272825;
  border: 1px solid #3a3b38;
  border-radius: 8px;
  margin-top: 32px;
  padding: 18px;
}

.cta-band p {
  margin-bottom: 10px;
}

.cta-band a {
  color: #ffffff;
  font-weight: 750;
}

@media (max-width: 700px) {
  .content-table th:last-child,
  .content-table td:last-child {
    text-align: left;
  }
}
