/* ============================================
   PRUNE TSIMI — guide.css
   Long-form article pages (/guides/)
   Uses the same design tokens as style.css
   ============================================ */

:root {
  --yellow:    #f4e600;
  --navy:      #191732;
  --offwhite:  #f5f0e7;
  --magenta:   #dc087e;
  --font-head: Georgia, 'Times New Roman', serif;
  --font-body: 'Century Gothic', 'CenturyGothic', 'AppleGothic', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--offwhite);
  color: var(--navy);
  margin: 0;
}

/* ── NAV (matches faq.css exactly) ── */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: var(--yellow);
  border-bottom: 1.5px solid var(--navy);
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  text-decoration: none;
}
.nav-cta {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--yellow);
  background: var(--navy);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--magenta); }

/* ── HERO ── */
.guide-hero {
  max-width: 760px;
  margin: 0 auto;
  /* nav is position:fixed (from style.css), so top padding here
     needs to clear its height, same fix pattern as .hero on the
     homepage (padding-top: 60px there) */
  padding: 104px 48px 40px;
  text-align: left;
}
.guide-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 16px;
}
.guide-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.3px;
  color: var(--navy);
  margin: 0 0 20px;
}
.guide-dek {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
  color: var(--navy);
  margin: 0 0 20px;
}
.guide-meta {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(25,23,50,0.6);
  margin: 0;
  border-top: 1px solid rgba(25,23,50,0.15);
  padding-top: 20px;
}

/* ── ARTICLE BODY ── */
.guide-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px 60px;
}
.guide-lede {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 40px;
}
.guide-body h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 18px;
  letter-spacing: -0.2px;
}
.guide-body p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--navy);
  margin: 0 0 20px;
}

/* ── PRIMARY CTA (matches faq.css cta-block) ── */
.cta-block {
  max-width: 640px;
  margin: 0 auto 24px;
  padding: 48px;
  background: var(--navy);
  border-radius: 16px;
  text-align: center;
}
.cta-block h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 2.6vw, 30px);
  color: var(--offwhite);
  margin: 0 0 14px;
}
.cta-block p {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(245,240,231,0.85);
  margin: 0 0 28px;
  line-height: 1.6;
}
.cta-btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  background: var(--magenta);
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); }

/* ── SECONDARY CTA ── */
.cta-secondary {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}
.cta-secondary p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(25,23,50,0.7);
  margin: 0 0 8px;
}
.cta-secondary-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--magenta);
  text-decoration: none;
}
.cta-secondary-link:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 32px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(25,23,50,0.6);
}
footer a { color: var(--magenta); text-decoration: none; }

/* ── DIAGNOSTIC LIST (six signs, etc.) ── */
.guide-list {
  list-style: none;
  margin: 24px 0 32px;
  padding: 0;
}
.guide-list li {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--navy);
  padding: 16px 0 16px 32px;
  position: relative;
  border-bottom: 1px solid rgba(25,23,50,0.12);
}
.guide-list li:last-child { border-bottom: none; }
.guide-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 25px;
  width: 10px;
  height: 10px;
  background-color: var(--magenta);
  border-radius: 50%;
}
.guide-list li strong {
  font-family: var(--font-head);
}

/* ── RELATED READING LINE ── */
.guide-related {
  max-width: 760px;
  margin: 0 auto 40px;
  padding: 0 48px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(25,23,50,0.7);
}
.guide-related a {
  color: var(--magenta);
  text-decoration: none;
  font-weight: 700;
}
.guide-related a:hover { text-decoration: underline; }
