/* Generated: scripts/generate_result_css.py; edit css/style.css. */
:root {
  /* Background — paper tone + grid */
  --bg-base: #FFF8E7;
  --bg-grid: #1A1A1A;

  /* Core colors — 5 high-saturation single colors */
  --c-yolk:    #FFD93D;
  --c-tomato:  #FF5E5B;
  --c-mint:    #00C2A8;
  --c-sky:     #4E9CFF;
  --c-grape:   #B47AFF;

  /* Ink & paper */
  --ink:       #1A1A1A;
  --ink-soft:  #4A4A4A;
  --paper:     #FFFFFF;

  /* Borders — chunky */
  --border-w:    3px;
  --border-w-lg: 4px;

  /* Hard shadows */
  --shadow-xs: 2px 2px 0 0 var(--ink);
  --shadow-sm: 4px 4px 0 0 var(--ink);
  --shadow-md: 6px 6px 0 0 var(--ink);
  --shadow-lg: 8px 8px 0 0 var(--ink);

  /* Tight rounds */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 8px;

  /* ==== Backwards-compatible aliases (older selectors still rely on these) ==== */
  --card-bg: var(--paper);
  --text-primary: var(--ink);
  --text-secondary: var(--ink-soft);
  --text-light: #777777;
  --shadow: var(--shadow-sm);
  --shadow-hover: var(--shadow-md);
  --radius: var(--r-md);
  --radius-sm: var(--r-sm);
  --cat-psychology: var(--c-grape);
  --cat-psychology-bg: #F1E6FF;
  --cat-quiz: var(--c-sky);
  --cat-quiz-bg: #DCEAFE;
  --cat-fun: var(--c-tomato);
  --cat-fun-bg: #FFE2E2;
  --cat-ability: var(--c-mint);
  --cat-ability-bg: #D2F5EE;
  --accent: var(--ink);
  --accent-hover: #000000;
  --bg-gradient-1: var(--bg-base);
  --bg-gradient-2: var(--bg-base);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', 'Segoe UI', sans-serif;
  background-color: var(--bg-base);
  background-image:
    linear-gradient(rgba(26, 26, 26, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-x: clip;
  position: relative;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--paper);
  border-radius: var(--r-sm);
  box-shadow: 0 0 0 2px var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transform: translateY(calc(-100% - 24px));
  transition: transform 120ms ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  color: var(--paper);
  outline: 3px solid var(--c-yolk);
  outline-offset: 3px;
  transform: translateY(0);
}

main[tabindex="-1"],
[role="main"][tabindex="-1"] {
  scroll-margin-top: 88px;
}

.header {
  background: var(--c-yolk);
  border-bottom: var(--border-w-lg) solid var(--ink);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
}

.logo-icon {
  font-size: 28px;
  display: inline-block;
  transform: rotate(-8deg);
}

.logo-text {
  font-size: 24px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 8px;
  transition: background 0.15s;
}

.nav-links a:hover {
  background: var(--ink);
  color: var(--c-yolk);
}

.hamburger {
  display: none;
  background: var(--paper);
  border: var(--border-w) solid var(--ink);
  border-radius: var(--r-sm);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 10px;
  color: var(--ink);
  line-height: 1;
  font-weight: 900;
  box-shadow: 2px 2px 0 0 var(--ink);
}

@media (max-width: 1160px) and (min-width: 981px){.nav-links {
    gap: 10px;
  }

.nav-links a {
    padding: 4px 5px;
    font-size: 13px;
  }}

@media (max-width: 980px){.hamburger {
    display: block;
  }

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-yolk);
    flex-direction: column;
    padding: 12px 20px 16px;
    border-top: var(--border-w) solid var(--ink);
    border-bottom: var(--border-w) solid var(--ink);
    gap: 0;
  }

.nav-links.open {
    display: flex;
  }

.nav-links li {
    list-style: none;
  }

.nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

.nav-links li:last-child a {
    border-bottom: none;
  }}

.home-promo-strip-compact .home-promo-strip-inner {
  grid-template-columns: auto minmax(0, 1fr);
  padding: 10px 12px;
  background: var(--paper);
}

.home-promo-strip-compact .home-promo-strip-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-promo-strip-compact .home-promo-strip-links a {
  min-height: 58px;
  padding: 7px 10px;
  box-shadow: none;
}

.nav-links > li:nth-child(3),
.nav-links > li:nth-child(7),
.nav-links > li:nth-child(8),
.nav-links > li:nth-child(9) {
  display: none;
}

.home-promo-strip {
  max-width: 1000px;
  margin: 16px auto 0;
  padding: 0 20px;
  width: 100%;
}

.home-promo-strip-inner {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 10px 14px;
  padding: 12px 14px;
  background: #FFF1B8;
  border: var(--border-w) solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.home-promo-strip-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.home-promo-strip-inner strong {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}

.home-promo-strip-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.home-promo-strip-links a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  min-height: 98px;
  padding: 8px 10px;
  color: var(--ink);
  text-decoration: none;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  box-shadow: 2px 2px 0 0 var(--ink);
  transition: transform 0.12s, box-shadow 0.12s;
}

.home-promo-strip-links[data-promo-randomize] a:nth-of-type(n+5) {
  display: none;
}

.home-promo-strip-links a:hover,
.home-promo-strip-links a:focus-visible {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 0 var(--ink);
}

.home-promo-strip-title {
  overflow: hidden;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-promo-strip-links small {
  overflow: hidden;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-promo-strip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  min-width: 0;
  margin-top: 5px;
}

.home-promo-strip-tags i {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 2px 5px;
  color: var(--ink-soft);
  background: #FFF7DE;
  border: 1.5px solid rgba(45, 45, 45, 0.26);
  border-radius: var(--r-sm);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  word-break: keep-all;
}

.home-promo-strip-cta {
  align-self: flex-start;
  margin-top: 6px;
  padding: 4px 7px;
  color: var(--paper);
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  line-height: 1.1;
  word-break: keep-all;
}

.home-promo-strip-links a:hover .home-promo-strip-cta,
.home-promo-strip-links a:focus-visible .home-promo-strip-cta {
  background: var(--c-tomato);
}

@media (max-width: 720px){.home-promo-strip {
    margin-top: 12px;
    padding: 0 16px;
  }

.home-promo-strip-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

.home-promo-strip-kicker {
    justify-self: start;
  }

.home-promo-strip-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.home-promo-strip-links a {
    min-height: 104px;
  }}

.quiz-ad-card {
  display: none;
}

.quiz-ad-card.loaded {
  display: flex;
  background: var(--paper);
  border: var(--border-w) solid var(--ink);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.quiz-ad-card.loaded .ad-title {
  display: block;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--ink-soft);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.quiz-start-ad-frame {
  display: none;
  width: 100%;
  margin: 20px auto 4px;
  padding: 6px;
  overflow: hidden;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.quiz-mid-promo-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  text-align: center;
  word-break: keep-all;
}

.quiz-mid-promo-kicker {
  padding: 4px 8px;
  color: var(--paper);
  background: var(--c-tomato);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

.quiz-mid-promo-head strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.quiz-mid-promo-head small {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
}

.quiz-mid-promo-direct-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.quiz-mid-promo-direct-card {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px 9px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  box-shadow: 3px 3px 0 0 rgba(45, 45, 45, 0.16);
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}

.quiz-mid-promo-direct-card:hover,
.quiz-mid-promo-direct-card:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.quiz-mid-promo-direct-card.is-ending-soon {
  background: #fff0f0;
}

.quiz-mid-promo-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-sm);
}

.quiz-mid-promo-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quiz-mid-promo-direct-kicker {
  justify-self: start;
  padding: 3px 6px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--r-sm);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
}

.quiz-mid-promo-direct-card strong {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  word-break: keep-all;
}

.quiz-mid-promo-direct-card small {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.25;
  word-break: keep-all;
}

.quiz-mid-promo-fit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
}

.quiz-mid-promo-fit-tags span {
  padding: 2px 6px;
  color: var(--ink-soft);
  background: #fff7de;
  border: 1.5px solid rgba(45, 45, 45, 0.24);
  border-radius: var(--r-sm);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
}

.quiz-mid-promo-cta {
  justify-self: start;
  padding: 5px 8px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--r-sm);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
}

.quiz-mid-promo-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.quiz-mid-promo-links a {
  display: grid;
  gap: 2px;
  min-height: 54px;
  align-content: center;
  padding: 8px 6px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  text-align: center;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}

.quiz-mid-promo-links a:hover,
.quiz-mid-promo-links a:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.quiz-mid-promo-links span {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  word-break: keep-all;
}

.quiz-mid-promo-links small {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.15;
  word-break: keep-all;
}

.quiz-mid-promo-disclosure {
  margin: -2px 0 0;
  color: var(--ink-muted);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.quiz-mid-ad-frame {
  margin: 24px 0;
  padding: 8px;
  overflow: hidden;
  background: var(--paper);
  border: var(--border-w) solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.quiz-question-ad-frame {
  display: none;
  width: 100%;
  margin: 18px 0 2px;
  padding: 6px;
  overflow: hidden;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.quiz-question-promo-card {
  display: grid;
  gap: 5px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 8px;
  padding: 10px;
  color: var(--ink);
  background: #fffaf0;
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  box-shadow: 3px 3px 0 0 rgba(45, 45, 45, 0.18);
  text-decoration: none;
}

.quiz-question-promo-card.is-ending-soon {
  background: #fff0f0;
}

.quiz-question-promo-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-sm);
}

.quiz-question-promo-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quiz-question-promo-card:hover,
.quiz-question-promo-card:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.quiz-question-promo-kicker {
  justify-self: start;
  padding: 3px 6px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--r-sm);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
}

.quiz-question-promo-card strong {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  word-break: keep-all;
}

.quiz-question-promo-card small {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.25;
  word-break: keep-all;
}

.quiz-question-promo-fit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.quiz-question-promo-fit-tags span {
  padding: 2px 6px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1.5px solid rgba(45, 45, 45, 0.24);
  border-radius: var(--r-sm);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
}

.quiz-question-promo-cta {
  justify-self: start;
  padding: 5px 8px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--r-sm);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
}

.quiz-analyzing-ad-frame,
.quiz-result-ad-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 24px 0;
  padding: 8px;
  overflow: hidden;
  background: var(--paper);
  border: var(--border-w) solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.quiz-result-ad-frame {
  margin: 20px 0;
}

.quiz-result-ad-frame-bottom {
  margin: 22px 0;
}

.quiz-shared-result-ad-frame {
  margin: 14px 0 18px;
}

.quiz-result-action-ad-frame {
  margin: 12px 0 20px;
}

.quiz-start-ad-frame .simsim-ad-slot,
.quiz-mid-ad-frame .simsim-ad-slot,
.quiz-question-ad-frame .simsim-ad-slot,
.quiz-analyzing-ad-frame .simsim-ad-slot,
.quiz-result-ad-frame .simsim-ad-slot {
  width: 100%;
}

@media (min-width: 1024px){.quiz-result-action-ad-frame {
    display: none;
  }}

@media (max-width: 760px){.quiz-start-ad-frame {
    display: block;
  }}

@media (max-width: 520px){.quiz-mid-promo-head {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

.quiz-mid-promo-head small {
    flex: 1 0 100%;
  }

.quiz-mid-promo-direct-grid {
    grid-template-columns: 1fr;
  }

.quiz-mid-promo-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.quiz-question-ad-frame {
    display: block;
  }

.quiz-question-ad-frame .simsim-static-ad-wrapper {
    border-width: 2px;
  }

.quiz-start-ad-frame .simsim-static-ad-label,
  .quiz-start-ad-frame .simsim-static-ad-wrapper p,
  .quiz-question-ad-frame .simsim-static-ad-label,
  .quiz-question-ad-frame .simsim-static-ad-wrapper p {
    font-size: 10px;
  }

.quiz-start-ad-frame,
  .quiz-mid-ad-frame,
  .quiz-question-ad-frame,
  .quiz-analyzing-ad-frame,
  .quiz-result-ad-frame {
    margin-left: -2px;
    margin-right: -2px;
    padding: 6px;
  }}

@keyframes analyzingPulse {
  from { transform: scale(1) rotate(-4deg); }
  to { transform: scale(1.15) rotate(4deg); }
}

@keyframes analyzingFill {
  from { width: 0; }
  to { width: 100%; }
}

.result-insights { max-width: 640px; margin: 24px auto 30px; text-align: left; }

.result-insights-head { margin-bottom: 12px; }

.result-insights-kicker { padding: 4px 9px; background: var(--ink); color: var(--paper); border-radius: 999px; font-size: 11px; font-weight: 900; }

.result-insights-head h2 { margin: 8px 0 0; font-size: 20px; }

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

.result-insight-card { padding: 16px; border: 2px solid var(--ink); border-radius: var(--r-md); }

.result-insight-card.is-catch {
  grid-column: 1 / -1;
  background: #FFF3BF;
}

.result-insight-card.is-shine { background: #E7F8F3; }

.result-insight-card.is-watch { background: #FFF0EF; }

.result-insight-card.is-mission { background: #EAF2FF; }

.result-insight-card.is-compare { background: #F4ECFF; }

.result-insight-label { margin: 0 0 8px; font-size: 13px; font-weight: 900; }

.result-insight-card p { margin: 0; font-size: 14px; line-height: 1.65; }

@media (max-width: 640px){.result-insights-head h2 { font-size: 18px; }

.result-insight-grid { grid-template-columns: 1fr; }

.result-insight-card.is-catch { grid-column: auto; }}

.footer {
  background: var(--ink);
  padding: 40px 20px;
  text-align: center;
  border-top: var(--border-w-lg) solid var(--ink);
  margin-top: 60px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--paper);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--c-yolk);
}

.footer-copy {
  font-size: 12px;
  color: #777;
  font-weight: 500;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.08); }
  70% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

@keyframes popIn {
  0% { transform: scale(0); }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes confetti {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(-80px) rotate(360deg); opacity: 0; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

.shared-result-promo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.shared-result-promo-tags span {
  padding: 2px 6px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1.5px solid rgba(45, 45, 45, 0.24);
  border-radius: var(--r-sm);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
}

.result-direct-promo-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 12px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}

.result-direct-promo-card.is-ending-soon {
  background: #FFF2EF;
}

.result-direct-promo-card.is-ending-week {
  background: #FFF8DC;
}

.result-direct-promo-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-base);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
}

.result-direct-promo-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.result-direct-promo-card:hover,
.result-direct-promo-card:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.result-direct-promo-kicker {
  justify-self: start;
  padding: 3px 7px;
  background: var(--c-yolk);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
}

.result-direct-promo-card.is-ending-soon .result-direct-promo-kicker {
  background: var(--c-tomato);
  color: var(--paper);
}

.result-direct-promo-card.is-ending-week .result-direct-promo-kicker {
  background: var(--c-yolk);
  color: var(--ink);
}

.result-direct-promo-card strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  word-break: keep-all;
}

.result-direct-promo-card small {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
  word-break: keep-all;
}

.result-direct-promo-fit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
}

.result-direct-promo-fit-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 6px;
  background: var(--paper);
  border: 2px solid rgba(45, 45, 45, 0.24);
  border-radius: var(--r-sm);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  word-break: keep-all;
}

.result-direct-promo-cta {
  justify-self: start;
  margin-top: 2px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--r-sm);
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

.result-promo-bridge {
  max-width: 760px;
  margin: 18px auto 24px;
  padding: 18px;
  background: var(--paper);
  border: var(--border-w) solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.result-promo-bridge-head {
  display: grid;
  gap: 5px;
  margin-bottom: 12px;
  text-align: center;
}

.result-promo-bridge-kicker {
  justify-self: center;
  padding: 4px 8px;
  background: var(--c-yolk);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

.result-promo-bridge h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
  word-break: keep-all;
}

.result-promo-bridge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.result-promo-bridge-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 10px;
  background: var(--bg-base);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-xs);
  text-decoration: none;
}

.result-promo-bridge-card:hover,
.result-promo-bridge-card:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.result-promo-bridge-emoji {
  font-size: 22px;
  line-height: 1;
}

.result-promo-bridge-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.result-promo-bridge-title {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  word-break: keep-all;
}

.result-promo-bridge-desc {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  word-break: keep-all;
}

.result-promo-bridge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
  margin-top: 2px;
}

.result-promo-bridge-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 2px 5px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1.5px solid rgba(45, 45, 45, 0.24);
  border-radius: var(--r-sm);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  word-break: keep-all;
}

.result-promo-bridge-cta {
  justify-self: start;
  margin-top: 3px;
  padding: 5px 8px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.1;
  word-break: keep-all;
}

.result-promo-bridge-card:hover .result-promo-bridge-cta,
.result-promo-bridge-card:focus-visible .result-promo-bridge-cta {
  background: var(--c-tomato);
}

.result-next-tests {
  margin-top: 24px;
}

@media (max-width: 768px){.hamburger { display: block; }

.nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-yolk);
    flex-direction: column;
    padding: 12px 20px 16px;
    border-top: var(--border-w) solid var(--ink);
    border-bottom: var(--border-w) solid var(--ink);
    gap: 0;
  }

.nav-links.open {
    display: flex;
  }

.nav-links li {
    list-style: none;
  }

.nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

.nav-links li:last-child a {
    border-bottom: none;
  }}

@media (prefers-color-scheme: dark) and (max-width: 0px){:root {
    --bg-gradient-1: #1a1025;
    --bg-gradient-2: #0d1b2a;
    --card-bg: #1e1e2e;
    --text-primary: #e0e0e0;
    --text-secondary: #a0a0a0;
    --text-light: #666666;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.5);
  }

.header { background: rgba(30, 30, 46, 0.9); border-bottom-color: rgba(255,255,255,0.06); }

.footer { background: rgba(30, 30, 46, 0.6); border-top-color: rgba(255,255,255,0.06); }

.nav-links {
    background: rgba(30, 30, 46, 0.97);
  }}

.blog-mid-promo-intent {
  margin: 22px 0 28px;
}

.blog-mid-promo-intent .shopping-promo-intent {
  margin: 0;
  padding: 16px;
}

.blog-mid-promo-intent .shopping-promo-intent-head {
  text-align: left;
}

.blog-mid-promo-intent .shopping-promo-intent-head > span {
  justify-self: start;
  background: var(--c-yolk);
  color: var(--ink);
}

.blog-mid-promo-intent .shopping-promo-intent-head h2 {
  font-size: 19px;
}

.blog-mid-promo-intent .shopping-promo-intent-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-mid-promo-intent .shopping-promo-intent-card {
  min-height: 170px;
  padding: 12px;
}

.blog-mid-promo-intent .shopping-promo-intent-card strong {
  font-size: 15px;
}

.blog-mid-promo-intent .shopping-promo-intent-card small,
.blog-mid-promo-intent .shopping-promo-intent-hint {
  font-size: 12px;
}

.blog-topic-bridge {
  max-width: 720px;
  margin: 20px auto 28px;
  padding: 16px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.blog-topic-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-topic-kicker {
  flex-shrink: 0;
  padding: 3px 8px;
  background: var(--c-sky);
  border: 1px solid var(--ink);
  border-radius: var(--r-sm);
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
}

.blog-topic-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}

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

.blog-topic-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 12px;
  background: var(--bg-base);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.blog-topic-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-sm);
  background: var(--c-yolk);
}

.blog-topic-emoji {
  flex-shrink: 0;
  font-size: 24px;
  line-height: 1;
}

.blog-topic-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.blog-topic-title {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.blog-topic-sub {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

@media (max-width: 700px){.blog-topic-head {
    align-items: flex-start;
    flex-direction: column;
  }

.blog-topic-grid {
    grid-template-columns: 1fr;
  }

.blog-topic-card {
    min-height: 64px;
  }

.blog-mid-promo-intent .shopping-promo-intent-grid {
    grid-template-columns: 1fr;
  }

.blog-mid-promo-intent .shopping-promo-intent-card {
    min-height: 132px;
  }}

.result-page {
  max-width: 800px;
  margin: 32px auto 48px;
  padding: 0 20px;
}

.result-breadcrumb {
  font-size: 13px;
  color: #555;
  margin-bottom: 20px;
  word-break: keep-all;
}

.result-breadcrumb a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

.result-breadcrumb a:hover { text-decoration: underline; }

.result-article {
  background: var(--paper);
  border: var(--border-w) solid var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 32px 24px;
  text-align: center;
}

.result-article-emoji {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 12px;
}

.result-article-title {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ink);
  line-height: 1.3;
}

.result-article-subtitle {
  font-size: 16px;
  color: #555;
  margin: 0 0 24px;
  font-weight: 600;
}

.result-article-body {
  text-align: left;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 auto;
  max-width: 640px;
}

.result-article-body p {
  margin: 0;
  white-space: pre-line;
}

.result-article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.result-cta-primary,
.result-cta-secondary {
  display: inline-block;
  padding: 12px 20px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border: var(--border-w) solid var(--ink);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.1s;
}

.result-cta-primary {
  background: var(--c-yolk);
  color: var(--ink);
}

.result-cta-secondary {
  background: var(--paper);
  color: var(--ink);
}

.result-cta-overview {
  background: var(--c-mint);
}

.result-cta-primary:hover,
.result-cta-secondary:hover {
  transform: translate(-1px, -1px);
}

.result-share-panel {
  max-width: 640px;
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 2px dashed #d1d5db;
  text-align: left;
}

.result-share-title {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.result-share-copy {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.result-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.result-share-btn {
  min-height: 44px;
  padding: 10px 16px;
  background: var(--c-mint);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 0.1s, box-shadow 0.1s, background 0.1s;
}

.result-share-btn-secondary {
  background: var(--paper);
}

.result-share-btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: var(--shadow-md);
  background: var(--c-yolk);
}

.result-share-btn:active {
  transform: translate(1px, 1px);
  box-shadow: 0 0 0 0 var(--ink);
}

.result-share-status {
  min-height: 18px;
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 520px){.result-share-panel {
    text-align: center;
  }

.result-share-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

.result-share-btn {
    width: 100%;
  }}

.result-other-types { margin-top: 40px; }

.result-other-heading {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--ink);
  text-align: center;
}

.result-other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.result-other-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.1s, background 0.1s;
}

.result-other-card:hover {
  transform: translate(-1px, -1px);
  background: var(--c-yolk);
}

.result-other-emoji { font-size: 18px; }

.overview-inline-ad-slot {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: 728px !important;
  margin: 8px auto 12px !important;
}

.footer-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin-bottom: 14px;
}

.footer-topics a {
  color: var(--paper);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
}

.footer-topics a:hover {
  color: var(--c-yolk);
  opacity: 1;
}

.quiz-next-tests {
  max-width: 800px;
  margin: 28px auto 34px;
  padding: 0 20px;
}

.quiz-next-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.quiz-next-kicker {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  background: var(--c-mint);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-xs);
  font-size: 12px;
  font-weight: 900;
}

.quiz-next-head h2 {
  flex: 1;
  margin: 0;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--ink);
}

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

.quiz-next-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 14px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.quiz-next-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
  background: var(--c-sky);
}

.quiz-next-emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  background: var(--c-yolk);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 23px;
}

.quiz-next-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quiz-next-title {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.quiz-next-desc {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.35;
}

@media (max-width: 640px){.quiz-next-tests {
    margin-top: 24px;
    padding: 0 16px;
  }

.quiz-next-head {
    display: block;
  }

.quiz-next-kicker {
    margin-bottom: 8px;
  }

.quiz-next-head h2 {
    font-size: 19px;
  }

.quiz-next-grid {
    grid-template-columns: 1fr;
  }}

.home-return-promo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.home-return-promo-head span {
  flex-shrink: 0;
  padding: 4px 9px;
  background: var(--c-yolk);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.1;
}

.home-return-promo-head strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.25;
  text-align: right;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.home-return-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 300px));
  justify-content: center;
  gap: 9px;
}

.home-return-promo-card {
  display: grid;
  min-height: 118px;
  align-content: start;
  gap: 6px;
  padding: 12px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-xs);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.home-return-promo-card:hover,
.home-return-promo-card:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-sm);
  background: var(--c-mint);
}

.home-return-promo-card.is-ending-soon {
  background: #fff2ef;
}

.home-return-promo-card.is-ending-week {
  background: #fff8dc;
}

.home-return-promo-kicker {
  justify-self: start;
  padding: 3px 7px;
  background: var(--c-tomato);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  color: var(--paper);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.1;
}

.home-return-promo-card.is-ending-week .home-return-promo-kicker {
  background: var(--c-yolk);
  color: var(--ink);
}

.home-return-promo-card.is-ongoing .home-return-promo-kicker,
.home-return-promo-card.is-dated .home-return-promo-kicker {
  background: var(--ink);
  color: var(--paper);
}

.home-return-promo-card strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.22;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.home-return-promo-card small {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.home-return-promo-fit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
}

.home-return-promo-fit-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 6px;
  background: var(--paper);
  border: 2px solid rgba(45, 45, 45, 0.24);
  border-radius: var(--r-sm);
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  word-break: keep-all;
}

.home-return-promo-card em {
  align-self: end;
  justify-self: start;
  margin-top: 2px;
  padding: 5px 8px;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  color: var(--paper);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  line-height: 1.1;
}

.home-return-promo-disclosure {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  word-break: keep-all;
}

@media (max-width: 720px){.home-return-promo-head {
    display: grid;
    justify-items: start;
  }

.home-return-promo-head strong {
    text-align: left;
  }

.home-return-promo-grid {
    grid-template-columns: 1fr;
  }

.home-return-promo-card {
    min-height: 0;
  }}

.result-next-steps {
  max-width: 720px;
  margin: 24px auto;
  padding: 20px 24px;
  background: var(--bg-base);
  border: var(--border-w) solid var(--ink);
  border-radius: 16px;
}

.result-next-steps h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 14px;
}

.result-next-steps ul {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
}

.result-next-steps li { margin: 6px 0; }

.result-topic-cross {
  margin-top: 24px;
  margin-bottom: 24px;
}

.result-topic-cross .blog-topic-kicker {
  background: var(--c-grape);
}

.result-blog-cross {
  max-width: 720px;
  margin: 24px auto;
  padding: 20px 24px;
  background: var(--paper);
  border: var(--border-w) solid var(--ink);
  border-radius: 16px;
}

.result-blog-cross h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 14px;
}

.result-blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.result-blog-card {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-base);
  border: 2px solid var(--ink);
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.result-blog-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 0 var(--ink);
  background: var(--c-yolk);
}

.result-blog-emoji {
  font-size: 24px;
  flex-shrink: 0;
}

.result-blog-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.result-blog-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}

.result-blog-desc {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
}

.result-faq {
  max-width: 720px;
  margin: 24px auto;
  padding: 20px 24px;
  background: #fff;
  border: var(--border-w) solid var(--ink);
  border-radius: 16px;
}

.result-faq h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.result-faq-item {
  padding: 14px 0;
  border-top: 1px dashed #d1d5db;
}

.result-faq-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.result-faq-item:last-child {
  padding-bottom: 0;
}

.result-faq-item h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.result-faq-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.blog-promo-jump {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin: 14px 0 18px;
}

.blog-promo-jump-card {
  display: grid;
  gap: 5px;
  min-height: 96px;
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 3px 3px 0 0 rgba(17, 24, 39, 0.16);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.blog-promo-jump-card.primary {
  background: #fff7d6;
}

.blog-promo-jump-card:hover,
.blog-promo-jump-card:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 0 var(--ink);
  background: var(--c-yolk);
}

.blog-promo-jump-card span {
  font-size: 12px;
  font-weight: 900;
  color: var(--ink-soft);
}

.blog-promo-jump-card strong {
  font-size: 15px;
  font-weight: 950;
  line-height: 1.25;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.blog-promo-jump-card small {
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
  color: var(--ink-soft);
  word-break: keep-all;
  overflow-wrap: anywhere;
}

@media (max-width: 640px){.blog-promo-jump {
    grid-template-columns: 1fr;
  }

.blog-promo-jump-card {
    min-height: 0;
  }}

.result-other-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--ink);
}

.sidebar-ad-card {
  text-align: center;
}

.sidebar-ad-card .sidebar-ad-title {
  display: none;
}

.sidebar-ad-card.loaded {
  margin-bottom: 24px;
  min-height: auto;
}

.sidebar-ad-card.sticky-ad {
  position: sticky;
  top: 100px;
  margin-bottom: 0;
}

.sidebar-ad-card.loaded .sidebar-ad-title {
  display: none;
}

.coupang-affiliate-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 32px auto;
  max-width: 100%;
  width: 728px;
  gap: 12px;
}

.coupang-affiliate-banner iframe,
.coupang-affiliate-banner img {
  max-width: 100% !important;
  height: auto !important;
  border: none !important;
  display: block;
  margin: 0 auto;
}

.coupang-disclosure {
  font-size: 11px;
  color: var(--ink-soft);
  margin: 0;
  font-family: Pretendard, sans-serif;
  text-align: center;
  line-height: 1.4;
}

.coupang-page-disclosure {
  width: min(100%, 920px);
  margin: 12px auto 20px;
  padding: 0 16px;
  color: var(--ink);
  font-family: Pretendard, sans-serif;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.55;
  text-align: center;
  word-break: keep-all;
  box-sizing: border-box;
}

.simsim-static-ad-wrapper {
  --ad-accent: var(--c-yolk);
  --ad-soft: #FFF7DE;
  width: min(100%, 520px);
  margin: 20px auto;
  text-align: center;
  box-sizing: border-box;
}

.simsim-static-ad-wrapper[data-ad-category="fashion"] {
  --ad-accent: #FF5E8A;
  --ad-soft: #FFE4EE;
}

.simsim-static-ad-wrapper[data-ad-category="digital"] {
  --ad-accent: var(--c-sky);
  --ad-soft: #E5F1FF;
}

.simsim-static-ad-wrapper[data-ad-category="fresh"] {
  --ad-accent: var(--c-mint);
  --ad-soft: #DDF8F3;
}

.simsim-static-ad-wrapper[data-ad-category="living"] {
  --ad-accent: var(--c-grape);
  --ad-soft: #F1E8FF;
}

.simsim-static-ad-wrapper[data-ad-category="appliance"] {
  --ad-accent: #14B8A6;
  --ad-soft: #D9FBF6;
}

.simsim-static-ad-wrapper[data-ad-category="pet"] {
  --ad-accent: #F97316;
  --ad-soft: #FFE9D6;
}

.simsim-static-ad-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  margin-bottom: 8px;
  padding: 4px 10px;
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  background: var(--ad-soft);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.simsim-static-ad-wrapper a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  text-decoration: none;
  color: inherit;
}

.simsim-static-ad-wrapper a:focus-visible {
  outline: 3px solid var(--c-sky);
  outline-offset: 5px;
}

.simsim-static-ad-wrapper img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  margin: 0 auto;
  border: 3px solid var(--ink);
  border-radius: var(--r-lg);
  box-shadow: 4px 4px 0 0 var(--ad-accent), 7px 7px 0 0 var(--ink);
  box-sizing: border-box;
}

.simsim-static-ad-fit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: min(100%, 420px);
  padding: 8px 10px;
  background: var(--ad-soft);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  box-shadow: 3px 3px 0 0 var(--ad-accent);
  box-sizing: border-box;
}

.simsim-static-ad-fit-reason {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  word-break: keep-all;
}

.simsim-static-ad-fit-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.simsim-static-ad-fit-tags i {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 7px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1.5px solid rgba(45, 45, 45, 0.28);
  border-radius: var(--r-sm);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  word-break: keep-all;
}

.simsim-static-ad-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  box-shadow: 3px 3px 0 0 var(--ad-accent);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.simsim-static-ad-wrapper a:hover .simsim-static-ad-cta,
.simsim-static-ad-wrapper a:focus-visible .simsim-static-ad-cta {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 0 var(--ad-accent);
  background: var(--ad-accent);
  color: var(--ink);
}

.simsim-static-ad-wrapper p {
  margin-top: 8px;
  color: var(--text-light);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
  text-align: center;
}

.simsim-static-ad-fallback {
  padding: 14px;
  border: 3px solid var(--ink);
  border-radius: var(--r-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.simsim-static-ad-fallback a {
  gap: 12px;
}

.simsim-static-ad-fallback-title {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}

.mobile-sticky-ad .simsim-static-ad-wrapper {
  width: 100%;
  margin: 0 auto;
}

.mobile-sticky-ad .simsim-static-ad-label {
  display: none;
}

.mobile-sticky-ad .simsim-static-ad-wrapper img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.mobile-sticky-ad .simsim-static-ad-cta {
  display: none;
}

.mobile-sticky-ad .simsim-static-ad-fit,
.desktop-sticky-ad .simsim-static-ad-fit {
  display: none;
}

.mobile-sticky-ad .simsim-static-ad-wrapper p {
  display: none;
}

@media (max-width: 768px){.coupang-affiliate-banner {
    margin: 24px auto;
    width: 100%;
  }

.simsim-static-ad-wrapper {
    width: 100%;
  }

.simsim-static-ad-wrapper img {
    width: min(100%, 360px);
  }}

.fixed-side-banner {
  display: none;
  position: absolute;
  top: 180px;
  z-index: 90;
  width: 160px;
  text-align: center;
}

.fixed-side-banner img {
  border: none !important;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.fixed-side-banner iframe {
  border: none !important;
  display: block;
  margin: 0 auto;
}

.fixed-side-banner .coupang-disclosure {
  font-size: 10px;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 1280px){.fixed-side-banner {
    display: block;
  }

.fixed-side-banner.left {
    right: calc(50% + 420px); /* 400px + 20px margin */
  }

.fixed-side-banner.right {
    left: calc(50% + 420px);
  }}

.mbti-overview-page ~ .fixed-side-banner.left {
  right: calc(50% + 640px); /* 620px + 20px margin */
}

.mbti-overview-page ~ .fixed-side-banner.right {
  left: calc(50% + 640px);
}

@media (min-width: 1280px) and (max-width: 1679px){.mbti-overview-page ~ .fixed-side-banner {
    display: none; /* Hide on overview pages if viewport is too narrow */
  }}

@media (min-width: 1680px){.mbti-overview-page ~ .fixed-side-banner {
    display: block;
  }}

body.worldcup-page .fixed-side-banner,
body:has(.home-hub-container) .fixed-side-banner,
body:has(.home-layout-container) .fixed-side-banner {
  display: none !important;
}

body {
  position: relative;
}

@media (max-width: 767px){.coupang-affiliate-banner.desktop-only {
    display: none !important;
  }

.coupang-affiliate-banner.mobile-only {
    display: flex !important;
  }}

@media (min-width: 768px){.coupang-affiliate-banner.desktop-only {
    display: flex !important;
  }

.coupang-affiliate-banner.mobile-only {
    display: none !important;
  }}

.mobile-sticky-ad {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
  background: transparent;
  border: 0;
  box-shadow: none;
  pointer-events: none;
  text-align: center;
}

.mobile-sticky-ad.is-visible {
  display: block !important;
}

.mobile-sticky-ad.is-visible.is-inline-ad-visible {
  display: none !important;
}

.mobile-sticky-ad-close {
  position: absolute;
  right: 12px;
  top: -30px;
  background: var(--c-tomato);
  color: var(--paper);
  border: var(--border-w) solid var(--ink);
  border-radius: var(--r-sm);
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 2px 2px 0 0 var(--ink);
  font-family: 'GmarketSans', sans-serif;
  text-transform: uppercase;
  pointer-events: auto;
}

.mobile-sticky-ad-close:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 0 var(--ink);
}

.mobile-sticky-ad-content {
  display: grid;
  gap: 6px;
  width: min(250px, calc(100vw - 24px));
  margin: 0 auto;
  min-width: 0;
  min-height: min(250px, calc(100vw - 24px));
  pointer-events: auto;
}

.mobile-sticky-promo-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.mobile-sticky-promo-links a {
  display: grid;
  align-content: center;
  min-height: 42px;
  padding: 6px 8px;
  color: var(--ink);
  background: #FFF7DE;
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  box-shadow: 2px 2px 0 0 var(--ink);
  text-align: center;
  text-decoration: none;
}

.mobile-sticky-promo-links.is-direct a {
  background: #FFF0F5;
}

.mobile-sticky-promo-links a:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 0 var(--ink);
}

.mobile-sticky-promo-links span,
.mobile-sticky-promo-links small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-sticky-promo-links span {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.mobile-sticky-promo-links small {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.2;
}

.mobile-sticky-promo-disclosure {
  margin: -2px 0 0;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 1280px){.mobile-sticky-ad {
    display: none !important;
  }}

.desktop-sticky-ad {
  display: none;
  position: fixed;
  right: 16px;
  top: 112px;
  z-index: 9980;
  width: 220px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.desktop-sticky-ad-close {
  position: absolute;
  right: 8px;
  top: -34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 28px;
  padding: 0 8px;
  background: var(--c-yolk);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  box-shadow: 2px 2px 0 0 var(--ink);
  cursor: pointer;
  font-family: 'GmarketSans', sans-serif;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.desktop-sticky-ad-close:hover,
.desktop-sticky-ad-close:focus-visible {
  background: var(--c-mint);
  color: var(--paper);
  outline: none;
}

.desktop-sticky-ad-content {
  min-height: 220px;
}

.desktop-sticky-ad .simsim-static-ad-wrapper {
  width: 100%;
  margin: 0 auto;
}

.desktop-sticky-ad .simsim-static-ad-label {
  margin-bottom: 6px;
  padding: 3px 7px;
  font-size: 10px;
  line-height: 1.2;
}

.desktop-sticky-ad .simsim-static-ad-wrapper img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.desktop-sticky-ad .simsim-static-ad-cta {
  min-height: 30px;
  margin-top: 6px;
  padding: 6px 8px;
  font-size: 11px;
  box-shadow: 2px 2px 0 0 var(--c-yolk);
}

.desktop-sticky-ad .simsim-static-ad-wrapper p {
  margin-top: 6px;
  font-size: 9px;
  line-height: 1.35;
}

.desktop-sticky-promo-links {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.desktop-sticky-promo-links a {
  display: grid;
  align-content: center;
  min-height: 38px;
  padding: 6px 7px;
  color: var(--ink);
  background: #FFF0F5;
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  box-shadow: 2px 2px 0 0 var(--ink);
  text-align: center;
  text-decoration: none;
}

.desktop-sticky-promo-links a:hover,
.desktop-sticky-promo-links a:focus-visible {
  background: #FFF7DE;
  outline: none;
}

.desktop-sticky-promo-links a:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 0 var(--ink);
}

.desktop-sticky-promo-links span,
.desktop-sticky-promo-links small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-sticky-promo-links span {
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
}

.desktop-sticky-promo-links small {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 750;
  line-height: 1.2;
}

.desktop-sticky-promo-disclosure {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.25;
}

@media (min-width: 1280px){.desktop-sticky-ad.is-visible {
    display: block;
  }}

@media (max-width: 1279px){.desktop-sticky-ad {
    display: none !important;
  }}

.desktop-sticky-ad.is-visible.is-inline-ad-visible {
  display: none !important;
}

body.worldcup-page .desktop-sticky-ad {
  display: none !important;
}

.worldcup-mobile-match-ad-frame {
  display: none;
  width: 100%;
  margin: -6px auto 14px;
  padding: 6px;
  overflow: hidden;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.worldcup-mobile-match-ad-frame .simsim-ad-slot {
  width: 100%;
}

@media (max-width: 768px){.worldcup-mobile-match-ad-frame {
    display: flex;
    justify-content: center;
  }}

.worldcup-round-break-ad-frame {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 18px auto 0;
  padding: 8px;
  overflow: hidden;
  background: var(--paper);
  border: var(--border-w) solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.worldcup-round-break-ad-frame .simsim-ad-slot {
  width: 100%;
}

@keyframes winPulse {
  0% {
    transform: scale(1);
    box-shadow: var(--shadow-md);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 0 20px var(--c-mint);
    border-color: var(--c-mint);
  }
  100% {
    transform: scale(1);
    border-color: var(--c-mint);
  }
}

@keyframes loseFade {
  to {
    opacity: 0.2;
    filter: grayscale(1);
    transform: scale(0.95);
  }
}

@keyframes CrownBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.simsim-toast {
  position: fixed;
  bottom: 140px;
  left: 50%;
  transform: translate(-50%, 50px);
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--paper);
  border-radius: var(--r-sm);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.simsim-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.tests-inline-ad-slot {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 420px;
  min-height: 250px;
  margin: 4px auto 10px !important;
}

.popular-rank-grid .popular-inline-ad-slot {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 420px;
  min-height: 250px;
  margin: 4px auto 10px !important;
}

.shopping-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.shopping-promo-intent {
  display: grid;
  gap: 14px;
  max-width: 1080px;
  margin: 0 auto 24px;
  padding: 18px;
  background: var(--paper);
  border: var(--border-w) solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.shopping-promo-intent-head {
  display: grid;
  gap: 6px;
  text-align: center;
}

.shopping-promo-intent-head > span {
  justify-self: center;
  padding: 4px 9px;
  background: var(--c-mint);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.15;
}

.shopping-promo-intent-head h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.15;
  word-break: keep-all;
}

.shopping-promo-intent-head p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
  word-break: keep-all;
}

.shopping-promo-intent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

@media (max-width: 720px){.popular-page > .shopping-promo-intent > .shopping-promo-intent-grid {
    display: flex;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

.popular-page > .shopping-promo-intent > .shopping-promo-intent-grid > .shopping-promo-intent-card {
    flex: 0 0 min(86vw, 360px);
    scroll-snap-align: start;
  }}

.shopping-promo-intent-card {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  min-height: 184px;
  padding: 14px;
  background: var(--bg-base);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-xs);
  text-decoration: none;
}

.shopping-promo-intent-card.is-ending-soon {
  background: #fff2ef;
  border-color: var(--c-tomato);
}

.shopping-promo-intent-card.is-ending-week {
  background: #fff8dc;
  border-color: var(--c-yolk);
}

.shopping-promo-intent-card:hover,
.shopping-promo-intent-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.shopping-promo-intent-kicker {
  justify-self: start;
  padding: 4px 8px;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.15;
  word-break: keep-all;
}

.shopping-promo-intent-card.is-ending-week .shopping-promo-intent-kicker {
  background: var(--c-yolk);
  color: var(--ink);
}

.shopping-promo-intent-card.is-ending-soon .shopping-promo-intent-kicker {
  background: var(--c-tomato);
  color: var(--paper);
}

.shopping-promo-intent-card strong {
  font-size: 17px;
  font-weight: 950;
  line-height: 1.18;
  word-break: keep-all;
}

.shopping-promo-intent-card small {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
  word-break: keep-all;
}

.shopping-promo-intent-hint {
  padding: 7px 9px;
  background: rgba(45, 45, 45, 0.055);
  border: 2px dashed rgba(45, 45, 45, 0.38);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  word-break: keep-all;
}

.shopping-promo-intent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-width: 0;
}

.shopping-promo-intent-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 6px;
  background: var(--paper);
  border: 2px solid rgba(45, 45, 45, 0.28);
  border-radius: var(--r-sm);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  word-break: keep-all;
}

.shopping-promo-intent-cta {
  align-self: end;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 3px;
  word-break: keep-all;
}

.shopping-promo-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  border: var(--border-w) solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.shopping-promo-card.is-promo-ending-soon {
  border-color: var(--c-tomato);
  box-shadow: 0 0 0 3px rgba(237, 81, 72, 0.18), var(--shadow-sm);
}

.shopping-promo-card.is-promo-ending-week {
  border-color: var(--c-yolk);
}

.is-promo-hidden {
  display: none !important;
}

.shopping-promo-card:nth-child(2n) .shopping-promo-label { background: var(--c-mint); }

.shopping-promo-card:nth-child(3n) .shopping-promo-label { background: var(--c-sky); }

.shopping-promo-card:nth-child(4n) .shopping-promo-label { background: var(--c-grape); }

.shopping-promo-card:nth-child(5n) .shopping-promo-label { background: var(--c-tomato); color: var(--paper); }

.shopping-promo-card:hover,
.shopping-promo-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  outline: none;
}

.shopping-promo-image {
  display: block;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background: var(--bg-base);
  border-bottom: var(--border-w) solid var(--ink);
}

.shopping-promo-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shopping-promo-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto auto auto;
  gap: 7px;
  padding: 14px;
  min-width: 0;
}

.shopping-promo-label-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.shopping-promo-label {
  justify-self: start;
  padding: 4px 8px;
  background: var(--c-yolk);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  word-break: keep-all;
}

.shopping-promo-card.is-promo-ending-soon .shopping-promo-label {
  background: var(--c-tomato);
  color: var(--paper);
}

.shopping-promo-urgency {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.15;
  word-break: keep-all;
}

.shopping-promo-card.is-promo-ending-week .shopping-promo-urgency {
  background: var(--c-yolk);
  color: var(--ink);
}

.shopping-promo-title {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  word-break: keep-all;
}

.shopping-promo-desc {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
  word-break: keep-all;
}

.shopping-promo-meta {
  margin-top: 2px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  word-break: keep-all;
}

.shopping-promo-action-hint {
  padding: 7px 9px;
  background: var(--bg-base);
  border: 2px dashed rgba(45, 45, 45, 0.38);
  border-radius: var(--r-sm);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  word-break: keep-all;
}

.shopping-promo-card.is-promo-ending-soon .shopping-promo-action-hint {
  background: #fff2ef;
  border-color: rgba(237, 81, 72, 0.48);
}

.shopping-promo-card.is-promo-ending-week .shopping-promo-action-hint {
  background: #fff8dc;
  border-color: rgba(247, 195, 49, 0.6);
}

.shopping-promo-fit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-width: 0;
}

.shopping-promo-fit-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 7px;
  background: var(--paper);
  border: 2px solid rgba(45, 45, 45, 0.32);
  border-radius: var(--r-sm);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  word-break: keep-all;
}

.shopping-promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 34px;
  margin-top: 2px;
  padding: 8px 12px;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.15;
  word-break: keep-all;
}

.shopping-promo-card:hover .shopping-promo-cta,
.shopping-promo-card:focus-visible .shopping-promo-cta {
  background: var(--c-yolk);
  color: var(--ink);
}

.shopping-promo-disclosure {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.4;
  text-align: center;
  word-break: keep-all;
}

.shopping-promo-category-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 12px auto 0;
  max-width: 920px;
}

.shopping-promo-category-links > span {
  flex: 1 0 100%;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  word-break: keep-all;
}

.shopping-promo-category-links a {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 8px 10px;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-xs);
  text-align: center;
  text-decoration: none;
}

.shopping-promo-category-links a:hover,
.shopping-promo-category-links a:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.shopping-promo-category-links a > span:not(.shopping-promo-category-tags),
.shopping-promo-category-title {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  word-break: keep-all;
}

.shopping-promo-category-links a small {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.15;
  word-break: keep-all;
}

.shopping-promo-category-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  margin-top: 1px;
}

.shopping-promo-category-links a .shopping-promo-category-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 3px 6px;
  background: #FFF7D6;
  border: 1px solid rgba(45, 45, 45, 0.35);
  border-radius: var(--r-xs);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.shopping-promo-category-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 9px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-xs);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  line-height: 1.1;
  overflow-wrap: anywhere;
  transition: background .15s ease, color .15s ease;
}

.shopping-promo-category-links a:hover .shopping-promo-category-cta,
.shopping-promo-category-links a:focus-visible .shopping-promo-category-cta {
  background: var(--c-tomato);
  color: var(--ink);
}

.quiz-start-promo-inline {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 2px dashed var(--ink);
}

.quiz-start-promo-inline-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
  color: var(--ink);
  word-break: keep-all;
}

.quiz-start-promo-inline-kicker {
  padding: 4px 8px;
  background: var(--c-tomato);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

.quiz-start-promo-inline-copy strong {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.quiz-start-promo-inline-copy small {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.2;
}

.quiz-start-promo-inline-links {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 420px);
  margin-inline: auto;
  gap: 8px;
}

.quiz-start-promo-inline-links a {
  display: grid;
  gap: 2px;
  min-width: 0;
  min-height: 54px;
  align-content: center;
  padding: 8px 6px;
  color: var(--ink);
  text-decoration: none;
  background: #FFF7DE;
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  transition: transform .12s ease, box-shadow .12s ease;
}

.quiz-start-promo-inline-links a.is-featured {
  grid-column: 1;
  min-height: 66px;
  gap: 4px;
  align-content: center;
  background: var(--c-yolk);
  box-shadow: var(--shadow-xs);
}

.quiz-start-promo-inline-links a.is-featured.is-ending-soon {
  background: #FFF2EF;
}

.quiz-start-promo-inline-links a.is-featured.is-ending-week {
  background: #FFF8DC;
}

.quiz-start-promo-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--r-sm);
}

.quiz-start-promo-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quiz-start-promo-inline-links a:hover,
.quiz-start-promo-inline-links a:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.quiz-start-promo-inline-links span {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  word-break: keep-all;
}

.quiz-start-promo-inline-links small {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.15;
  word-break: keep-all;
}

.quiz-start-promo-fit-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
  min-width: 0;
}

.quiz-start-promo-fit-tags i {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 2px 5px;
  background: var(--paper);
  border: 1.5px solid rgba(45, 45, 45, 0.26);
  border-radius: var(--r-sm);
  color: var(--ink-soft);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.1;
  word-break: keep-all;
}

.quiz-start-promo-inline-links em {
  justify-self: center;
  margin-top: 3px;
  padding: 4px 8px;
  background: var(--ink);
  color: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  line-height: 1.1;
  word-break: keep-all;
}

.quiz-start-promo-inline-links a.is-featured:hover em,
.quiz-start-promo-inline-links a.is-featured:focus-visible em {
  background: var(--c-tomato);
  color: var(--paper);
}

.quiz-start-promo-disclosure {
  margin: -2px 0 0;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  word-break: keep-all;
}

@media (max-width: 520px){.quiz-start-promo-inline {
    margin-top: 18px;
    padding-top: 14px;
  }

.quiz-start-promo-inline-links {
    grid-template-columns: minmax(0, 1fr);
  }

.quiz-start-promo-inline-links a.is-featured {
    grid-column: 1;
  }}

.topic-active-promos,
.blog-active-promos,
.result-active-promos,
.quiz-active-promos,
.course-active-promos,
.hub-active-promos {
  max-width: 1100px;
  margin: 30px auto;
}

.topic-active-promos h2,
.blog-active-promos h2,
.result-active-promos h2,
.quiz-active-promos h2,
.course-active-promos h2,
.hub-active-promos h2 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  word-break: keep-all;
}

.topic-promo-grid,
.blog-promo-grid,
.result-promo-grid,
.quiz-promo-grid,
.course-promo-grid,
.hub-promo-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.result-inline-promos {
  max-width: 780px;
  margin: 18px auto 4px;
  padding: 16px 0 2px;
  border-top: 2px solid rgba(45, 45, 45, 0.14);
  border-bottom: 2px solid rgba(45, 45, 45, 0.14);
}

.result-inline-promos h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
  word-break: keep-all;
}

.result-inline-intent-promos .shopping-promo-intent {
  max-width: 780px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.result-inline-intent-promos .shopping-promo-intent-head {
  justify-items: start;
  text-align: left;
}

.result-inline-intent-promos .shopping-promo-intent-head > span {
  justify-self: start;
  font-size: 11px;
}

.result-inline-intent-promos .shopping-promo-intent-head h2 {
  font-size: 17px;
}

.result-inline-intent-promos .shopping-promo-intent-head p {
  font-size: 12px;
}

.result-inline-intent-promos .shopping-promo-intent-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-inline-intent-promos .shopping-promo-intent-card {
  min-height: 152px;
  padding: 12px;
  gap: 6px;
}

.result-inline-intent-promos .shopping-promo-intent-card strong {
  font-size: 15px;
}

.result-inline-intent-promos .shopping-promo-intent-card small,
.result-inline-intent-promos .shopping-promo-intent-hint {
  font-size: 12px;
}

.result-inline-promo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.result-inline-promo-grid .shopping-promo-card {
  border-width: 2px;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-xs);
}

.result-inline-promo-grid .shopping-promo-image {
  border-bottom-width: 2px;
}

.result-inline-promo-grid .shopping-promo-body {
  gap: 6px;
  padding: 12px;
}

.result-inline-promo-grid .shopping-promo-title {
  font-size: 15px;
}

.result-inline-promo-grid .shopping-promo-desc {
  font-size: 12px;
}

.result-inline-promo-grid .shopping-promo-cta {
  min-height: 31px;
  padding: 7px 10px;
  font-size: 12px;
}

@media (max-width: 620px){.result-inline-promos {
    margin-top: 16px;
  }

.result-inline-promo-grid {
    grid-template-columns: 1fr;
  }

.result-inline-intent-promos .shopping-promo-intent-grid {
    grid-template-columns: 1fr;
  }}

.smart-next-rail {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(360px, calc(100vw - 36px));
  z-index: 9990;
  opacity: 0;
  transform: translateY(28px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.smart-next-rail.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.smart-next-rail.is-mobile-sticky-suppressed {
  display: none !important;
}

.smart-next-card {
  display: grid;
  gap: 5px;
  padding: 14px 46px 14px 16px;
  background: var(--paper);
  color: var(--ink);
  border: var(--border-w) solid var(--ink);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.smart-next-card:hover,
.smart-next-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  outline: none;
}

.smart-next-rail-promo .smart-next-card {
  background: #FFF1EF;
}

.smart-next-kicker {
  width: fit-content;
  padding: 3px 8px;
  background: var(--c-mint);
  border: 2px solid var(--ink);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

.smart-next-rail-promo .smart-next-kicker {
  background: var(--c-tomato);
  color: var(--paper);
}

.smart-next-title {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  word-break: keep-all;
}

.smart-next-desc {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  word-break: keep-all;
}

.smart-next-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}

.smart-next-tags span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 22px;
  padding: 3px 7px;
  background: #FFF7D6;
  border: 1px solid var(--ink);
  border-radius: var(--r-xs);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.smart-next-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 2px 2px 0 0 var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.smart-next-close:hover,
.smart-next-close:focus-visible {
  background: var(--c-yolk);
  outline: none;
}

@media (max-width: 720px){.smart-next-rail {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

.smart-next-card {
    padding: 12px 44px 12px 14px;
  }

.smart-next-title {
    font-size: 15px;
  }}

.quiz-grid .simsim-ad-slot,
.new-quiz-grid .simsim-ad-slot,
.tests-grid .simsim-ad-slot,
.blog-result-grid .simsim-ad-slot,
.blog-cat-recco-grid .simsim-ad-slot,
.home-guide-grid .simsim-ad-slot,
.shopping-promo-grid .simsim-ad-slot {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 728px;
  margin: 10px auto !important;
}

.home-mobile-inline-ad-slot {
  display: none;
  max-width: 420px;
  min-height: 250px;
  margin: 12px auto 10px !important;
}

@media (max-width: 720px){.home-mobile-inline-ad-slot {
    display: block;
  }

.home-mobile-inline-ad-slot .simsim-static-ad-wrapper {
    border-width: 2px;
  }

.home-mobile-inline-ad-slot .simsim-static-ad-label,
  .home-mobile-inline-ad-slot .simsim-static-ad-wrapper p {
    font-size: 10px;
  }}

.shopping-promo-grid .shopping-promo-card-inline-ad {
  max-width: 420px;
  min-height: 250px;
  margin: 4px auto 10px !important;
}

.tests-grid .tests-inline-ad-slot {
  max-width: 420px;
  min-height: 250px;
  margin: 4px auto 10px !important;
}

.blog-list .blog-inline-ad-slot {
  width: 100%;
  max-width: 420px;
  min-height: 250px;
  margin: 4px auto 12px !important;
  align-self: center;
}

.blog-cat-section .blog-list .blog-inline-ad-slot {
  grid-column: 1 / -1;
}

@media (max-width: 600px){.blog-list .blog-inline-ad-slot {
    max-width: 336px;
    margin: 2px auto 10px !important;
  }}

.mobile-sticky-ad,
.mobile-sticky-ad.is-visible,
.desktop-sticky-ad,
.desktop-sticky-ad.is-visible {
  display: none !important;
}

.simsim-ad-slot + .clarity-section-row {
  margin: 64px auto;
}

@media (max-width: 520px){.simsim-ad-slot + .clarity-section-row {
    margin: 48px auto;
  }}

.simsim-static-ad-wrapper {
  width: min(100%, 420px);
  margin: 20px auto;
}

.simsim-static-ad-wrapper a {
  display: block;
  max-width: 100%;
}

.simsim-static-ad-wrapper img {
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.simsim-static-ad-label,
.simsim-static-ad-fit,
.simsim-static-ad-cta,
.simsim-static-ad-wrapper > p,
.desktop-sticky-promo-links,
.desktop-sticky-promo-disclosure {
  display: none !important;
}

.shopping-promo-card,
.shopping-promo-intent-card,
.home-return-promo-card,
.quiz-start-promo-inline-links a.is-featured,
.quiz-mid-promo-direct-card,
.quiz-question-promo-card,
.result-direct-promo-card {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none !important;
}

.quiz-mid-promo-direct-grid,
.result-direct-promos-grid {
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 420px);
  margin-inline: auto;
}

.shopping-promo-card:hover,
.shopping-promo-card:focus-visible,
.shopping-promo-intent-card:hover,
.shopping-promo-intent-card:focus-visible,
.home-return-promo-card:hover,
.home-return-promo-card:focus-visible,
.quiz-start-promo-inline-links a.is-featured:hover,
.quiz-start-promo-inline-links a.is-featured:focus-visible,
.quiz-mid-promo-direct-card:hover,
.quiz-mid-promo-direct-card:focus-visible,
.quiz-question-promo-card:hover,
.quiz-question-promo-card:focus-visible,
.result-direct-promo-card:hover,
.result-direct-promo-card:focus-visible {
  transform: none;
  box-shadow: none !important;
  opacity: 1;
}

.shopping-promo-image,
.home-return-promo-image,
.quiz-start-promo-image,
.quiz-mid-promo-image,
.quiz-question-promo-image,
.result-direct-promo-image {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.shopping-promo-body,
.shopping-promo-card > :not(.shopping-promo-image),
.shopping-promo-intent-card > :not(.shopping-promo-image),
.home-return-promo-card > :not(.home-return-promo-image),
.quiz-start-promo-inline-links a.is-featured > :not(.quiz-start-promo-image),
.quiz-mid-promo-direct-card > :not(.quiz-mid-promo-image),
.quiz-question-promo-card > :not(.quiz-question-promo-image),
.result-direct-promo-card > :not(.result-direct-promo-image) {
  display: none !important;
}

.home-shopping-picks,
.hub-active-promos,
.shopping-promo-intent,
.home-return-promos,
.quiz-start-promo-inline,
.quiz-mid-promo,
.quiz-question-ad-frame,
.result-direct-promos {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.quiz-start-ad-frame,
.quiz-mid-ad-frame,
.quiz-question-ad-frame,
.quiz-analyzing-ad-frame,
.quiz-result-ad-frame,
.worldcup-start-ad-frame,
.worldcup-mobile-match-ad-frame,
.worldcup-round-break-ad-frame,
.worldcup-result-ad-frame,
.worldcup-share-success-ad-host {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-shopping-picks-head,
.home-shopping-shortcuts,
.hub-active-promos > h2,
.hub-active-promos > .hub-active-promos-sub,
.hub-active-promos > .shopping-promo-category-links,
.shopping-promo-intent-head,
.home-return-promo-head,
.quiz-start-promo-inline-copy,
.quiz-mid-promo-head,
.quiz-mid-promo-links,
.result-direct-promos-head {
  display: none !important;
}

.home-return-promo-image,
.home-return-promo-image img {
  display: block;
  width: 100%;
  height: auto;
}

:root {
  --bg-base: #f7f7f4;
  --bg-grid: transparent;
  --ink: #202124;
  --ink-soft: #686a70;
  --paper: #ffffff;
  --c-yolk: #f6cf53;
  --c-tomato: #e86d68;
  --c-mint: #78c9ba;
  --c-sky: #78aee8;
  --c-grape: #aa8bd4;
  --border-w: 1px;
  --border-w-lg: 1px;
  --shadow-xs: 0 1px 2px rgba(32, 33, 36, 0.04);
  --shadow-sm: 0 4px 14px rgba(32, 33, 36, 0.05);
  --shadow-md: 0 8px 24px rgba(32, 33, 36, 0.07);
  --shadow-lg: 0 12px 34px rgba(32, 33, 36, 0.09);
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 18px;
  --line: #e4e4df;
  --surface-soft: #f1f1ed;
  --page-wide: 1040px;
  --page-reading: 720px;
}

body {
  background: var(--bg-base);
  background-image: none;
  line-height: 1.55;
}

.header {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(100%, 1120px);
}

.logo {
  gap: 7px;
}

.logo-icon {
  font-size: 24px;
}

.logo-text {
  font-size: 20px;
  letter-spacing: -0.4px;
}

.nav-links {
  gap: 2px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  color: #3e4045;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: var(--surface-soft);
  outline: none;
}

.nav-links > li:nth-child(6),
.nav-links > li:nth-child(10) {
  display: none;
}

.hamburger {
  padding: 6px 9px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: none;
  font-size: 20px;
}

section.home-promo-strip:not(.home-promo-strip-compact) {
  display: none;
}

.home-promo-strip {
  margin-top: 18px;
}

.home-promo-strip-compact .home-promo-strip-inner {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-promo-strip-compact .home-promo-strip-inner > strong {
  display: none;
}

.home-promo-strip-compact .home-promo-strip-links {
  gap: 8px;
}

.home-promo-strip-compact .home-promo-strip-links a {
  min-height: 62px;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: none;
}

.home-promo-strip-compact .home-promo-strip-links a:hover,
.home-promo-strip-compact .home-promo-strip-links a:focus-visible {
  transform: translateY(-1px);
  border-color: #c9c9c2;
  box-shadow: var(--shadow-xs);
}

.home-promo-strip-title {
  font-size: 13px;
}

.home-promo-strip-links small {
  color: var(--ink-soft);
  font-weight: 550;
}

.quiz-card,
.hub-card,
.new-quiz-card,
.home-guide-card,
.home-latest-card,
.topic-curation-card,
.topic-index-section,
.topic-index-card,
.course-grid-section,
.course-steps,
.course-related,
.course-faq,
.course-more,
.course-link-panel,
.course-card,
.course-step-card,
.course-link-card,
.course-mini-link,
.tests-route-card,
.tests-card,
.tests-faq-item,
.popular-rank-card,
.popular-course-card,
.popular-faq-item,
.quiz-start,
.quiz-about,
.quiz-faq,
.quiz-next-card,
.quiz-popular,
.result-blog-cross,
.result-blog-card,
.result-faq,
.page-card,
.news-card,
.site-map-section,
.site-map-list a,
.site-map-details,
.smart-next-card {
  border-color: var(--line);
  box-shadow: none;
}

.quiz-card,
.quiz-card[data-category="psychology"],
.quiz-card[data-category="quiz"],
.quiz-card[data-category="fun"],
.quiz-card[data-category="ability"],
.hub-card,
.tests-route-card,
.tests-card,
.popular-rank-card,
.popular-course-card,
.course-card,
.topic-index-card,
.new-quiz-card,
.home-guide-card,
.home-latest-card,
.result-blog-card,
.quiz-next-card,
.quiz-popular-card,
.site-map-list a {
  background: var(--paper);
}

.quiz-card:hover,
.hub-card:hover,
.new-quiz-card:hover,
.home-guide-card:hover,
.home-latest-card:hover,
.topic-curation-card:hover,
.topic-index-card:hover,
.course-card:hover,
.course-step-card:hover,
.course-link-card:hover,
.course-mini-link:hover,
.tests-route-card:hover,
.tests-route-card:focus-visible,
.tests-card:hover,
.tests-card:focus-visible,
.popular-rank-card:hover,
.popular-rank-card:focus-visible,
.popular-course-card:hover,
.popular-course-card:focus-visible,
.quiz-next-card:hover,
.result-blog-card:hover,
.quiz-popular-card:hover,
.site-map-list a:hover,
.news-card:hover {
  transform: translateY(-1px);
  background: var(--paper);
  border-color: #c9c9c2;
  box-shadow: var(--shadow-xs);
}

.shopping-promo-search-cluster .popular-course-card:nth-of-type(n+5),
.shopping-promo-search-cluster .tests-route-card:nth-of-type(n+5),
#seasonal-shopping .popular-course-card:nth-of-type(n+5),
#seasonal-shopping .tests-route-card:nth-of-type(n+5) {
  display: none;
}

.course-card-kicker,
.quiz-next-kicker {
  background: var(--surface-soft);
  border: 0;
  box-shadow: none;
  color: var(--ink-soft);
}

.quiz-next-tests,
.quiz-about,
.quiz-faq,
.quiz-popular,
.result-blog-cross,
.result-faq {
  margin-top: 28px;
  margin-bottom: 28px;
}

.quiz-about,
.quiz-faq,
.result-blog-cross,
.result-faq {
  padding: 20px 0;
  background: transparent;
  border-width: 1px 0 0;
  border-radius: 0;
}

.quiz-next-card,
.result-blog-card,
.quiz-popular-card {
  border: 1px solid var(--line);
  border-radius: 12px;
}

.quiz-next-emoji {
  background: var(--surface-soft);
  border: 0;
}

.result-blog-cross + .result-blog-cross {
  display: none;
}

.smart-next-rail-promo {
  display: none !important;
}

.smart-next-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.smart-next-kicker {
  background: var(--surface-soft);
  border: 0;
}

.smart-next-close {
  border: 1px solid var(--line);
  box-shadow: none;
}

.footer {
  margin-top: 48px;
  padding: 30px 20px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-topics {
  display: none;
}

.footer-links {
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-links a {
  color: #55575c;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-copy {
  color: #6b6d72;
}

@media (max-width: 980px){.nav-links {
    background: var(--paper);
    border-color: var(--line);
    box-shadow: var(--shadow-md);
  }

.nav-links a {
    border-color: var(--line);
  }}

@media (max-width: 720px){.header-inner {
    padding: 0 16px;
  }

.home-promo-strip {
    padding: 0 16px;
  }

.home-promo-strip-compact .home-promo-strip-links {
    grid-template-columns: 1fr;
  }

.home-promo-strip-compact .home-promo-strip-links a {
    min-height: 54px;
  }

.smart-next-rail {
    display: none;
  }}

.nav-links > li,
.nav-links > li:nth-child(3),
.nav-links > li:nth-child(6),
.nav-links > li:nth-child(7),
.nav-links > li:nth-child(8),
.nav-links > li:nth-child(9),
.nav-links > li:nth-child(10) {
  display: list-item;
}

.nav-links > li:nth-child(2) {
  display: none;
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: #fff3bd;
}

.shopping-promo-search-cluster,
.popular-page > .popular-section[id$="-shopping"]:not([id$="-shopping-intents"]):not([id$="-shopping-posts"]):not([id$="-shopping-checklists"]),
.result-page > .course-bridge,
.result-page > .result-topic-cross,
.result-page > .result-promo-bridge,
.result-page > .result-shopping-bridge,
.blog-article > .blog-topic-bridge:not(.blog-course-bridge) {
  display: none;
}

.clarity-collapsed-item[hidden] {
  display: none !important;
}

.clarity-collapsed-section[hidden] {
  display: none !important;
}

.clarity-more-row {
  display: flex;
  justify-content: center;
  margin: 14px 0 6px;
}

.clarity-more-button {
  min-height: 42px;
  padding: 9px 16px;
  color: #4f5156;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: none;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
}

.clarity-more-button:hover,
.clarity-more-button:focus-visible {
  color: var(--ink);
  background: #fff8dc;
  border-color: #d9c77f;
  outline: none;
}

.clarity-section-row {
  display: flex;
  justify-content: center;
  margin: 22px 0;
}

.clarity-section-button {
  min-height: 44px;
  padding: 10px 18px;
  color: #4f5156;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: none;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
}

.clarity-section-button::after {
  content: ' ↓';
  color: #8a8c91;
}

.clarity-section-button[aria-expanded="true"]::after {
  content: ' ↑';
}

.clarity-section-button:hover,
.clarity-section-button:focus-visible {
  color: var(--ink);
  background: var(--paper);
  border-color: #c9c9c2;
  outline: none;
}

.result-next-steps {
  margin: 22px 0 30px;
  padding: 20px 22px;
  background: #fffaf0;
  border: 1px solid #eee0bd;
  border-radius: var(--r-lg);
  box-shadow: none;
}

.result-next-steps h2 {
  margin-bottom: 12px;
  font-size: 19px;
}

.result-next-steps ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 14px;
}

@media (max-width: 980px){.nav-links > li {
    display: list-item;
  }

.nav-links > li:nth-child(2) {
    display: none;
  }

.nav-links a[aria-current="page"] {
    padding-left: 12px;
  }}

@media (max-width: 720px){.result-next-steps {
    padding: 18px;
  }}

.blog-list-item,
.blog-topic-bridge,
.blog-topic-card,
.blog-result-hub,
.blog-result-card {
  border-color: var(--line);
  box-shadow: none;
}

.blog-list-item:hover,
.blog-topic-card:hover,
.blog-result-card:hover {
  transform: translateY(-1px);
  background: var(--paper);
  border-color: #c9c9c2;
  box-shadow: var(--shadow-xs);
}

.blog-topic-bridge,
.blog-result-hub {
  border-width: 1px;
  border-radius: var(--r-lg);
}

.blog-topic-card,
.blog-result-card {
  border-width: 1px;
  background: var(--paper);
}

.clarity-more-row,
.clarity-section-row {
  position: relative;
  z-index: 1;
}

.clarity-more-button,
.clarity-section-button {
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.clarity-more-button[aria-expanded="true"],
.clarity-section-button[aria-expanded="true"] {
  color: var(--ink);
  background: #fff8dc;
  border-color: #d9c77f;
}

@media (max-width: 720px){.clarity-section-row {
    margin: 18px 0;
  }}

.nav-links > li:nth-child(n) {
  display: list-item;
}

.nav-links a {
  white-space: nowrap;
}

.topic-hero h1,
.tests-hero h1,
.popular-hero h1,
.blog-list-title,
.result-article-title {
  text-wrap: balance;
}

.home-promo-strip-compact {
  max-width: 820px;
}

.home-promo-strip-compact .home-promo-strip-links a {
  min-height: 68px;
  padding: 12px 16px;
}

.home-promo-strip-compact .home-promo-strip-title {
  font-size: 14px;
}

.clarity-more-button,
.clarity-section-button {
  letter-spacing: -0.01em;
}

@media (max-width: 720px){.nav-links > li:nth-child(n) {
    display: list-item;
  }

.home-promo-strip-compact .home-promo-strip-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

.home-promo-strip-compact .home-promo-strip-links a {
    min-height: 58px;
    align-items: center;
    padding: 8px 6px;
    text-align: center;
  }

.home-promo-strip-compact .home-promo-strip-title {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.3;
    overflow-wrap: normal;
    text-overflow: clip;
    white-space: normal;
    word-break: keep-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

.home-promo-strip-compact .home-promo-strip-links small {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
  }}

.filter-btn,
.blog-cat-chip,
.quiz-card-tag,
.tests-card-badge,
.course-card-kicker,
.quiz-next-kicker {
  min-height: 30px;
  padding: 5px 9px;
  color: #5c5e63;
  background: var(--surface-soft);
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: none;
  font-size: 12px;
  font-weight: 750;
}

.result-share-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: none;
}

.result-share-btn,
.result-actions :is(a, button) {
  border-width: 1px;
  border-radius: 11px;
  box-shadow: none;
}

.shopping-compass-ad-shell {
  width: min(420px, 100%);
  margin: 64px auto 0;
  padding: 0;
}

.shopping-compass-ad-shell .simsim-ad-slot {
  width: 100%;
  max-width: 420px;
  min-height: 0;
  margin: 0 auto;
}

.shopping-compass-ad-shell .shopping-promo-disclosure {
  width: 100%;
  margin: 0 0 10px;
  padding: 0;
  color: var(--ink-soft, #686a70);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.shopping-compass-page .shopping-promo-search-cluster .popular-course-card:nth-of-type(n) {
  display: flex;
}

.shopping-compass-page > .shopping-promo-search-cluster {
  display: block;
}

.shopping-compass-body .smart-next-rail {
  display: none !important;
}

.nav-links > li.nav-install-item {
  display: none;
}

@media (max-width: 980px){.nav-links > li.nav-install-item[data-pwa-install-ready="true"] {
    display: block;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid var(--line, rgba(0, 0, 0, 0.08));
  }

.nav-install-button,
  .nav-install-dismiss {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 9px;
    color: var(--ink);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
  }

.nav-install-button {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    text-align: left;
    background: var(--surface-soft, #f1f1ed);
  }

.nav-install-button:hover,
  .nav-install-button:focus-visible,
  .nav-install-dismiss:hover,
  .nav-install-dismiss:focus-visible {
    color: var(--ink);
    background: #e9e9e3;
    outline: 3px solid var(--c-tomato, #ff6b6b);
    outline-offset: 2px;
  }

.nav-install-button:disabled {
    cursor: wait;
    opacity: 0.68;
  }

.nav-install-icon {
    display: inline-grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 8px;
    background: var(--paper, #fff);
    font-size: 19px;
    line-height: 1;
  }

.nav-install-help {
    margin-top: 7px;
    padding: 10px;
    border: 1px solid var(--line, #e4e4df);
    border-radius: 9px;
    background: var(--paper, #fff);
  }

.nav-install-help-copy {
    margin: 0 0 8px;
    color: #55575c;
    font-size: 13px;
    line-height: 1.5;
  }

.nav-install-dismiss {
    padding: 9px 12px;
    background: transparent;
    border: 1px solid var(--line, #e4e4df);
    font-size: 13px;
  }

.nav-install-status {
    display: block;
    color: #55575c;
    font-size: 13px;
    line-height: 1.5;
  }

.nav-install-status:empty {
    display: none;
  }}

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

:where(
    .analyzing-emoji,
    .analyzing-fill,
    .quiz-card:active::after,
    .quiz-card:hover .quiz-card-emoji,
    .option-btn.selected,
    .option-btn.correct,
    .option-btn.wrong,
    .btn-start,
    .question-card,
    .realtime-area.go,
    .quiz-header-emoji,
    .hero h1,
    .confetti-particle,
    .skeleton,
    .candidate-card.selected-win,
    .candidate-card.selected-lose,
    .result-crown,
    .mbti-container .result-section,
    .mbti-container .loading-spinner
  ) {
    animation: none !important;
  }

:where(
    .progress-wrap .progress-fill,
    .worldcup-progress-bar .progress-fill,
    .btn-mid-continue,
    .quiz-card,
    .option-btn,
    .filter-btn,
    .realtime-area,
    .color-cell,
    .btn-start,
    .btn-share,
    .btn-save-image,
    .btn-retry,
    .btn-home,
    .result-runway-action,
    .skip-link,
    .toast,
    .simsim-toast,
    .candidate-card,
    .mbti-container .sub-score-bar-fill,
    .mbti-container .loading-progress-fill,
    .mbti-container .mbti-select,
    .mbti-container .rel-chip,
    .mbti-container .btn-submit-compat,
    .mbti-container .btn-new-test,
    .worldcup-matchup-container .candidate-img-wrapper img,
    .round-card-content
  ) {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

:where(
    .btn-mid-continue,
    .quiz-card,
    .option-btn,
    .filter-btn,
    .color-cell,
    .btn-start,
    .btn-share,
    .btn-save-image,
    .btn-retry,
    .btn-home,
    .result-runway-action,
    .candidate-card
  ):is(:hover, :focus-visible, :active) {
    transform: none !important;
  }

:where(
    .mbti-container .mbti-select:focus,
    .mbti-container .rel-chip:hover,
    .mbti-container .rel-chip.selected,
    .mbti-container .btn-submit-compat:hover,
    .mbti-container .btn-submit-compat:active,
    .mbti-container .btn-new-test:hover,
    .candidate-card:hover .candidate-img-wrapper img,
    .round-option-card input[type="radio"]:checked + .round-card-content
  ) {
    transform: none !important;
  }}
