/* =============================================================
   ABOUT PAGE — editorial long-form layout
   ============================================================= */

.about-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
.about-header {
  padding: 64px 0 0;
  text-align: center;
}
.about-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 20px;
}
.about-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
}

/* ── Body text ── */
.about-body {
  padding: 40px 0 56px;
}
.about-lede {
  font-size: 19px;
  line-height: 1.75;
  color: var(--navy);
  font-weight: 500;
  margin: 0 0 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--light-grey);
}
.about-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin: 0 0 20px;
}
.about-body a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.about-body a:hover { text-decoration: underline; }

/* ── Headings ── */
.about-body h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 20px;
  line-height: 1.25;
}
.about-body h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 12px;
  line-height: 1.3;
}

/* ── Tagline ── */
.about-tagline {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  color: #444;
  text-align: center;
  margin: 56px 0 40px;
  padding: 40px 0;
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  line-height: 1.3;
}

/* ── CTAs ── */
.about-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.about-cta-btn {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.about-cta-primary { background: var(--blue); color: #fff !important; }
.about-cta-primary:hover { background: var(--blue-bright); text-decoration: none !important; }
.about-cta-secondary { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.about-cta-secondary:hover { background: var(--navy); color: #fff; }

/* ── Responsive ── */
@media (max-width: 540px) {
  .about-header { padding: 40px 0 0; }
  .about-body { padding: 28px 0 40px; }
  .about-lede { font-size: 17px; }
  .about-body h2 { font-size: 24px; margin-top: 36px; }
  .about-body h3 { font-size: 17px; }
  .about-tagline { font-size: 19px; margin: 36px 0 32px; padding: 24px 0; }
  .about-ctas { flex-direction: column; align-items: center; }
  .about-cta-btn { width: 260px; text-align: center; }
}
