:root {
  color-scheme: light;
  --ink: #17202a;
  --ink-soft: #44505c;
  --paper: #fffdf8;
  --paper-deep: #f5f0e7;
  --white: #fff;
  --accent: #ff5a36;
  --accent-dark: #d83e1e;
  --accent-soft: #fff0e9;
  --yellow: #ffd84d;
  --green: #087a5b;
  --green-soft: #e8f5f0;
  --navy: #132536;
  --line: #ddd8ce;
  --shadow: 0 18px 50px rgba(27, 35, 43, .1);
  --radius: 20px;
  --content: 1120px;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  line-height: 1.8;
  margin: 0;
  overflow-wrap: anywhere;
  text-rendering: optimizeLegibility;
}
img { display: block; height: auto; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.skip-link {
  background: var(--navy);
  color: #fff;
  left: 12px;
  padding: 8px 14px;
  position: fixed;
  top: -80px;
  z-index: 999;
}
.skip-link:focus { top: 12px; }

.site-header {
  backdrop-filter: blur(14px);
  background: rgba(255, 253, 248, .92);
  border-bottom: 1px solid rgba(221, 216, 206, .75);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header-inner,
.site-footer-inner,
.site-main {
  margin: 0 auto;
  max-width: var(--content);
}
.site-header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 24px;
}
.site-logo {
  align-items: center;
  display: inline-flex;
  font-size: 20px;
  font-weight: 900;
  gap: 9px;
  letter-spacing: -.04em;
  text-decoration: none;
}
.logo-mark {
  align-items: center;
  background: var(--accent);
  border-radius: 12px 4px 12px 4px;
  color: #fff;
  display: inline-flex;
  font-size: 18px;
  height: 38px;
  justify-content: center;
  transform: rotate(-3deg);
  width: 38px;
}
.site-nav { display: flex; gap: 26px; }
.site-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.site-nav a:hover { color: var(--accent-dark); }
.site-main { padding: 0 24px 96px; }

.home-hero {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  min-height: 600px;
  padding: 80px 0;
  position: relative;
}
.home-hero::before {
  background: var(--yellow);
  border-radius: 50%;
  content: "";
  filter: blur(2px);
  height: 220px;
  opacity: .22;
  position: absolute;
  right: 18%;
  top: 70px;
  width: 220px;
  z-index: -1;
}
.eyebrow {
  color: var(--accent-dark);
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero-copy h1 {
  font-size: clamp(42px, 6vw, 76px);
  letter-spacing: -.075em;
  line-height: 1.12;
  margin: 20px 0 26px;
}
.hero-copy h1 span {
  background: linear-gradient(transparent 63%, var(--yellow) 63%);
  color: var(--accent-dark);
}
.hero-copy > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.9;
  margin: 0;
  max-width: 680px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  text-decoration: none;
}
.button-primary { background: var(--navy); color: #fff; }
.button-primary:hover { background: var(--accent-dark); }
.button-ghost { border-color: var(--navy); }
.button-ghost:hover { background: var(--navy); color: #fff; }
.trust-card {
  background: var(--navy);
  border-radius: 34px 8px 34px 8px;
  box-shadow: 18px 18px 0 var(--accent-soft);
  color: #fff;
  padding: 36px;
  transform: rotate(1.25deg);
}
.trust-card-number {
  color: var(--yellow);
  float: left;
  font-size: 72px;
  font-weight: 950;
  line-height: .8;
  margin-right: 8px;
}
.trust-card h2 { font-size: 20px; margin: 36px 0 28px; }
.trust-card ol { display: grid; gap: 18px; list-style: none; margin: 0; padding: 0; }
.trust-card li { border-top: 1px solid rgba(255,255,255,.18); display: grid; gap: 2px; padding-top: 16px; }
.trust-card li strong { color: var(--yellow); font-size: 15px; }
.trust-card li span { color: rgba(255,255,255,.78); font-size: 13px; }

.home-section,
.featured-section { padding: 48px 0; }
.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-heading h2,
.principles h2 {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -.055em;
  line-height: 1.25;
  margin: 7px 0 0;
}
.section-heading > a { color: var(--ink-soft); font-size: 13px; font-weight: 800; }
.featured-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 390px;
  overflow: hidden;
  text-decoration: none;
}
.featured-card-copy { align-self: center; padding: 48px; }
.category-pill {
  background: var(--green-soft);
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  padding: 5px 11px;
  text-decoration: none;
}
.featured-card h3 { font-size: clamp(26px, 3vw, 40px); letter-spacing: -.045em; line-height: 1.4; margin: 18px 0 16px; }
.featured-card p { color: var(--ink-soft); margin: 0 0 24px; }
.text-link { color: var(--accent-dark); font-size: 14px; font-weight: 900; }
.featured-card-visual {
  align-items: center;
  background: var(--accent);
  display: flex;
  justify-content: center;
  min-height: 300px;
  overflow: hidden;
  position: relative;
}
.featured-card-visual::before,
.featured-card-visual::after {
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 50%;
  content: "";
  height: 260px;
  position: absolute;
  width: 260px;
}
.featured-card-visual::after { height: 380px; width: 380px; }
.featured-card-visual img { height: 100%; object-fit: cover; position: absolute; width: 100%; }
.featured-card-visual > span { color: #fff; font-size: 52px; font-weight: 950; letter-spacing: -.06em; line-height: .9; position: relative; transform: rotate(-7deg); z-index: 1; }
.category-grid { display: grid; gap: 12px; grid-template-columns: repeat(4, 1fr); }
.category-grid a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  display: grid;
  min-height: 130px;
  padding: 20px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.category-grid a:hover { box-shadow: 0 12px 25px rgba(27,35,43,.08); transform: translateY(-3px); }
.category-grid a > span { color: var(--accent); font-family: ui-monospace, monospace; font-size: 12px; }
.category-grid strong { align-self: end; font-size: 17px; }
.category-grid small { color: var(--ink-soft); }
.article-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.article-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.article-card-image {
  align-items: center;
  aspect-ratio: 16 / 9;
  background: var(--navy);
  color: var(--yellow);
  display: flex;
  font-size: 20px;
  font-weight: 900;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
}
.article-card-image img { height: 100%; object-fit: cover; transition: transform .25s ease; width: 100%; }
.article-card:hover .article-card-image img { transform: scale(1.035); }
.article-card-content { padding: 20px; }
.article-card-meta { align-items: center; color: var(--ink-soft); display: flex; font-size: 11px; justify-content: space-between; }
.article-card-meta a { color: var(--green); font-weight: 900; text-decoration: none; }
.article-card h3 { font-size: 18px; letter-spacing: -.03em; line-height: 1.55; margin: 12px 0 8px; }
.article-card h3 a { text-decoration: none; }
.article-card p { color: var(--ink-soft); font-size: 13px; line-height: 1.7; margin: 0; }
.principles {
  align-items: center;
  background: var(--paper-deep);
  border-radius: var(--radius);
  display: grid;
  gap: 48px;
  grid-template-columns: .9fr 1.1fr;
  margin-top: 48px;
  padding: 48px;
}
.principles > p { color: var(--ink-soft); margin: 0; }

.breadcrumbs {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 8px;
  padding: 28px 0 20px;
}
.breadcrumbs a { color: inherit; }
.article-shell { margin: 0 auto; max-width: 840px; }
.article-header { padding: 28px 0 30px; }
.article-labels { align-items: center; display: flex; flex-wrap: wrap; gap: 12px; }
.article-header h1 {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -.055em;
  line-height: 1.35;
  margin: 22px 0;
}
.article-dates { color: var(--ink-soft); display: flex; flex-wrap: wrap; font-size: 12px; gap: 16px; }
.article-hero-image {
  aspect-ratio: 16 / 9;
  background: var(--paper-deep);
  border-radius: var(--radius);
  margin: 16px 0 36px;
  overflow: hidden;
}
.article-hero-image img { height: 100%; object-fit: cover; width: 100%; }
.affiliate-disclosure {
  align-items: start;
  background: #fff8db;
  border: 1px solid #ead58a;
  border-radius: 12px;
  display: grid;
  gap: 4px;
  margin: 22px 0 30px;
  padding: 14px 17px;
}
.affiliate-disclosure strong { color: #725b00; font-size: 12px; }
.affiliate-disclosure p { color: #725b00; font-size: 11px; line-height: 1.7; margin: 0; }
.article-lead { border-left: 5px solid var(--accent); color: var(--ink-soft); font-size: 17px; margin: 32px 0 40px; padding: 1px 0 1px 24px; }
.article-lead p { margin: 0 0 12px; }
.article-lead p:last-child { margin-bottom: 0; }
.quick-answer {
  background: var(--navy);
  border-radius: var(--radius);
  color: #fff;
  margin: 40px 0;
  padding: 30px;
}
.quick-answer-heading span { color: var(--yellow); font-size: 12px; font-weight: 900; }
.quick-answer h2 { font-size: 24px; margin: 4px 0 20px; }
.quick-answer ol { display: grid; gap: 1px; list-style: none; margin: 0; padding: 0; }
.quick-answer li a {
  align-items: center;
  background: rgba(255,255,255,.07);
  display: grid;
  gap: 12px;
  grid-template-columns: 28px 1fr auto;
  padding: 13px 15px;
  text-decoration: none;
}
.quick-answer li:first-child a { border-radius: 10px 10px 0 0; }
.quick-answer li:last-child a { border-radius: 0 0 10px 10px; }
.quick-answer li a:hover { background: rgba(255,255,255,.12); }
.quick-answer li a > span { color: var(--yellow); font-family: ui-monospace, monospace; font-weight: 900; }
.quick-answer li strong { font-size: 13px; }
.quick-answer li em { color: var(--yellow); font-size: 14px; font-style: normal; font-weight: 900; white-space: nowrap; }
.service-quick-answer li a { grid-template-columns: 28px minmax(0, 1fr) minmax(190px, auto); }
.service-quick-answer li em { font-size: 11px; max-width: 280px; text-align: right; white-space: normal; }
.article-toc {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin: 40px 0 48px;
  padding: 26px 30px;
}
.article-toc > strong { font-size: 16px; }
.article-toc ol { margin: 14px 0 0; padding-left: 22px; }
.article-toc li { margin: 7px 0; }
.article-toc a { color: var(--ink-soft); font-size: 13px; }
.article-toc .toc-level-3 { margin-left: 18px; }
.article-body { color: var(--ink-soft); font-size: 16px; }
.article-body h2,
.product-section h2 {
  border-bottom: 3px solid var(--ink);
  color: var(--ink);
  font-size: 30px;
  letter-spacing: -.04em;
  line-height: 1.45;
  margin: 70px 0 28px;
  padding-bottom: 14px;
}
.article-body h3 { color: var(--ink); font-size: 23px; letter-spacing: -.035em; line-height: 1.5; margin: 48px 0 18px; }
.article-body h4 { color: var(--ink); font-size: 18px; margin: 32px 0 12px; }
.article-body p { margin: 0 0 24px; }
.article-body ul,
.article-body ol { background: var(--paper-deep); border-radius: 12px; margin: 24px 0; padding: 20px 24px 20px 46px; }
.article-body li { margin: 6px 0; }
.article-body blockquote { border-left: 4px solid var(--green); color: var(--ink-soft); margin: 28px 0; padding: 8px 20px; }
.article-body blockquote p { margin: 0; }
.article-body a { color: var(--accent-dark); font-weight: 800; }
.article-body a.article-affiliate-cta {
  align-items: center;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  border: 1px solid rgba(152, 35, 12, .28);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(194, 55, 25, .18);
  color: #fff;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 30px 0 38px;
  padding: 17px 19px;
  text-decoration: none;
  transition: box-shadow .18s ease, transform .18s ease;
}
.article-body a.article-affiliate-cta:hover {
  box-shadow: 0 13px 30px rgba(194, 55, 25, .25);
  transform: translateY(-2px);
}
.article-affiliate-cta span { line-height: 1.55; }
.article-affiliate-cta span::after { content: "  →"; white-space: pre; }
.article-affiliate-cta small {
  background: rgba(255,255,255,.17);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  flex: 0 0 auto;
  font-size: 10px;
  letter-spacing: .04em;
  padding: 4px 8px;
}
.article-affiliate-cta.is-ended { background: var(--ink-soft); box-shadow: none; }
.article-table-wrap {
  border: 1px solid var(--line);
  border-radius: 12px;
  margin: 28px 0 34px;
  max-width: 100%;
  overflow-x: auto;
}
.article-table-wrap:focus { box-shadow: 0 0 0 3px rgba(4, 122, 122, .14); outline: 0; }
.article-table { border-collapse: collapse; min-width: 720px; width: 100%; }
.article-table th,
.article-table td { border-bottom: 1px solid var(--line); font-size: 13px; line-height: 1.65; padding: 13px 15px; text-align: left; vertical-align: top; }
.article-table th { background: var(--navy); color: #fff; font-size: 12px; white-space: nowrap; }
.article-table td:first-child { color: var(--ink); font-weight: 900; min-width: 150px; }
.article-table tr:last-child td { border-bottom: 0; }
.article-table tbody tr:nth-child(even) { background: var(--paper-deep); }
.section-title-with-note { align-items: end; display: flex; justify-content: space-between; margin-top: 70px; }
.section-title-with-note h2 { margin-top: 7px; }
.section-title-with-note > p { color: var(--ink-soft); font-size: 11px; margin: 0 0 30px 20px; }
.product-list { display: grid; gap: 26px; }
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(27,35,43,.07);
  display: grid;
  gap: 0;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  position: relative;
}
.product-card.is-ended { opacity: .78; }
.product-card-index {
  background: var(--navy);
  border-radius: 0 0 10px 0;
  color: var(--yellow);
  font-family: ui-monospace, monospace;
  font-size: 13px;
  font-weight: 900;
  left: 0;
  padding: 6px 12px;
  position: absolute;
  top: 0;
  z-index: 2;
}
.product-card-media { align-items: center; background: #fff; display: flex; justify-content: center; min-height: 300px; padding: 30px; position: relative; }
.product-card-media img { height: 240px; object-fit: contain; width: 240px; }
.product-image-placeholder { color: var(--ink-soft); font-size: 13px; }
.ended-badge { background: var(--ink); color: #fff; font-size: 11px; font-weight: 900; padding: 5px 9px; position: absolute; right: 10px; top: 10px; z-index: 2; }
.product-card-content { border-left: 1px solid var(--line); padding: 30px; }
.deal-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.deal-badges span { background: var(--accent-soft); border-radius: 5px; color: var(--accent-dark); font-size: 11px; font-weight: 900; padding: 4px 7px; }
.product-card h3 { font-size: 19px; letter-spacing: -.025em; line-height: 1.55; margin: 0 0 18px; }
.offer-price-text { color: var(--accent-dark); font-size: 18px; font-weight: 900; margin: -5px 0 18px; }
.affiliate-offer-card .product-card-media { background: linear-gradient(145deg, #fff4ed, #fff 60%, #fff9dc); }
.affiliate-offer-card .product-image-placeholder {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(255, 90, 54, .22);
  border-radius: 24px 7px 24px 7px;
  box-shadow: 10px 10px 0 rgba(255, 216, 77, .42);
  color: var(--accent-dark);
  display: flex;
  font-size: 20px;
  font-weight: 950;
  justify-content: center;
  min-height: 150px;
  padding: 24px;
  text-align: center;
  transform: rotate(-2deg);
  width: 190px;
}
.price-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0 0 20px; }
.price-facts div { border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; padding: 8px 0; }
.price-facts div:nth-child(odd) { margin-right: 18px; }
.price-facts dt { color: var(--ink-soft); font-size: 11px; }
.price-facts dd { font-size: 13px; font-weight: 900; margin: 0; }
.price-facts .current-price { color: var(--accent-dark); font-size: 18px; }
.editor-verdict,
.caution-note { border-radius: 10px; font-size: 13px; margin: 16px 0; padding: 15px 17px; }
.editor-verdict { background: var(--green-soft); border-left: 4px solid var(--green); }
.editor-verdict.is-empty { background: var(--paper-deep); border-left-color: var(--line); }
.caution-note { background: #fff8db; border-left: 4px solid #e2a900; }
.editor-verdict strong,
.caution-note strong { display: block; font-size: 12px; margin-bottom: 3px; }
.editor-verdict p,
.caution-note p { margin: 0 0 6px; }
.editor-verdict p:last-child,
.caution-note p:last-child { margin-bottom: 0; }
.product-cta {
  align-items: center;
  background: var(--accent);
  border-radius: 10px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: space-between;
  margin-top: 20px;
  min-height: 54px;
  padding: 8px 18px;
  text-decoration: none;
}
.product-cta:hover { background: var(--accent-dark); }
.product-cta.is-ended { background: var(--ink-soft); }
.product-cta small { font-size: 9px; opacity: .75; }
.editorial-box {
  align-items: center;
  background: var(--paper-deep);
  border-radius: var(--radius);
  display: grid;
  gap: 20px;
  grid-template-columns: 64px 1fr;
  margin: 80px 0 0;
  padding: 28px;
}
.author-avatar { align-items: center; background: var(--navy); border-radius: 50%; color: var(--yellow); display: flex; font-size: 24px; font-weight: 900; height: 64px; justify-content: center; width: 64px; }
.editorial-box h2 { font-size: 17px; margin: 3px 0 5px; }
.editorial-box p { color: var(--ink-soft); font-size: 12px; line-height: 1.7; margin: 0; }

.archive-header,
.static-page,
.not-found { margin: 0 auto; max-width: 840px; }
.archive-header { padding: 60px 0 40px; }
.archive-header h1,
.static-page h1,
.not-found h1 { font-size: clamp(38px, 6vw, 64px); letter-spacing: -.06em; line-height: 1.25; margin: 14px 0 18px; }
.archive-header p,
.static-lead { color: var(--ink-soft); font-size: 17px; }
.archive-header > span:last-child { color: var(--green); font-size: 12px; font-weight: 900; }
.category-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 18px 0 28px; }
.category-chips a { border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-size: 12px; font-weight: 800; padding: 7px 12px; text-decoration: none; }
.category-chips a.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.category-chips span { opacity: .65; }
.static-page { padding: 60px 0; }
.static-page h2 { border-bottom: 2px solid var(--ink); font-size: 25px; margin: 56px 0 18px; padding-bottom: 10px; }
.static-page p { color: var(--ink-soft); }
.notice-box { background: var(--green-soft); border: 1px solid #bcded1; border-radius: 14px; margin: 32px 0; padding: 22px; }
.notice-box p { margin-bottom: 0; }
.legal-updated { font-size: 12px; margin-top: 48px; }
.empty-public,
.not-found { background: var(--paper-deep); border-radius: var(--radius); margin: 40px auto; padding: 64px 32px; text-align: center; }
.empty-public h2 { font-size: 28px; margin: 8px 0; }
.empty-public p,
.not-found p { color: var(--ink-soft); }
.not-found { margin-top: 80px; }

.site-footer { background: var(--navy); color: #fff; }
.site-footer-inner { display: grid; gap: 60px; grid-template-columns: 1.3fr .7fr; padding: 58px 24px 40px; }
.footer-logo { color: #fff; }
.site-footer-inner > div > p { color: rgba(255,255,255,.64); font-size: 12px; max-width: 560px; }
.site-footer nav { display: grid; gap: 8px; }
.site-footer nav a { color: rgba(255,255,255,.78); font-size: 12px; text-decoration: none; }
.copyright { border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.48); font-size: 10px; margin: 0; padding: 18px 24px; text-align: center; }

@media (max-width: 900px) {
  .home-hero { gap: 38px; grid-template-columns: 1fr; padding: 64px 0; }
  .trust-card { max-width: 560px; transform: none; }
  .featured-card { grid-template-columns: 1fr; }
  .featured-card-visual { min-height: 260px; order: -1; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { grid-template-columns: 220px 1fr; }
  .product-card-media { min-height: 250px; }
  .product-card-media img { height: 190px; width: 190px; }
}

@media (max-width: 640px) {
  .site-header-inner { min-height: 62px; padding: 0 16px; }
  .site-logo { font-size: 17px; }
  .logo-mark { border-radius: 10px 3px 10px 3px; font-size: 15px; height: 32px; width: 32px; }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: 11px; }
  .site-nav a:nth-child(2) { display: none; }
  .site-main { padding: 0 16px 70px; }
  .home-hero { min-height: 0; padding: 48px 0 64px; }
  .hero-copy h1 { font-size: 44px; }
  .hero-copy > p { font-size: 15px; }
  .trust-card { border-radius: 24px 6px 24px 6px; box-shadow: 10px 10px 0 var(--accent-soft); padding: 26px; }
  .featured-section,
  .home-section { padding: 35px 0; }
  .featured-card-copy { padding: 26px; }
  .featured-card-visual { min-height: 210px; }
  .featured-card-visual > span { font-size: 42px; }
  .article-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-grid a { min-height: 112px; padding: 15px; }
  .principles { gap: 22px; grid-template-columns: 1fr; padding: 28px; }
  .article-header { padding-top: 10px; }
  .article-header h1 { font-size: 34px; }
  .article-lead { font-size: 15px; padding-left: 16px; }
  .quick-answer { padding: 22px 16px; }
  .quick-answer li a { grid-template-columns: 22px 1fr; }
  .quick-answer li em { grid-column: 2; }
  .service-quick-answer li a { grid-template-columns: 22px minmax(0, 1fr); }
  .service-quick-answer li em { max-width: none; text-align: left; }
  .article-toc { padding: 22px 20px; }
  .article-body h2,
  .product-section h2 { font-size: 25px; }
  .article-body a.article-affiliate-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
    padding: 16px;
  }
  .article-affiliate-cta small { align-self: flex-start; }
  .section-title-with-note { align-items: start; flex-direction: column; }
  .section-title-with-note > p { margin: -14px 0 22px; }
  .product-card { grid-template-columns: 1fr; }
  .product-card-media { min-height: 250px; }
  .product-card-content { border-left: 0; border-top: 1px solid var(--line); padding: 22px; }
  .price-facts { grid-template-columns: 1fr; }
  .price-facts div:nth-child(odd) { margin-right: 0; }
  .editorial-box { align-items: start; grid-template-columns: 48px 1fr; padding: 20px; }
  .author-avatar { font-size: 18px; height: 48px; width: 48px; }
  .archive-header,
  .static-page { padding: 42px 0; }
  .site-footer-inner { gap: 34px; grid-template-columns: 1fr; padding: 42px 20px 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
