.guide-hub-hero,
.guide-article-hero {
  position: relative;
  overflow: hidden;
  padding: 160px 0 92px;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(37, 99, 235, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(14, 165, 233, 0.07), transparent 60%),
    linear-gradient(180deg, #fff, #f8fafc);
}

.guide-hub-grid,
.guide-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.guide-hub-hero h1,
.guide-article-hero h1 {
  max-width: 14ch;
  margin: 0;
  color: var(--ink);
  font: 800 clamp(2.2rem, 5.5vw, 3.8rem)/1.04 var(--display);
  letter-spacing: -0.035em;
}

.guide-hub-hero p:not(.eyebrow),
.guide-lead {
  max-width: 62ch;
  margin: 24px 0 0;
  color: var(--gray-600);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.guide-map {
  position: relative;
  width: min(360px, 80vw);
  aspect-ratio: 1;
  margin: 0 auto;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.94) 0 24%, rgba(219,234,254,.52) 25% 48%, rgba(224,242,254,.24) 49% 66%, transparent 67%);
  box-shadow: 0 30px 90px rgba(37, 99, 235, 0.16);
}

.map-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--royal-600), var(--sky-500));
  color: #fff;
  font: 800 2.5rem/1 var(--display);
  transform: translate(-50%, -50%) rotate(-5deg);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.3);
}

.guide-map i {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--royal-600);
  box-shadow: 0 5px 16px rgba(37,99,235,.25);
  transform: translate(-50%, -50%);
}

.guide-map i:nth-of-type(1) { top: 8%; left: 50%; }
.guide-map i:nth-of-type(2) { top: 20%; left: 80%; }
.guide-map i:nth-of-type(3) { top: 50%; left: 92%; }
.guide-map i:nth-of-type(4) { top: 80%; left: 80%; }
.guide-map i:nth-of-type(5) { top: 92%; left: 50%; }
.guide-map i:nth-of-type(6) { top: 80%; left: 20%; }
.guide-map i:nth-of-type(7) { top: 50%; left: 8%; }
.guide-map i:nth-of-type(8) { top: 20%; left: 20%; }

.guide-overview {
  position: relative;
  width: min(390px, 82vw);
  min-height: 360px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(37, 99, 235, .14);
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 45%, rgba(219, 234, 254, .8), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(239, 246, 255, .76));
  box-shadow: 0 30px 90px rgba(37, 99, 235, .15);
}

.guide-overview::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(37, 99, 235, .18);
  border-radius: 32px;
  pointer-events: none;
}

.guide-overview-count {
  position: relative;
  z-index: 1;
  width: 144px;
  height: 144px;
  display: grid;
  place-content: center;
  border-radius: 40px;
  background: linear-gradient(135deg, var(--royal-600), var(--sky-500));
  color: #fff;
  text-align: center;
  transform: rotate(-4deg);
  box-shadow: 0 22px 54px rgba(37, 99, 235, .3);
}

.guide-overview-count strong,
.guide-overview-count span { display: block; transform: rotate(4deg); }
.guide-overview-count strong { font: 800 3.4rem/.9 var(--display); }
.guide-overview-count span { margin-top: 9px; font: 700 13px/1 var(--body); }

.guide-overview-paths {
  position: absolute;
  inset: 20px;
}

.guide-overview-paths span {
  position: absolute;
  z-index: 2;
  min-width: 108px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(37, 99, 235, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font: 700 12px/1 var(--display);
  box-shadow: var(--shadow-sm);
}

.guide-overview-paths span:nth-child(1) { top: 2px; left: 50%; transform: translateX(-50%); }
.guide-overview-paths span:nth-child(2) { top: 50%; right: -5px; transform: translateY(-50%); }
.guide-overview-paths span:nth-child(3) { bottom: 2px; left: 50%; transform: translateX(-50%); }
.guide-overview-paths span:nth-child(4) { top: 50%; left: -5px; transform: translateY(-50%); }
.guide-overview-paths svg { width: 18px; height: 18px; fill: none; stroke: var(--royal-600); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.guide-explorer {
  margin-top: 82px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--gray-200);
  border-radius: 32px;
  background: linear-gradient(145deg, #fff, #f8fafc);
  box-shadow: var(--shadow-lg);
}

.guide-explorer-heading { max-width: 720px; margin-bottom: 32px; }
.guide-explorer-heading h2 { margin: 0; font-size: clamp(1.9rem, 4vw, 3rem); letter-spacing: -.035em; }
.guide-explorer-heading > p:last-child { margin: 16px 0 0; color: var(--gray-500); line-height: 1.7; }
.guide-explorer-goals { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; align-items: start; }

.guide-explorer-goal {
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.guide-explorer-goal:hover,
.guide-explorer-goal[open] { border-color: var(--royal-300); box-shadow: var(--shadow-md); }
.guide-explorer-goal summary { display: grid; grid-template-columns: auto 1fr; gap: 14px; padding: 20px; cursor: pointer; list-style: none; }
.guide-explorer-goal summary::-webkit-details-marker { display: none; }
.guide-explorer-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: var(--royal-50); color: var(--royal-600); }
.guide-explorer-goal:nth-child(2) .guide-explorer-icon { background: #f3e8ff; color: #7c3aed; }
.guide-explorer-goal:nth-child(3) .guide-explorer-icon { background: #ecfdf5; color: #047857; }
.guide-explorer-goal:nth-child(4) .guide-explorer-icon { background: #fff7ed; color: #c2410c; }
.guide-explorer-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.guide-explorer-summary strong,
.guide-explorer-summary small { display: block; }
.guide-explorer-summary strong { color: var(--ink); font: 700 17px/1.3 var(--display); }
.guide-explorer-summary small { margin-top: 7px; color: var(--gray-500); font-size: 13px; line-height: 1.55; }
.guide-explorer-action { grid-column: 2; display: inline-flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 4px; color: var(--royal-600); font-size: 13px; font-weight: 700; }
.guide-explorer-action svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .2s ease; }
.guide-explorer-goal[open] .guide-explorer-action svg { transform: rotate(180deg); }
.guide-explorer-links { margin: 0; padding: 0 14px 14px; list-style: none; }
.guide-explorer-link { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: center; gap: 12px; padding: 14px; border-top: 1px solid var(--gray-100); color: inherit; text-decoration: none; }
.guide-explorer-link:hover { border-radius: 12px; background: var(--royal-50); }
.guide-explorer-link-copy strong,
.guide-explorer-link-copy small { display: block; }
.guide-explorer-link-copy strong { color: var(--ink); font: 700 14px/1.35 var(--display); }
.guide-explorer-link-copy small { margin-top: 4px; color: var(--gray-500); font-size: 13px; line-height: 1.5; }
.guide-explorer-link > span:not(.guide-explorer-link-copy) { color: var(--gray-500); font-size: 12px; white-space: nowrap; }
.guide-explorer-link > svg { width: 18px; height: 18px; fill: none; stroke: var(--royal-600); stroke-width: 2; }
.guide-explorer-goal summary:focus-visible,
.guide-explorer-link:focus-visible { outline: 3px solid rgba(37, 99, 235, .3); outline-offset: -3px; }

.guide-library {
  padding: 88px 0 112px;
}

.library-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.library-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.035em;
}

.library-heading > p {
  margin: 0;
  color: var(--gray-500);
  font-weight: 700;
}

.guide-controls {
  margin-bottom: 42px;
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.guide-search > span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font: 700 14px/1.4 var(--display);
}

.guide-search > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  background: var(--gray-50);
  color: var(--gray-500);
}

.guide-search input {
  width: 100%;
  min-height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: 500 16px/1.4 var(--body);
}

.guide-search > div:focus-within {
  border-color: var(--royal-600);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .2);
}

.guide-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.guide-filters button {
  min-height: 40px;
  padding: 8px 15px;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: #fff;
  color: var(--gray-600);
  font: 600 13px/1 var(--body);
  cursor: pointer;
  transition: .2s ease;
}

.guide-filters button:hover,
.guide-filters button.active {
  border-color: var(--royal-600);
  background: var(--royal-50);
  color: var(--royal-600);
  transform: translateY(-1px);
}

.guide-filters button:focus-visible,
.guide-card > a:focus-visible,
.related-card:focus-visible,
.article-checklist input:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .35);
  outline-offset: 3px;
}

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

.guide-card[hidden] { display: none; }

.guide-card {
  min-width: 0;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.guide-card:hover {
  border-color: var(--royal-300);
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.guide-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.guide-card-visual { padding: 18px 18px 0; }
.guide-card-visual svg { width: 100%; display: block; }
.guide-card:hover .guide-card-illustration { transform: scale(1.025); }
.guide-card-illustration { transition: transform .25s ease; }
.guide-card-body { flex: 1; display: flex; flex-direction: column; padding: 24px; }

.guide-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--royal-600);
  font: 700 12px/1.4 var(--display);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.guide-card h2 {
  margin: 14px 0 10px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -.02em;
}

.guide-card p {
  margin: 0 0 22px;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.65;
}

.guide-card-body > strong {
  margin-top: auto;
  color: var(--ink);
  font-size: 14px;
}

.guide-empty {
  padding: 64px 24px;
  border: 1px dashed var(--gray-300);
  border-radius: 24px;
  text-align: center;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--gray-500);
  font-size: 13px;
}

.breadcrumbs a { color: var(--gray-500); }
.breadcrumbs a:hover { color: var(--royal-600); }
.guide-hero-image { min-width: 0; }
.guide-illustration { width: 100%; display: block; }

.guide-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 790px) minmax(220px, 280px);
  justify-content: center;
  align-items: start;
  gap: clamp(40px, 7vw, 92px);
  padding-top: 80px;
  padding-bottom: 112px;
}

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

/* Quiet accent block, deliberately NOT another gradient card: the article
   already has the infographic figure and the CTA card carrying that look. */
.article-start {
  display: grid;
  gap: 8px;
  margin: 0 0 36px;
  padding: 20px 24px;
  border-left: 4px solid var(--royal-600);
  border-radius: 0 16px 16px 0;
  background: var(--royal-50);
}

.article-start p { margin: 0; color: var(--gray-700); font-size: 16px; line-height: 1.65; }
.article-start p.eyebrow { margin: 0; }
.article-start strong { color: var(--ink); }
.article-start > a { justify-self: start; color: var(--royal-600); font-size: 14px; font-weight: 700; }

.article-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 48px;
  padding: 26px 28px;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, var(--royal-50));
  box-shadow: var(--shadow-md);
}

.article-cta > div { flex: 1 1 300px; min-width: 0; }
.article-cta strong { display: block; color: var(--ink); font: 700 1.15rem/1.3 var(--display); }
.article-cta p { margin: 6px 0 0; color: var(--gray-600); font-size: 14px; line-height: 1.6; }
.article-cta .button { flex: 0 0 auto; }

.article-intro {
  margin-bottom: 52px;
  padding-left: 24px;
  border-left: 5px solid var(--royal-600);
}

.article-intro p {
  margin: 0 0 18px;
  color: var(--gray-600);
  font-size: 18px;
  line-height: 1.75;
}

.guide-infographic {
  margin: 0 0 56px;
  padding: 34px;
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  background: linear-gradient(145deg, #fff, var(--royal-50));
  box-shadow: var(--shadow-lg);
}

.infographic-heading h2 { margin: 0; font-size: clamp(1.65rem, 3vw, 2.2rem); }
.guide-infographic > svg { width: 100%; margin: 24px 0 8px; overflow: visible; }

.infographic-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.infographic-steps li {
  padding: 16px;
  border: 1px solid rgba(37, 99, 235, .12);
  border-radius: 16px;
  background: rgba(255,255,255,.84);
}

.infographic-steps strong,
.infographic-steps span { display: block; }
.infographic-steps strong { color: var(--ink); font: 700 15px/1.3 var(--display); }
.infographic-steps span { margin-top: 7px; color: var(--gray-500); font-size: 13px; line-height: 1.55; }
.guide-infographic figcaption { margin-top: 20px; color: var(--gray-500); font-size: 13px; line-height: 1.6; }

.guide-sections { margin-bottom: 56px; }

.guide-section {
  border-top: 1px solid var(--gray-200);
}

.guide-section:last-child { border-bottom: 1px solid var(--gray-200); }

.guide-section summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  color: var(--ink);
  font: 700 clamp(1.2rem, 2.5vw, 1.5rem)/1.3 var(--display);
  cursor: pointer;
  list-style: none;
}

.guide-section summary::-webkit-details-marker { display: none; }
.guide-section summary h3 { margin: 0; font: inherit; letter-spacing: inherit; color: inherit; }
.guide-section summary:focus-visible { outline: 3px solid rgba(37, 99, 235, .3); outline-offset: -3px; border-radius: 8px; }
.guide-section summary svg { flex: 0 0 auto; transition: transform .2s ease; }
.guide-section[open] summary svg { transform: rotate(180deg); }
.guide-section-body { padding: 0 4px 28px; }

.guide-section-body p,
.guide-section-body li {
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.75;
}

.guide-section-body p { margin: 0 0 18px; }
.guide-section-body ul { padding-left: 22px; }

/* Anchored sections must clear the fixed header when jumped to. */
.guide-infographic,
.article-practical,
.article-checklist,
.source-list { scroll-margin-top: 96px; }

/* Worksheet look (dashed border, flat) so the reader's tool reads as
   something to fill in and copy, not as another marketing card. */
.article-practical {
  margin: 0 0 48px;
  padding: 28px;
  border: 2px dashed var(--gray-300);
  border-radius: 20px;
  background: #fff;
}

.article-practical h2 { margin: 0 0 8px; font-size: clamp(1.5rem, 3vw, 1.9rem); }
.practical-intro { margin: 0 0 18px; color: var(--gray-600); font-size: 15px; line-height: 1.65; }

.practical-message {
  margin: 0 0 14px;
  padding: 18px 20px;
  border-left: 4px solid var(--royal-600);
  border-radius: 0 14px 14px 0;
  background: var(--gray-50);
}

.practical-message p { margin: 0 0 12px; color: var(--gray-700); font-size: 16px; line-height: 1.7; }
.practical-message p:last-child { margin-bottom: 0; }

.practical-copy {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--royal-600);
  border-radius: 999px;
  background: #fff;
  color: var(--royal-600);
  font: 700 14px/1 var(--body);
  cursor: pointer;
}

.practical-copy:hover { background: var(--royal-50); }
.practical-copy:focus-visible { outline: 3px solid rgba(37, 99, 235, .35); outline-offset: 3px; }

.practical-table-wrap { overflow-x: auto; margin: 0 0 14px; }
.practical-table-wrap table { width: 100%; border-collapse: collapse; font-size: 15px; }
.practical-table-wrap th,
.practical-table-wrap td { padding: 11px 12px; border: 1px solid var(--gray-200); text-align: left; color: var(--gray-700); }
.practical-table-wrap thead th { background: var(--gray-50); color: var(--ink); font: 700 13px/1.4 var(--display); }
.practical-table-wrap tbody th { color: var(--ink); font-weight: 600; }
.practical-note { margin: 0; color: var(--gray-500); font-size: 14px; line-height: 1.6; }

.article-checklist {
  margin: 0 0 48px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--ink), #122b52);
  color: #fff;
  box-shadow: var(--shadow);
}

.article-checklist h2 { margin: 0; color: #fff; font-size: clamp(1.7rem, 3vw, 2.2rem); }
.article-checklist .eyebrow { color: var(--royal-300); }
.article-checklist p { color: rgba(255,255,255,.7); }

.checklist-progress {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 24px 0;
  font-size: 14px;
}

.checklist-progress progress { width: 100%; accent-color: var(--royal-400); }
.article-checklist ul { margin: 0; padding: 0; list-style: none; }
.article-checklist li + li { margin-top: 10px; }

.article-checklist label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  cursor: pointer;
}

.article-checklist input { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--royal-400); }
.article-checklist input:checked + span { opacity: .7; text-decoration: line-through; }
.article-checklist .checklist-note { margin: 18px 0 0; color: rgba(255,255,255,.78); font-size: 14px; }

.article-sidebar { position: sticky; top: 110px; }

.sidebar-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.sidebar-card > a:not(.button) { padding: 8px 0; border-bottom: 1px solid var(--gray-100); color: var(--gray-600); font-size: 14px; }
.sidebar-card .button { margin-top: 8px; padding: 13px 16px; font-size: 14px; text-align: center; }

.related-guides { margin-top: 56px; }
.related-guides h2 { font-size: clamp(1.7rem, 3vw, 2.25rem); }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }

.related-card {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  color: inherit;
  text-decoration: none;
  transition: .2s ease;
}

.related-card:hover { border-color: var(--royal-300); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.related-card > span { color: var(--royal-600); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.related-card > strong { margin: 10px 0 20px; color: var(--ink); font: 700 16px/1.4 var(--display); }
.related-card > small { margin-top: auto; color: var(--gray-500); }

@media (max-width: 980px) {
  .guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide-article-layout { grid-template-columns: minmax(0, 790px); }
  .article-sidebar { display: none; }
}

@media (max-width: 760px) {
  .guide-hub-hero,
  .guide-article-hero { padding: 126px 0 64px; }
  .guide-hub-grid,
  .guide-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .guide-map,
  .guide-overview { width: min(320px, 82vw); }
  .guide-overview { min-height: 320px; }
  .guide-explorer { margin-top: 56px; }
  .guide-explorer-goals { grid-template-columns: 1fr; }
  .guide-hero-image { max-width: 520px; }
  .guide-library { padding: 64px 0 80px; }
  .library-heading { align-items: flex-start; flex-direction: column; }
  .infographic-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide-infographic > svg { margin: 18px 0 4px; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .guide-grid { grid-template-columns: 1fr; }
  .guide-controls,
  .guide-infographic,
  .article-checklist { padding: 22px; }
  .infographic-steps { grid-template-columns: 1fr; }
  .checklist-progress { grid-template-columns: 1fr; gap: 8px; }
  .guide-article-layout { padding-top: 56px; padding-bottom: 80px; }
  .guide-overview { min-height: 300px; padding: 22px; border-radius: 32px; }
  /* Badge is kept narrower than the gap between the side chips so the
     "Proteger"/"Negociar" labels never get covered on small screens. */
  .guide-overview-count { width: 108px; height: 108px; border-radius: 30px; }
  .guide-overview-count strong { font-size: 2.5rem; }
  .guide-overview-paths span { min-width: 90px; padding: 7px 9px; font-size: 11px; }
  .guide-explorer { padding: 22px; border-radius: 24px; }
  .guide-explorer-goal summary { padding: 16px; }
  .guide-explorer-link { grid-template-columns: minmax(0, 1fr) auto; }
  .guide-explorer-link > span:not(.guide-explorer-link-copy) { display: none; }
  .guide-article-hero h1,
  .guide-hub-hero h1 { font-size: clamp(2.1rem, 11vw, 3.1rem); }
}

@media (prefers-reduced-motion: reduce) {
  .guide-card,
  .guide-filters button,
  .related-card,
  .guide-explorer-goal,
  .guide-explorer-action svg,
  .guide-card-illustration,
  .guide-section summary svg { transition: none; }
}

@media print {
  .guide-controls,
  .article-sidebar,
  .related-guides,
  .practical-copy { display: none !important; }
  .article-practical { break-inside: avoid; }
  .guide-section:not([open]) > *:not(summary) { display: block !important; }
  .guide-card,
  .guide-infographic,
  .article-checklist { box-shadow: none; break-inside: avoid; }
}
