.guide-page .guide-hero,
.guide-page .guide-shell {
  width: min(100% - 36px, 1040px);
  margin-inline: auto;
}

.guide-page .guide-hero {
  display: grid;
  gap: 18px;
  padding: clamp(42px, 7vw, 74px) 0 34px;
}

.guide-page .guide-hero h1 {
  max-width: 900px;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 0.98;
}

.guide-page .guide-hero > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.75;
}

.guide-page .guide-shell {
  display: grid;
  gap: 24px;
  padding: 10px 0 72px;
}

.guide-card-grid,
.guide-related-grid,
.guide-decision-grid,
.guide-length-grid {
  display: grid;
  gap: 18px;
}

.guide-card,
.guide-section,
.guide-callout,
.guide-decision-card,
.guide-length-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(85, 43, 34, 0.08);
}

.guide-card,
.guide-decision-card,
.guide-length-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.guide-card h2,
.guide-decision-card h3,
.guide-length-card h3 {
  margin-bottom: 12px;
  font-size: clamp(25px, 4vw, 36px);
  line-height: 1.08;
}

.guide-card p,
.guide-decision-card p,
.guide-length-card p {
  color: var(--soft-ink);
  line-height: 1.7;
}

.guide-card .button {
  margin-top: auto;
}

.guide-section {
  padding: clamp(24px, 5vw, 42px);
}

.guide-section h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.02;
}

.guide-section h3 {
  margin: 30px 0 12px;
  font-size: clamp(23px, 3.5vw, 32px);
  line-height: 1.12;
}

.guide-section p,
.guide-section li {
  color: var(--soft-ink);
  font-size: 16px;
  line-height: 1.78;
}

.guide-section ul,
.guide-section ol {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 1.35rem;
}

.guide-section a:not(.button),
.guide-card a:not(.button),
.guide-callout a:not(.button) {
  color: var(--rose-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.guide-callout {
  padding: clamp(22px, 4vw, 34px);
  border-left: 5px solid var(--rose);
  background: var(--cream);
}

.guide-callout h2 {
  margin-bottom: 12px;
  font-size: clamp(27px, 4vw, 40px);
}

.guide-callout p:last-child {
  margin-bottom: 0;
}

.guide-step-list {
  counter-reset: guide-step;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-step-list > li {
  counter-increment: guide-step;
  position: relative;
  padding-left: 48px;
}

.guide-step-list > li::before {
  content: counter(guide-step);
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.guide-label {
  margin-bottom: 8px;
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.guide-note {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 18px;
  color: var(--soft-ink);
  font-size: 14px;
}

@media (min-width: 720px) {
  .guide-card-grid,
  .guide-related-grid,
  .guide-decision-grid,
  .guide-length-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .guide-page .guide-hero,
  .guide-page .guide-shell {
    width: min(100% - 28px, 1040px);
  }

  .guide-page .guide-hero {
    padding-top: 34px;
  }

  .guide-card,
  .guide-section,
  .guide-callout,
  .guide-decision-card,
  .guide-length-card {
    border-radius: 18px;
  }

  .guide-actions {
    display: grid;
  }

  .guide-actions .button,
  .guide-card .button {
    width: 100%;
  }
}
