:root {
  --seo-ink: #111827;
  --seo-muted: #536176;
  --seo-line: #d9e2ec;
  --seo-bg: #f5f7fb;
  --seo-panel: #ffffff;
  --seo-red: #d3382f;
  --seo-red-dark: #b82f28;
  --seo-blue: #144b7a;
  --seo-green: #0f7a4f;
  --seo-cream: #fff7ed;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--seo-bg);
  color: var(--seo-ink);
  font-family: Arial, sans-serif;
  line-height: 1.56;
}

a {
  color: var(--seo-blue);
  font-weight: 800;
}

.seo-shell {
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
}

.seo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--seo-line);
}

.seo-nav img {
  width: 174px;
  height: auto;
  display: block;
}

.seo-nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.seo-nav-links a {
  color: var(--seo-ink);
  font-size: 14px;
  text-decoration: none;
}

.seo-nav-links .seo-sign-in {
  background: var(--seo-red);
  color: #fff;
  padding: 10px 14px;
  border-radius: 7px;
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  gap: 34px;
  align-items: start;
  padding: 48px 0 38px;
}

.seo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--seo-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 18px;
  max-width: 780px;
  font-size: clamp(2.35rem, 6vw, 4.65rem);
  line-height: .98;
  letter-spacing: 0;
}

.seo-lede {
  margin: 0 0 18px;
  max-width: 760px;
  color: #334155;
  font-size: clamp(1.04rem, 2.2vw, 1.22rem);
}

.seo-meta {
  margin: 0;
  color: var(--seo-muted);
  font-size: 14px;
}

.seo-byline {
  margin: 0 0 8px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.seo-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.seo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid var(--seo-red);
  border-radius: 7px;
  background: var(--seo-red);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.seo-button:hover {
  background: var(--seo-red-dark);
}

.seo-button.secondary {
  background: #fff;
  color: var(--seo-blue);
  border-color: var(--seo-line);
}

.seo-hero-visual {
  margin: 0;
}

.seo-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--seo-line);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(15, 23, 42, .14);
}

.seo-hero-visual figcaption {
  margin-top: 10px;
  color: var(--seo-muted);
  font-size: 12px;
}

.seo-state-note {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 18px 0 0;
  border: 1px solid #badbcc;
  border-radius: 7px;
  background: #eefbf3;
  color: #165c3b;
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 800;
}

.seo-state-note[hidden] {
  display: none;
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: start;
  padding-bottom: 44px;
}

.seo-main {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.seo-section,
.seo-side-panel,
.seo-cta-band {
  background: var(--seo-panel);
  border: 1px solid var(--seo-line);
  border-radius: 8px;
  padding: 24px;
  min-width: 0;
}

.seo-section h2,
.seo-side-panel h2,
.seo-cta-band h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.12;
}

.seo-section h3 {
  margin: 22px 0 8px;
  font-size: 1.05rem;
}

.seo-section p,
.seo-section li,
.seo-side-panel p,
.seo-cta-band p {
  color: #334155;
}

.seo-section p:first-child,
.seo-side-panel p:first-child {
  margin-top: 0;
}

.seo-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.seo-list li {
  position: relative;
  padding-left: 22px;
}

.seo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--seo-red);
}

.seo-quote {
  margin: 18px 0;
  border-left: 4px solid var(--seo-red);
  background: var(--seo-cream);
  border-radius: 8px;
  padding: 14px 16px;
  color: #3b2a16;
  font-weight: 800;
}

.seo-fast-answer {
  border-color: #bfd7ea;
  background: #f8fbff;
}

.seo-mini-label {
  width: fit-content;
  margin: 0 0 10px;
  border-radius: 999px;
  background: #e9f2fb;
  color: var(--seo-blue);
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.seo-download {
  margin: 16px 0 0;
  border: 1px solid #badbcc;
  border-radius: 7px;
  background: #eefbf3;
  color: #165c3b;
  padding: 12px 14px;
  font-size: 14px;
}

.seo-caption {
  margin: 10px 0 0;
  color: var(--seo-muted);
  font-size: 13px;
  font-weight: 800;
}

.seo-does-not {
  border-color: #f3b4ae;
  background: #fff8f7;
}

.seo-evidence-table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 14px;
}

.seo-evidence-table th,
.seo-evidence-table td {
  border-bottom: 1px solid var(--seo-line);
  padding: 10px 8px;
  text-align: left;
  vertical-align: top;
}

.seo-evidence-table th {
  color: #475569;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.seo-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid #f3b4ae;
  border-radius: 999px;
  background: #fff1f0;
  color: #9f2f28;
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.seo-side {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 14px;
}

.seo-side-panel ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
}

.seo-link-grid {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.seo-link-grid a {
  display: block;
  border: 1px solid var(--seo-line);
  border-radius: 7px;
  padding: 12px;
  background: #fff;
  text-decoration: none;
}

.seo-faq details {
  border-top: 1px solid var(--seo-line);
  padding: 14px 0;
}

.seo-faq details:first-of-type {
  border-top: 0;
}

.seo-faq summary {
  cursor: pointer;
  color: var(--seo-ink);
  font-weight: 900;
}

.seo-sources {
  font-size: 14px;
}

.seo-sources ol {
  padding-left: 20px;
}

.seo-footer {
  border-top: 1px solid var(--seo-line);
  padding: 24px 0 40px;
  color: var(--seo-muted);
  font-size: 13px;
}

.seo-footer nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.seo-footer a {
  text-decoration: none;
}

@media (max-width: 920px) {
  .seo-hero,
  .seo-layout {
    grid-template-columns: 1fr;
  }

  .seo-side {
    position: static;
  }

  .seo-section,
  .seo-side-panel,
  .seo-cta-band {
    padding: 20px;
  }
}

@media (max-width: 620px) {
  .seo-shell {
    width: min(100% - 28px, 1160px);
  }

  .seo-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-nav-links {
    gap: 12px;
  }

  h1 {
    font-size: 2.08rem;
  }

  .seo-hero {
    padding-top: 32px;
  }

  .seo-cta-row {
    margin-top: 14px;
  }

  .seo-evidence-table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
}
