:root {
  --bg: #f6f8f7;
  --surface: #ffffff;
  --surface-strong: #eef4f2;
  --text: #111827;
  --muted: #64748b;
  --line: #d8e2e0;
  --primary: #126b63;
  --primary-dark: #0f4f49;
  --primary-soft: #e9f6f3;
  --cta: #b42318;
  --cta-dark: #8f1d16;
  --cta-soft: #fff3f0;
  --cta-line: rgba(180, 35, 24, 0.34);
  --accent: #2f9e68;
  --info: #2563eb;
  --warning: #b45309;
  --danger: #b91c1c;
  --focus: #2563eb;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fbfcfd 0%, var(--bg) 430px, #f1f5f3 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--text);
  color: white;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(216, 226, 224, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 64px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 226px;
}

.brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 11px;
  background: #111827;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #334155;
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--primary-dark);
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.34);
  outline-offset: 3px;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

.mobile-menu-toggle span + span {
  margin-top: 4px;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 7px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta {
  min-width: 132px;
  padding: 0 18px;
  background: #111827;
  color: white;
  font-size: 14px;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 32px;
  align-items: start;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.eyebrow span,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid rgba(18, 107, 99, 0.18);
  border-radius: 6px;
  padding: 0 10px;
  background: #ffffff;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 750;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-bottom: 16px;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 720px;
  margin-bottom: 24px;
  color: #475569;
  font-size: 16px;
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button {
  min-width: 170px;
  padding: 0 22px;
  background: var(--primary);
  color: white;
  box-shadow: none;
}

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

a.primary-button[rel~="sponsored"] {
  border: 1px solid var(--cta-line);
  background: var(--cta-soft);
  color: var(--cta-dark);
  box-shadow: inset 0 -1px 0 rgba(180, 35, 24, 0.08);
}

a.primary-button[rel~="sponsored"]:hover {
  border-color: var(--cta);
  background: var(--cta);
  color: #ffffff;
}

.secondary-button {
  min-width: 154px;
  border: 1px solid var(--line);
  padding: 0 20px;
  background: var(--surface);
  color: #0f172a;
}

.secondary-button:hover {
  border-color: rgba(15, 79, 73, 0.32);
  background: #f8fbfa;
  color: var(--primary-dark);
}

.hero-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-photo {
  margin: 0;
  border-bottom: 1px solid var(--line);
  background: #eef2f4;
}

.hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 2.8 / 1;
  object-fit: cover;
}

.ledger-head {
  padding: 12px 18px 10px;
  border-bottom: 1px solid var(--line);
}

.ledger-head span,
.ledger-head strong {
  display: block;
}

.ledger-head span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.ledger-head strong {
  font-size: 17px;
  line-height: 1.25;
}

.ledger-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ledger-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 8px 18px;
}

.ledger-list span {
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 850;
}

.ledger-list strong {
  font-size: 12px;
  line-height: 1.45;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(203, 213, 225, 0.8);
  background: #f8fafc;
}

.stats-grid div {
  min-height: 54px;
  padding: 9px 12px;
  border-right: 1px solid rgba(203, 213, 225, 0.8);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  margin-bottom: 4px;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.1;
}

.stats-grid span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: none;
}

.trust-strip div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 7px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.diagnosis-teaser-section {
  padding-top: 10px;
  padding-bottom: 18px;
}

.diagnosis-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface);
}

.diagnosis-teaser h2 {
  margin: 10px 0 10px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.25;
}

.diagnosis-teaser p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.22;
}

.section-heading p {
  max-width: 480px;
  margin-bottom: 4px;
  color: var(--muted);
  line-height: 1.75;
}

.pick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pick-card,
.guide-grid article,
.method-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: none;
}

.pick-card {
  display: flex;
  flex-direction: column;
  min-height: 274px;
  overflow: hidden;
  padding: 0;
}

.pick-card-art {
  margin: 0;
  padding: 16px 16px 0;
}

.pick-card-art img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 7px;
  object-fit: cover;
  background: #e2e8f0;
}

.pick-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding: 18px 20px 0;
}

.pick-logo {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 850;
}

.pick-card h3 {
  margin: 0 0 6px;
  font-size: 21px;
}

.pick-card p {
  margin-bottom: 14px;
  padding: 0 20px;
  color: #475569;
  line-height: 1.65;
}

.best-for {
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 780;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 18px;
  padding: 0 20px;
}

.tag,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  border-radius: 999px;
  padding: 0 9px;
  background: #f1f5f9;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
}

.tag.is-good,
.status-pill.is-good {
  background: #e3f8ed;
  color: #14633d;
}

.tag.is-warning,
.status-pill.is-warning {
  background: #fff3d6;
  color: #8a4b06;
}

.tag.is-danger,
.status-pill.is-danger {
  background: #fff0ee;
  color: #9f1c13;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 20px 20px;
}

.card-action,
.table-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 7px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  line-height: 1.25;
}

.card-action.is-official,
.table-action.is-official,
.result-links a.is-official {
  border: 1px solid var(--cta-line);
  background: var(--cta-soft);
  color: var(--cta-dark);
  box-shadow: inset 0 -1px 0 rgba(180, 35, 24, 0.08);
}

.card-action.is-official:hover,
.table-action.is-official:hover,
.result-links a.is-official:hover {
  border-color: var(--cta);
  background: var(--cta);
  color: #ffffff;
}

.card-action.is-article,
.table-action.is-article,
.result-links a.is-article {
  border: 1px solid rgba(18, 107, 99, 0.28);
  background: #ffffff;
  color: var(--primary-dark);
}

.card-action.is-article:hover,
.table-action.is-article:hover,
.result-links a.is-article:hover {
  border-color: rgba(15, 79, 73, 0.42);
  background: #f8fbfa;
}

.official-socials {
  display: grid;
  gap: 8px;
  margin: 0 20px 20px;
}

.comparison-actions .official-socials,
.result-copy .official-socials {
  margin: 4px 0 0;
}

.comparison-actions .official-socials {
  grid-column: 1 / -1;
}

.official-socials > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
}

.official-socials div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.official-socials a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(15, 79, 73, 0.18);
  border-radius: 999px;
  padding: 0 10px;
  background: #f8fbfa;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.official-socials a:hover {
  border-color: rgba(15, 79, 73, 0.34);
  background: #edf8f5;
}

.comparison-section {
  padding-top: 46px;
  scroll-margin-top: 88px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.filter-chip {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  background: var(--surface);
  color: #334155;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
}

.filter-chip.is-active {
  border-color: rgba(18, 107, 99, 0.42);
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.guide-filters {
  margin-top: -4px;
}

.table-tools {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.search-box,
.sort-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 12px;
  background: var(--surface);
}

.search-box {
  flex: 1;
  min-width: 240px;
}

.guide-tools {
  align-items: center;
}

.guide-count {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.guide-empty {
  margin-top: 16px;
}

.search-box span,
.sort-box span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.search-box input,
.sort-box select {
  width: 100%;
  min-height: 32px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.sort-box {
  min-width: 260px;
}

.comparison-slider {
  display: grid;
  grid-auto-columns: minmax(220px, 260px);
  grid-auto-flow: column;
  gap: 12px;
  overflow-x: auto;
  margin-bottom: 16px;
  padding: 2px 2px 12px;
  scroll-snap-type: x proximity;
  scrollbar-color: rgba(18, 107, 99, 0.45) transparent;
}

.comparison-slide {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 78px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  background: var(--surface);
  scroll-snap-align: start;
}

.comparison-slide:hover {
  border-color: rgba(18, 107, 99, 0.35);
}

.comparison-slide img {
  display: block;
  width: 78px;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 7px;
  object-fit: cover;
  background: #e2e8f0;
}

.comparison-slide span,
.comparison-slide small {
  display: block;
}

.comparison-slide span {
  margin-bottom: 4px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.comparison-slide small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.comparison-shell {
  display: grid;
  gap: 16px;
}

.comparison-card {
  scroll-margin-top: 88px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.comparison-card-head {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 180px;
  gap: 22px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.comparison-card-art {
  margin: 0;
}

.comparison-card-art img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  object-fit: cover;
  background: #e2e8f0;
}

.comparison-card-copy {
  min-width: 0;
}

.comparison-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.comparison-card h3 {
  margin-bottom: 6px;
  font-size: 26px;
  line-height: 1.25;
}

.comparison-card-copy p {
  max-width: 650px;
  margin-bottom: 0;
  color: #475569;
  line-height: 1.75;
}

.issuer-line {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.comparison-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.table-action {
  min-height: 42px;
}

.comparison-detail-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.comparison-detail-grid div {
  min-width: 0;
  border-right: 1px solid var(--line);
  padding: 18px 20px;
}

.comparison-detail-grid div:last-child {
  border-right: 0;
}

.comparison-detail-grid span,
.comparison-caution span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 850;
}

.comparison-detail-grid strong {
  display: block;
  color: #0f172a;
  font-size: 17px;
  line-height: 1.55;
}

.comparison-detail-grid small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.comparison-caution {
  padding: 18px 20px;
  background: #fffdf5;
}

.comparison-caution p {
  max-width: 900px;
  margin-bottom: 0;
  color: #334155;
  line-height: 1.75;
}

.empty-state {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  text-align: center;
}

.table-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.guide-grid article {
  overflow: hidden;
  min-height: 286px;
  padding: 0 22px 22px;
}

.article-thumb {
  display: block;
  width: calc(100% + 44px);
  max-width: none;
  aspect-ratio: 16 / 9;
  margin: 0 -22px 18px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #eef2f4;
}

.guide-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.guide-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.guide-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.method-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 34px;
  padding: 28px;
  background: var(--surface);
}

.method-card h2 {
  margin: 10px 0 14px;
  font-size: clamp(24px, 2.6vw, 34px);
}

.method-card p {
  margin-bottom: 0;
  color: #475569;
  line-height: 1.8;
}

.method-list {
  display: grid;
  gap: 12px;
}

.method-list div {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 16px;
  background: #fbfcfd;
}

.method-list strong,
.method-list span {
  display: block;
}

.method-list strong {
  margin-bottom: 6px;
}

.method-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.source-list a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  background: var(--surface);
  color: #334155;
  font-size: 14px;
  font-weight: 750;
}

.source-list a:hover {
  border-color: rgba(18, 107, 99, 0.32);
  color: var(--primary-dark);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 34px;
  align-items: start;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 30px;
}

.article-hero h1 {
  max-width: 820px;
  font-size: clamp(32px, 4vw, 50px);
}

.article-hero p {
  max-width: 760px;
  color: #475569;
  font-size: 16px;
  line-height: 1.85;
}

.article-visual {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eef2f4;
}

.article-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 780px);
  gap: 34px;
  align-items: start;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 48px;
}

.article-sidebar {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--surface);
}

.article-sidebar strong {
  margin-bottom: 4px;
  font-size: 14px;
}

.article-sidebar a {
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

.article-sidebar a:hover {
  color: var(--primary-dark);
}

.article-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--surface);
}

.article-content section + section {
  margin-top: 34px;
}

.article-content h2 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
}

.article-content p {
  color: #334155;
  line-height: 1.9;
}

.article-callout {
  border-left: 4px solid var(--primary);
  padding: 18px 20px;
  background: #f6fbf9;
}

.article-callout strong {
  display: block;
  margin-bottom: 8px;
}

.article-callout p {
  margin-bottom: 0;
}

.fact-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.fact-table div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
}

.fact-table div:last-child {
  border-bottom: 0;
}

.fact-table span,
.fact-table strong {
  padding: 14px 16px;
  line-height: 1.6;
}

.fact-table span {
  background: #f8fafc;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.fact-table strong {
  font-size: 14px;
}

.article-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.25rem;
  color: #334155;
  line-height: 1.8;
}

.comparison-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.comparison-mini div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: #fbfcfd;
}

.comparison-mini span {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 850;
}

.comparison-mini strong {
  display: block;
  margin-bottom: 8px;
  line-height: 1.5;
}

.comparison-mini p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.compare-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--line);
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
  line-height: 1.65;
}

.compare-table th {
  background: #f8fafc;
  color: #475569;
  font-size: 13px;
  font-weight: 850;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table td:first-child {
  width: 160px;
  background: #fbfcfd;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.article-sources {
  margin-top: 12px;
}

.article-next {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.article-next a {
  display: flex;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: #fbfcfd;
  color: var(--primary-dark);
  font-weight: 800;
  line-height: 1.5;
}

.guide-archive-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
}

.card-hub-hero {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
}

.card-hub-visual {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fafc;
}

.card-hub-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hub-actions a {
  min-width: 168px;
}

.card-hub-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card-hub-index-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 130px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--surface);
}

.card-hub-index-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 7px;
  object-fit: cover;
  background: #eef2f4;
}

.card-hub-index-card span,
.card-hub-index-card small {
  display: block;
}

.card-hub-index-card span {
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.35;
}

.card-hub-index-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.article-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.article-list-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.article-list-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  background: #eef2f4;
}

.article-list-card div {
  padding: 18px;
}

.article-list-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 850;
}

.article-list-card h3 {
  margin-bottom: 10px;
  color: #0f172a;
  font-size: 19px;
  line-height: 1.45;
}

.article-list-card p {
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.article-list-card small {
  color: #64748b;
  font-size: 12px;
  font-weight: 750;
}

.article-list-card:hover h3,
.card-hub-index-card:hover span {
  color: var(--primary);
}

.archive-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--surface);
}

.archive-note strong,
.archive-note span {
  display: block;
}

.archive-note strong {
  margin-bottom: 8px;
}

.archive-note span {
  color: var(--muted);
  line-height: 1.75;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.archive-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.archive-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  background: #eef2f4;
}

.archive-card div {
  padding: 18px;
}

.archive-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 850;
}

.archive-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.45;
}

.archive-card p {
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.archive-card small {
  color: #64748b;
  font-size: 12px;
  font-weight: 750;
}

.diagnosis-hero {
  padding-bottom: 18px;
}

.diagnosis-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  gap: 24px;
  align-items: start;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 52px;
}

.diagnosis-form,
.diagnosis-result {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.diagnosis-form {
  display: grid;
  gap: 0;
}

.diagnosis-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: #f8fafc;
}

.diagnosis-progress span {
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 850;
}

.diagnosis-progress strong {
  color: #334155;
  font-size: 14px;
}

.diagnosis-meter {
  height: 5px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #e2e8f0;
}

.diagnosis-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--primary);
  transition: width 0.22s ease;
}

.question-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 22px;
}

.question-block[hidden],
.answer-review[hidden] {
  display: none;
}

.question-block.is-active {
  animation: questionFade 0.18s ease;
}

@keyframes questionFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.question-block legend {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 850;
}

.question-block label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 13px 14px;
  background: #fbfcfd;
  color: #334155;
  line-height: 1.55;
  cursor: pointer;
}

.question-block input {
  accent-color: var(--primary);
  flex: 0 0 auto;
  margin-top: 4px;
}

.question-block label:has(input:checked) {
  border-color: rgba(18, 107, 99, 0.42);
  background: #f2fbf8;
  color: #0f172a;
}

.answer-review {
  display: grid;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 16px 22px;
  background: #fbfcfd;
}

.answer-review > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.answer-review > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.answer-review-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 10px;
  background: #ffffff;
  color: #334155;
  cursor: pointer;
}

.answer-review-item strong {
  display: grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 5px;
  background: #e7f4f0;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 850;
}

.answer-review-item span {
  overflow: hidden;
  font-size: 13px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.diagnosis-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 22px;
}

.diagnosis-actions button {
  border: 0;
  cursor: pointer;
}

.diagnosis-actions [hidden] {
  display: none;
}

.diagnosis-actions .secondary-button {
  border: 1px solid var(--line);
}

.diagnosis-actions button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.diagnosis-loading {
  display: grid;
  justify-items: start;
  gap: 10px;
  border-bottom: 1px solid var(--line);
  padding: 24px 20px;
  background: #f8fafc;
}

.diagnosis-loading[hidden] {
  display: none;
}

.diagnosis-loading > span {
  display: block;
  width: 34px;
  height: 34px;
  border: 3px solid #cbd5e1;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: diagnosisSpin 0.9s linear infinite;
}

.diagnosis-loading strong {
  color: #0f172a;
  font-size: 18px;
}

.diagnosis-loading p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.diagnosis-result {
  position: sticky;
  top: 86px;
  overflow: hidden;
}

.result-head {
  border-bottom: 1px solid var(--line);
  padding: 20px;
  background: #f8fafc;
}

.result-head span,
.result-head strong {
  display: block;
}

.result-head span {
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 850;
}

.result-head strong {
  margin-bottom: 8px;
  font-size: 22px;
}

.result-head p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.result-list {
  display: grid;
  gap: 0;
}

.result-card {
  display: grid;
  grid-template-columns: 42px 118px minmax(0, 1fr);
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
}

.result-rank {
  display: grid;
  gap: 6px;
  align-content: start;
}

.result-rank span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 6px;
  background: var(--primary);
  color: white;
  font-size: 13px;
  font-weight: 850;
}

.result-rank strong {
  color: var(--primary-dark);
  font-size: 12px;
}

.result-card-art {
  margin: 0;
}

.result-card-art img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 7px;
  object-fit: cover;
  background: #e2e8f0;
}

.result-copy {
  min-width: 0;
}

.result-type {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.result-card h2 {
  margin-bottom: 8px;
  font-size: 20px;
}

.result-card p {
  margin-bottom: 10px;
  color: #334155;
  line-height: 1.7;
}

.result-reason {
  border-left: 3px solid var(--primary);
  padding-left: 10px;
  color: #0f172a;
  font-size: 14px;
}

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

.result-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 11px;
  background: #ffffff;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 850;
}

.result-card small {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.result-notice {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  background: #fffdf5;
}

.result-notice strong {
  color: var(--warning);
}

.result-notice span {
  color: #475569;
  font-size: 13px;
  line-height: 1.65;
}

.guide-card {
  display: block;
  color: inherit;
}

.guide-card:hover h3,
.archive-card:hover h3,
.article-next a:hover {
  color: var(--primary-dark);
}

.site-footer {
  width: 100%;
  margin: 54px 0 0;
  border-top: 1px solid rgba(18, 107, 99, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 44px),
    #10201e;
  color: #f8faf8;
}

.footer-inner,
.footer-bottom {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.45fr);
  gap: 58px;
  padding: 44px 0 34px;
}

.footer-brand-panel {
  max-width: 430px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-brand-mark {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 11px;
  background: #ffffff;
  object-fit: contain;
}

.footer-brand strong,
.footer-brand small {
  display: block;
  line-height: 1.1;
}

.footer-brand strong {
  font-size: 20px;
  letter-spacing: 0;
}

.footer-brand small {
  margin-top: 4px;
  color: #91aaa3;
  font-size: 12px;
}

.site-footer p {
  margin-bottom: 0;
  color: #bfd1cc;
  font-size: 13px;
  line-height: 1.85;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(191, 209, 204, 0.22);
  border-radius: 999px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.04);
  color: #e6f0ed;
  font-size: 12px;
  font-weight: 750;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.footer-column strong {
  display: block;
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0;
}

.footer-column a {
  display: block;
  width: fit-content;
  padding: 5px 0;
  color: #bfd1cc;
  font-size: 13px;
  line-height: 1.45;
}

.footer-column a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(47, 158, 104, 0.72);
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(191, 209, 204, 0.16);
  padding: 18px 0 26px;
}

.footer-bottom p {
  max-width: 820px;
  color: #91aaa3;
  font-size: 12px;
  line-height: 1.7;
}

.footer-bottom span {
  flex: 0 0 auto;
  color: #91aaa3;
  font-size: 12px;
  font-weight: 750;
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero-grid,
  .trust-strip,
  .pick-grid,
  .guide-grid,
  .method-card,
  .article-hero,
  .article-shell,
  .comparison-mini,
  .archive-grid,
  .diagnosis-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .table-tools,
  .diagnosis-teaser {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand-panel {
    max-width: 640px;
  }

  .sort-box {
    min-width: 0;
  }

  .comparison-card-head {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .comparison-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-detail-grid div:nth-child(2n) {
    border-right: 0;
  }

  .comparison-detail-grid div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .article-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
  }

  .diagnosis-result {
    position: static;
  }

  .card-hub-index-grid,
  .article-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-hub-index-card,
  .archive-card {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .article-list-card {
    grid-template-columns: 190px minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .header-cta {
    display: none;
  }

  .header-inner {
    gap: 10px;
    min-height: 62px;
    padding: 9px 0;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex: 0 0 42px;
  }

  .site-header.has-mobile-menu .brand {
    flex: 1;
  }

  .site-header.has-mobile-menu .nav-links,
  .site-header.has-mobile-menu .header-cta {
    display: none;
  }

  .site-header.has-mobile-menu.is-menu-open .nav-links {
    display: grid;
    order: 3;
    width: 100%;
    gap: 0;
    overflow: visible;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 6px;
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .site-header.has-mobile-menu.is-menu-open .nav-links a {
    display: flex;
    align-items: center;
    min-height: 42px;
    border-bottom: 1px solid rgba(215, 222, 231, 0.72);
    padding: 0 10px;
    font-weight: 760;
  }

  .site-header.has-mobile-menu.is-menu-open .nav-links a:last-child {
    border-bottom: 0;
  }

  .site-header.has-mobile-menu.is-menu-open .header-cta {
    display: inline-flex;
    order: 4;
    width: 100%;
  }

  .site-header.has-mobile-menu.is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.has-mobile-menu.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.has-mobile-menu.is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero,
  .section,
  .trust-strip {
    width: min(100% - 24px, 1180px);
  }

  .footer-inner,
  .footer-bottom {
    width: min(100% - 24px, 1180px);
  }

  .footer-inner {
    padding: 36px 0 26px;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-column {
    border-top: 1px solid rgba(191, 209, 204, 0.14);
    padding-top: 18px;
  }

  .footer-column a {
    min-height: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-actions a {
    width: auto;
    min-width: 0;
    min-height: 44px;
    padding: 0 8px;
    font-size: 13px;
    line-height: 1.2;
    white-space: normal;
  }

  .comparison-slider {
    grid-auto-columns: minmax(190px, 78vw);
  }

  .comparison-section {
    scroll-margin-top: 136px;
  }

  .comparison-card-head,
  .comparison-detail-grid {
    grid-template-columns: 1fr;
  }

  .comparison-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comparison-card-head {
    gap: 16px;
    padding: 16px;
  }

  .comparison-card h3 {
    font-size: 23px;
  }

  .comparison-detail-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px;
  }

  .comparison-detail-grid div:last-child {
    border-bottom: 0;
  }

  .comparison-caution {
    padding: 16px;
  }

  .ledger-list li {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 14px 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid div {
    min-height: 82px;
    border-bottom: 1px solid rgba(203, 213, 225, 0.8);
  }

  .stats-grid div:nth-child(2n) {
    border-right: 0;
  }

  .stats-grid div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .result-card {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .result-card-art {
    grid-column: 2;
  }

  .result-copy {
    grid-column: 2;
  }

  .pick-card,
  .guide-grid article,
  .method-card,
  .article-content {
    padding: 18px;
  }

  .article-hero,
  .article-shell {
    width: min(100% - 24px, 1180px);
  }

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

  .article-hero h1 {
    font-size: 32px;
  }

  .article-next,
  .archive-card,
  .article-list-card,
  .fact-table div,
  .question-block {
    grid-template-columns: 1fr;
  }

  .card-hub-index-grid,
  .article-list-grid {
    grid-template-columns: 1fr;
  }

  .card-hub-index-card {
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .hub-actions a {
    width: 100%;
  }

  .diagnosis-shell {
    width: min(100% - 24px, 1180px);
  }

  .diagnosis-progress,
  .diagnosis-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .diagnosis-actions button {
    width: 100%;
  }

  .archive-card img {
    min-height: 180px;
    aspect-ratio: 16 / 9;
  }

  .article-list-card img {
    min-height: 180px;
    aspect-ratio: 16 / 9;
  }

  .fact-table span,
  .fact-table strong {
    padding: 12px 14px;
  }
}
