/* ============================================
   ATLAS TRUST FRAMEWORK — STYLES
   ============================================ */

:root {
  --navy: #0D1F3C;
  --gold: #C9A84C;
  --offwhite: #F8FAFC;
  --darkbg: #0F172A;
  --white: #FFFFFF;
  --slate: #94A3B8;
  --slate-dark: #64748B;

  --amber: #F59E0B;
  --blue: #3B82F6;
  --green: #10B981;
  --grey: #94A3B8;
  --red: #DC2626;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-height: 76px;
  --max-width: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--offwhite);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ol, ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ WORDMARK ============ */
.wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1;
}

.wordmark__mark {
  font-family: var(--font);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--navy);
  padding-bottom: 6px;
  border-bottom: 2px solid var(--gold);
}

.wordmark__sub {
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--slate);
  text-transform: uppercase;
}

.wordmark--nav .wordmark__mark { font-size: 20px; }

.wordmark--footer .wordmark__mark { font-size: 28px; color: var(--white); border-bottom-color: var(--gold); }

/* ============ NAV ============ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(13, 31, 60, 0.08);
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.nav-link:hover { opacity: 0.65; }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.nav-cta:hover { opacity: 0.88; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ LABELS ============ */
.label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.label--on-dark { color: var(--gold); }
.label--on-light { color: var(--gold); }
.label--center { text-align: center; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, opacity 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-1px); }

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}

.btn--gold:hover { opacity: 0.9; }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover { border-color: var(--white); }

.btn--small {
  padding: 12px 20px;
  font-size: 14px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 900px 700px at 20% 45%, black 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 900px 700px at 20% 45%, black 0%, transparent 75%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -260px;
  right: -220px;
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero__graphic {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 420px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__title {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  max-width: 640px;
  margin-bottom: 24px;
}

.hero__body {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero__divider {
  height: 1px;
  width: 100%;
  max-width: 320px;
  background: var(--gold);
  opacity: 0.5;
  margin-bottom: 20px;
}

.hero__footnote {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* ============ SECTIONS (generic) ============ */
.section { padding: 120px 0; }

.section--white { background: var(--white); }
.section--offwhite { background: var(--offwhite); }
.section--dark { background: var(--navy); }
.section--center { text-align: center; }

.section__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--navy);
  max-width: 820px;
  line-height: 1.25;
  margin-bottom: 24px;
}

.section__title--on-dark { color: var(--white); }
.section__title--center { max-width: 700px; margin-left: auto; margin-right: auto; }

.section__body {
  font-size: 17px;
  color: var(--slate-dark);
  max-width: 720px;
  margin-bottom: 48px;
}

/* ============ PROBLEM: FACT CARDS ============ */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fact-card {
  background: var(--offwhite);
  border: 1px solid rgba(13, 31, 60, 0.15);
  border-radius: 12px;
  padding: 28px;
}

.fact-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.fact-card__body {
  font-size: 15px;
  color: var(--slate-dark);
  margin-bottom: 14px;
}

.fact-card__cite {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ============ EQUATION ============ */
.equation {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 28px;
  line-height: 1.5;
}

.equation__note {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.04);
  border-left: 2px solid var(--gold);
  border-radius: 4px;
  padding: 24px 20px;
}

.pillar-card__num {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.pillar-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.pillar-card__body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============ MATURITY MODEL ============ */
.maturity-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.maturity-step {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 22px;
  border-top: 4px solid var(--grey);
}

.maturity-step--1 { border-top-color: var(--grey); }
.maturity-step--2 { border-top-color: var(--amber); }
.maturity-step--3 { border-top-color: var(--blue); }
.maturity-step--4 { border-top-color: var(--green); }
.maturity-step--5 { border-top-color: var(--gold); }

.maturity-step__num {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 12px;
}

.maturity-step__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.maturity-step__desc {
  font-size: 13px;
  color: var(--slate-dark);
  line-height: 1.5;
}

.maturity-note {
  font-size: 15px;
  color: var(--slate-dark);
  max-width: 720px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

/* ============ ASSESSMENTS ============ */
.assessment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.assessment-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 36px;
}

.assessment-card--dimmed { opacity: 0.5; }

.assessment-card--pending {
  border-style: dashed;
  border-color: rgba(201, 168, 76, 0.35);
}

.assessment-card__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 12px;
}

.assessment-card__name {
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}

.assessment-card__org {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.badge--gold { background: var(--gold); color: var(--navy); }
.badge--grey { background: rgba(255, 255, 255, 0.12); color: var(--slate); }
.badge--outline { background: transparent; border: 1.5px solid var(--gold); color: var(--gold); }

.assessment-card__score {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.assessment-card__meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.assessment-card__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ GENERIC PAGE HERO (blog index, etc.) ============ */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-height) + 64px) 0 56px;
}

.page-hero__title {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
}

/* ============ CASE STUDY LIBRARY (grid) ============ */
.section__subtext {
  font-size: 17px;
  color: var(--slate-dark);
  max-width: 680px;
  margin-bottom: 48px;
}

.section__subtext--on-dark { color: rgba(255, 255, 255, 0.65); }

.casestudy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.casestudy-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(13, 31, 60, 0.12);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.casestudy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 31, 60, 0.08);
}

.post-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.post-category--case-study { color: var(--slate-dark); }
.post-category--assessment { color: var(--gold); }

.casestudy-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.casestudy-card__date {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.casestudy-card__desc {
  font-size: 14px;
  color: var(--slate-dark);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.pillar-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.pillar-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 999px;
}

.pillar-pill--critical { background: rgba(220, 38, 38, 0.1); color: var(--red); }
.pillar-pill--warning { background: rgba(245, 158, 11, 0.12); color: #B45309; }

.casestudy-card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-top: auto;
}

.casestudy-card__link:hover { text-decoration: underline; }

/* ============ PRINCIPLES ============ */
.principles-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.principles-list li {
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid rgba(13, 31, 60, 0.08);
  padding-bottom: 24px;
}

.principles-list__num {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  width: 32px;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}

.about-col__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.about-col__role {
  font-size: 14px;
  color: var(--slate-dark);
  margin-bottom: 4px;
}

.about-col__credentials {
  font-size: 13px;
  color: var(--slate-dark);
  margin: 12px 0 20px;
}

.about-col__body {
  font-size: 15px;
  color: var(--slate-dark);
  line-height: 1.6;
}

/* ============ BOOK A REVIEW ============ */
.book-review { max-width: 640px; margin: 0 auto; }

.book-review__body {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--darkbg);
  padding: 56px 0 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 40px;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--gold); }

.footer-email {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-email:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.footer-bottom p {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   CASE STUDY DETAIL PAGE
   ============================================ */
.case-hero {
  background: var(--navy);
  padding: calc(var(--nav-height) + 64px) 0 56px;
}

.case-hero__breadcrumb {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.case-hero__breadcrumb a { color: var(--gold); }
.case-hero__breadcrumb a:hover { text-decoration: underline; }

.case-hero__name {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  max-width: 820px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.case-hero__date {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.case-hero__incident {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
  margin-bottom: 24px;
}

.case-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 64px;
  align-items: start;
  padding: 80px 0;
}

.case-main { min-width: 0; }

.case-section { margin-bottom: 64px; }

.case-section__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.case-section__heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.case-section p {
  font-size: 16px;
  color: var(--slate-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.case-pillar {
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 22px;
  margin-bottom: 32px;
}

.case-pillar--warning { border-left-color: var(--amber); }

.case-pillar__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.case-pillar__name {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
}

.case-pillar__score {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
}

.case-pillar--warning .case-pillar__score { color: #B45309; }

.case-signal {
  background: var(--offwhite);
  border-radius: 8px;
  padding: 14px 18px;
  margin: 12px 0;
  font-size: 14px;
  color: var(--navy);
}

.case-signal strong { color: var(--navy); }

.case-finding {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(13, 31, 60, 0.08);
}

.case-finding:last-child { border-bottom: none; }

.case-finding__num {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  width: 28px;
}

.case-finding p { margin-bottom: 0; }

.case-pullquote {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 28px 0;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  font-style: italic;
}

.case-references {
  list-style: decimal;
  padding-left: 20px;
}

.case-references li {
  font-size: 14px;
  color: var(--slate-dark);
  margin-bottom: 10px;
  line-height: 1.6;
}

.case-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 32px);
  background: var(--offwhite);
  border-radius: 12px;
  padding: 28px;
}

.case-sidebar__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-dark);
  margin-bottom: 20px;
}

.pillar-score { margin-bottom: 22px; }

.pillar-score__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.pillar-score__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.pillar-score__value {
  font-size: 13px;
  font-weight: 700;
  color: var(--slate-dark);
}

.score-bar {
  height: 6px;
  background: rgba(13, 31, 60, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.score-bar__fill { height: 100%; border-radius: 999px; }
.score-bar__fill--critical { background: var(--red); }
.score-bar__fill--warning { background: var(--amber); }
.score-bar__fill--ok { background: var(--green); }

.case-cta {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.case-cta__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.case-cta__title {
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1180px) {
  .hero__graphic { width: 320px; right: 2%; opacity: 0.7; }
}

@media (max-width: 960px) {
  .hero__graphic { display: none; }
  .fact-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 1fr); }
  .maturity-track { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .assessment-grid { grid-template-columns: 1fr; }
  .casestudy-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__title { font-size: 44px; }
  .section__title { font-size: 32px; }
  .equation { font-size: 22px; }
  .case-body { grid-template-columns: 1fr; gap: 40px; }
  .case-sidebar { position: static; }
  .case-hero__name { font-size: 34px; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--offwhite);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 20px 24px;
    border-bottom: 1px solid rgba(13, 31, 60, 0.08);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(13, 31, 60, 0.06);
  }

  .nav-cta {
    margin-top: 12px;
    text-align: center;
    border-bottom: none;
  }

  .hamburger { display: flex; }

  .hero__title { font-size: 34px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; }

  .section__title { font-size: 26px; }
  .equation { font-size: 18px; }

  .principles-list li { font-size: 17px; gap: 16px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .casestudy-grid { grid-template-columns: 1fr; }
  .case-hero__name { font-size: 28px; }
  .case-hero__incident { font-size: 17px; }
  .case-section__heading { font-size: 22px; }
  .case-pullquote { font-size: 19px; }
}
