/* ============================================================
   nategoldstein.com — v5
   Palette: pure white + pure black, neutral greys only
   Font: Geist (sans) + Geist Mono
   References: apple.com / vercel.com / base64.com
   ============================================================ */

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* === Design tokens === */
:root {
  --bg:           #FFFFFF;
  --bg-subtle:    #FAFAFA;
  --bg-elevated:  #FFFFFF;
  --ink:          #000000;
  --ink-soft:     #18181B;
  --ink-muted:    #71717A;
  --ink-dim:      #A1A1AA;
  --rule:         #E4E4E7;
  --rule-soft:    #F4F4F5;

  /* No chromatic accent — black IS the accent */
  --accent:       #000000;
  --accent-soft:  #27272A;

  --shadow-sm:    0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md:    0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg:    0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
  --shadow-header: 0 1px 0 rgba(0, 0, 0, 0.06);

  --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;
  --space-11: 192px;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-pill: 9999px;

  --measure:       1200px;
  --measure-prose: 720px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
ul, ol { list-style: none; }

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover {
  color: var(--ink-muted);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 2px;
}

button { font: inherit; cursor: pointer; }

/* === Skip link (a11y) === */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 16px;
  font-size: 14px;
  font-family: var(--font-sans);
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* === Container === */
.container {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* === Site Header (sticky, Apple-style backdrop blur) === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--rule);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { color: var(--ink-muted); text-decoration: none; }

.primary-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 24px;
}

.primary-nav a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.primary-nav a:hover { color: var(--ink); text-decoration: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
  padding: 8px;
  color: var(--ink);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--rule);
}
.mobile-nav[hidden] { display: none; }

@media (max-width: 767px) {
  .primary-nav, .site-header-inner > .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav:not([hidden]) { display: flex; }
}

/* === Section eyebrow chip === */
.section-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

/* === Section heading === */
.section-heading {
  font-family: var(--font-sans);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 48px;
  max-width: 720px;
}

/* === Pill buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1;
  text-decoration: none;
  transition: all 0.18s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

/* Primary: black filled, white text */
.btn-primary {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  color: #FFFFFF;
  text-decoration: none;
}

/* Ghost: white bg, black border */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-ghost:hover {
  background: var(--bg-subtle);
  border-color: var(--ink);
  color: var(--ink);
  text-decoration: none;
}

/* Outline: black outline pill, fills black on hover */
.btn-outline-accent {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
  text-decoration: none;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
}

/* === Hero — bg: white === */
.hero {
  background: var(--bg);
  padding: var(--space-10) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.hero-name {
  font-family: var(--font-sans);
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--ink);
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 480px;
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.hero-portrait img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 1023px) {
  .hero {
    padding: var(--space-9) 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-name {
    font-size: 48px;
  }
  .hero-tagline {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-portrait {
    order: -1;
    display: flex;
    justify-content: center;
  }
  .hero-portrait img {
    max-width: 280px;
  }
}

/* === Mobile (≤768px): edge-to-edge hero portrait, flush under nav === */
@media (max-width: 768px) {
  .hero {
    padding-top: 0;
    padding-bottom: var(--space-8);
  }
  .hero-grid {
    gap: var(--space-7);
  }
  .hero-portrait {
    /* Break out of .container 24px side padding so image touches viewport edges */
    margin-left: -24px;
    margin-right: -24px;
    padding: 0;
    display: block;
  }
  .hero-portrait img {
    width: 100%;
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin: 0;
  }
}

/* === About — bg: off-white === */
.about {
  background: var(--bg-subtle);
  padding: var(--space-10) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-prose p {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 1.5em;
}
.about-prose p:last-child { margin-bottom: 0; }

/* Facts card pops white on off-white section bg */
.about-facts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

.fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fact-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.fact-value {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.5;
  color: var(--ink);
}

@media (max-width: 1023px) {
  .about {
    padding: var(--space-9) 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* === Skills — bg: off-white === */
.skills {
  background: var(--bg-subtle);
  padding: var(--space-10) 0;
}

/* --- Marquee (full-bleed scrolling logo strip) --- */
.skills-marquee {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
  padding: var(--space-7) 0;
  margin-top: var(--space-7);
  margin-bottom: var(--space-8);
  background: var(--bg);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, black 80px, black calc(100% - 80px), transparent 100%);
}

.skills-marquee-track {
  display: flex;
  gap: var(--space-9);
  width: max-content;
  animation: skills-marquee-scroll 60s linear infinite;
  align-items: center;
}

.skills-marquee:hover .skills-marquee-track {
  animation-play-state: paused;
}

.skills-marquee-item {
  height: 36px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.skills-marquee:hover .skills-marquee-item {
  opacity: 1;
}

@keyframes skills-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .skills-marquee-track { animation: none; }
}

/* --- Bento grid --- */
.skill-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.skill-bento-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.skill-bento-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.skill-bento-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.skill-bento-title {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}

.skill-bento-lede {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 460px;
}

.skill-bento-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px 12px;
  padding: 0;
  margin: 8px 0 0 0;
  list-style: none;
}

.skill-bento-items > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.skill-bento-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.skill-mono {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-subtle);
  border: 1px solid var(--rule);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.skill-bento-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-muted);
  line-height: 1.2;
}

@media (max-width: 1023px) {
  .skill-bento { grid-template-columns: 1fr; }
  .skill-bento-card { padding: 24px; }
  .skills { padding: var(--space-9) 0; }
}

@media (max-width: 540px) {
  .skill-bento-items { grid-template-columns: repeat(4, 1fr); gap: 12px 8px; }
  .skill-bento-logo,
  .skill-mono { width: 24px; height: 24px; }
  .skill-bento-label { font-size: 10px; }
}

/* === Hobbies — bg: white, stats-card grid === */
.hobbies {
  background: var(--bg);
  padding: var(--space-10) 0;
}

.hobby-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hobby-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  min-height: 180px;
}

/* Subtle scattered tilt */
.hobby-card--tilt-l { transform: rotate(-1.2deg); }
.hobby-card--tilt-r { transform: rotate(1.2deg); }

.hobby-card:hover {
  transform: rotate(0deg) translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}

.hobby-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--bg-subtle);
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
  padding: 8px;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.hobby-icon svg {
  width: 100%;
  height: 100%;
}

.hobby-stat {
  font-family: var(--font-sans);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
  margin-top: auto;
}
.hobby-stat span {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: -0.01em;
  margin-left: 2px;
}

.hobby-stat-unit {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.2;
}

.hobby-name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  width: 100%;
}

@media (max-width: 1023px) {
  .hobby-bento { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .hobby-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .hobby-card { padding: 18px; min-height: 160px; gap: 6px; }
  .hobby-icon { width: 32px; height: 32px; padding: 7px; }
  .hobby-stat { font-size: 30px; }
  .hobby-stat span { font-size: 15px; }
  .hobby-card--tilt-l { transform: rotate(-0.6deg); }
  .hobby-card--tilt-r { transform: rotate(0.6deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hobby-card,
  .hobby-card--tilt-l,
  .hobby-card--tilt-r {
    transform: none;
  }
}

/* === Companies — bg: white === */
.companies {
  background: var(--bg);
  padding: var(--space-10) 0;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.company-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.18s ease;
  box-shadow: var(--shadow-sm);
}

.company-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--rule);
}

.company-card-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--bg-subtle);
  border: 1px solid var(--rule-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
}

.company-card-logo img {
  max-width: 52px;
  max-height: 52px;
  object-fit: contain;
  border-radius: 4px;
}

.company-card-name {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
  margin: 0;
}

.company-card-desc {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.55;
  color: var(--ink-muted);
  flex: 1;
  margin: 0;
}

.company-card .btn-outline-accent {
  align-self: flex-start;
}

@media (max-width: 1023px) and (min-width: 768px) {
  .company-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .companies {
    padding: var(--space-9) 0;
  }
  .company-grid {
    grid-template-columns: 1fr;
  }
}

/* === CTA section — bg: off-white === */
.cta {
  background: var(--bg-subtle);
  padding: var(--space-10) 0;
  text-align: center;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-heading {
  font-family: var(--font-sans);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}

.cta-sub {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink-muted);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta {
    padding: var(--space-9) 0;
  }
  .cta-heading {
    font-size: 32px;
  }
}

/* === Footer — bg: off-white === */
.site-footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--rule);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1.4;
}

.footer-socials {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-socials li { list-style: none; }

.footer-socials a {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-socials a:hover {
  color: var(--ink);
  text-decoration: none;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ============================================================
   STORY PAGE
   ============================================================ */

/* Legacy topbar — replaced by global site-header but kept for safety */
.story-topbar {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}

.story-back {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s ease;
}
.story-back:hover {
  color: var(--ink);
  text-decoration: none;
}

.story-header {
  max-width: var(--measure-prose);
  margin: 0 auto;
  padding: 64px 24px 32px;
}

.story-title {
  font-family: var(--font-sans);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 16px;
}

.story-byline {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-muted);
}

.story-body {
  max-width: var(--measure-prose);
  margin: 0 auto;
  padding: 0 24px;
}

.story-body p {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 1.5em;
}

.story-pullquote {
  padding: 24px 32px;
  margin: 48px 0;
  background: var(--bg-subtle);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
}

.story-pullquote p {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 12px;
}

.story-pullquote cite {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-muted);
  font-style: normal;
  display: block;
}

/* Story page CTA section spacing */
.story-body + .cta {
  margin-top: 0;
}

@media (max-width: 640px) {
  .story-title {
    font-size: 36px;
  }
  .story-header {
    padding: 48px 24px 24px;
  }
  .story-body p {
    font-size: 18px;
  }
  .story-pullquote p {
    font-size: 19px;
  }
  .story-pullquote {
    padding: 20px 24px;
  }
}
