:root {
  --brand: #ffc20e;
  --brand-strong: #e5a900;
  --brand-soft: #fff7d6;
  --brand-active: #d49b00;
  --ink: #111827;
  --ink-soft: #334155;
  --muted: #64748b;
  --surface: #ffffff;
  --surface-soft: #f7f8f6;
  --surface-warm: #fffaf0;
  --line: #e5e7eb;
  --line-strong: #cbd5e1;
  --success-soft: #ecfdf5;
  --success: #166534;
  --focus: #1d4ed8;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  --shell: 1180px;
  --reading: 760px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
[type="submit"] {
  cursor: pointer;
}

:focus-visible {
  border-radius: 4px;
  outline: 3px solid #60a5fa;
  outline-offset: 3px;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

::selection {
  background: var(--brand);
  color: #111;
}

.shell {
  width: min(100% - 40px, var(--shell));
  margin-inline: auto;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.screen-reader-text:focus,
.skip-link:focus {
  position: fixed !important;
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  padding: 10px 14px !important;
  margin: 0 !important;
  border-radius: 8px;
  background: #fff;
  color: #111;
  box-shadow: var(--shadow);
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #7a5700;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.button-row,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--ink);
}

.button--primary:hover {
  border-color: var(--brand-strong);
  background: var(--brand-strong);
  color: var(--ink);
}

.button--primary:active {
  border-color: var(--brand-active);
  background: var(--brand-active);
  color: var(--ink);
  transform: translateY(0);
}

.button--primary:disabled,
.button--primary[aria-disabled="true"] {
  border-color: #ead17a;
  background: #f4dc8e;
  color: #5b4700;
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.button--secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--ink);
}

.button--secondary:hover {
  border-color: var(--ink);
  background: var(--surface-soft);
}

.button--light {
  background: #fff;
  color: var(--ink);
}

.text-link,
.card-link,
.inline-links a {
  color: #714d00;
  font-weight: 750;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.card-link .icon {
  transition: transform 160ms ease;
}

.card-link:hover .icon {
  transform: translateX(3px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 124px;
  height: auto;
}

.brand__section {
  padding-left: 11px;
  border-left: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.primary-nav {
  margin-left: 2px;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav__list a {
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav__list a:hover,
.primary-nav__list .current-menu-item > a {
  color: #7a5700;
}

.nav-abilities {
  position: relative;
}

.nav-abilities summary {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--ink-soft);
  font-size: 0.91rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.nav-abilities--hub > details > summary {
  min-height: 40px;
  padding: 6px 1px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #8a6500;
}

.nav-abilities--hub > details[open] > summary,
.nav-abilities--hub > details > summary:hover {
  background: transparent;
  color: #7a5700;
}

.nav-summary__label {
  display: block;
  line-height: 1.2;
}

.nav-summary__label small {
  display: none;
}

.nav-abilities--hub > details > summary .icon {
  transform: rotate(90deg);
}

.nav-abilities summary::-webkit-details-marker,
.mobile-abilities summary::-webkit-details-marker {
  display: none;
}

.nav-abilities summary .icon,
.mobile-abilities summary .icon {
  width: 14px;
  height: 14px;
  transition: transform 160ms ease;
}

.nav-abilities details[open] summary .icon,
.mobile-abilities[open] summary .icon {
  transform: rotate(90deg);
}

.nav-abilities__panel {
  position: absolute;
  z-index: 120;
  top: calc(100% + 18px);
  left: 0;
  display: grid;
  width: min(360px, 82vw);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: none;
}

.nav-abilities__panel::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 19px;
  content: "";
}

.primary-nav__list .nav-abilities__panel a {
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 9px;
}

.primary-nav__list .nav-abilities__panel a:hover {
  background: var(--surface-soft);
  text-decoration: none;
}

.nav-abilities__panel strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.nav-abilities__panel small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.4;
}

.nav-abilities__panel--hub {
  grid-template-columns: minmax(0, 252px) minmax(0, 1fr);
  align-items: stretch;
  gap: 24px;
  width: min(594px, calc(100vw - 40px));
  padding: 20px;
  border-color: #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.13);
}

.primary-nav__list .nav-abilities__panel .abilities-menu__visual {
  display: block;
  height: 212px;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 15px;
  background: var(--brand);
}

.primary-nav__list .nav-abilities__panel .abilities-menu__visual:hover {
  background: var(--brand);
}

.abilities-menu__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
  transition: transform 220ms ease;
}

.abilities-menu__visual:hover img {
  transform: scale(1.025);
}

.abilities-menu__links {
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 2px 0 2px 22px;
  border-left: 1px solid #eef0f3;
}

.primary-nav__list .nav-abilities__panel .ability-menu-link {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 520;
  line-height: 1.25;
  transition: color 160ms ease, transform 160ms ease;
}

.primary-nav__list .nav-abilities__panel .ability-menu-link:hover {
  background: transparent;
  color: #805f0d;
  transform: translateX(2px);
}

.ability-menu-link--overview {
  font-weight: 800 !important;
}

.ability-menu-link--overview .icon {
  width: 16px;
  height: 16px;
}

.ability-menu-link--tracker em {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: #33a9db;
  color: #fff;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.02em;
}

@media (hover: hover) and (pointer: fine) {
  .nav-abilities--hub > details:hover > .nav-abilities__panel--hub {
    display: grid;
  }
}

.nav-categories__panel {
  left: 50%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(460px, 86vw);
  max-height: min(620px, 72vh);
  overflow: auto;
  transform: translateX(-50%);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.site-header__login {
  color: var(--ink);
  font-size: 0.92rem;
  text-decoration: none;
}

.site-header__desktop-action {
  min-height: 42px;
  padding: 9px 16px;
}

.site-header__dashboard {
  border-color: #d6dce5;
  background: #fff;
}

.site-header__tracker {
  box-shadow: 0 8px 18px rgba(177, 126, 0, 0.16);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.menu-toggle .icon {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  position: absolute;
  z-index: 99;
  top: 100%;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-nav__inner {
  display: grid;
  gap: 2px;
  padding-block: 16px 24px;
}

.mobile-nav__inner > a {
  min-height: 44px;
  padding: 10px 6px;
  border-bottom: 1px solid #f1f5f9;
  color: var(--ink-soft);
  font-weight: 650;
  text-decoration: none;
}

.mobile-abilities {
  border-bottom: 1px solid #f1f5f9;
}

.mobile-abilities summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6px;
  color: var(--ink-soft);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.mobile-abilities summary > span {
  display: block;
}

.mobile-abilities summary small {
  display: none;
}

.mobile-abilities > div {
  display: grid;
  padding: 2px 6px 12px;
}

.mobile-abilities a {
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.mobile-abilities .mobile-ability-overview {
  display: grid;
  gap: 2px;
  padding: 10px 11px;
  margin: 4px 0 8px;
  border: 1px solid #f0d36a;
  border-radius: 10px;
  background: #fff9e3;
  color: var(--ink);
}

.mobile-ability-overview strong {
  color: var(--ink);
}

.mobile-abilities .mobile-ability-overview small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.mobile-ability-heading {
  margin: 10px 0 2px;
  color: #805f0d;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mobile-abilities .mobile-ability-parent {
  color: var(--ink);
  font-weight: 750;
}

.mobile-abilities .mobile-ability-child {
  padding-left: 0;
  border-left: 0;
}

.mobile-ability-child em {
  display: inline-flex;
  padding: 2px 6px;
  margin-left: 7px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--ink);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-nav__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding-top: 14px;
}

/* Hero */
.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 194, 14, 0.18), transparent 26rem),
    linear-gradient(180deg, #fff 0%, #fffdf7 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
  align-items: center;
  gap: clamp(40px, 7vw, 96px);
  padding-block: clamp(70px, 10vw, 124px);
}

.hero h1,
.article-header h1,
.archive-header h1,
.author-profile h1,
.policy-page__header h1,
.not-found h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero__lede {
  max-width: 730px;
  margin: 24px 0 30px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.hero-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  max-width: 760px;
  padding: 7px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.hero-search__icon {
  padding-left: 10px;
  color: var(--muted);
}

.hero-search input {
  min-width: 0;
  height: 44px;
  border: 0;
  outline: 0;
  background: transparent;
}

.hero-search button {
  min-height: 44px;
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-weight: 750;
}

.hero .button-row {
  margin-top: 18px;
}

.hero__news-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-principles {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-principles__quote {
  margin: 0 0 24px;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 820;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.hero-principles ul {
  display: grid;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-principles li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--ink-soft);
}

.hero-principles li .icon {
  margin-top: 3px;
  color: #7a5700;
}

/* Sections */
.section {
  padding-block: clamp(64px, 8vw, 104px);
}

.section--soft {
  background: var(--surface-soft);
}

.section--bordered {
  border-block: 1px solid var(--line);
}

.section--ink {
  background: #111827;
  color: #fff;
}

.section--trust {
  background: var(--surface-warm);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--split {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading--split > p {
  max-width: 430px;
}

.section-heading h2,
.trust-panel h2,
.news-review h2,
.article-section h2,
.people-section > h2,
.related-guides h2,
.comments-area > h2,
.author-page__articles > .section-heading h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 820;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.section-heading > p,
.section-heading--split > p,
.trust-panel__content > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.path-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.path-card:hover {
  border-color: #d6ac36;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.path-card__icon,
.goal-card__icon,
.empty-state__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 13px;
  background: var(--brand-soft);
  color: #725000;
}

.path-card__icon .icon,
.goal-card__icon .icon,
.empty-state__icon .icon {
  width: 25px;
  height: 25px;
}

.path-card h3,
.tool-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
}

.path-card p,
.tool-card p {
  margin: 12px 0 24px;
  color: var(--muted);
}

.path-card .card-link {
  margin-top: auto;
}

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

.goal-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 122px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.goal-card:hover {
  border-color: var(--brand-strong);
  background: #fffdf7;
}

.goal-card__icon {
  width: 42px;
  height: 42px;
  margin: 0;
}

.goal-card strong,
.goal-card small {
  display: block;
}

.goal-card strong {
  line-height: 1.25;
}

.goal-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

/* Guide cards */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 22px;
}

.pillar-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  align-items: start;
  gap: 22px;
}

.pillar-showcase--single {
  grid-template-columns: minmax(0, 720px);
}

.pillar-showcase__featured {
  min-width: 0;
}

.pillar-showcase__featured .guide-card--featured {
  border-color: #dfc45f;
  box-shadow: 0 16px 38px rgba(45, 35, 4, 0.09);
}

.pillar-carousel {
  display: grid;
  min-width: 0;
  gap: 10px;
}

.pillar-carousel__toolbar {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pillar-carousel__toolbar p,
.pillar-carousel__status {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.pillar-carousel__toolbar strong {
  color: var(--ink);
}

.pillar-carousel__controls {
  display: flex;
  gap: 8px;
}

.pillar-carousel__button {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.pillar-carousel__button:hover:not(:disabled) {
  border-color: var(--brand);
  background: var(--brand);
  transform: translateY(-1px);
}

.pillar-carousel__button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.pillar-carousel__viewport {
  max-height: 658px;
  min-width: 0;
  padding: 2px 5px 2px 2px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scrollbar-color: #d9b83f transparent;
  scrollbar-width: thin;
}

.pillar-carousel__viewport:focus-visible {
  outline: 3px solid rgba(255, 194, 14, 0.38);
  outline-offset: 4px;
}

.pillar-carousel__track {
  display: grid;
  gap: 14px;
}

.pillar-carousel__slide {
  min-width: 0;
  min-height: 154px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.pillar-carousel__slide .guide-card--compact {
  display: grid;
  min-height: 154px;
  grid-template-columns: 146px minmax(0, 1fr);
}

.pillar-carousel__slide .guide-card__media {
  height: 100%;
  min-height: 152px;
  aspect-ratio: auto;
}

.pillar-carousel__slide .guide-card__body {
  min-width: 0;
  padding: 13px 15px;
}

.pillar-carousel__slide .guide-card__labels {
  gap: 6px;
}

.pillar-carousel__slide .guide-card__labels .eyebrow {
  max-width: 100%;
  overflow: hidden;
  font-size: 0.62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pillar-carousel__slide .level-badge {
  min-height: 22px;
  padding: 2px 7px;
  font-size: 0.63rem;
}

.pillar-carousel__slide .guide-card__title {
  display: -webkit-box;
  margin-top: 7px;
  overflow: hidden;
  font-size: clamp(0.94rem, 1.25vw, 1.08rem);
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.pillar-carousel__slide .guide-card__summary {
  display: none;
}

.pillar-carousel__slide .guide-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}

.pillar-carousel__slide .content-meta {
  font-size: 0.68rem;
}

.pillar-carousel__slide .content-meta span:nth-child(2) {
  display: none;
}

.pillar-carousel__slide .card-link {
  flex: 0 0 auto;
  font-size: 0.76rem;
}

.pillar-carousel__status {
  text-align: right;
}

.guide-card {
  display: flex;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.guide-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #eef1ed;
}

.guide-card--featured .guide-card__media {
  aspect-ratio: 16 / 9;
}

.guide-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.guide-card:hover .guide-card__image {
  transform: scale(1.025);
}

.guide-card__placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #8a6a16;
  background:
    linear-gradient(135deg, rgba(255, 194, 14, 0.18), transparent 55%),
    #f5f6f2;
}

.guide-card__placeholder .icon {
  width: 48px;
  height: 48px;
}

.guide-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.guide-card--featured .guide-card__body {
  padding: 24px;
}

.guide-card__labels,
.article-header__labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
}

.guide-card__labels .eyebrow,
.article-header__labels .eyebrow {
  margin: 0;
  text-decoration: none;
}

.level-badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8fafc;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 750;
}

.guide-card__title {
  min-width: 0;
  margin: 12px 0 0;
  font-size: clamp(1.16rem, 2vw, 1.45rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.guide-card--featured .guide-card__title {
  font-size: clamp(1.28rem, 1.7vw, 1.65rem);
}

.guide-card__title a {
  display: block;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.author-page__articles .guide-card__title {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  line-height: 1.3;
}

.guide-card__title a:hover {
  color: #775200;
}

.guide-card__summary {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.guide-card__footer {
  display: grid;
  gap: 17px;
  margin-top: auto;
}

.content-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
  color: var(--muted);
  font-size: 0.76rem;
}

.content-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.content-meta .icon {
  width: 15px;
  height: 15px;
}

/* News review and tools */
.news-review {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.section--ink .eyebrow {
  color: #ffdf7b;
}

.news-review__intro > p:not(.eyebrow) {
  margin: 18px 0 26px;
  color: #cbd5e1;
}

.review-cadence {
  display: grid;
  gap: 12px;
}

.review-cadence a {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 4px 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-decoration: none;
}

.review-cadence a:hover {
  border-color: var(--brand);
  background: rgba(255, 194, 14, 0.09);
}

.review-cadence span {
  grid-row: span 2;
  color: #ffdf7b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-cadence strong {
  line-height: 1.3;
}

.review-cadence small {
  color: #cbd5e1;
}

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

.tool-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tool-card:hover {
  border-color: #d8b948;
  box-shadow: 0 14px 32px rgba(45, 35, 4, 0.09);
  color: var(--ink);
  transform: translateY(-3px);
}

.tool-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.tool-card__number {
  color: #8a6500;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.tool-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: rgba(255, 194, 14, 0.18);
  color: #6f5000;
}

.tool-card__icon .icon {
  width: 21px;
  height: 21px;
}

.tool-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
}

.tool-card .card-link .icon {
  width: 16px;
  height: 16px;
}

.trust-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: clamp(36px, 7vw, 90px);
  padding: clamp(32px, 5vw, 60px);
  border: 1px solid #eadba8;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.65);
}

.trust-panel__content > p {
  margin-top: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.trust-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.trust-actions a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 16px;
  align-items: center;
  padding: 15px 17px;
  border: 1px solid #e5d59d;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.trust-actions a:hover {
  border-color: #caa52a;
  background: #fff;
  color: var(--ink);
  transform: translateX(2px);
}

.trust-actions strong,
.trust-actions small {
  min-width: 0;
}

.trust-actions small {
  grid-column: 1;
  color: var(--muted);
  font-size: 0.78rem;
}

.trust-actions .icon {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 18px;
  height: 18px;
}

/* Breadcrumbs and archive */
.breadcrumbs {
  padding-block: 26px 20px;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
}

.breadcrumbs a {
  color: var(--ink-soft);
}

.breadcrumbs span[aria-current="page"] {
  max-width: 420px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumbs .icon {
  width: 14px;
  height: 14px;
}

.archive-shell,
.author-page {
  padding-bottom: clamp(70px, 9vw, 120px);
}

.archive-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
  padding: clamp(42px, 7vw, 80px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 194, 14, 0.22), transparent 22rem),
    var(--surface-warm);
}

.archive-header h1,
.author-profile h1,
.policy-page__header h1,
.not-found h1 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

.archive-header__description,
.archive-header > div > p {
  max-width: 720px;
  margin-top: 17px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.archive-header__description p {
  margin: 0;
}

.archive-header__facts {
  display: grid;
  min-width: 190px;
  padding-left: 30px;
  border-left: 1px solid #dfd3aa;
}

.archive-header__facts strong {
  font-size: 2.5rem;
  line-height: 1;
}

.archive-header__facts span {
  font-weight: 750;
}

.archive-header__facts small {
  max-width: 170px;
  margin-top: 8px;
  color: var(--muted);
}

.archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 34px 24px;
}

.archive-toolbar > p {
  margin: 0;
  color: var(--muted);
}

.archive-search {
  display: grid;
  grid-template-columns: auto minmax(140px, 240px) auto;
  align-items: center;
  gap: 8px;
  padding: 5px 6px 5px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
}

.archive-search input,
.archive-search button {
  min-height: 38px;
  border: 0;
  background: transparent;
}

.archive-search input {
  min-width: 0;
  outline: 0;
}

.archive-search button {
  padding-inline: 12px;
  border-radius: 8px;
  background: var(--surface-soft);
  font-weight: 750;
}

.pagination {
  margin-top: 44px;
}

.pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.pagination .current {
  border-color: var(--brand);
  background: var(--brand);
}

.empty-state {
  max-width: 620px;
  margin: 50px auto;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: center;
}

.empty-state__icon {
  margin-inline: auto;
}

.empty-state h2 {
  margin: 0;
}

.empty-state p {
  margin: 10px 0 22px;
  color: var(--muted);
}

.search-page__form {
  max-width: 780px;
  margin: 34px 0;
}

.search-page__form > label,
.comment-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 750;
}

.search-page__form > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 7px 7px 7px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
}

.search-page__form input {
  min-width: 0;
  height: 46px;
  border: 0;
  outline: 0;
}

/* Single article */
.single-article__header-shell {
  max-width: 1120px;
}

.article-header {
  max-width: 960px;
  padding: clamp(32px, 6vw, 70px) 0 38px;
}

.article-header h1 {
  margin-top: 16px;
  font-size: clamp(2.3rem, 5.2vw, 4.6rem);
}

.article-header__dek {
  max-width: 830px;
  margin: 22px 0 28px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.person-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.person-chip img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.person-chip small,
.person-chip strong {
  display: block;
  line-height: 1.25;
}

.person-chip small {
  color: var(--muted);
  font-size: 0.72rem;
}

.person-chip strong {
  margin-top: 3px;
  font-size: 0.88rem;
}

.article-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  color: var(--muted);
  font-size: 0.76rem;
}

.article-hero-image {
  overflow: hidden;
  margin: 0 0 54px;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
}

.article-hero-image img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
}

.article-hero-image figcaption {
  padding: 10px 16px;
  color: var(--muted);
  font-size: 0.8rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--reading)) minmax(220px, 280px);
  align-items: start;
  justify-content: center;
  gap: clamp(48px, 7vw, 90px);
}

.article-main {
  min-width: 0;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 120px);
  overflow: auto;
}

.desktop-toc {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.desktop-toc > p {
  margin: 0 0 12px;
  font-weight: 800;
}

.desktop-toc ol,
.mobile-toc ol {
  display: grid;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.desktop-toc a,
.mobile-toc a {
  display: block;
  padding: 7px 9px;
  border-left: 2px solid transparent;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
  text-decoration: none;
}

.desktop-toc a:hover,
.desktop-toc a[aria-current="true"],
.mobile-toc a:hover {
  border-left-color: var(--brand-strong);
  color: var(--ink);
  background: #fff;
}

.toc-dashboard-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  margin-top: 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.toc-dashboard-card .eyebrow {
  margin: 0;
  color: #f6c83f;
  font-size: 0.68rem;
}

.toc-dashboard-card strong {
  font-size: 0.92rem;
  line-height: 1.45;
}

.toc-dashboard-card .button {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  font-size: 0.78rem;
  text-align: center;
}

.toc-dashboard-card small {
  color: #cbd5e1;
  font-size: 0.68rem;
  line-height: 1.45;
}

.toc-dashboard-card--mobile {
  display: none;
  margin: -12px 0 28px;
}

.toc-level-3 a {
  padding-left: 20px;
}

.toc-level-4 a {
  padding-left: 32px;
}

.mobile-toc {
  display: none;
  margin: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mobile-toc summary {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
}

.mobile-toc ol {
  padding: 4px 10px 14px;
}

.takeaways {
  margin-bottom: 38px;
  padding: 26px;
  border: 1px solid #ecd98f;
  border-radius: var(--radius);
  background: var(--surface-warm);
}

.takeaways h2 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.takeaways ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.takeaways li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
}

.takeaways li .icon {
  margin-top: 4px;
  color: #745200;
}

.article-content {
  color: #273244;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.04rem, 1.3vw, 1.16rem);
  line-height: 1.82;
  overflow-wrap: anywhere;
}

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

.article-content p,
.article-content ul,
.article-content ol {
  margin: 0 0 1.35em;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  scroll-margin-top: 100px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 820;
  letter-spacing: -0.025em;
  line-height: 1.24;
}

.article-content h2 {
  margin: 2.2em 0 0.75em;
  padding-top: 0.25em;
  border-top: 1px solid var(--line);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
}

.article-content h3 {
  margin: 1.8em 0 0.65em;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.article-content h4 {
  margin: 1.6em 0 0.5em;
  font-size: 1.15rem;
}

.article-content a {
  color: #714d00;
  font-weight: 650;
}

.article-content li {
  margin-bottom: 0.45em;
  padding-left: 0.2em;
}

.article-content li::marker {
  color: #9a6d00;
  font-weight: 700;
}

.article-content blockquote {
  margin: 2em 0;
  padding: 20px 24px;
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--surface-warm);
  color: var(--ink-soft);
  font-size: 1.05em;
}

.article-content img {
  height: auto;
  margin-block: 2em;
  border-radius: var(--radius);
}

.article-content figure {
  margin: 2.2em 0;
}

.article-content figcaption,
.article-content .wp-caption-text {
  margin-top: 8px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.article-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 2em 0;
  overflow-x: auto;
  border-collapse: collapse;
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 0.9rem;
  -webkit-overflow-scrolling: touch;
}

.article-content th,
.article-content td {
  min-width: 140px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-content th {
  background: var(--surface-soft);
  color: var(--ink);
  font-weight: 800;
}

.article-content code {
  padding: 0.15em 0.35em;
  border-radius: 5px;
  background: #eef2f7;
  font-size: 0.85em;
}

.article-content pre {
  max-width: 100%;
  padding: 20px;
  overflow: auto;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.article-content pre code {
  padding: 0;
  background: none;
}

.article-content iframe,
.article-content video {
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
}

.article-cta,
.methodology-note,
.financial-disclaimer,
.people-section,
.faq-section {
  margin-top: 54px;
}

.article-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px;
  border: 1px solid #e6cb6e;
  border-radius: var(--radius-lg);
  background: var(--surface-warm);
}

.article-cta h2 {
  margin: 0;
  font-size: 1.55rem;
}

.article-cta p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.article-section h2,
.people-section > h2 {
  margin-bottom: 20px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 16px;
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  font-size: 1.4rem;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > div {
  padding: 0 0 18px;
  color: var(--ink-soft);
}

.methodology-note {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.methodology-note p {
  color: var(--ink-soft);
}

.financial-disclaimer {
  padding: 22px 24px;
  border-left: 4px solid #94a3b8;
  background: #f8fafc;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.financial-disclaimer h2 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 1rem;
}

.financial-disclaimer p {
  margin: 0 0 8px;
}

.financial-disclaimer a {
  color: var(--ink);
  font-weight: 750;
}

.people-grid {
  display: grid;
  gap: 14px;
}

.person-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.person-card > img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
}

.person-card h3,
.person-card p {
  margin: 0;
}

.person-card h3 a {
  text-decoration: none;
}

.person-card__role {
  color: var(--ink-soft);
  font-weight: 700;
}

.person-card > div > p:not(.eyebrow):not(.person-card__role) {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.9rem;
}

.person-card .inline-links {
  margin-top: 12px;
  font-size: 0.86rem;
}

.related-guides {
  margin-top: clamp(70px, 9vw, 120px);
}

/* Author and policy pages */
.author-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  max-width: 980px;
  padding: clamp(32px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-warm);
}

.author-profile > img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.author-profile__role {
  margin: 10px 0;
  color: #715000;
  font-weight: 780;
}

.author-profile__bio {
  max-width: 700px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.author-profile__detail {
  margin-top: 14px;
}

.author-profile__detail p {
  margin: 3px 0 0;
  color: var(--muted);
}

.author-profile .button {
  margin-top: 20px;
}

.author-page__articles {
  margin-top: 70px;
}

.policy-page {
  max-width: 920px;
  padding-bottom: 100px;
}

.policy-page__header {
  padding: 48px 0 38px;
  border-bottom: 1px solid var(--line);
}

.policy-page__header > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.policy-page .article-content {
  max-width: var(--reading);
  margin-top: 44px;
}

.policy-page--trust {
  max-width: 1040px;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.policy-meta span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.policy-switcher {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.policy-switcher a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 750;
  text-align: center;
  text-decoration: none;
}

.policy-switcher a:hover,
.policy-switcher a[aria-current="page"] {
  border-color: var(--brand-strong);
  background: var(--brand-soft);
  color: #684900;
}

.policy-content {
  margin-inline: auto;
}

.policy-content .policy-callout {
  margin: 0 0 32px;
  padding: 22px 24px;
  border: 1px solid #e7c55f;
  border-radius: var(--radius);
  background: #fff9e7;
  color: var(--ink-soft);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
}

.policy-content .policy-callout--critical {
  border-left: 5px solid #d58b00;
  background: #fff5d6;
}

.policy-content .policy-callout strong {
  color: var(--ink);
}

.policy-content .policy-toc {
  margin: 0 0 38px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  font-family: Inter, ui-sans-serif, sans-serif;
}

.policy-content .policy-toc strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
}

.policy-content .policy-toc ol {
  columns: 2;
  column-gap: 36px;
  margin: 0;
  padding-left: 20px;
}

.policy-content .policy-toc li {
  break-inside: avoid;
  margin-bottom: 7px;
}

.policy-content .policy-toc a {
  font-size: 0.88rem;
  text-decoration: none;
}

.policy-content .policy-definition {
  margin: 24px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--surface-soft);
  font-family: Inter, ui-sans-serif, sans-serif;
  font-size: 0.92rem;
}

.policy-content .policy-definition p:last-child,
.policy-content .policy-callout p:last-child {
  margin-bottom: 0;
}

.policy-content .policy-checklist {
  padding: 0;
  list-style: none;
}

.policy-content .policy-checklist li {
  position: relative;
  padding-left: 30px;
}

.policy-content .policy-checklist li::before {
  position: absolute;
  top: 0;
  left: 2px;
  color: #8a6200;
  content: "✓";
  font-family: Inter, ui-sans-serif, sans-serif;
  font-weight: 900;
}

.policy-owner {
  display: flex;
  max-width: var(--reading);
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  margin: 56px auto 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.policy-owner strong {
  color: var(--ink);
}

.policy-owner a {
  margin-left: auto;
  color: #714d00;
  font-weight: 700;
}

.not-found {
  max-width: 820px;
  padding-block: clamp(90px, 14vw, 180px);
}

.not-found > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Comments */
.comments-shell {
  max-width: var(--reading);
  padding-block: 70px 100px;
}

.comments-area__note {
  color: var(--muted);
  font-size: 0.9rem;
}

.comment-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 50px;
  list-style: none;
}

.comment-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comment-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-card__avatar {
  border-radius: 50%;
}

.comment-card__header strong,
.comment-card__header time {
  display: block;
}

.comment-card__header time {
  color: var(--muted);
  font-size: 0.75rem;
}

.comment-card__body {
  margin-top: 14px;
  color: var(--ink-soft);
}

.comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.comment-form > p {
  margin: 0;
}

.comment-form .comment-notes,
.comment-form .logged-in-as,
.comment-form-comment,
.comment-form-cookies-consent,
.forvest-comment-captcha,
.forvest-comment-config-error,
.comment-form-status,
.comment-form .form-submit {
  grid-column: 1 / -1;
}

.comment-form input:not([type="checkbox"]),
.comment-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.comment-form-cookies-consent label {
  margin: 0;
  font-weight: 500;
}

.forvest-comment-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.forvest-comment-captcha {
  min-height: 65px;
}

.forvest-comment-config-error,
.comment-form-status {
  padding: 11px 13px;
  margin: 0;
  border-radius: 9px;
  background: #fff7d6;
  color: #604500;
  font-size: 0.86rem;
}

.comment-form-status:empty {
  display: none;
}

.comment-form-status--error,
.forvest-comment-config-error {
  background: #fee2e2;
  color: #7f1d1d;
}

/* Newsletter */
.newsletter-signup {
  padding-block: clamp(54px, 7vw, 84px);
  border-top: 1px solid #eadba8;
  background:
    radial-gradient(circle at 8% 15%, rgba(255, 194, 14, 0.2), transparent 24rem),
    var(--surface-warm);
}

.newsletter-signup__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
}

.newsletter-signup__copy h2 {
  max-width: 600px;
  margin: 8px 0 12px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

.newsletter-signup__copy > p:last-child {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
}

.newsletter-form {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid #e5d59d;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(45, 35, 4, 0.07);
}

.newsletter-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  min-width: 0;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
}

.newsletter-form .button {
  min-height: 48px;
  border: 0;
  cursor: pointer;
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  line-height: 1.5;
}

.newsletter-consent input {
  flex: 0 0 auto;
  margin-top: 3px;
}

.newsletter-consent a {
  color: #714d00;
}

.newsletter-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.newsletter-message {
  padding: 12px 14px;
  margin: 0 0 12px;
  border-radius: 9px;
  font-size: 0.82rem;
}

.newsletter-message--success {
  background: #dcfce7;
  color: #14532d;
}

.newsletter-message--error {
  background: #fee2e2;
  color: #7f1d1d;
}

/* Footer */
.site-footer {
  border-top: 1px solid #eadba8;
  background: var(--surface-warm);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) repeat(4, minmax(130px, 1fr));
  gap: clamp(24px, 3vw, 48px);
  padding-block: 70px 52px;
}

.brand--footer img {
  width: 136px;
}

.site-footer__brand > p {
  max-width: 310px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0;
}

.site-footer__actions .button {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.78rem;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e1ad00;
  border-radius: 50%;
  background: var(--brand);
  color: #111827;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.site-footer__social a:hover {
  border-color: #c69200;
  background: #ffd14f;
  color: #111827;
  transform: translateY(-2px);
}

.site-footer__social .social-icon {
  width: 18px;
  height: 18px;
}

.site-footer nav h2 {
  margin: 0 0 14px;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer nav ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer nav a {
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.site-footer__disclaimer {
  padding-block: 18px;
  border-top: 1px solid #eadba8;
  border-bottom: 1px solid #eadba8;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.site-footer__disclaimer p {
  max-width: 960px;
  margin: 0;
}

.popular-trust-scores {
  padding-block: 28px;
  border-bottom: 1px solid #eadba8;
}

.popular-trust-scores h2 {
  margin: 0 0 16px;
  font-size: 0.9rem;
  font-weight: 800;
}

.popular-trust-scores__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.popular-trust-scores__grid a {
  display: flex;
  min-width: 0;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #eadba8;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
}

.popular-trust-scores__grid a:hover {
  border-color: #c69200;
  background: #fff;
  color: var(--ink);
}

.popular-trust-scores__grid img {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.popular-trust-scores__grid span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px 30px;
  color: var(--muted);
  font-size: 0.74rem;
}

.site-footer__bottom p {
  margin: 0;
}

/* Guided learning paths */
.learning-page {
  background: #fff;
}

.learning-hero {
  overflow: hidden;
  padding: 32px 0 0;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 194, 14, 0.18), transparent 24rem),
    var(--ink);
  color: #fff;
}

.breadcrumbs--light a,
.breadcrumbs--light span {
  color: #cbd5e1;
}

.breadcrumbs--light .icon {
  color: #64748b;
}

.learning-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(38px, 7vw, 90px);
  padding: clamp(44px, 7vw, 82px) 0 clamp(40px, 6vw, 66px);
}

.learning-hero .eyebrow {
  color: var(--brand);
}

.learning-hero h1 {
  max-width: 820px;
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.65rem);
  font-weight: 850;
  letter-spacing: -0.048em;
  line-height: 1.02;
}

.learning-hero__lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: #cbd5e1;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.68;
}

.learning-hero__principle {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.learning-hero__principle-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border-radius: 12px;
  background: var(--brand);
  color: var(--ink);
}

.learning-hero__principle strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.learning-hero__principle p {
  margin: 7px 0 0;
  color: #cbd5e1;
  font-size: 0.88rem;
  line-height: 1.6;
}

.learning-path-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.learning-path-nav a {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 12px;
  padding: 14px clamp(12px, 2.5vw, 30px);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  color: #e2e8f0;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.learning-path-nav a:last-child {
  border-right: 0;
}

.learning-path-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.learning-path-nav span {
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 850;
}

.learning-stages {
  padding-block: 24px 76px;
}

.learning-stage {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.7fr);
  gap: clamp(36px, 6vw, 80px);
  padding-block: clamp(62px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}

.learning-stage:last-child {
  border-bottom: 0;
}

.learning-stage__intro {
  align-self: start;
}

.learning-stage__number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
}

.learning-stage__intro h2 {
  margin: 9px 0 16px;
  color: var(--ink);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.learning-stage__intro > p:not(.eyebrow) {
  margin: 0;
  color: var(--ink-soft);
}

.learning-stage__outcome {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 16px;
  margin-top: 26px;
  border: 1px solid #ecd98e;
  border-radius: 12px;
  background: var(--surface-warm);
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.5;
}

.learning-stage__outcome > .icon {
  margin-top: 2px;
  color: #805f0d;
}

.learning-stage__outcome span {
  display: grid;
  gap: 3px;
}

.learning-stage__outcome strong {
  color: var(--ink);
}

.learning-article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.learning-article-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

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

.learning-article-card__media {
  display: block;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  background: var(--surface-soft);
  text-decoration: none;
}

.learning-article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.learning-article-card__media > span {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #a27a17;
}

.learning-article-card__media .icon {
  width: 34px;
  height: 34px;
}

.learning-article-card__body {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 20px;
}

.learning-article-card__meta,
.learning-article-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.learning-article-card__meta > span {
  color: #805f0d;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.learning-article-card__meta a {
  text-align: right;
}

.learning-article-card h3 {
  margin: 12px 0 9px;
  color: var(--ink);
  font-size: 1.04rem;
  letter-spacing: -0.018em;
  line-height: 1.35;
}

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

.learning-article-card__body > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.learning-article-card__footer {
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.learning-article-card__footer span,
.learning-article-card__footer a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.learning-article-card__footer a {
  color: #805f0d;
  font-size: 0.72rem;
  text-decoration: none;
}

.learning-article-card__footer .icon {
  width: 14px;
  height: 14px;
}

.learning-planned {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
}

.learning-planned > strong {
  margin-right: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.learning-planned > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px dashed var(--line-strong);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.learning-planned small {
  color: #8a6a16;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.learning-next-step__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 40px;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid #e7d38a;
  border-radius: var(--radius-lg);
  background: #fff;
}

.learning-next-step h2 {
  margin: 7px 0 10px;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.learning-next-step p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
}

.learning-next-step .button-row {
  justify-content: flex-end;
  margin: 0;
}

@media (max-width: 920px) {
  .learning-hero__grid,
  .learning-stage,
  .learning-next-step__panel {
    grid-template-columns: 1fr;
  }

  .pillar-showcase {
    grid-template-columns: 1fr;
  }

  .pillar-showcase__featured {
    max-width: 760px;
  }

  .pillar-carousel__viewport {
    max-height: none;
    padding: 2px 2px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
  }

  .pillar-carousel__track {
    display: flex;
    width: max-content;
  }

  .pillar-carousel__slide {
    width: min(44vw, 360px);
    min-height: 0;
    flex: 0 0 min(44vw, 360px);
  }

  .pillar-carousel__slide .guide-card--compact {
    display: flex;
    min-height: 100%;
  }

  .pillar-carousel__slide .guide-card__media {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .pillar-carousel__slide .guide-card__body {
    padding: 16px;
  }

  .pillar-carousel__slide .guide-card__title {
    font-size: 1rem;
  }

  .learning-hero__principle {
    max-width: 620px;
  }

  .learning-stage {
    gap: 36px;
  }

  .learning-next-step .button-row {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .learning-path-nav,
  .learning-article-list {
    grid-template-columns: 1fr;
  }

  .learning-path-nav a {
    min-height: 52px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .learning-path-nav a:last-child {
    border-bottom: 0;
  }

  .learning-stages {
    padding-bottom: 42px;
  }

  .learning-stage {
    padding-block: 54px;
  }

  .learning-next-step__panel {
    padding: 26px 20px;
  }
}

@media (max-width: 1180px) {
  .primary-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

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

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

  .article-layout {
    grid-template-columns: minmax(0, var(--reading));
  }

  .article-sidebar {
    display: none;
  }

  .mobile-toc {
    display: block;
  }

  .toc-dashboard-card--mobile {
    display: grid;
  }

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

  .site-footer__brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 800px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .site-header__inner {
    min-height: 64px;
  }

  .site-header__login,
  .site-header__desktop-action {
    display: none;
  }

  .hero__grid,
  .news-review,
  .trust-panel,
  .archive-header,
  .author-profile,
  .newsletter-signup__inner {
    grid-template-columns: 1fr;
  }

  .newsletter-form__row {
    grid-template-columns: 1fr;
  }

  .newsletter-form .button {
    width: 100%;
  }

  .hero__grid {
    gap: 32px;
    padding-block: 56px 70px;
  }

  .hero h1,
  .article-header h1 {
    letter-spacing: -0.035em;
  }

  .section-heading--split {
    display: block;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .archive-header {
    align-items: start;
    gap: 28px;
    padding: 30px;
  }

  .archive-header__facts {
    padding: 20px 0 0;
    border-top: 1px solid #dfd3aa;
    border-left: 0;
  }

  .archive-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .archive-search {
    grid-template-columns: auto 1fr auto;
  }

  .article-hero-image {
    margin-bottom: 36px;
    border-radius: var(--radius);
  }

  .article-cta {
    grid-template-columns: 1fr;
  }

  .author-profile > img {
    width: 112px;
    height: 112px;
  }

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

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .pillar-carousel__slide {
    width: min(84vw, 340px);
    flex-basis: min(84vw, 340px);
  }

  .pillar-carousel__toolbar {
    align-items: flex-end;
  }

  .pillar-carousel__status {
    text-align: left;
  }
}

@media (max-width: 590px) {
  .tool-card {
    min-height: 300px;
    padding: 20px;
  }

  .tool-card__top {
    margin-bottom: 18px;
  }

  .tool-card p {
    margin: 10px 0 16px;
  }

  .brand img {
    width: 108px;
  }

  .brand__section {
    display: none;
  }

  .hero-search,
  .search-page__form > div {
    grid-template-columns: auto 1fr;
  }

  .hero-search button,
  .search-page__form button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .button-row .button {
    width: 100%;
  }

  .path-grid,
  .goal-grid,
  .guide-grid,
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .goal-card {
    grid-template-columns: auto 1fr;
  }

  .goal-card > .icon {
    display: none;
  }

  .review-cadence a {
    grid-template-columns: 1fr;
  }

  .review-cadence span {
    grid-row: auto;
  }

  .article-byline {
    align-items: flex-start;
    flex-direction: column;
  }

  .person-card {
    grid-template-columns: 1fr;
  }

  .comment-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .comment-form > p {
    grid-column: 1;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .popular-trust-scores__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-switcher {
    grid-template-columns: 1fr;
  }

  .policy-content .policy-toc ol {
    columns: 1;
  }

  .policy-owner {
    align-items: flex-start;
    flex-direction: column;
  }

  .policy-owner a {
    margin-left: 0;
  }
}

.evidence-chart {
  margin: 34px 0;
}

.evidence-chart__canvas {
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.evidence-chart figcaption,
.chart-status {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .article-sidebar,
  .mobile-toc,
  .article-cta,
  .newsletter-signup,
  .comments-shell,
  .related-guides {
    display: none !important;
  }

  body {
    color: #000;
  }

  .article-layout {
    display: block;
  }

  .article-content a {
    color: #000;
  }
}
