/* pillar-shared.css — additional styles for all pillar pages */
/* This file is imported by each pillar page after style.css */

.pillar-hero {
  padding: clamp(72px, 9vw, 120px) var(--pad-x) clamp(48px, 6vw, 80px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.pillar-hero-inner {
  max-width: 720px;
}

.pillar-hero h1 {
  margin-bottom: 24px;
  max-width: 660px;
}

.pillar-hero .lead {
  max-width: 600px;
  margin-bottom: 36px;
}

.pillar-accent-bar {
  height: 3px;
  width: 48px;
  border-radius: 2px;
  margin-bottom: 32px;
}

.pillar-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.pillar-body h2 {
  margin-bottom: 20px;
}

.pillar-body .lead {
  margin-bottom: 20px;
}

.pillar-body p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 700px;
}

.pull-quote {
  border-left: 3px solid;
  padding: 8px 0 8px 28px;
  margin: 48px 0;
}

.pull-quote p {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.45;
  font-weight: 400;
  color: var(--ink);
}

.pull-quote cite {
  display: block;
  font-size: 13px;
  font-style: normal;
  color: var(--muted);
  margin-top: 12px;
}

.callout-box {
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 48px 0;
}

.callout-box h3 { margin-bottom: 12px; }
.callout-box p { font-size: 16px; margin-bottom: 12px; max-width: 100%; }
.callout-box p:last-child { margin-bottom: 0; }

.fact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.fact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.6;
}

.fact-list .fi {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pillar-cta-band {
  background: var(--fog);
  padding: clamp(48px, 6vw, 80px) var(--pad-x);
  text-align: center;
}

.pillar-cta-band h2 { margin-bottom: 16px; }
.pillar-cta-band p { max-width: 480px; margin: 0 auto 32px; font-size:17px; }

/* Pillar strip */
.pillar-strip {
  background: var(--fog);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--pad-x);
}

.pillar-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.pillar-strip-inner::-webkit-scrollbar { display: none; }

.pillar-strip a {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
  display: block;
}

.pillar-strip a:hover { color: var(--ink); }
.pillar-strip a.active { color: var(--teal); border-bottom-color: var(--teal); }
