/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; line-height: 1.6; color: #374151; background: #fff; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── TOKENS ── */
:root {
  --blue:       #467FF7;
  --blue-dark:  #2558D4;
  --blue-light: #EEF3FE;
  --blue-deep:  #0D1B4B;
  --slate:      #374151;
  --slate-mid:  #6B7280;
  --slate-light:#9CA3AF;
  --slate-bg:   #F9FAFB;
  --border:     #E5E7EB;
  --white:      #ffffff;
  --black:      #111827;
  --amber:      #F59E0B;
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
}

/* ── SKIP LINK (accessibility) ── */
.skip-link {
  position: absolute; top: -40px; left: 0; background: var(--blue);
  color: #fff; padding: 8px 16px; z-index: 1000; border-radius: 0 0 6px 0;
  font-size: 14px; font-weight: 500;
}
.skip-link:focus { top: 0; }

/* ── ANNOUNCEMENT ── */
.announcement {
  background: var(--blue); color: var(--white);
  text-align: center; padding: 10px 20px;
  font-size: 13px; font-weight: 500; line-height: 1.4;
}
.announcement a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.nav-logo { font-family: 'Lora', Georgia, serif; font-size: 18px; font-weight: 600; color: var(--black); }
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--slate-mid); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--black); font-weight: 500; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue); color: var(--white);
  font-size: 14px; font-weight: 500; padding: 10px 20px;
  border-radius: var(--r-md); transition: background .15s;
}
.nav-cta:hover { background: var(--blue-dark); color: #fff; }
.nav-cta:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: .2s; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--white); flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 22px; color: var(--black); font-weight: 500; }
.mobile-menu .nav-cta { font-size: 16px; padding: 14px 32px; }
.close-btn { position: absolute; top: 18px; right: 22px; font-size: 28px; background: none; border: none; cursor: pointer; color: var(--black); line-height: 1; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  font-size: 15px; font-weight: 500; padding: 13px 26px;
  border-radius: var(--r-md); border: none; cursor: pointer;
  transition: background .15s; font-family: inherit;
}
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-primary:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--blue-dark);
  font-size: 15px; font-weight: 500; padding: 12px 24px;
  border-radius: var(--r-md); border: 1.5px solid var(--border);
  cursor: pointer; transition: border-color .15s; font-family: inherit;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-ghost { font-size: 14px; font-weight: 500; color: var(--slate-mid); display: inline-flex; align-items: center; gap: 5px; transition: color .15s; }
.btn-ghost:hover { color: var(--black); }

/* ── HERO ── */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 88vh; max-height: 900px; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 72px 56px 72px 40px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 18px;
}
.eyebrow::before { content: ''; display: block; width: 20px; height: 2px; background: var(--blue); border-radius: 2px; }
h1.hero-h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 600; line-height: 1.15;
  letter-spacing: -0.8px; color: var(--black); margin-bottom: 18px;
}
h1.hero-h1 em { font-style: italic; color: var(--blue); }
.hero-sub { font-size: 16px; line-height: 1.75; color: var(--slate-mid); max-width: 420px; margin-bottom: 26px; }
.hero-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; margin-bottom: 32px; }
.hero-bullets li { font-size: 14px; color: var(--slate); display: flex; align-items: center; gap: 9px; }
.hero-bullets li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-right { position: relative; overflow: hidden; background: var(--blue-deep); }
.hero-right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }

/* ── TRUST BAR ── */
.trust-bar { display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); background: var(--slate-bg); overflow-x: auto; }
.trust-item { display: flex; align-items: center; gap: 8px; padding: 15px 24px; font-size: 13px; color: var(--slate-mid); border-right: 1px solid var(--border); white-space: nowrap; flex-shrink: 0; }
.trust-item:last-child { border-right: none; }
.trust-icon { color: var(--blue); flex-shrink: 0; }

/* ── SECTION SCAFFOLDING ── */
.section { padding: 88px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-bg { background: var(--slate-bg); }
.section-dark { background: var(--blue-deep); }
.section-eyebrow { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.section-eyebrow::before { content: ''; display: block; width: 18px; height: 2px; background: var(--blue); border-radius: 2px; }
.section-h2 { font-family: 'Lora', Georgia, serif; font-size: clamp(24px, 3vw, 38px); font-weight: 600; line-height: 1.2; letter-spacing: -0.4px; color: var(--black); margin-bottom: 14px; }
.section-sub { font-size: 16px; line-height: 1.75; color: var(--slate-mid); max-width: 520px; margin-bottom: 44px; }
.section-header { margin-bottom: 44px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* ── SYMPTOMS ── */
.symptom-list { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.symptom-item { display: flex; align-items: flex-start; gap: 12px; padding: 13px 16px; background: var(--slate-bg); border: 1px solid var(--border); border-radius: var(--r-md); transition: border-color .15s, background .15s; }
.symptom-item:hover { border-color: #b8cffc; background: var(--blue-light); }
.symptom-check { width: 20px; height: 20px; border-radius: 50%; background: var(--blue-light); border: 1.5px solid #b8cffc; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.symptom-check svg { color: var(--blue); }
.symptom-text { font-size: 14px; line-height: 1.5; }

/* ── CONTACT CARD ── */
.contact-card { background: var(--blue-dark); border-radius: var(--r-xl); padding: 40px 36px; color: var(--white); }
.contact-card.sticky { position: sticky; top: 80px; }
.contact-card h3 { font-family: 'Lora', Georgia, serif; font-size: 22px; font-weight: 600; margin-bottom: 10px; line-height: 1.3; }
.contact-card p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.7); margin-bottom: 24px; }
.form-stack { display: flex; flex-direction: column; gap: 10px; }
.form-input { width: 100%; padding: 12px 15px; font-size: 14px; font-family: inherit; background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.2); border-radius: var(--r-md); color: var(--white); outline: none; transition: border-color .15s; }
.form-input::placeholder { color: rgba(255,255,255,.4); }
.form-input:focus { border-color: rgba(255,255,255,.65); }
.form-input:focus-visible { border-color: rgba(255,255,255,.65); }
textarea.form-input { resize: vertical; min-height: 80px; }
.form-btn { width: 100%; padding: 13px; font-size: 15px; font-weight: 500; font-family: inherit; background: var(--white); color: var(--blue-dark); border: none; border-radius: var(--r-md); cursor: pointer; transition: background .15s; margin-top: 2px; }
.form-btn:hover { background: var(--blue-light); }
.form-note { font-size: 12px; color: rgba(255,255,255,.45); text-align: center; margin-top: 8px; }
.form-note a { color: rgba(255,255,255,.7); }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { background: var(--white); border-radius: var(--r-lg); padding: 28px 24px; border: 1px solid var(--border); transition: border-color .2s, box-shadow .2s; }
.service-card:hover { border-color: #b8cffc; box-shadow: 0 4px 20px rgba(70,127,247,.08); }
.service-icon { width: 44px; height: 44px; background: var(--blue-light); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--blue); }
.service-name { font-family: 'Lora', Georgia, serif; font-size: 19px; font-weight: 600; margin-bottom: 8px; color: var(--black); }
.service-desc { font-size: 14px; line-height: 1.7; color: var(--slate-mid); margin-bottom: 14px; }
.service-tag { display: inline-block; font-size: 11px; font-weight: 500; color: var(--blue-dark); background: var(--blue-light); padding: 3px 9px; border-radius: 99px; margin-right: 4px; margin-bottom: 4px; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.process-steps { display: flex; flex-direction: column; }
.process-step { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.process-step:first-child { padding-top: 0; }
.process-step:last-child { border-bottom: none; }
.step-num { font-family: 'Lora', Georgia, serif; font-size: 13px; font-weight: 600; color: #b8cffc; min-width: 24px; padding-top: 2px; }
.step-title { font-size: 15px; font-weight: 600; color: var(--black); margin-bottom: 5px; }
.step-desc { font-size: 14px; line-height: 1.7; color: var(--slate-mid); }
.process-callout { background: var(--blue-light); border-radius: var(--r-xl); padding: 34px 30px; border: 1px solid #b8cffc; position: sticky; top: 80px; }
.og-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid #b8cffc; color: var(--blue-dark); font-size: 12px; font-weight: 500; padding: 5px 11px; border-radius: 99px; margin-bottom: 16px; }
.process-callout h3 { font-family: 'Lora', Georgia, serif; font-size: 20px; font-weight: 600; color: var(--black); margin-bottom: 10px; }
.process-callout p { font-size: 14px; line-height: 1.7; color: var(--slate-mid); margin-bottom: 20px; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-box { background: var(--white); border-radius: var(--r-md); padding: 14px; border: 1px solid #b8cffc; }
.stat-num { font-family: 'Lora', Georgia, serif; font-size: 24px; font-weight: 600; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 12px; color: var(--slate-mid); line-height: 1.4; }

/* ── QUOTE ── */
.quote-section { background: var(--blue-deep); padding: 80px 40px; }
.quote-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.quote-mark { font-family: 'Lora', Georgia, serif; font-size: 72px; line-height: .6; color: var(--blue); display: block; margin-bottom: 28px; }
.quote-text { font-family: 'Lora', Georgia, serif; font-size: clamp(18px, 2.4vw, 26px); font-weight: 400; font-style: italic; line-height: 1.6; color: var(--white); margin-bottom: 18px; }
.quote-attr { font-size: 14px; color: #b8cffc; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.testi-card { background: var(--white); border-radius: var(--r-lg); padding: 24px 20px; border: 1px solid var(--border); display: flex; flex-direction: column; }
.stars { color: var(--amber); font-size: 14px; margin-bottom: 10px; letter-spacing: 1px; }
.testi-text { font-size: 14px; line-height: 1.7; color: var(--black); margin-bottom: 14px; font-style: italic; flex: 1; }
.testi-footer { display: flex; align-items: center; gap: 10px; padding-top: 12px; border-top: 1px solid var(--border); }
.testi-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--blue-light); border: 1.5px solid #b8cffc; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; color: var(--blue-dark); flex-shrink: 0; }
.testi-name { font-size: 13px; font-weight: 500; color: var(--black); }
.testi-role { font-size: 12px; color: var(--slate-light); }

/* ── STATS ROW (About page) ── */
.stats-row { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; margin: 32px 0; }
.stat-cell { flex: 1; text-align: center; padding: 24px 16px; border-right: 1px solid var(--border); background: var(--white); }
.stat-cell:last-child { border-right: none; }
.stat-cell-num { font-family: 'Lora', Georgia, serif; font-size: 36px; font-weight: 600; color: var(--blue); line-height: 1; margin-bottom: 6px; }
.stat-cell-label { font-size: 13px; color: var(--slate-mid); line-height: 1.4; }

/* ── GBP SECTION ── */
.gbp-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; display: flex; gap: 20px; align-items: flex-start; }
.gbp-logo { width: 52px; height: 52px; flex-shrink: 0; }
.gbp-content h3 { font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 6px; }
.gbp-content p { font-size: 14px; color: var(--slate-mid); line-height: 1.6; margin-bottom: 14px; }
.gbp-stars { color: var(--amber); font-size: 18px; letter-spacing: 2px; display: flex; align-items: center; gap: 8px; }
.gbp-stars span { font-size: 13px; color: var(--slate-mid); font-style: normal; }
.gbp-link { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: 14px; font-weight: 500; margin-top: 10px; transition: color .15s; }
.gbp-link:hover { color: var(--blue-dark); }

/* ── ABOUT PHOTO ── */
.about-photo-wrap { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); }
.about-photo-wrap img { width: 100%; object-fit: cover; }

/* ── PAGE HERO ── */
.page-hero { background: var(--blue-deep); padding: 68px 40px; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero h1 { font-family: 'Lora', Georgia, serif; font-size: clamp(28px, 4vw, 46px); font-weight: 600; color: var(--white); letter-spacing: -.5px; line-height: 1.2; margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: #b8cffc; line-height: 1.7; max-width: 540px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; text-align: left; cursor: pointer; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 15px; font-weight: 500; color: var(--black); font-family: inherit; gap: 16px; transition: color .15s; }
.faq-q:hover { color: var(--blue); }
.faq-q:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 2px; }
.faq-icon { color: var(--blue); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 14px; line-height: 1.8; color: var(--slate-mid); max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; padding-bottom: 0; }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 20px; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: box-shadow .2s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: 0 4px 20px rgba(70,127,247,.08); }
.blog-card-img { background: var(--blue-light); height: 180px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 48px; }
.blog-card-body { padding: 22px 20px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { display: inline-block; font-size: 11px; font-weight: 500; color: var(--blue-dark); background: var(--blue-light); padding: 3px 9px; border-radius: 99px; margin-bottom: 10px; }
.blog-card h3 { font-family: 'Lora', Georgia, serif; font-size: 18px; font-weight: 600; color: var(--black); margin-bottom: 8px; line-height: 1.3; }
.blog-card p { font-size: 14px; color: var(--slate-mid); line-height: 1.6; flex: 1; }
.blog-card-footer { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.blog-date { font-size: 12px; color: var(--slate-light); }
.blog-read-more { font-size: 13px; font-weight: 500; color: var(--blue); }

/* ── FINAL CTA ── */
.final-cta { padding: 88px 40px; text-align: center; }
.final-cta-inner { max-width: 540px; margin: 0 auto; }
.final-cta h2 { font-family: 'Lora', Georgia, serif; font-size: clamp(26px, 3.5vw, 40px); font-weight: 600; letter-spacing: -.4px; line-height: 1.2; color: var(--black); margin-bottom: 14px; }
.final-cta h2 em { font-style: italic; color: var(--blue); }
.final-cta > .final-cta-inner > p { font-size: 16px; line-height: 1.7; color: var(--slate-mid); margin-bottom: 28px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.cta-note { font-size: 13px; color: var(--slate-light); }
.cta-note a { color: var(--blue); }

/* ── MOBILE STICKY CTA ── */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--white); border-top: 1px solid var(--border); padding: 12px 16px; gap: 10px; }
.mobile-cta a { flex: 1; text-align: center; padding: 13px; font-size: 15px; font-weight: 500; border-radius: var(--r-md); font-family: inherit; }
.mobile-cta .call-btn { background: var(--blue); color: var(--white); }
.mobile-cta .text-btn { background: var(--blue-light); color: var(--blue-dark); }

/* ── FOOTER ── */
footer { background: var(--black); color: rgba(255,255,255,.55); padding: 52px 40px 28px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 24px; }
.footer-logo { font-family: 'Lora', Georgia, serif; font-size: 18px; font-weight: 600; color: var(--white); display: block; margin-bottom: 10px; }
.footer-logo span { color: var(--blue); }
.footer-tagline { font-size: 13px; line-height: 1.6; margin-bottom: 18px; }
.footer-contact a { display: block; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 5px; transition: color .15s; }
.footer-contact a:hover { color: #b8cffc; }
.footer-col-title { font-size: 11px; font-weight: 500; letter-spacing: .8px; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 14px; }
.footer-links a { display: block; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 10px; transition: color .15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ── BLOG POST PAGE ── */
.blog-post { max-width: 720px; margin: 0 auto; padding: 60px 40px; }
.blog-post h1 { font-family: 'Lora', Georgia, serif; font-size: clamp(26px, 3.5vw, 40px); font-weight: 600; line-height: 1.2; color: var(--black); margin-bottom: 16px; }
.blog-post-meta { font-size: 13px; color: var(--slate-light); margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.blog-post-body h2 { font-family: 'Lora', Georgia, serif; font-size: 24px; font-weight: 600; color: var(--black); margin: 36px 0 12px; }
.blog-post-body p { font-size: 16px; line-height: 1.8; color: var(--slate); margin-bottom: 18px; }
.blog-post-body ul { margin: 0 0 18px 20px; }
.blog-post-body li { font-size: 16px; line-height: 1.8; color: var(--slate); margin-bottom: 6px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav { padding: 0 20px; }
  .hero { grid-template-columns: 1fr; max-height: none; min-height: auto; }
  .hero-right { min-height: 260px; }
  .hero-left { padding: 44px 20px; }
  .section { padding: 56px 20px; }
  .two-col, .process-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .quote-section { padding: 56px 20px; }
  .final-cta { padding: 56px 20px; }
  .page-hero { padding: 48px 20px; }
  .contact-card.sticky { position: static; }
  .process-callout { position: static; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stats-row { flex-direction: column; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-cell:last-child { border-bottom: none; }
  .gbp-card { flex-direction: column; }
  .blog-post { padding: 40px 20px; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; } }
