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

.guide-button {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.guide-button-secondary {
  background: transparent;
  color: var(--ink);
}

.guide-button:hover { transform: translateY(-1px); }
.guide-button:focus-visible { outline: 2px solid var(--peach); outline-offset: 3px; }

.guide-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 8px;
  padding: 1px;
  background: var(--line);
}

.guide-fact { padding: 22px; background: rgba(255, 255, 255, .48); }
.guide-fact strong { display: block; margin-bottom: 5px; }
.guide-fact span { color: var(--muted); font-size: 14px; line-height: 1.5; }

.guide-faq h3 { margin-top: 30px; font-size: 18px; }
.guide-faq h3:first-child { margin-top: 0; }

@media (max-width: 680px) {
  .guide-facts { grid-template-columns: 1fr; }
  .guide-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .guide-button:hover { transform: none; }
}
