/* Intent / guide pages — lightweight SEO entry points */
.guide-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.guide-header {
  padding: 2rem 1.5rem 1rem;
  border-bottom: 1px solid var(--mid);
}

.guide-header-inner {
  max-width: 42rem;
  margin: 0 auto;
}

.guide-kicker {
  color: var(--mid-soft);
  margin-bottom: 0.75rem;
}

.guide-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 8vw, 3.5rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1rem;
}

.guide-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--off-white);
  max-width: 38rem;
}

.guide-main {
  flex: 1;
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  width: 100%;
}

.guide-section {
  margin-bottom: 2.5rem;
}

.guide-section h2 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-soft);
  margin-bottom: 1rem;
}

.guide-section p,
.guide-section li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--off-white);
  margin-bottom: 0.85rem;
}

.guide-section ul {
  list-style: none;
  padding: 0;
}

.guide-section li {
  padding-left: 1rem;
  border-left: 2px solid var(--mid);
  margin-bottom: 0.65rem;
}

.guide-facts {
  display: grid;
  gap: 0.75rem;
  border: 1px solid var(--mid);
  padding: 1.25rem;
}

.guide-fact-label {
  display: block;
  color: var(--mid-soft);
  margin-bottom: 0.2rem;
}

.guide-fact-value {
  color: var(--white);
  font-size: 1rem;
}

.guide-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--white);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  margin-top: 0.5rem;
}

.guide-cta:hover {
  background: var(--white);
  color: var(--black);
}

.guide-cta--secondary {
  border-color: var(--mid);
  color: var(--off-white);
  margin-left: 0.75rem;
}

.guide-cta--secondary:hover {
  background: var(--off-white);
  color: var(--black);
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
}

.guide-actions .guide-cta--secondary {
  margin-left: 0;
}

.guide-related {
  padding-top: 2rem;
  border-top: 1px solid var(--mid);
}

.guide-related ul {
  list-style: none;
}

.guide-related li {
  margin-bottom: 0.5rem;
  border-left: none;
  padding-left: 0;
}

.guide-related a,
.guide-listed a {
  color: var(--off-white);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.guide-related a:hover,
.guide-listed a:hover {
  color: var(--white);
}

.guide-listed {
  margin-bottom: 1.5rem;
}

.guide-listed ul {
  list-style: none;
}

.guide-listed li {
  margin-bottom: 0.5rem;
  border-left: none;
  padding-left: 0;
}

.guide-footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid var(--mid);
  text-align: center;
}

.guide-footer p {
  color: var(--mid-soft);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.guide-footer a {
  color: var(--off-white);
}

.guide-footer a:hover {
  color: var(--white);
}

@media (max-width: 480px) {
  .guide-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .guide-cta,
  .guide-cta--secondary {
    text-align: center;
    justify-content: center;
  }
}
