:root {
  color-scheme: light;
  --ink: #17191c;
  --muted: #62676f;
  --paper: #f4f5f2;
  --surface: #ffffff;
  --surface-soft: #edf1ee;
  --line: #d7ddd7;
  --line-strong: #bfc8bf;
  --forest: #164b3f;
  --wine: #71313b;
  --brass: #a87a34;
  --blue: #244a66;
  --charcoal: #101416;
  --shadow: 0 18px 44px rgba(18, 24, 22, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

h1,
h2,
h3,
p,
li,
a {
  overflow-wrap: anywhere;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 56px;
  border-bottom: 1px solid rgba(215, 221, 215, 0.92);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--charcoal);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.25;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.nav-toggle {
  display: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 18px;
  color: #4e545a;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav a {
  display: inline-flex;
  align-items: center;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

.nav a:hover {
  border-color: var(--brass);
  color: var(--forest);
}

.page-title {
  padding: 72px 72px 58px;
  background: var(--charcoal);
  color: #fff;
}

.page-title h1 {
  max-width: 980px;
  margin: 0;
  font-size: 2.8rem;
  line-height: 1.18;
}

.page-title p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.home-hero {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 92px 72px 84px;
  background: var(--charcoal);
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88);
}

.home-hero::after {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 18, 0.5);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
  max-width: 860px;
  min-width: 0;
}

.home-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 4.25rem;
  letter-spacing: 0;
  line-height: 1.08;
}

.home-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.section,
.content-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.section.narrow {
  width: min(760px, calc(100% - 40px));
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.section-intro > * {
  min-width: 0;
}

.section h2,
.section-intro h2 {
  margin: 0 0 20px;
  font-size: 2.15rem;
  line-height: 1.26;
}

.section-intro p:not(.section-label) {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-decision {
  padding-top: 44px;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.decision-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
  min-height: 176px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.decision-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.decision-card span {
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decision-card strong {
  font-size: 1.12rem;
  line-height: 1.42;
}

.decision-card small {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.75;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.topic-link {
  display: grid;
  gap: 10px;
  min-height: 120px;
  align-content: end;
  padding: 20px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--forest);
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.topic-link:nth-child(2n) {
  border-top-color: var(--wine);
}

.topic-link:nth-child(3n) {
  border-top-color: var(--blue);
}

.topic-link:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.topic-link span {
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.35;
}

.topic-link small {
  color: var(--muted);
  font-size: 0.82rem;
}

.topic-link b {
  color: var(--brass);
  font-size: 0.78rem;
  letter-spacing: 0;
}

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

.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-count {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.article-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.article-card-media {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--surface-soft);
}

.article-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.article-card:hover .article-card-media img {
  transform: scale(1.025);
}

.article-card-placeholder {
  object-fit: cover;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--forest);
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.pagination a:hover,
.pagination span[aria-current="page"] {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.article-card-body {
  padding: 20px;
}

.article-card time {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.article-card h2,
.article-card h3 {
  margin: 8px 0 10px;
  font-size: 1.08rem;
  line-height: 1.42;
}

.article-card h2 a,
.article-card h3 a {
  text-decoration: none;
}

.article-card h2 a:hover,
.article-card h3 a:hover {
  color: var(--forest);
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.wp-content {
  counter-reset: cl-compare-card;
  max-width: 820px;
  margin: 0 auto;
}

.home-content {
  max-width: 920px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hub-supplement {
  padding-bottom: 28px;
}

.hub-supplement .wp-content {
  max-width: 900px;
}

.hub-intro {
  width: min(900px, calc(100% - 40px));
  margin: 48px auto 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.hub-intro p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.related-section {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.related-section h2 {
  margin: 0 0 20px;
  font-size: 1.45rem;
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wp-content > :first-child {
  margin-top: 0;
}

.wp-content > :last-child {
  margin-bottom: 0;
}

.wp-content h2,
.wp-content h3,
.wp-content h4 {
  margin-top: 2.2em;
  color: var(--ink);
  line-height: 1.36;
}

.wp-content h2 {
  position: relative;
  padding-bottom: 0.45em;
  border-bottom: 1px solid var(--line);
  font-size: 1.85rem;
}

.wp-content h2::before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 72px;
  height: 2px;
  background: var(--brass);
  content: "";
}

.wp-content h3 {
  font-size: 1.34rem;
}

.wp-content p,
.wp-content li {
  color: #30343a;
}

.wp-content p {
  margin: 1.05em 0;
}

.wp-content a {
  color: #125341;
  font-weight: 700;
}

.wp-content figure {
  margin: 32px 0;
}

.wp-content figure.cl-product-figure {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
}

.wp-content figure img,
.wp-content > img {
  border-radius: 8px;
}

.wp-content figure.cl-product-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--surface-soft);
}

.wp-content img[width="1"][height="1"] {
  display: none !important;
}

.wp-content img.image-fallback {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.wp-content figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.wp-content .social-embed {
  max-width: 680px;
  margin: 28px auto;
}

.wp-content .social-embed-youtube {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--charcoal);
}

.wp-content .social-embed-youtube iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wp-content .social-embed-card {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--forest);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(18, 24, 22, 0.08);
  color: var(--ink);
  text-decoration: none;
}

.wp-content .social-embed-has-image .social-embed-card {
  padding-top: 12px;
}

.wp-content .social-embed-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--surface-soft);
}

.wp-content .social-embed-placeholder {
  display: grid;
  min-height: 190px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(10, 75, 59, 0.08), rgba(174, 124, 44, 0.08)),
    var(--surface-soft);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wp-content .social-embed-unavailable .social-embed-card {
  border-left-color: var(--wine);
}

.wp-content .social-embed-native {
  display: grid;
  justify-items: center;
}

.wp-content .social-embed-native .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 540px !important;
  margin: 0 auto !important;
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  background: var(--surface) !important;
}

.wp-content .social-embed-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
  text-align: center;
}

.wp-content .social-embed-card:hover {
  border-left-color: var(--brass);
  transform: translateY(-1px);
}

.wp-content .social-embed-kicker {
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wp-content .social-embed-card strong {
  color: var(--forest);
  font-size: 1.06rem;
  line-height: 1.35;
}

.wp-content .social-embed-card span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.cl-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.cl-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.cl-product-card__media {
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--surface-soft);
}

.cl-product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.cl-product-card__body {
  padding: 18px;
}

.cl-product-card__body h3 {
  margin-top: 0;
  font-size: 1.12rem;
}

.cl-product-meta {
  color: var(--brass) !important;
  font-weight: 850;
}

.cl-product-card .btn {
  width: 100%;
}

.cl-compare-grid {
  display: grid;
  gap: 14px;
  margin: 24px 0 34px;
}

.cl-compare-card {
  counter-increment: cl-compare-card;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.cl-compare-card__media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  background: var(--surface-soft);
}

.cl-compare-card__media::after {
  content: "商品" counter(cl-compare-card);
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 4px 7px;
  border-radius: 4px;
  background: rgba(9, 19, 16, 0.84);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.cl-compare-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.cl-compare-card__body h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.cl-compare-card__body h3::before {
  content: "商品" counter(cl-compare-card);
  display: inline-block;
  margin: 0 8px 0 0;
  padding: 3px 6px;
  border-radius: 4px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  vertical-align: 0.14em;
}

.cl-compare-card__body p {
  margin: 0.5em 0;
}

.cl-compare-card__fit {
  color: var(--accent);
}

.cl-answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 34px;
}

.cl-answer-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.cl-answer-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  background: var(--surface-soft);
}

.cl-answer-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.cl-answer-card__tag {
  width: fit-content;
  margin: 0;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--surface-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.cl-answer-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.45;
}

.cl-answer-card p {
  margin: 0;
}

.cl-answer-card__not {
  color: var(--muted);
  font-size: 0.92rem;
}

.cl-product-visuals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 34px;
}

.cl-product-visuals figure {
  margin: 0;
}

.cl-product-visuals img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.cl-product-visuals figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.cl-legacy-products {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 28px;
}

.cl-legacy-products figure {
  width: min(150px, 44vw);
  margin: 0;
  opacity: 0.68;
}

.cl-legacy-products img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  object-fit: cover;
  filter: grayscale(0.18);
}

.cl-legacy-products figcaption {
  font-size: 0.76rem;
  line-height: 1.45;
}

.wp-content blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 22px;
  border-left: 3px solid var(--brass);
  color: #34373b;
}

.wp-content hr {
  margin: 42px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.wp-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--surface);
  font-size: 0.94rem;
}

.wp-content th,
.wp-content td {
  border: 1px solid var(--line);
  padding: 11px 13px;
  vertical-align: top;
}

.wp-content th {
  background: var(--surface-soft);
  text-align: left;
}

.scrollable-table {
  overflow-x: auto;
}

.wp-block-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.wp-content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
}

.wp-content .wp-block-buttons.is-content-justification-center {
  justify-content: center;
}

.wp-content .wp-block-button,
.wp-content .btn-wrap {
  display: inline-flex;
  max-width: 100%;
}

.wp-content .button-block,
.wp-content .btn-wrap-block {
  display: flex;
  justify-content: center;
  margin: 22px 0;
}

.wp-content .wp-block-button__link,
.wp-content .wp-element-button,
.wp-content .btn-wrap > a,
.wp-content .button-block > a,
.wp-content a.btn,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--forest);
  border-radius: 6px;
  background: var(--forest);
  color: #fff !important;
  font-weight: 850;
  line-height: 1.55;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.wp-content .wp-block-button__link:hover,
.wp-content .wp-block-button__link:visited,
.wp-content .wp-element-button:hover,
.wp-content .wp-element-button:visited,
.wp-content .btn-wrap > a:hover,
.wp-content .btn-wrap > a:visited,
.wp-content .button-block > a:hover,
.wp-content .button-block > a:visited,
.wp-content a.btn:hover,
.wp-content a.btn:visited,
.button:hover {
  background: #0f3f34;
  color: #fff !important;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.has-text-align-center {
  text-align: center;
}

.has-text-align-right {
  text-align: right;
}

.aligncenter {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.bold {
  font-weight: 850;
}

.red {
  color: #b4232a;
}

.fz-40px {
  font-size: clamp(2rem, 5vw, 2.5rem);
  line-height: 1.1;
}

.marker-under {
  background: linear-gradient(transparent 62%, rgba(168, 122, 52, 0.26) 62%);
}

.wp-content iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 28px auto;
  border-radius: 8px;
  background: var(--surface);
}

.wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.wp-block-embed.wp-has-aspect-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.wp-content iframe[src*="youtube.com"],
.wp-content iframe[src*="youtu.be"] {
  aspect-ratio: 16 / 9;
  height: auto;
}

.wp-content iframe[src*="calendar.google.com"] {
  height: min(620px, 78vh);
}

.wp-content .instagram-media,
.wp-content .twitter-tweet {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box;
  overflow: hidden;
}

.wp-content .instagram-media p,
.wp-content .instagram-media time {
  white-space: normal !important;
  overflow-wrap: anywhere;
}

.ad-area {
  margin: 32px auto;
  padding: 14px 0;
  text-align: center;
}

.ad-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.ad-wrap {
  display: flex;
  justify-content: center;
}

.ad-responsive {
  width: 100%;
  max-width: 680px;
  min-height: 120px;
}

.adsbygoogle {
  margin-right: auto;
  margin-left: auto;
}

.wp-block-cover {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  margin: 32px 0;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
}

.wp-block-cover__image-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wp-block-cover__background {
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 22, 0.28);
}

.wp-block-cover__inner-container {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 680px);
  text-align: center;
}

.wp-block-cover .has-background {
  display: inline-block;
  width: min(100%, 520px);
  padding: 18px 20px;
  border-radius: 8px;
  color: var(--ink);
}

.micro-text {
  display: flex;
  justify-content: center;
  margin: 18px 0 10px;
  color: var(--brass);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.45;
}

.micro-text-content {
  display: inline-block;
  max-width: 100%;
  padding: 0 8px;
}

.block-box,
.blank-box,
.caption-box,
.tab-caption-box,
.label-box,
.iconlist-box,
.bb-tab {
  margin: 28px 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.blank-box,
.bb-tab,
.iconlist-box {
  padding: 18px 20px;
}

.label-box,
.caption-box,
.tab-caption-box {
  overflow: hidden;
}

.block-box-label,
.box-label,
.label-box-label,
.caption-box-label,
.tab-caption-box-label,
.iconlist-title {
  display: block;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--forest);
  font-weight: 850;
  line-height: 1.45;
}

.block-box-content,
.box-content,
.label-box-content,
.caption-box-content,
.tab-caption-box-content {
  padding: 18px 20px;
}

.toggle-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-button {
  display: block;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--forest);
  font-weight: 850;
  line-height: 1.45;
  cursor: pointer;
}

.toggle-button::after {
  float: right;
  color: var(--brass);
  content: "+";
}

.toggle-content {
  display: none;
  padding: 18px 20px;
}

.toggle-checkbox:checked ~ .toggle-button::after {
  content: "-";
}

.toggle-checkbox:checked ~ .toggle-content {
  display: block;
}

.has-watery-yellow-background-color {
  background: #fff7d7;
}

.has-watery-blue-border-color,
.has-indigo-border-color {
  border-color: #8fa9c4;
}

.has-green-border-color,
.tcb-green {
  border-color: #9fbead;
}

.has-ex-d-border-color {
  border-color: var(--brass);
}

.speech-wrap {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 22px 0;
}

.speech-wrap.sbp-r {
  grid-template-columns: minmax(0, 1fr) 72px;
}

.speech-wrap.sbp-r .speech-person {
  grid-column: 2;
}

.speech-wrap.sbp-r .speech-balloon {
  grid-column: 1;
  grid-row: 1;
}

.speech-person {
  display: grid;
  justify-items: center;
  min-width: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.speech-icon {
  width: 64px;
  height: 64px;
  margin: 0;
}

.speech-icon-image {
  width: 64px;
  height: 64px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(18, 24, 22, 0.12);
  object-fit: cover;
}

.speech-name {
  margin-top: 5px;
  text-align: center;
}

.speech-balloon {
  position: relative;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(18, 24, 22, 0.06);
}

.speech-balloon::before,
.speech-balloon::after {
  position: absolute;
  top: 22px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  content: "";
}

.speech-balloon::before {
  left: -10px;
  border-right: 10px solid var(--line);
}

.speech-balloon::after {
  left: -8px;
  border-right: 10px solid var(--surface);
}

.speech-wrap.sbp-r .speech-balloon::before {
  right: -10px;
  left: auto;
  border-right: 0;
  border-left: 10px solid var(--line);
}

.speech-wrap.sbp-r .speech-balloon::after {
  right: -8px;
  left: auto;
  border-right: 0;
  border-left: 10px solid var(--surface);
}

.speech-balloon > :first-child {
  margin-top: 0;
}

.speech-balloon > :last-child {
  margin-bottom: 0;
}

.blogcard-wrap {
  display: block;
  margin: 24px 0;
  text-decoration: none;
}

.blogcard {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.blogcard-label {
  display: none;
}

.blogcard-thumbnail {
  grid-row: 1 / span 2;
  grid-column: 1;
  margin: 0;
}

.blogcard img {
  display: block;
  max-width: 100%;
  border-radius: 6px;
}

.blogcard-thumbnail img {
  width: 160px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blogcard-content {
  grid-row: 1;
  grid-column: 2;
  min-width: 0;
}

.blogcard-title {
  font-weight: 850;
  line-height: 1.45;
}

.blogcard-title + .blogcard-snippet {
  margin-top: 6px;
}

.blogcard-snippet,
.blogcard-footer {
  color: var(--muted);
  font-size: 0.9rem;
}

.blogcard-footer {
  grid-row: 2;
  grid-column: 2;
  align-self: end;
}

.blogcard-site {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blogcard-favicon-image {
  width: 16px;
  height: 16px;
}

.static-notice {
  margin: 24px 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brass);
  border-radius: 8px;
  background: var(--surface);
}

.static-notice p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer strong {
  color: #fff;
}

.site-footer span {
  font-size: 0.84rem;
}

.affiliate-disclosure {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  line-height: 1.8;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.wallet-finder-lead {
  max-width: 760px;
  margin: 0 auto 34px;
  padding: 22px 24px;
  border-left: 4px solid var(--brass);
  background: rgba(255, 255, 255, 0.72);
}

.wallet-finder-entry {
  margin: 28px 0;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brass);
  border-radius: 4px;
  background: var(--surface-soft);
}

.wallet-finder-entry p {
  margin: 0.35em 0;
}

.wallet-finder-entry-kicker {
  color: var(--brass) !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
}

.wallet-finder-entry-title {
  color: var(--ink) !important;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.45;
}

.wallet-finder-entry-link {
  display: inline-flex;
  min-height: 44px;
  margin-top: 12px;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid var(--forest);
  border-radius: 4px;
  background: var(--forest);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.wallet-finder-entry-link:hover,
.wallet-finder-entry-link:focus-visible {
  border-color: var(--forest-deep);
  background: var(--forest-deep);
}

.wallet-finder {
  margin: 40px auto;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-top: 4px solid var(--forest);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.wallet-finder-intro,
.wallet-finder-stage {
  padding: 40px;
}

.wallet-finder-intro {
  text-align: center;
}

.wallet-finder-kicker,
.wallet-finder-progress-text,
.wallet-finder-result-label {
  margin: 0 0 8px;
  color: var(--brass) !important;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wallet-finder-intro h2,
.wp-content .wallet-finder-results-title {
  margin-top: 0;
  border: 0;
  font-size: 1.65rem;
}

.wallet-finder-intro h2::before,
.wp-content .wallet-finder-results-title::before {
  display: none;
}

.wallet-finder-intro > p:not(.wallet-finder-kicker) {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
}

.wallet-finder-start,
.wallet-finder-next,
.wallet-finder-back,
.wallet-finder-reset,
.wallet-finder-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 22px;
  border: 1px solid var(--forest);
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.wallet-finder-start,
.wallet-finder-next,
.wallet-finder-cta {
  background: var(--forest);
  color: #fff !important;
}

.wallet-finder-start:hover,
.wallet-finder-next:hover,
.wallet-finder-cta:hover {
  background: #0f3f34;
}

.wallet-finder-start:disabled {
  cursor: wait;
  opacity: 0.58;
}

.wallet-finder-back,
.wallet-finder-reset {
  background: transparent;
  color: var(--forest);
}

.wallet-finder-progress {
  height: 6px;
  margin-bottom: 32px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--surface-soft);
}

.wallet-finder-progress span {
  display: block;
  height: 100%;
  background: var(--brass);
  transition: width 0.18s ease;
}

.wallet-finder-question fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.wallet-finder-question legend {
  width: 100%;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 850;
  line-height: 1.45;
}

.wallet-finder-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wallet-finder-option {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 12px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.45;
  cursor: pointer;
}

.wallet-finder-option:hover {
  border-color: var(--forest);
  background: var(--surface-soft);
}

.wallet-finder-option input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin: 0 11px 0 0;
  accent-color: var(--forest);
}

.wallet-finder-option:has(input:checked) {
  border-color: var(--forest);
  background: #e8f0ed;
  box-shadow: inset 0 0 0 1px var(--forest);
}

.wallet-finder-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 28px;
}

.wallet-finder-results-title {
  outline: none;
}

.wallet-finder-results-intro {
  max-width: 660px;
  margin-bottom: 30px !important;
  color: var(--muted) !important;
}

.wallet-finder-refine {
  margin: 0 0 26px;
  padding: 22px 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.wallet-finder-refine h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
}

.wallet-finder-refine h3::before {
  display: none;
}

.wallet-finder-refine > p {
  margin: 0 0 18px !important;
  color: var(--muted) !important;
  font-size: 0.92rem;
}

.wallet-finder-refine-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.wallet-finder-refine fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.wallet-finder-refine legend {
  margin-bottom: 9px;
  font-weight: 800;
}

.wallet-finder-refine-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wallet-finder-refine-option {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  cursor: pointer;
}

.wallet-finder-refine-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.wallet-finder-refine-option > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
}

.wallet-finder-refine-option input:focus-visible + span {
  outline: 3px solid rgba(31, 82, 70, 0.22);
  outline-offset: 2px;
}

.wallet-finder-refine-option input:checked + span {
  border-color: var(--forest);
  background: #e8f0ed;
  box-shadow: inset 0 0 0 1px var(--forest);
}

.wallet-finder-refine-swatch,
.wallet-finder-product-swatch {
  display: inline-block;
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  background: var(--wallet-swatch, #777);
}

.wallet-finder-result {
  display: grid;
  grid-template-columns: minmax(150px, 0.36fr) minmax(0, 1fr);
  column-gap: 30px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.wallet-finder-result:first-child {
  border-top: 3px solid var(--brass);
}

.wallet-finder-result-label,
.wallet-finder-result h3 {
  grid-column: 1;
}

.wallet-finder-result h3 {
  align-self: start;
  margin: 0;
  font-size: 1.45rem;
}

.wallet-finder-result-media {
  grid-column: 1;
  display: block;
  align-self: start;
  aspect-ratio: 4 / 3;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.wallet-finder-result-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wallet-finder-result-summary,
.wallet-finder-product,
.wallet-finder-reasons,
.wallet-finder-caution,
.wallet-finder-result-actions {
  grid-column: 2;
}

.wallet-finder-result-summary {
  margin-top: 0 !important;
  font-weight: 700;
}

.wallet-finder-product {
  margin: 4px 0 12px;
  padding: 14px 16px;
  border-left: 3px solid var(--brass);
  background: #f5f3ed;
}

.wallet-finder-product-label,
.wallet-finder-product h4,
.wallet-finder-product p {
  margin: 0 !important;
}

.wallet-finder-product-label {
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
}

.wallet-finder-product h4 {
  margin-top: 4px !important;
  font-size: 1.05rem;
}

.wallet-finder-product h4::before {
  display: none;
}

.wallet-finder-product p:not(.wallet-finder-product-label) {
  margin-top: 6px !important;
  font-size: 0.92rem;
}

.wallet-finder-product-price {
  color: var(--ink);
  font-weight: 800;
}

.wallet-finder-product-colors {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
}

.wallet-finder-product-colors-label {
  flex: 0 0 auto;
  padding-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.wallet-finder-product-color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.wallet-finder-product-color {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 0.78rem;
}

.wallet-finder-product-color.is-selected {
  color: var(--forest);
  font-weight: 800;
}

.wallet-finder-product-fit {
  color: var(--forest);
  font-weight: 800;
}

.wallet-finder-reasons {
  margin: 8px 0 14px;
  padding-left: 1.25rem;
}

.wallet-finder-reasons li::marker {
  color: var(--forest);
}

.wallet-finder-caution {
  padding: 13px 15px;
  border-left: 3px solid var(--wine);
  background: #f7f1f2;
  font-size: 0.92rem;
}

.wallet-finder-result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.wp-content .wallet-finder-guide {
  font-size: 0.92rem;
}

.wallet-finder-reset {
  margin-top: 24px;
}

.wallet-finder-live {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.wallet-finder-error {
  margin: 0;
  padding: 16px;
  border-left: 4px solid var(--wine);
  background: #f7f1f2;
}

.wallet-finder-method {
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1040px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 28px;
  }

  .nav {
    justify-content: flex-start;
  }

  .home-hero,
  .page-title {
    padding-right: 40px;
    padding-left: 40px;
  }

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

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    min-height: 64px;
    padding: 12px 18px;
    overflow: visible;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy span {
    overflow: hidden;
    font-size: 0.72rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 11px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: var(--surface);
    cursor: pointer;
    list-style: none;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--charcoal);
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

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

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

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

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: auto;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    font-size: 0.88rem;
    scrollbar-width: none;
  }

  .site-header.is-nav-open .nav {
    display: grid;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 44px;
    white-space: nowrap;
  }

  .home-hero {
    min-height: 560px;
    padding: 72px 20px 52px;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: 1.95rem;
    line-height: 1.18;
    word-break: break-all;
  }

  .home-hero p {
    max-width: 22rem;
    font-size: 1rem;
  }

  .page-title {
    padding: 42px 20px 34px;
  }

  .page-title h1 {
    font-size: clamp(1.55rem, 6vw, 1.85rem);
    line-height: 1.34;
  }

  .page-title p {
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .section,
  .content-shell {
    width: min(100% - 32px, 1120px);
    padding: 44px 0;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .section-intro p:not(.section-label) {
    margin-top: 0;
  }

  .section h2,
  .section-intro h2,
  .wp-content h2 {
    font-size: 1.55rem;
    word-break: break-all;
  }

  .section-intro h2 {
    max-width: 22rem;
  }

  .section-intro p:not(.section-label) {
    max-width: 22rem;
  }

  .topic-grid,
  .decision-grid,
  .article-grid,
  .cl-product-grid,
  .blogcard {
    grid-template-columns: 1fr;
  }

  .blogcard-thumbnail,
  .blogcard-content,
  .blogcard-footer {
    grid-column: 1;
  }

  .blogcard-thumbnail {
    grid-row: 1;
  }

  .blogcard-content {
    grid-row: 2;
  }

  .blogcard-footer {
    grid-row: 3;
  }

  .blogcard-thumbnail img {
    width: 100%;
  }

  .cl-compare-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .cl-compare-card__body h3 {
    font-size: 1rem;
  }

  .cl-answer-grid,
  .cl-product-visuals {
    grid-template-columns: 1fr;
  }

  .speech-wrap,
  .speech-wrap.sbp-r {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
  }

  .speech-wrap.sbp-r .speech-person {
    grid-column: 1;
  }

  .speech-wrap.sbp-r .speech-balloon {
    grid-column: 2;
  }

  .speech-icon,
  .speech-icon-image {
    width: 48px;
    height: 48px;
  }

  .speech-wrap.sbp-r .speech-balloon::before {
    right: auto;
    left: -10px;
    border-right: 10px solid var(--line);
    border-left: 0;
  }

  .speech-wrap.sbp-r .speech-balloon::after {
    right: auto;
    left: -8px;
    border-right: 10px solid var(--surface);
    border-left: 0;
  }

  .block-box-content,
  .box-content,
  .label-box-content,
  .caption-box-content,
  .tab-caption-box-content,
  .toggle-content,
  .blank-box,
  .bb-tab,
  .iconlist-box {
    padding: 15px;
  }

  .toggle-button {
    padding: 13px 15px;
  }

  .wp-content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wp-content th,
  .wp-content td {
    min-width: 7.5rem;
  }

  .wp-content iframe[src*="calendar.google.com"] {
    height: min(440px, 64vh);
  }

  .topic-link {
    min-height: 96px;
  }

  .article-card-body {
    padding: 18px;
  }

  .wp-content {
    max-width: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 20px;
  }

  .wallet-finder-lead,
  .wallet-finder-entry {
    padding: 17px 18px;
  }

  .wallet-finder-entry-link {
    width: 100%;
  }

  .wallet-finder-entry-title {
    font-size: 1.2rem;
  }

  .wallet-finder {
    margin: 30px -4px;
  }

  .wallet-finder-intro,
  .wallet-finder-stage {
    padding: 26px 18px;
  }

  .wallet-finder-options {
    grid-template-columns: 1fr;
  }

  .wallet-finder-option {
    min-height: 54px;
  }

  .wallet-finder-controls {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .wallet-finder-controls button {
    width: 100%;
  }

  .wallet-finder-refine-fields {
    grid-template-columns: 1fr;
  }

  .wallet-finder-refine-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wallet-finder-refine-option,
  .wallet-finder-refine-option > span {
    width: 100%;
  }

  .wallet-finder-result {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 26px 0;
  }

  .wallet-finder-result-label,
  .wallet-finder-result h3,
  .wallet-finder-result-media,
  .wallet-finder-result-summary,
  .wallet-finder-product,
  .wallet-finder-reasons,
  .wallet-finder-caution,
  .wallet-finder-result-actions {
    grid-column: 1;
  }

  .wallet-finder-result h3 {
    margin-bottom: 10px;
  }

  .wallet-finder-result-media {
    width: 100%;
    max-width: 420px;
    margin: 4px 0 18px;
  }

  .wallet-finder-result-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .wallet-finder-cta,
  .wallet-finder-guide,
  .wallet-finder-reset {
    width: 100%;
  }
}
