/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOKENS & BASE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --c0: #3a3226;
  --c1: #4a4238;
  --c2: #5c544a;
  --c3: #7a7268;
  --c4: #9a9288;
  --c5: #b0a89e;
  --c6: #c4bcb2;
  --c7: #d8d0c6;
  --c8: #e8e0d6;
  --c9: #f0e8de;
  --ca: #f5ede3;
  --cb: #faf6f0;
  --cc: #ffffff;

  --accent: #8b7355;
  --accent-light: #f0e8de;
  --accent-warm: #a0845c;
  --accent-warm-light: #f5ede3;
  --earth: #6b5d4f;
  --earth-light: #f0e8de;

  --jp:   'Noto Sans JP', 'BIZ UDGothic', sans-serif;
  --cond: 'Barlow Condensed', sans-serif;
  --disp: 'Bebas Neue', sans-serif;

  --e1: cubic-bezier(0.16, 1, 0.3, 1);
  --e2: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --e3: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 900px;
  --border-width: 1px;
  --radius: 6px;
  --dark: #3a3226;
  --white: #ffffff;
  --primary: #8b7355;
  --surface-alt: #f5ede3;
  --muted: #9a9288;
  --ink: #3a3226;
  --bg: #faf6f0;
  --text: #4a4238;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cb);
  color: var(--c1);
  font-family: var(--jp);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.8;
}

body::before {
  content:'';position:fixed;inset:0;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events:none;z-index:9999;opacity:.5;
}

::-webkit-scrollbar{width:3px}
::-webkit-scrollbar-track{background:transparent}
::-webkit-scrollbar-thumb{background:var(--c7)}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WP THEME SHELL COMPONENTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c9);
  height: 70px;
  display: flex;
  align-items: center;
}
.header-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
}
.site-logo a {
  text-decoration: none;
}
.site-logo-text {
  font-family: var(--cond);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--c0);
  text-decoration: none;
}
.nav-toggle {
  background: none;
  border: none;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.nav-toggle-icon {
  width: 24px; height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle-bar {
  width: 100%; height: 2px;
  background: var(--c0);
  transition: 0.3s var(--e2);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Nav Drawer */
.main-nav-shell {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}
.main-nav-shell[aria-hidden="false"] {
  display: block;
}
.main-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
}
.main-nav {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 300px;
  background: var(--cc);
  padding: 40px 32px;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  transform: translateX(100%);
  animation: slideIn 0.4s var(--e2) forwards;
}
@keyframes slideIn {
  to { transform: translateX(0); }
}
.main-nav-close {
  background: none;
  border: none;
  font-family: var(--cond);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c4);
  cursor: pointer;
  padding: 8px 0;
  margin-bottom: 24px;
}
.main-nav-list {
  list-style: none; padding: 0; margin: 0;
}
.main-nav-list li a {
  display: block;
  padding: 16px 0;
  font-family: var(--jp);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c0);
  text-decoration: none;
  border-bottom: 1px solid var(--c9);
  transition: color 0.2s;
}
.main-nav-list li a:hover {
  color: var(--c5);
}

/* Article Shell */
.main-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 24px;
}

/* Article Hero */
.article-hero {
  margin-bottom: 64px;
}
.article-hero-copy {
  margin-bottom: 32px;
}
.entry-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--cond);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c5);
  margin-top: 12px;
  margin-bottom: 24px;
}
.article-title {
  font-family: var(--jp);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--c0);
  margin-bottom: 20px;
}
.article-deck {
  font-size: 1.05rem;
  color: var(--c4);
  line-height: 1.7;
  margin: 0;
}
.article-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border: 1px solid var(--c8);
}

/* Referral Spotlight */
.article-referral-spotlight {
  background: var(--ca);
  border: 1px solid var(--c8);
  border-left: 6px solid var(--c0);
  padding: 40px;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.article-referral-copy h2 {
  font-family: var(--jp);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--c0);
}
.article-referral-copy p {
  color: var(--c3);
  font-size: 0.95rem;
  margin: 0;
}

/* TOC */
.article-toc {
  background: var(--cc);
  border: 1px solid var(--c0);
  padding: 40px;
  margin-bottom: 64px;
  box-shadow: 6px 6px 0 var(--c0);
}
.article-toc-head {
  margin-bottom: 24px;
  border-bottom: 2px solid var(--c0);
  padding-bottom: 16px;
}
.article-toc-head h2 {
  font-family: var(--jp);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}
.article-toc-list {
  padding-left: 24px;
  margin: 0;
  line-height: 1.9;
}
.article-toc-list a {
  color: var(--c2);
  text-decoration: underline;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.article-toc-list a:hover {
  color: var(--c6);
}

/* Related Guides (In Content) */
.aff-related-guides {
  background: var(--ca);
  padding: 40px;
  margin: 64px 0;
  border-top: 4px solid var(--c0);
}
.aff-related-guides-kicker {
  font-family: var(--cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--c5);
  margin-bottom: 12px;
}
.aff-related-guides-title {
  font-size: 1.4rem;
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  border: none !important;
  padding: 0 !important;
}
.aff-related-guides-lead {
  font-size: 0.95rem;
  color: var(--c4);
  margin-bottom: 24px;
}
.aff-related-guides-list {
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}
.aff-related-guides-item {
  position: relative;
  padding-left: 24px !important;
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.6;
}
.aff-related-guides-item::before {
  content: '→' !important;
  position: absolute;
  left: 0;
  top: -2px;
  width: auto;
  height: auto;
  background: none;
  font-family: var(--cond) !important;
  font-weight: 800;
  color: var(--c5) !important;
  font-size: 1.2rem;
  border-radius: 0;
}
.aff-related-guides-item a {
  color: var(--c0);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed var(--c8);
  transition: all 0.2s;
}
.aff-related-guides-item a:hover {
  border-bottom-color: var(--c0);
}

/* Footer Tags */
.entry-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--c8);
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 0.85rem;
}
.tags strong {
  font-family: var(--cond);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c5);
  margin-right: 8px;
}
.tags a {
  background: var(--ca);
  color: var(--c3);
  padding: 6px 14px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid var(--c8);
  transition: all 0.2s;
}
.tags a:hover {
  background: var(--c0);
  color: var(--cc);
  border-color: var(--c0);
}

/* Related Posts Section */
.related-posts {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 4px solid var(--c0);
}
.section-title {
  font-family: var(--jp);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c0);
  margin-bottom: 8px;
}

/* Footer & Back to top */
.site-footer {
  background: var(--c0);
  color: var(--cc);
  padding: 64px 24px;
  text-align: center;
  font-family: var(--cond);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 50px; height: 50px;
  background: var(--c0);
  color: var(--cc);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: var(--cond);
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--c4);
  z-index: 90;
  transition: transform 0.2s, box-shadow 0.2s;
}
.back-to-top:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--c4);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG ARTICLE LAYOUT & TYPOGRAPHY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.article-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 140px 40px 100px;
  position: relative;
  z-index: 10;
}

.article-header {
  margin-bottom: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--c8);
  animation: fadeUp 0.8s var(--e1) forwards;
}

.article-h1 {
  font-family: var(--jp);
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.03em;
  color: var(--c0);
  margin-bottom: 24px;
}

.article-content {
  animation: fadeUp 0.8s var(--e1) 0.15s forwards;
  opacity: 0;
}

/* Base Paragraphs / Emphasized Text */
.entry-content p {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 2.1;
  color: var(--c2);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.entry-content em {
  font-style: normal;
  font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(255, 225, 120, 0.7) 60%);
  color: var(--c0);
  padding: 0 4px;
}

/* Headings */
.entry-content h2 {
  margin: 80px 0 40px;
  padding-left: 20px;
  border-left: 4px solid var(--c0);
  font-family: var(--jp);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c0);
  line-height: 1.4;
}

.entry-content h3 {
  font-family: var(--jp);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c0);
  margin: 56px 0 24px;
  border-bottom: 2px solid var(--c0);
  padding-bottom: 12px;
}

/* Lists */
.entry-content ul {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
}

.entry-content ul > li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--c2);
}

.entry-content ul > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 2px;
  background: var(--c0);
}

.entry-content ul ul {
  margin-top: 12px;
  margin-bottom: 0;
  padding-left: 12px;
}
.entry-content ul ul > li::before {
  width: 6px; height: 6px; border-radius: 50%; top: 10px; background: var(--c6);
}

/* Links */
.entry-content a {
  color: var(--c0);
  text-decoration: none;
  border-bottom: 1px solid var(--c0);
  transition: color 0.2s, border-color 0.2s;
  font-weight: 500;
}
.entry-content a:hover {
  color: var(--c5);
  border-color: var(--c5);
}

/* Blockquote */
.entry-content blockquote {
  margin: 40px 0;
  padding: 24px 32px;
  background: var(--ca);
  border-left: 4px solid var(--c7);
  color: var(--c4);
  font-size: 1.05rem;
  font-style: italic;
}
.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

/* Code & Pre */
.entry-content code {
  font-family: 'Consolas', 'Courier New', monospace;
  background: var(--c9);
  color: var(--c2);
  padding: 2px 6px;
  font-size: 0.9em;
  border-radius: 4px;
}
.entry-content pre {
  background: var(--c1);
  color: var(--cc);
  padding: 32px;
  overflow-x: auto;
  margin: 40px 0;
  border-radius: 4px;
}
.entry-content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

/* Images & Figures */
.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  border: 1px solid var(--c8);
}
.entry-content figure {
  margin: 40px 0;
}
.entry-content figure img {
  margin: 0;
}
.entry-content figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--c6);
  margin-top: 12px;
}

/* Horizontal Rule */
.entry-content hr {
  border: none;
  height: 1px;
  background: var(--c8);
  margin: 56px 0;
}

/* Ordered List */
.entry-content ol {
  counter-reset: article-counter;
  list-style: none;
  margin: 0 0 40px 0;
  padding: 0;
}
.entry-content ol > li {
  position: relative;
  padding-left: 48px;
  margin-bottom: 24px;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.9;
  color: var(--c2);
}
.entry-content ol > li::before {
  counter-increment: article-counter;
  content: "0" counter(article-counter);
  position: absolute;
  left: 0;
  top: 2px;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--c7);
  letter-spacing: -0.05em;
}

/* H4, H5 */
.entry-content h4 {
  font-family: var(--jp);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c0);
  margin: 48px 0 16px;
}
.entry-content h5 {
  font-family: var(--jp);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c3);
  margin: 40px 0 16px;
}

/* Tables */
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 48px;
  font-size: 1rem;
  background: var(--cc);
  box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}

.entry-content th {
  background: var(--c0);
  color: var(--cc);
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 16px 20px;
  border: 1px solid var(--c0);
  text-align: left !important;
}

.entry-content td {
  padding: 16px 20px;
  border: 1px solid var(--c8);
  color: var(--c2);
  line-height: 1.6;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TABLE OF CONTENTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.article-toc {
  background: var(--ca);
  border-top: 4px solid var(--c0);
  padding: 40px;
  margin: 64px 0;
}
.article-toc-head {
  margin-bottom: 24px;
}
.article-toc-head h2 {
  font-family: var(--jp);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c0);
  margin-bottom: 0;
}
.article-toc-list {
  list-style: none;
  counter-reset: toc-counter;
  padding: 0;
  margin: 0;
}
.article-toc-list > li {
  position: relative;
  counter-increment: toc-counter;
  margin-bottom: 16px;
  padding-left: 32px;
}
.article-toc-list > li::before {
  content: counter(toc-counter) ".";
  position: absolute;
  left: 0; top: 0;
  font-family: var(--cond);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--c5);
}
.article-toc-list a {
  text-decoration: none;
  border-bottom: none !important;
  color: var(--c0);
  font-size: 1.05rem;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s, color 0.2s;
}
.article-toc-list a:hover {
  color: var(--c5);
  transform: translateX(4px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SHARE BAND
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.article-share-band {
  position: relative;
  background: var(--ca);
  padding: 48px;
  margin: 64px 0;
  border-top: 4px solid var(--c0);
  overflow: hidden;
}
.article-share-copy {
  margin-bottom: 24px;
}
.section-kicker {
  font-family: var(--cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c6);
  margin-bottom: 8px;
}
.article-share-copy h2 {
  font-family: var(--jp);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c0);
  margin-bottom: 12px;
}
.article-share-copy p {
  color: var(--c4);
  font-size: 1rem;
  margin: 0;
}
.article-share-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.share-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cc);
  border: 1px solid var(--c0);
  color: var(--c0);
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--c0);
  transition: box-shadow 0.2s, transform 0.2s;
}
.share-chip:hover {
  background: var(--cc);
  color: var(--c0);
  box-shadow: 5px 5px 0 var(--c0);
  transform: translate(-2px, -2px);
}

.chip-icon {
  width: 18px;
  height: 18px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RELATED POSTS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--c8);
}
.post-card-grid {
  display: flex;
  flex-direction: column;
  background: var(--cc);
  border: 1px solid var(--c8);
  transition: transform 0.3s var(--e2), box-shadow 0.3s;
}
.post-card-grid:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.post-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border-bottom: 1px solid var(--c8);
}
.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--e2);
}
.post-card-grid:hover .post-card-image img {
  transform: scale(1.05);
}
.post-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-kicker {
  font-family: var(--cond);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c5);
  margin-bottom: 8px;
}
.post-card-title {
  font-family: var(--jp);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}
.post-card-title a {
  color: var(--c0);
  text-decoration: none;
}
.post-card-excerpt {
  font-size: 0.95rem;
  color: var(--c4);
  line-height: 1.6;
  margin-bottom: 24px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-top: 1px solid var(--c9);
  padding-top: 16px;
}
.post-card-meta {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--c5);
  font-family: var(--cond);
}
.read-more-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c0);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 2px solid var(--c0);
  padding-bottom: 2px;
  transition: gap 0.25s var(--e2);
}
.read-more-link::after {
  content: '→';
  font-family: var(--cond);
  font-size: 1.1rem;
  line-height: 0.5;
  padding-top: 2px;
}
.post-card-grid:hover .read-more-link {
  gap: 12px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE OPTIMIZATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 768px) {
  .article-wrap { padding: 70px 12px 40px; }
  .article-header { margin-bottom: 40px; padding-bottom: 24px; }
  .article-h1 { font-size: 1.5rem; line-height: 1.4; margin-bottom: 16px; }
  .entry-content p { font-size: 0.95rem; line-height: 1.9; margin-bottom: 24px; }
  .entry-content h2 { margin: 56px 0 32px; padding-left: 16px; font-size: 1.35rem; border-left-width: 3px; }
  .entry-content h3 { margin: 40px 0 20px; font-size: 1.2rem; }
  .entry-content ul > li { font-size: 0.95rem; line-height: 1.8; padding-left: 20px; margin-bottom: 12px; }
  .entry-content ul > li::before { top: 10px; width: 10px; }
  .entry-content ol > li { font-size: 0.95rem; padding-left: 36px; margin-bottom: 16px; }
  .entry-content ol > li::before { font-size: 1.1rem; }
  .entry-content blockquote { padding: 24px; margin: 32px 0; font-size: 0.95rem; }
  .entry-content pre { padding: 20px; margin: 32px 0; font-size: 0.85rem; }
  .entry-content img, .entry-content figure { margin: 32px 0; }
  .entry-content hr { margin: 40px 0; }
  .entry-content h4 { font-size: 1.15rem; margin: 40px 0 16px; }
  .entry-content h5 { font-size: 1.05rem; margin: 32px 0 16px; }
  
  .entry-content table {
    display: block; width: 100%; overflow-x: auto; white-space: nowrap;
    font-size: 0.85rem; margin-bottom: 32px; -webkit-overflow-scrolling: touch;
  }
  .entry-content th, .entry-content td { padding: 12px 14px; }
  
  
  .article-share-band { padding: 32px 24px; margin: 48px 0; }
  .article-share-copy h2 { font-size: 1.35rem; }
  .share-chip { font-size: 0.85rem; padding: 8px 16px; }
  
  .related-posts-grid { grid-template-columns: 1fr; gap: 24px; margin-top: 48px; padding-top: 48px; }
  .post-card-content { padding: 20px; }
  .post-card-title { font-size: 1.1rem; }
  
  .main-content { padding: 40px 16px; }
  .article-title { font-size: 1.7rem; }
  .article-hero-media img { aspect-ratio: auto; }
  .article-referral-spotlight { flex-direction: column; text-align: left; padding: 32px 24px; border-left: none; border-top: 6px solid var(--c0); }
  .article-toc { padding: 24px; }
  .article-toc-head h2 { font-size: 1.25rem; }
  .aff-related-guides { padding: 32px 24px; margin: 48px 0; }
  .related-posts { margin-top: 64px; padding-top: 48px; }
  .section-title { font-size: 1.4rem; }
}

.referral-code-box {
  padding: 16px 18px 18px;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--c8);
}

.referral-code-label {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--c5);
}

.referral-code-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.referral-code-value {
  flex: 1 1 240px;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--c8);
  background: var(--cc);
  color: var(--c0);
  text-decoration: none;
  word-break: break-all;
  font-weight: 700;
}

.referral-copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  background: var(--cc);
  border: 1px solid var(--c0);
  color: var(--c0);
  text-decoration: none;
  font-weight: 700;
}

.referral-code-note {
  margin: 10px 0 0;
  color: var(--c4);
  font-size: 0.92rem;
}

.share-bg-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.article-share-copy {
  position: relative;
  z-index: 1;
}

.share-chip-x,
.share-chip-facebook,
.share-chip-line {
  background: var(--cc);
  color: var(--c0);
}

.share-chip-copy {
  display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LAYOUT EXTRAS (from layout.css)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-shell {
  min-height: 100vh;
}
.site-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.brand-cluster {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}
.site-tagline {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
  max-width: 32rem;
}
.main-nav-panel {
  width: min(520px, 100%);
  padding: 0;
  background: transparent;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.32s ease, opacity 0.32s ease;
}
.main-nav-shell[aria-hidden="false"] .main-nav-panel,
.main-nav-shell.is-open .main-nav-panel {
  transform: translateY(0);
  opacity: 1;
}
.main-nav-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 0.8rem;
}
.main-nav a {
  display: block;
  padding: 0.95rem 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 800;
  text-align: center;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.main-nav a:hover,
.main-nav .current-menu-item a {
  color: var(--accent);
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.24);
}
.footer-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: rgba(0, 0, 0, 0.72);
  padding: 0.2rem 0;
  border-bottom: 1px solid transparent;
}
.hero-slider {
  width: 100%;
  height: 500px;
  margin-bottom: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  background: var(--c0);
}
.home-hub-spotlight {
  margin-top: 1.8rem;
  margin-bottom: 2.5rem;
}
.slider-item {
  position: relative;
  width: 100%;
  height: 100%;
}
.slider-image,
.slider-image img,
.slider-image-fallback {
  width: 100%;
  height: 100%;
}
.slider-image img,
.slider-image-fallback {
  object-fit: cover;
}
.slider-image img {
  opacity: 0.6;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.slider-image-fallback {
  background: linear-gradient(135deg, #111, #666);
}
.slider-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4rem 6rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: var(--white);
  z-index: 10;
}
.slider-content .entry-meta {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.slider-title {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--white);
  max-width: 700px;
}
.slider-title a,
.slider-excerpt {
  color: inherit;
}
.slider-excerpt {
  max-width: 700px;
  margin-bottom: 1.5rem;
}
.page-intro,
.archive-header,
.page-header,
.empty-state,
.error-404 {
  text-align: center;
  margin-bottom: 4rem;
  padding: 4rem 2rem;
  background: var(--ca);
  border: var(--border-width) solid var(--c0);
  border-radius: var(--radius);
}
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.article-shell {
  display: block;
}
.article-layout {
  display: block;
}
.article-shell {
  padding: 0 16px;
}
.hub-shell {
  display: grid;
  gap: 2.5rem;
}
.hub-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.hub-streams {
  display: grid;
  gap: 2.5rem;
}
.hub-map-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: var(--accent);
  background: rgba(0,0,0,0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--accent);
}
.hero-slider .swiper-button-next { right: 20px; }
.hero-slider .swiper-button-prev { left: 20px; }
.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
  font-size: 1.5rem;
  font-weight: 900;
}
.hero-slider .swiper-pagination-bullet {
  background: var(--white);
  opacity: 0.5;
  width: 12px;
  height: 12px;
}
.hero-slider .swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
  width: 30px;
  border-radius: 6px;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}
.footer-heading,
.footer-logo {
  font-weight: 900;
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-copy,
.site-info {
  font-size: 0.95rem;
  color: var(--c7);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ELEMENTS EXTRAS (from elements.css)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.entry-meta-sep {
  color: var(--c6);
}
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn:hover {
  background: var(--c0);
}
.post-card-image,
.post-card-image img,
.post-card-image-fallback {
  width: 100%;
  height: 190px;
}
.post-card-image img,
.post-card-image-fallback {
  object-fit: cover;
}
.post-card-image img {
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.post-card-image-fallback {
  background: linear-gradient(135deg, var(--c9), var(--ca));
}
.entry-content {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.entry-content h1,
.entry-content h2,
.entry-content h3 {
  scroll-margin-top: 40px;
}
.entry-content h3 + p,
.entry-content h3 + ul,
.entry-content h3 + ol {
  margin-top: 0.05rem;
}
.entry-content ul:not(.aff-checklist-list),
.entry-content ol:not(.aff-checklist-list) {
  margin: 1rem 0 1.35rem;
  padding-left: 0;
}
.entry-content ul:not(.aff-checklist-list) {
  list-style: none;
}
.entry-content ol:not(.aff-checklist-list) {
  list-style: decimal;
  padding-left: 1.3rem;
}
.entry-content ul:not(.aff-checklist-list) li,
.entry-content ol:not(.aff-checklist-list) li {
  margin: 0.45rem 0;
}
.entry-content ul:not(.aff-checklist-list) li {
  position: relative;
  margin: 0.6rem 0;
  padding: 0.15rem 0 0.15rem 1.2rem;
  border-bottom: 0;
  background: transparent;
  line-height: 1.75;
}
.entry-content ul:not(.aff-checklist-list) li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--accent);
  border-radius: 50%;
}
.entry-content ol:not(.aff-checklist-list) li::before {
  content: none;
}
.entry-content a.aff-autolink {
  color: var(--c2);
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--c8);
  text-underline-offset: 0.14em;
}
.entry-content a.aff-autolink:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}
.hub-hero,
.hub-map,
.hub-stream,
.hub-intro,
.hub-inline-block {
  padding: 1.6rem;
  background: var(--white);
  border: 1px solid var(--c8);
  border-radius: 6px;
}
.hub-hero {
  background: linear-gradient(180deg, var(--accent-light), var(--white));
}
.hub-lead {
  max-width: 48rem;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--c3);
}
.hub-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.2rem;
}
.hub-route-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem;
  color: var(--c0);
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--c8);
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hub-route-card:hover {
  transform: translate(-1px, -1px);
  box-shadow: 0 4px 12px rgba(58, 50, 38, 0.05);
}
.hub-route-card h2,
.hub-stream-head h2,
.hub-map h2 {
  margin: 0;
  padding: 0;
  border: 0;
}
.hub-route-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c5);
}
.hub-route-more {
  margin-top: 0.15rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.hub-map {
  display: grid;
  gap: 1.1rem;
}
.hub-map-copy p,
.hub-stream-head p,
.hub-route-card p {
  margin: 0;
  color: var(--c4);
}
.hub-map-step {
  padding: 1rem 0.9rem;
  background: var(--ca);
  border: 1px solid var(--c9);
  border-radius: 4px;
}
.hub-map-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
}
.hub-map-step strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}
.hub-map-step p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--c4);
}
.hub-stream {
  display: grid;
  gap: 1.2rem;
}
.hub-inline-block {
  margin: 1.8rem 0;
}
.hub-inline-head {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.hub-inline-head h2,
.hub-inline-head h3 {
  margin: 0;
  padding: 0;
  border: 0;
}
.hub-inline-head p {
  margin: 0;
  color: var(--c4);
}
.hub-route-card.compact {
  padding: 1rem;
}
.hub-route-card.compact h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}
.hub-empty {
  padding: 1rem 1.1rem;
  background: var(--ca);
  border: 1px dashed var(--c8);
  border-radius: 4px;
}
.hub-spotlight-shell {
  display: grid;
  gap: 1.2rem;
  padding: 1.4rem;
  background: linear-gradient(180deg, var(--accent-light), var(--white));
  border: 1px solid var(--c8);
  border-radius: 6px;
}
.hub-spotlight-head h2,
.article-toc-head h2 {
  margin: 0;
  padding: 0;
  border: 0;
}
.hub-spotlight-head p,
.article-toc-head p {
  margin: 0.35rem 0 0;
  color: var(--c4);
}
.hub-route-card.spotlight {
  background: var(--white);
}
.article-toc {
  margin: 0 0 1.8rem;
  padding: 1.2rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--c8);
  border-radius: 6px;
}
.article-toc-list {
  display: grid;
  gap: 0.6rem;
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
}
.article-toc-list li {
  margin: 0;
}
.article-toc-list a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
  color: var(--c2);
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.article-referral-action:empty,
.article-referral-action .referral-code-box:empty {
  display: none;
}
.comparison-guide,
.aff-related-guides {
  margin: 2.5rem 0;
  padding: 1.2rem 1.35rem 1.35rem;
  border-top: 2px solid var(--accent);
  border-bottom: 1px solid var(--c9);
  background: linear-gradient(180deg, var(--accent-light), transparent);
}
.comparison-guide-kicker,
.aff-related-guides-kicker {
  margin-bottom: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.comparison-guide-title,
.aff-related-guides-title {
  margin: 0 0 0.4rem;
  padding: 0;
  border: 0;
  font-size: 1.3rem;
  line-height: 1.25;
}
.comparison-guide-lead,
.aff-related-guides-lead {
  margin-bottom: 0.85rem;
  color: var(--c4);
}
.comparison-guide-list,
.aff-related-guides-list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.comparison-guide-link,
.aff-related-guides-item a {
  display: block;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--c9);
  background: var(--cc);
  color: var(--c0);
  text-decoration: none;
  font-weight: 600;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  border-radius: 4px;
}
.comparison-guide-link:hover,
.aff-related-guides-item a:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateX(2px);
}
.related-post-card:hover {
  transform: translateY(-2px);
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.2rem 0;
  border: 1px solid var(--c8);
  font-size: 0.85rem;
  background: var(--cc);
}
th, td {
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--c9);
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}
th {
  background: var(--accent);
  font-weight: 600;
  color: var(--white);
}
tr:nth-child(even) {
  background: var(--ca);
}
.wp-block-table {
  overflow-x: auto;
  margin: 2.2rem 0;
  border: none;
}
.page-numbers,
.nav-links .page-numbers {
  display: inline-block;
  margin: 1.8rem 0.35rem 0 0;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--c8);
  background: var(--cc);
  font-weight: 600;
  border-radius: 3px;
  color: var(--c0);
  text-decoration: none;
}
.page-numbers.current {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* Fruit Offer Section */
.fruit-offer-section {
  margin: 36px 0 48px;
}
.fruit-offer-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--c8);
  background: linear-gradient(180deg, var(--accent-light), var(--white));
  border-radius: 6px;
}
.fruit-offer-section.is-bottom .fruit-offer-shell {
  background: var(--c0);
  color: var(--cc);
  border-color: var(--c3);
}
.fruit-offer-copy {
  display: grid;
  gap: 8px;
  max-width: 760px;
}
.fruit-offer-kicker {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.fruit-offer-section.is-bottom .fruit-offer-kicker {
  color: var(--c6);
}
.fruit-offer-title {
  margin: 0;
  font-family: var(--jp);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.35;
  font-weight: 700;
  color: var(--c0);
}
.fruit-offer-section.is-bottom .fruit-offer-title {
  color: #ffffff;
}
.fruit-offer-lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--c4);
}
.fruit-offer-section.is-bottom .fruit-offer-lead {
  color: rgba(255, 255, 255, 0.65);
}
.fruit-offer-body {
  width: 100%;
}
.fruit-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.fruit-offer-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--c9);
  background: var(--cc);
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fruit-offer-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(58, 50, 38, 0.05);
}
.fruit-offer-section.is-bottom .fruit-offer-card {
  border-color: var(--c3);
  background: rgba(255, 255, 255, 0.05);
}
.fruit-offer-card-head {
  display: grid;
  gap: 4px;
}
.fruit-offer-card-kicker {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.fruit-offer-section.is-bottom .fruit-offer-card-kicker {
  color: var(--c6);
}
.fruit-offer-card-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--c0);
}
.fruit-offer-section.is-bottom .fruit-offer-card-title {
  color: #ffffff;
}
.fruit-offer-card-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--c4);
}
.fruit-offer-section.is-bottom .fruit-offer-card-text {
  color: rgba(255, 255, 255, 0.65);
}
.fruit-offer-code-box {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px dashed var(--c8);
  background: rgba(139, 115, 85, 0.06);
  border-radius: 4px;
}
.fruit-offer-section.is-bottom .fruit-offer-code-box {
  border-color: var(--c3);
  background: rgba(139, 115, 85, 0.06);
}
.fruit-offer-code-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c5);
}
.fruit-offer-section.is-bottom .fruit-offer-code-label {
  color: var(--c6);
}
.fruit-offer-code-value {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 700;
  word-break: break-all;
  color: var(--c0);
}
.fruit-offer-section.is-bottom .fruit-offer-code-value {
  color: #ffffff;
}
.fruit-offer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  transition: background 0.15s;
}
.fruit-offer-link:hover {
  background: var(--accent-warm);
  border-color: var(--accent-warm);
}
.fruit-offer-section.is-bottom .fruit-offer-link {
  border-color: var(--cc);
  background: var(--cc);
  color: var(--c0);
}
.fruit-offer-no-link {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--c5);
}
.fruit-offer-section.is-bottom .fruit-offer-no-link {
  color: var(--c6);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CUSTOM BLOCKS (from blocks.css)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.aff-block {
  margin: 2.5rem 0;
  border: 1px solid var(--c8);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.aff-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.2rem;
  border-bottom: 1px solid var(--c8);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  background: var(--ca);
  color: var(--c3);
}
.aff-body {
  padding: 1.2rem 1.35rem 1.35rem;
}
.aff-icon {
  flex: 0 0 auto;
}
.aff-point {
  border-left: 3px solid var(--accent);
}
.aff-point .aff-head {
  background: var(--accent-light);
  color: var(--accent);
  border-bottom-color: transparent;
}
.aff-point .aff-body {
  font-weight: 500;
  font-size: 1rem;
  color: var(--c2);
}
.aff-info {
  border-color: var(--c7);
}
.aff-info .aff-head {
  background: var(--c2);
  color: var(--white);
}
.aff-info .aff-body {
  background: var(--white);
}
.aff-warn {
  border-color: var(--accent-warm);
}
.aff-warn .aff-head {
  background: var(--accent-warm);
  color: var(--white);
}
.aff-warn .aff-body {
  position: relative;
  padding-left: 2rem;
}
.aff-warn .aff-body::before {
  content: "!";
  position: absolute;
  left: 0.85rem;
  top: 1.2rem;
  width: 1rem;
  height: 1rem;
  font-weight: 700;
  color: var(--accent-warm);
}
.aff-step {
  position: relative;
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  gap: 1rem;
  align-items: flex-start;
  margin: 2rem 0;
}
.aff-step::before {
  content: "";
  position: absolute;
  left: 1.38rem;
  top: 2.2rem;
  bottom: -2rem;
  width: 1px;
  background: var(--c8);
}
.aff-step + .aff-step {
  margin-top: -0.15rem;
}
.aff-step:last-child {
  margin-bottom: 0;
}
.aff-step:last-child::before {
  display: none;
}
.aff-step-marker {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-top: 0.1rem;
}
.aff-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1;
}
.aff-step-content {
  position: relative;
  min-width: 0;
  padding: 0.1rem 0 1.2rem;
  border-bottom: 1px solid var(--c9);
}
.aff-step:last-child .aff-step-content {
  padding-bottom: 0;
  border-bottom: 0;
}
.aff-step-kicker {
  margin: 0 0 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.aff-step-title {
  margin: 0 0 0.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.3;
}
.aff-step .aff-body {
  padding: 0;
  border: 0;
  background: transparent;
}
.aff-checklist {
  background: var(--white);
  border: 1px solid var(--c8);
  border-radius: var(--radius);
  overflow: hidden;
}
.aff-checklist .aff-head {
  background: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aff-checklist .aff-head::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.4;
  box-shadow: 12px 0 0 rgba(255, 255, 255, 0.4), 24px 0 0 rgba(255, 255, 255, 0.4);
}
.aff-checklist .aff-head span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-left: 16px;
}
.aff-checklist .aff-body {
  padding: 4px 8px 8px;
}
.aff-checklist-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.aff-check-item {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--c9);
}
.aff-check-toggle {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
  font: inherit;
  color: inherit;
}
.aff-check-mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--c7);
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  position: relative;
  transition: background 0.18s, border-color 0.18s;
}
.aff-check-text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--c2);
  transition: color 0.18s;
}
.aff-check-toggle[aria-pressed="true"] .aff-check-mark {
  background: var(--accent);
  border-color: var(--accent);
}
.aff-check-toggle[aria-pressed="true"] .aff-check-mark::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpolyline points='2,6 5,9 10,3' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.aff-check-toggle[aria-pressed="true"] .aff-check-text {
  color: var(--c5);
  text-decoration: line-through;
  text-decoration-color: var(--c6);
}
.aff-check-item:has([aria-pressed="true"]) {
  border-color: var(--accent);
  background: var(--accent-light);
}
.aff-data .aff-head {
  background: var(--surface-alt);
}
.aff-data-table {
  display: grid;
  gap: 0.7rem;
}
.aff-data-row {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  border: 1px solid var(--c8);
  background: var(--white);
}
.aff-data-label,
.aff-data-value {
  padding: 0.8rem 1rem;
}
.aff-data-label {
  font-weight: 700;
  border-right: 1px solid var(--c8);
  background: var(--ca);
}
.aff-cta {
  border-color: var(--accent);
  background: var(--accent-light);
}
.aff-cta .aff-head {
  background: var(--accent);
  color: var(--white);
}
.aff-cta .aff-body {
  padding: 1.3rem;
  font-size: 1rem;
  font-weight: 600;
}
.aff-cta .btn {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.aff-cta .btn:hover {
  background: var(--c0);
  color: var(--white);
}
.aff-cta .cta-note {
  color: var(--c4);
}
.aff-experience {
  border-left: 3px solid var(--c7);
  background: var(--ca);
}
.aff-experience .aff-head {
  background: var(--white);
  color: var(--c3);
  border-bottom: 1px solid var(--c9);
}
.aff-experience .aff-body {
  line-height: 1.75;
  color: var(--c2);
}
.aff-meritdemerit {
  background: var(--white);
  border: 1px solid var(--c8);
  border-radius: var(--radius);
  overflow: hidden;
}
.aff-meritdemerit > .aff-head {
  background: var(--accent-light);
  border-bottom: 1px solid var(--c8);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aff-meritdemerit > .aff-head::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  box-shadow: 12px 0 0 rgba(139, 115, 85, 0.4), 24px 0 0 rgba(139, 115, 85, 0.3);
}
.aff-meritdemerit > .aff-head span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-left: 16px;
}
.aff-meritdemerit .aff-body {
  padding: 10px;
}
.aff-meritdemerit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.aff-merit-panel,
.aff-demerit-panel {
  border-radius: 6px;
  border: 1px solid var(--c9);
  overflow: hidden;
}
.aff-meritdemerit-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 10px 12px;
  border-bottom: 1px solid var(--c9);
  background: var(--ca);
}
.aff-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aff-merit-title .aff-icon-wrap {
  background: var(--accent);
}
.aff-demerit-title .aff-icon-wrap {
  background: var(--c3);
}
.aff-merit-title .aff-icon {
  color: var(--white);
}
.aff-demerit-title .aff-icon {
  color: var(--white);
}
.aff-meritdemerit-title span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c4);
}
.aff-meritdemerit-list {
  list-style: none;
  margin: 0;
  padding: 6px 10px 8px;
  display: flex;
  flex-direction: column;
}
.aff-merit-item,
.aff-demerit-item {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--c2);
  padding: 6px 0 6px 12px;
  position: relative;
}
.aff-merit-item:not(:last-child),
.aff-demerit-item:not(:last-child) {
  border-bottom: 1px solid var(--c9);
}
.aff-merit-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.aff-demerit-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c3);
}
.aff-meritdemerit .aff-body > p:empty {
  display: none;
}
.aff-faq {
  border-width: 1px;
  border-color: var(--c8);
}
.aff-faq .aff-head {
  background: var(--white);
  border-bottom-width: 1px;
}
.aff-faq .aff-body {
  padding: 0;
}
.aff-faq-item {
  border-top: 1px solid var(--c9);
  background: var(--white);
}
.aff-faq-item:first-child {
  border-top: 0;
}
.aff-faq-question {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  list-style: none;
  padding: 1rem 1.15rem 0.85rem;
  font-weight: 600;
  line-height: 1.55;
  background: var(--ca);
}
.aff-faq-question::-webkit-details-marker {
  display: none;
}
.aff-faq-question::before {
  content: "Q";
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}
.aff-faq-question::after {
  content: "";
  margin-left: auto;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 1.5px solid var(--c5);
  border-bottom: 1.5px solid var(--c5);
  transform: rotate(45deg) translateY(-1px);
  flex: 0 0 auto;
}
.aff-faq-item[open] .aff-faq-question::after {
  transform: rotate(225deg) translateY(-1px);
}
.aff-faq-answer {
  position: relative;
  padding: 0.15rem 1.15rem 1rem 3.5rem;
  background: var(--white);
  color: var(--c2);
}
.aff-faq-answer::before {
  content: "A";
  position: absolute;
  left: 1.15rem;
  top: 0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--c3);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}
.aff-faq-answer > *:last-child {
  margin-bottom: 0;
}
.aff-voice {
  border-width: 1px;
  border-color: var(--c8);
  background: var(--accent-warm-light);
}
.aff-voice .aff-head {
  background: var(--accent-warm-light);
  border-bottom-width: 1px;
  color: var(--accent-warm);
}
.aff-voice .aff-body {
  display: grid;
  gap: 0.8rem;
}
.aff-voice-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.aff-voice-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--c9);
  border-radius: 6px;
  background: var(--white);
}
.aff-voice-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.55rem;
  border-radius: 50%;
  background: var(--accent-warm);
  color: var(--white);
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1;
}
.aff-voice-text {
  line-height: 1.7;
  color: var(--c2);
}
.aff-voice-note {
  margin: 0;
  font-size: 0.84rem;
  color: var(--c5);
}
.aff-keypoints {
  border: none;
  background: transparent;
  padding: 0;
}
.aff-keypoints .aff-head {
  background: transparent;
  border: none;
  padding: 0 0 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}
.aff-keypoints .aff-body {
  padding: 1rem 1.1rem;
  border-radius: 6px;
  background: var(--ca);
}
.aff-keypoints-list {
  display: grid;
  gap: 1.1rem;
}
.aff-keypoints-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid var(--c9);
  padding-bottom: 1.1rem;
}
.aff-keypoints-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.aff-keypoints-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.aff-keypoints-copy {
  min-width: 0;
}
.aff-keypoints-item-title {
  margin: 0 0 0.3rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
}
.aff-keypoints-item-body {
  color: var(--c4);
  line-height: 1.75;
  font-size: 0.88rem;
}
.aff-keypoints-item-body > *:last-child {
  margin-bottom: 0;
}
.aff-quiz {
  background: var(--earth-light);
  color: var(--text);
  border-width: 1px;
  border-color: var(--c8);
}
.aff-quiz-head {
  padding: 0.75rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--earth);
  border-bottom: 1px solid var(--c8);
}
.aff-quiz-question {
  padding: 1.2rem 1.35rem 0.85rem;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
}
.aff-quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding: 0 1.35rem 1.35rem;
}
.aff-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 0.85rem;
  border: 1px solid var(--c8);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 600;
  font: inherit;
  color: inherit;
  cursor: pointer;
  font-size: 0.88rem;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}
.aff-option:hover {
  transform: translateY(-1px);
}
.aff-opt-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--earth-light);
  color: var(--earth);
  font-weight: 700;
  border: 1px solid var(--c8);
}
.aff-option.is-active {
  border-color: var(--c3);
}
.aff-option.is-correct {
  background: var(--accent-light);
  box-shadow: 0 0 0 2px rgba(139, 115, 85, 0.15);
}
.aff-option.is-incorrect {
  background: var(--ca);
}
.aff-quiz-details {
  border-top: 1px solid var(--c8);
}
.aff-quiz-summary {
  cursor: pointer;
  padding: 0.9rem 1.15rem;
  font-weight: 700;
  background: var(--ca);
  text-align: center;
}
.aff-quiz-answer-box {
  padding: 1.2rem 1.35rem 1.35rem;
  background: var(--white);
}
.aff-quiz.is-correct .aff-quiz-answer-box {
  animation: aff-quiz-pop 0.42s ease;
}
.aff-quiz-answer-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  color: var(--c2);
}
.aff-diagnosis {
  background: linear-gradient(180deg, var(--earth-light) 0%, var(--white) 100%);
  border-width: 1px;
  border-color: var(--c8);
}
.aff-diagnosis .aff-head {
  background: var(--earth-light);
  border-bottom-width: 1px;
  color: var(--earth);
}
.aff-diagnosis-intro {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  color: var(--c4);
}
.aff-diagnosis-flow {
  display: grid;
}
.aff-diagnosis-node {
  display: none;
  padding: 1rem 1.1rem 1.15rem;
  border: 1px solid var(--c9);
  border-radius: 6px;
  background: var(--white);
}
.aff-diagnosis-node.is-active {
  display: block;
}
.aff-diagnosis-step,
.aff-diagnosis-result-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c5);
}
.aff-diagnosis-question,
.aff-diagnosis-result-title {
  margin: 0;
  font-family: inherit;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.45;
}
.aff-diagnosis-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 0.85rem;
}
.aff-diagnosis-choice,
.aff-diagnosis-reset {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--c8);
  border-radius: 6px;
  background: var(--white);
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition: transform 0.18s ease, background-color 0.18s ease;
}
.aff-diagnosis-choice:hover,
.aff-diagnosis-reset:hover {
  transform: translateY(-1px);
}
.aff-diagnosis-choice-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--earth-light);
  color: var(--earth);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  border: 1px solid var(--c8);
}
.aff-diagnosis-choice-text {
  font-weight: 600;
  line-height: 1.5;
}
.aff-diagnosis-result-body {
  margin-top: 0.75rem;
}
.aff-diagnosis-reset {
  justify-content: center;
  margin-top: 0.85rem;
  background: var(--ca);
  font-weight: 700;
}
.aff-detail {
  border: 1px solid var(--c8);
  border-radius: 6px;
  background: var(--white);
  overflow: hidden;
}
.aff-detail .aff-head {
  padding: 0.75rem 1.1rem;
  border-bottom: 1px solid var(--c9);
  background: var(--ca);
}
.aff-detail-shell {
  border-top: 0;
}
.aff-detail-summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  background: var(--white);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.aff-detail-summary:hover {
  background: var(--ca);
}
.aff-detail-summary::-webkit-details-marker {
  display: none;
}
.aff-detail-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  flex: 1;
}
.aff-detail-title::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 14px;
  border-radius: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.aff-detail-preview {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--c5);
  max-width: 55%;
  text-align: right;
}
.aff-detail-shell[open] .aff-detail-preview {
  display: none;
}
.aff-detail-summary::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--c6);
  border-bottom: 1.5px solid var(--c6);
  transform: rotate(45deg);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.aff-detail-shell[open] .aff-detail-summary::after {
  transform: rotate(-135deg);
}
.aff-detail-body {
  padding: 0 1.15rem 1.15rem;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--ink);
  border-top: 1px solid var(--c9);
  padding-top: 0.85rem;
  background: var(--ca);
}
@keyframes aff-quiz-pop {
  0% {
    transform: translateY(4px);
    background: var(--earth-light);
  }
  100% {
    transform: translateY(0);
    background: var(--white);
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE EXTRAS (from layout/elements/blocks)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-content {
    padding: 1.25rem 0 4rem;
  }
  .hub-route-grid,
  .hub-map-steps {
    grid-template-columns: 1fr;
  }
  .header-container {
    gap: 1rem;
    align-items: center;
  }
  .brand-cluster {
    flex: 1;
    width: 100%;
  }
  .main-nav-list,
  .footer-nav-list {
    flex-wrap: wrap;
    gap: 0.9rem 1.15rem;
  }
  .main-nav-shell[aria-hidden="false"] {
    display: block;
  }
  .main-nav-panel {
    width: 100%;
  }
  .main-nav-list {
    gap: 0.9rem;
  }
  .site-header {
    padding: 1rem 0;
  }
  .site-tagline {
    display: none;
  }
  .slider-content {
    padding: 1.4rem 1.1rem;
  }
  .post-grid,
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  .hub-hero,
  .hub-map,
  .hub-stream,
  .hub-intro,
  .hub-inline-block,
  .hub-route-card {
    padding: 1.1rem;
  }
  .hub-spotlight-shell,
  .article-toc {
    padding: 1rem;
  }
  .hub-hero-actions {
    display: grid;
  }
  .article-deck {
    font-size: 0.95rem;
  }
  .article-referral-spotlight {
    padding: 0.9rem 0 1rem;
  }
  .article-referral-spotlight h2 {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .fruit-offer-shell {
    padding: 20px 16px;
    gap: 16px;
  }
  .fruit-offer-grid {
    grid-template-columns: 1fr;
  }
  .fruit-offer-card {
    padding: 16px;
  }
  .comparison-guide,
  .aff-related-guides {
    padding: 0.9rem 0 1rem;
  }
  .comparison-guide-title,
  .aff-related-guides-title {
    font-size: 1.1rem;
  }
  .referral-code-row {
    flex-direction: column;
    align-items: stretch;
  }
  .referral-copy-button,
  .referral-code-value {
    width: 100%;
  }
  .share-chip {
    width: 100%;
    justify-content: center;
  }
  .aff-block {
    margin: 2rem 0;
  }
  .aff-body,
  .aff-step-content,
  .aff-cta .aff-body,
  .aff-quiz-question,
  .aff-quiz-answer-box {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .aff-quiz-options {
    grid-template-columns: 1fr;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .aff-diagnosis-actions {
    grid-template-columns: 1fr;
  }
  .aff-step-content {
    padding-left: 0;
  }
  .aff-step {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 0.85rem;
  }
  .aff-step::before {
    left: 1.2rem;
    top: 2rem;
    bottom: -1.7rem;
  }
  .aff-data-row {
    grid-template-columns: 1fr;
  }
  .aff-data-label {
    border-right: 0;
    border-bottom: 1px solid var(--c8);
  }
  .aff-meritdemerit-grid {
    grid-template-columns: 1fr;
  }
}
