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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #212529;
  background-color: #f8f9fa;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  color: #0a2540;
}

p {
  margin: 0 0 1rem;
}

a {
  color: #0a2540;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid #0a2540;
  outline-offset: 2px;
}

.container {
  width: min(100% - 2rem, 48rem);
  margin-inline: auto;
}

.site-header .container,
.site-footer .container {
  width: min(100% - 2rem, 72rem);
}

.site-header {
  position: relative;
  background: #fff;
  border-bottom: 2px solid #0a2540;
  padding: 1rem 0;
  z-index: 20;
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: auto;
  min-width: 0;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0a2540;
  text-decoration: none;
  line-height: 1;
}

.site-logo__word {
  font-weight: 700;
  color: #0a2540;
}

.site-mark {
  display: inline-block;
  font-style: normal;
  line-height: 1;
  font-size: 1.75rem;
}

.site-mark--sm {
  font-size: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-nav__help {
  flex: 0 0 auto;
  background: #0a2540;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  border-radius: 2px;
}

.header-nav__help:hover,
.header-nav__help[aria-current="page"] {
  background: #1e3a5f;
  color: #fff;
}

.header-menu {
  flex: 0 0 auto;
}

.header-menu__toggle {
  list-style: none;
  appearance: none;
  cursor: pointer;
  min-height: 2.75rem;
  min-width: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid #0a2540;
  border-radius: 2px;
  background: #fff;
  color: #0a2540;
}

.header-menu__toggle::-webkit-details-marker,
.header-menu__toggle::marker {
  display: none;
  content: "";
}

.header-menu[open] .header-menu__toggle {
  background: #f1f5f9;
}

.header-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-bottom: 1px solid #cbd5e1;
  padding: 0.75rem 1rem 1.25rem;
  box-shadow: 0 8px 16px rgba(10, 37, 64, 0.06);
}

.header-menu[open] .header-nav {
  display: flex;
}

.header-nav a {
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1rem;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  color: #0a2540;
  border-radius: 2px;
}

.header-nav a:hover,
.header-nav a[aria-current="page"] {
  background: #f1f5f9;
}

@media (max-width: 479px) {
  .header-nav__help {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    max-width: 10.5rem;
  }
}

@media (min-width: 900px) {
  .site-header__inner {
    flex-wrap: nowrap;
    gap: 1.25rem;
  }

  .header-menu {
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-end;
    min-width: 0;
  }

  .header-menu__toggle {
    display: none;
  }

  .header-nav,
  .header-menu .header-nav {
    display: flex;
    position: static;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .header-nav a {
    font-size: 0.8125rem;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
  }

  .header-nav__help {
    order: 1;
    margin-left: 0.25rem;
    white-space: nowrap;
  }
}

.state-bar {
  background: #0a2540;
  color: #e2e8f0;
  padding: 0.625rem 0;
  font-size: 0.8125rem;
}

.state-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.state-bar label {
  font-weight: 600;
}

.state-bar__hint {
  color: #cbd5e1;
}

.state-bar select {
  font: inherit;
  padding: 0.25rem 0.5rem;
  border: 1px solid #475569;
  border-radius: 2px;
  background: #fff;
  color: #212529;
  min-width: 10rem;
  min-height: 2.75rem;
}

main {
  padding: 2.5rem 0 4rem;
}

section {
  margin-bottom: 3rem;
}

.section-card {
  background: #fff;
  border: 1px solid #cbd5e1;
  padding: 1.75rem;
}

.hero {
  padding-top: 0.5rem;
}

.hero__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #475569;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}

.hero__lede {
  font-size: 1.0625rem;
  color: #334155;
  max-width: 36rem;
  margin-bottom: 1.25rem;
}

.disclaimer {
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #334155;
}

.disclaimer p {
  margin: 0;
}

.disclaimer p + p {
  margin-top: 0.75rem;
}

.disclaimer--short {
  border-left: 3px solid #0a2540;
}

.self-help-note {
  border: 2px solid #991b1b;
  background: #fef2f2;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}

.self-help-note strong {
  display: block;
  margin-bottom: 0.375rem;
  color: #991b1b;
}

.self-help-note p {
  margin: 0;
  color: #334155;
}

.intent-split {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .intent-split {
    grid-template-columns: 1fr 1fr;
  }
}

.intent-card--follow {
  margin-top: 1rem;
}

.intent-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 2px solid #cbd5e1;
  padding: 1.5rem;
  background: #fff;
}

.intent-card:hover,
.intent-card:focus-visible {
  border-color: #0a2540;
}

.intent-card__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #475569;
  margin-bottom: 0.5rem;
}

.intent-card h2 {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.intent-card p {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 1rem;
}

.intent-card__cta {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0a2540;
}

.page-intro {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}

.path-summary p {
  max-width: 40rem;
}

.path-summary .btn {
  margin-top: 0.25rem;
}

.secondary-link {
  margin-top: 2rem;
  margin-bottom: 0;
}

.lookalike p {
  max-width: 40rem;
}

.states-available {
  max-width: 40rem;
}

.consent-box + .consent-box {
  margin-top: 0.75rem;
}

.form-intro {
  max-width: 40rem;
}

.page-disclaimer {
  margin-bottom: 2rem;
}

.section-heading {
  border-bottom: 1px solid #cbd5e1;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.section-heading h1 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  margin-bottom: 0;
}

.section-heading__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #475569;
  display: block;
  margin-bottom: 0.25rem;
}

.triage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.triage-item {
  border: 1px solid #e2e8f0;
  padding: 1.25rem;
  background: #f8fafc;
}

.triage-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.triage-item p {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 0.5rem;
}

.triage-item .attorney-note {
  font-size: 0.8125rem;
  color: #0a2540;
  margin: 0;
}

.dual-track {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .dual-track {
    grid-template-columns: 1fr 1fr;
  }
}

.track-card {
  border: 1px solid #cbd5e1;
  padding: 1.25rem;
  background: #fff;
}

.track-card h2,
.track-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.track-card p,
.track-card ul {
  font-size: 0.875rem;
  color: #475569;
}

.track-card ul {
  margin: 0;
  padding-left: 1.25rem;
}

.coming-soon {
  background: #f1f5f9;
  border: 1px dashed #94a3b8;
  padding: 2rem;
  text-align: center;
}

.coming-soon p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.coming-soon a {
  font-weight: 600;
}

.county-placeholder {
  font-size: 0.9375rem;
  color: #475569;
  font-style: italic;
}

.protect-copy {
  max-width: 38rem;
}

.protect-copy p {
  margin-bottom: 1.25rem;
}

.protect-modules {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

@media (min-width: 640px) {
  .protect-modules {
    grid-template-columns: 1fr 1fr;
  }
}

.protect-module {
  border: 1px solid #e2e8f0;
  padding: 1.25rem 1.5rem;
  background: #f8fafc;
}

.protect-module h2,
.protect-module h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.protect-module p {
  font-size: 0.875rem;
  color: #475569;
  margin: 0;
}

.scenario-cluster {
  margin-top: 1.75rem;
}

.self-help-note + .scenario-cluster {
  margin-top: 1.25rem;
}

.scenario-cluster h2 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.scenario-cluster .scenario-list {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.classify-list {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.classify-list li {
  margin-bottom: 0.5rem;
}

.jurisdiction-note {
  font-size: 0.875rem;
  color: #475569;
}

.scenario-list {
  display: grid;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.scenario-choice {
  display: block;
  width: 100%;
  text-align: left;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0a2540;
  background: #fff;
  border: 1px solid #cbd5e1;
  padding: 0.875rem 1rem;
  min-height: 2.75rem;
  cursor: pointer;
  border-radius: 2px;
}

.scenario-choice:hover,
.scenario-choice:focus-visible {
  border-color: #0a2540;
}

.scenario-choice.is-selected {
  border-color: #0a2540;
  background: #f8fafc;
}

.scenario-detail {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 1.5rem;
  margin-top: 1.25rem;
}

.scenario-detail h2,
.scenario-detail h3 {
  font-size: 1.125rem;
}

.scenario-detail h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9375rem;
  margin: 1.25rem 0 0.375rem;
  color: #0a2540;
}

.scenario-detail p {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 0.75rem;
}

.scenario-detail__cta {
  margin: 1.25rem 0 0;
}

.exit-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.exit-card {
  border: 1px solid #e2e8f0;
  padding: 1.75rem;
  background: #f8fafc;
}

.exit-card h2,
.exit-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.exit-card p {
  font-size: 0.9375rem;
  color: #475569;
  margin-bottom: 1rem;
}

.exit-note {
  font-size: 0.8125rem;
  color: #0a2540;
}

.exit-choices {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.exit-choices a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0a2540;
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: 0.75rem 1rem;
}

.exit-choices a:hover {
  border-color: #0a2540;
}

.exit-card .btn {
  margin-top: 0.25rem;
}

.conflict-note {
  font-size: 0.8125rem;
  color: #0a2540;
  margin: 0 0 1rem;
}

.resources-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.resources-block h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.resources-lede {
  font-size: 0.875rem;
  color: #475569;
  max-width: 38rem;
  margin-bottom: 1.5rem;
}

.resources-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .resources-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.resource-card {
  border: 1px solid #e2e8f0;
  padding: 1.25rem 1.5rem;
  background: #fff;
}

.resource-card h2,
.resource-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: #0a2540;
}

.resource-card p {
  font-size: 0.8125rem;
  color: #475569;
  margin: 0;
}

.resource-card__status {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #475569;
  margin-bottom: 0.5rem;
}

.sell-fields {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 1.25rem 1.5rem 1.5rem;
  margin: 1.25rem 0;
}

.sell-fields legend {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0 0.375rem;
}

.form-hint {
  display: block;
  font-size: 0.75rem;
  color: #475569;
  margin-top: 0.375rem;
}

.news-intro {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.news-item:first-child {
  padding-top: 0;
}

.news-item time {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 0.5rem;
}

.news-item h2 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.news-item p {
  font-size: 0.9375rem;
  color: #475569;
}

.news-item__source {
  font-size: 0.8125rem;
  margin: 0;
}

.site-footer__grid {
  display: grid;
  gap: 1.75rem;
  margin: 1.75rem 0 1.5rem;
}

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

.site-footer__heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a2540;
  margin: 0 0 0.375rem;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
}

.site-footer__col a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-footer__col a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn--primary {
  background: #0a2540;
  color: #fff;
}

.btn--primary:hover {
  background: #1e3a5f;
}

.btn--outline {
  background: transparent;
  color: #0a2540;
  border: 1px solid #0a2540;
}

.btn--outline:hover {
  background: #f1f5f9;
}

.form-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

#lead-form > .form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font: inherit;
  padding: 0.625rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 2px;
  background: #fff;
}

.consent-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 1rem;
  font-size: 0.8125rem;
}

.consent-box label {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
  cursor: pointer;
}

.consent-box input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.attorney-teaser {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  font-size: 0.9375rem;
}

.provenance {
  font-size: 0.75rem;
  color: #475569;
  overflow-x: auto;
}

.provenance table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.provenance th,
.provenance td {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
}

.provenance th {
  background: #f1f5f9;
  font-weight: 600;
  color: #475569;
}

.provenance a {
  word-break: break-all;
}

.site-footer {
  background: #fff;
  border-top: 1px solid #cbd5e1;
  padding: 2.5rem 0 2rem;
  font-size: 0.8125rem;
  color: #475569;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a2540;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.hidden {
  display: none !important;
}

.thank-you {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.form-actions {
  margin-top: 1.25rem;
}

.thank-you__cta {
  margin-top: 1.5rem;
}

.form-error {
  background: #fef2f2;
  border: 1px solid #991b1b;
  color: #991b1b;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.form-success {
  background: #ecfdf5;
  border: 1px solid #059669;
  color: #065f46;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.notify-form {
  margin-top: 1.25rem;
  text-align: left;
  max-width: 24rem;
  margin-inline: auto;
}

.notify-form .form-field {
  margin-bottom: 0.75rem;
}

.notify-form .btn {
  margin-top: 1rem;
}

.teaser-row {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 640px) {
  .teaser-row {
    grid-template-columns: 1fr 1fr;
  }
}

.teaser-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #cbd5e1;
  padding: 1.25rem 1.5rem;
  background: #fff;
  margin-top: 1rem;
}

.teaser-row .teaser-card {
  margin-top: 0;
}

.teaser-card:hover,
.teaser-card:focus-visible {
  border-color: #0a2540;
}

.teaser-card__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #475569;
  margin-bottom: 0.375rem;
}

.teaser-card h2 {
  font-size: 1.125rem;
  margin-bottom: 0.375rem;
}

.teaser-card p {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 0;
}

.distinction-note {
  border-left: 3px solid #0a2540;
  background: #f8fafc;
  padding: 1rem 1.25rem;
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
}

.distinction-note p {
  margin: 0;
}

.distinction-note p + p {
  margin-top: 0.75rem;
}

a.scenario-choice {
  text-decoration: none;
}

.lease-provisions {
  margin: 2rem 0;
}

.lease-provisions h2 {
  font-size: 1.125rem;
}

.lease-list {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

.law-motion {
  margin: 0 0 2rem;
}

.law-motion h2 {
  font-size: 1.125rem;
}

.law-motion > p {
  max-width: 40rem;
}

.lease-list li {
  margin-bottom: 0.75rem;
  color: #334155;
}

.case-grid {
  display: grid;
  gap: 1rem;
}

.case-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e2e8f0;
  padding: 1.25rem 1.5rem;
  background: #fff;
}

.case-card:hover,
.case-card:focus-visible {
  border-color: #0a2540;
}

.case-card h2,
.case-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
}

.case-card p {
  font-size: 0.875rem;
  color: #475569;
  margin: 0;
}

.case-card__meta {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 0.375rem;
}

.template-block h2 {
  font-size: 1.0625rem;
  margin-top: 1.5rem;
}

.source-list {
  font-size: 0.875rem;
  color: #475569;
}

.source-list a {
  word-break: break-all;
}

.law-callout {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.law-callout h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.law-callout p {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 0.5rem;
}

.law-callout p:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .intent-card,
  .scenario-choice,
  .exit-choices a,
  .case-card,
  .teaser-card,
  .btn {
    transition: none;
  }
}
