/* FindPrices content pages — About, Blog, Privacy
   Layered on top of home-styles.css */

/* ───────── PAGE HEADER ───────── */
.page-hero {
  padding: 88px 0 56px;
  background: var(--fp-bg);
  border-bottom: 1px solid var(--fp-line);
}
.page-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fp-green);
  margin-bottom: 18px;
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.page-hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.028em;
  margin: 0 0 22px;
  max-width: 880px;
}
.page-hero .deck {
  font-size: 20px;
  line-height: 1.55;
  color: var(--fp-body);
  max-width: 720px;
  margin: 0;
}
.page-hero.center { text-align: center; }
.page-hero.center h1, .page-hero.center .deck { margin-left: auto; margin-right: auto; }

/* ───────── PROSE ───────── */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--fp-body);
}
.prose h2 {
  font-size: 32px;
  letter-spacing: -0.022em;
  margin: 64px 0 18px;
  color: var(--fp-heading);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 21px;
  letter-spacing: -0.014em;
  margin: 36px 0 10px;
  color: var(--fp-heading);
}
.prose p { margin: 0 0 18px; }
.prose strong { color: var(--fp-heading); font-weight: 600; }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 18px; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  margin: 32px 0;
  padding: 28px 32px;
  border-left: 4px solid var(--fp-green);
  background: var(--fp-bg-alt);
  border-radius: 0 12px 12px 0;
  font-size: 19px;
  line-height: 1.6;
  color: var(--fp-heading);
  font-weight: 500;
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose blockquote cite {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  color: var(--fp-green);
}
.prose hr {
  border: 0;
  border-top: 1px solid var(--fp-line);
  margin: 48px 0;
}

/* ───────── ABOUT — TENETS GRID ───────── */
.tenets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 24px 0;
}
@media (max-width: 900px) { .tenets { grid-template-columns: 1fr; } }
.tenet {
  background: var(--fp-bg);
  border: 1px solid var(--fp-line);
  border-radius: 14px;
  padding: 28px 26px;
  transition: transform .2s, box-shadow .2s;
}
.tenet:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.tenet h3 {
  font-size: 18px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.tenet p { font-size: 15px; line-height: 1.6; color: var(--fp-body); margin: 0; }
body.dark .tenet { background: rgba(255,255,255,0.03); }

/* ───────── ABOUT — STORY CALLOUT ───────── */
.story {
  background: linear-gradient(180deg, var(--fp-bg-alt), var(--fp-bg));
  border: 1px solid var(--fp-line);
  border-radius: 18px;
  padding: 40px 44px;
  margin: 28px 0;
}
@media (max-width: 700px) { .story { padding: 28px; } }
.story p { font-size: 17px; line-height: 1.7; }
.story .signoff {
  display: flex; align-items: center; gap: 12px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--fp-line);
}
.story .avatar-lg {
  width: 48px; height: 48px; border-radius: 99px;
  background: linear-gradient(135deg, var(--fp-green), var(--fp-green-dk));
  color: #fff; font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.story .signoff .name { font-weight: 600; color: var(--fp-heading); }
.story .signoff .role { font-size: 14px; color: var(--fp-muted); }

/* ───────── BLOG — INDEX ───────── */
.blog-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0 0 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--fp-line);
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid var(--fp-line);
  background: var(--fp-bg);
  color: var(--fp-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
}
.chip:hover { border-color: var(--fp-heading); color: var(--fp-heading); }
.chip.active { background: var(--fp-heading); color: var(--fp-bg); border-color: var(--fp-heading); }
.chip .count { color: var(--fp-muted); font-weight: 400; font-size: 13px; }
.chip.active .count { color: rgba(255,255,255,0.7); }

.feature-post {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--fp-bg);
  border: 1px solid var(--fp-line);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 56px;
  transition: transform .2s, box-shadow .2s;
}
.feature-post:hover { transform: translateY(-2px); box-shadow: var(--shadow-3); }
@media (max-width: 900px) { .feature-post { grid-template-columns: 1fr; gap: 0; } }
.feature-post .thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d7f3e2 0%, #f9e7c2 100%);
  position: relative;
  overflow: hidden;
}
.feature-post .copy { padding: 40px 44px; }
@media (max-width: 700px) { .feature-post .copy { padding: 28px; } }
.feature-post .meta { font-size: 13px; color: var(--fp-muted); margin-bottom: 14px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.feature-post .meta .cat { color: var(--fp-green); }
.feature-post h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.feature-post h2 a { color: inherit; }
.feature-post h2 a:hover { color: var(--fp-green); }
.feature-post p { font-size: 16px; line-height: 1.6; margin: 0 0 22px; color: var(--fp-body); }
.feature-post .read { font-weight: 600; color: var(--fp-green); display: inline-flex; align-items: center; gap: 6px; }

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr; gap: 28px; } }
.post-card { display: flex; flex-direction: column; cursor: pointer; }
.post-card .thumb {
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
  transition: transform .25s;
}
.post-card:hover .thumb { transform: translateY(-2px); }
.post-card .meta { font-size: 12px; color: var(--fp-muted); margin-bottom: 8px; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.post-card .meta .cat { color: var(--fp-green); }
.post-card h3 {
  font-size: 19px; line-height: 1.3;
  letter-spacing: -0.012em;
  margin: 0 0 10px;
}
.post-card h3 a { color: inherit; }
.post-card:hover h3 a { color: var(--fp-green); }
.post-card .excerpt { font-size: 14px; line-height: 1.55; color: var(--fp-body); margin: 0; }

/* Thumb gradients (no real images yet) */
.thumb-a { background: linear-gradient(135deg, #d7f3e2 0%, #88d4a4 100%); }
.thumb-b { background: linear-gradient(135deg, #fde8b5 0%, #f5b14b 100%); }
.thumb-c { background: linear-gradient(135deg, #cfe6fa 0%, #6aa9e0 100%); }
.thumb-d { background: linear-gradient(135deg, #f6d6c2 0%, #e58368 100%); }
.thumb-e { background: linear-gradient(135deg, #e9d6f5 0%, #a378d4 100%); }
.thumb-f { background: linear-gradient(135deg, #d7eee9 0%, #4eb1a0 100%); }
.thumb-g { background: linear-gradient(135deg, #fce0e7 0%, #d96b85 100%); }
.thumb-h { background: linear-gradient(135deg, #ddf0c5 0%, #88c050 100%); }
.thumb-i { background: linear-gradient(135deg, #ddd5f0 0%, #6f5ec5 100%); }
.thumb-j { background: linear-gradient(135deg, #fff0c0 0%, #f0c050 100%); }

.thumb-glyph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.04em;
  text-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.feature-post .thumb-glyph { font-size: clamp(80px, 11vw, 160px); }

/* ───────── BLOG — POST ───────── */
.post-hero {
  padding: 80px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--fp-line);
}
.post-hero .meta {
  font-size: 13px; color: var(--fp-muted);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
  margin-bottom: 20px;
}
.post-hero .meta .cat { color: var(--fp-green); }
.post-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.028em;
  max-width: 880px; margin: 0 auto 22px;
}
.post-hero .deck {
  font-size: 19px; line-height: 1.55;
  color: var(--fp-body);
  max-width: 680px; margin: 0 auto 32px;
}
.post-hero .byline {
  display: inline-flex; align-items: center; gap: 12px;
  text-align: left;
}
.post-hero .byline .avatar-lg {
  width: 44px; height: 44px; border-radius: 99px;
  background: linear-gradient(135deg, var(--fp-green), var(--fp-green-dk));
  color: #fff; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}
.post-hero .byline .name { font-weight: 600; color: var(--fp-heading); font-size: 15px; }
.post-hero .byline .when { font-size: 13px; color: var(--fp-muted); }

.post-cover {
  max-width: 980px; margin: 0 auto;
  aspect-ratio: 21/9;
  border-radius: 18px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.pull-quote {
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.018em;
  font-weight: 600;
  color: var(--fp-heading);
  text-align: center;
  margin: 56px 0;
  padding: 0 12px;
}
.pull-quote::before, .pull-quote::after {
  content: ''; display: block; width: 60px; height: 3px;
  background: var(--fp-green); margin: 0 auto;
}
.pull-quote::before { margin-bottom: 28px; }
.pull-quote::after { margin-top: 28px; }

.callout {
  background: var(--fp-green-soft);
  border: 1px solid rgba(39,174,96,0.25);
  border-radius: 14px;
  padding: 22px 26px;
  margin: 28px 0;
  font-size: 15px;
  line-height: 1.6;
}
body.dark .callout {
  background: rgba(39,174,96,0.08);
  border-color: rgba(39,174,96,0.3);
}
.callout strong { color: var(--fp-green); }

.related {
  background: var(--fp-bg-alt);
  padding: 80px 0;
  margin-top: 80px;
  border-top: 1px solid var(--fp-line);
}
.related h2 {
  font-size: 28px; margin: 0 0 32px;
  letter-spacing: -0.018em;
}

/* ───────── PRIVACY — TOC + SECTIONS ───────── */
.privacy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .privacy-layout { grid-template-columns: 1fr; gap: 32px; } }
.toc {
  position: sticky; top: 100px;
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 900px) { .toc { position: static; } }
.toc h4 {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--fp-muted); margin: 0 0 14px; font-weight: 700;
}
.toc ol {
  list-style: none; padding: 0; margin: 0;
  counter-reset: toc;
}
.toc li {
  counter-increment: toc;
  padding: 7px 0;
  border-bottom: 1px solid var(--fp-line);
}
.toc li:last-child { border-bottom: 0; }
.toc li a {
  color: var(--fp-body);
  display: flex; gap: 10px;
}
.toc li a::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--fp-muted);
  font-variant-numeric: tabular-nums;
}
.toc li a:hover { color: var(--fp-green); }

.privacy-section { margin-bottom: 52px; }
.privacy-section h2 {
  font-size: 26px;
  letter-spacing: -0.018em;
  margin: 0 0 8px;
  display: flex; align-items: baseline; gap: 14px;
}
.privacy-section h2 .num {
  font-size: 14px;
  font-weight: 600;
  color: var(--fp-green);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}
.privacy-section h3 {
  font-size: 17px;
  margin: 28px 0 10px;
}
.privacy-section p { margin: 0 0 14px; }
.privacy-section ul { padding-left: 20px; margin: 0 0 16px; }
.privacy-section li { margin-bottom: 8px; }
.privacy-section .updated {
  font-size: 13px; color: var(--fp-muted);
  margin-bottom: 36px;
}

/* ───────── INLINE CTA ───────── */
.page-cta {
  background: linear-gradient(135deg, #1a4830 0%, #0d2818 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.page-cta h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.024em;
  max-width: 720px; margin: 0 auto 18px;
}
.page-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  max-width: 560px; margin: 0 auto 32px;
}
.page-cta .cta-row {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}
.page-cta .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.3); }
.page-cta .btn-secondary:hover { border-color: #fff; }
