/* Guides: long-form articles. Extends content.css rather than restating it —
   .search-prose supplies the section rhythm, headings, quotes and cards. */

.crumbs {
  max-width: 1168px;
  margin: 0 auto;
  padding: 22px 56px 0;
  color: var(--muted);
  font-size: 13px;
}
.crumbs a { color: var(--green); }
.crumbs span[aria-hidden] { padding: 0 6px; color: var(--faint); }
.crumbs [aria-current] { color: var(--muted); }

/* ---------- article ---------- */

.guide {
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 56px 92px;
}

.guide-head {
  padding-bottom: 34px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--dark);
}
.guide-head h1 {
  margin: 14px 0 0;
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.guide-head .trust-hero-lede {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.byline {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.byline-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-name);
  display: grid;
  place-items: center;
  font-family: 'Newsreader', serif;
  font-size: 19px;
}
.byline div { display: flex; flex-direction: column; gap: 2px; }
.byline-name { font-size: 14px; font-weight: 500; }
.byline-name a { color: var(--green); }
.byline-meta { color: var(--muted); font-size: 13px; }

/* The guide body reuses .search-prose, but an article is a single column,
   so its sections need a slightly tighter rhythm than a landing page. */
.guide-prose section { padding-bottom: 34px; margin-bottom: 34px; }
.guide-prose h2 { font-size: 29px; }
.guide-prose .answer-list { grid-template-columns: 1fr; }
.guide-prose .search-quote { font-size: 20px; }
.guide-prose .search-quote em { font-style: italic; color: var(--green-sub); }
.guide-prose .safety-callout { margin: 0; }
.guide-prose .safety-callout h3 {
  margin: 0 0 7px;
  font-family: 'Newsreader', serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
}

.guide-related {
  margin-top: 8px;
  padding: 26px 28px;
  border-radius: 14px;
  background: var(--wash);
  border: 1px solid var(--line);
}
.guide-related h2 { margin: 0 0 12px; font-size: 17px; }
.guide-related ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.guide-related a { color: var(--green); font-size: 15px; font-weight: 500; }

/* ---------- index ---------- */

.guide-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--line);
  border-top: 2px solid var(--dark);
  border-bottom: 1px solid var(--line);
}
.guide-card { padding: 30px 0 32px; background: #fff; }
.guide-card h2 {
  margin: 11px 0 9px;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -.025em;
}
.guide-card h2 a { color: var(--ink); text-decoration: none; }
.guide-card h2 a:hover { color: var(--green); }
.guide-card p {
  margin: 0 0 11px;
  max-width: 68ch;
  color: #536159;
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .crumbs { padding: 20px 24px 0; }
  .guide { padding: 34px 24px 70px; }
  .guide-head h1 { font-size: 34px; }
  .guide-head .trust-hero-lede { font-size: 17px; }
  .guide-prose h2 { font-size: 25px; }
  .guide-card h2 { font-size: 24px; }
}
