/* Guides section. Builds on legal.css (long-form prose) and the :root tokens
 * in styles.css. Guide pages load styles.css + legal.css + this file, all via
 * absolute paths so they work from /guides/ and /de/guides/ subfolders. */

.guide-page .legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Small language switcher in the header (crawlable links between translations). */
.guide-langs {
  display: flex;
  gap: 14px;
  font-size: 14px;
}
.guide-langs a {
  color: var(--ink-faint);
  text-decoration: none;
}
.guide-langs a:hover { color: var(--pine); }
.guide-langs a[aria-current="true"] { color: var(--pine); font-weight: 600; }

.guide-breadcrumb {
  font-size: 13px;
  color: var(--ink-faint);
  margin-bottom: 26px;
  letter-spacing: 0.01em;
}
.guide-breadcrumb a { color: var(--ink-faint); text-decoration: none; }
.guide-breadcrumb a:hover { text-decoration: underline; text-underline-offset: 3px; }

.guide-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--pine);
  font-weight: 600;
  margin-bottom: 14px;
}

.guide-lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 10px;
}

.guide-meta { font-size: 13px; color: var(--ink-faint); margin: 0 0 8px; }

/* Calm call-to-action at the end of each guide. */
.guide-cta {
  margin: 52px 0 8px;
  padding: 28px 30px;
  background: var(--pine);
  color: var(--linen);
  border-radius: 16px;
}
.guide-cta h2 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--linen);
  margin: 0 0 8px;
  font-size: 24px;
}
.guide-cta p { color: rgba(245, 242, 236, 0.85); margin: 0 0 18px; }
.guide-cta .btn {
  display: inline-block;
  background: var(--ember);
  color: #fff;
  padding: 12px 24px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.guide-cta .btn:hover { opacity: 0.92; }

/* "Keep reading" related links, and the hub card grid. */
.guide-related {
  margin-top: 52px;
  border-top: 1px solid rgba(15, 23, 20, 0.08);
  padding-top: 30px;
}
.guide-related h2 { font-size: 22px; margin: 0 0 16px; }

.guide-card-list { display: grid; gap: 16px; margin-top: 8px; }
.guide-card {
  display: block;
  padding: 22px 24px;
  background: var(--mist);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s ease;
}
.guide-card:hover { background: #dde6df; }
.guide-card h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  margin: 0 0 6px;
  color: var(--ink);
}
.guide-card p { margin: 0; color: var(--ink-muted); font-size: 15px; }
