/* ============================================================
   Frida — Licensed Mental Health Professional
   Style inspired by juliajarrold.com
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ---------- Tokens ---------- */
:root {
  --white:       #ffffff;
  --off-white:   #f8f7f4;
  --black:       #111111;
  --text:        #1c1c1c;
  --muted:       #676767;
  --light:       #b0a99c;
  --border:      #e2ddd8;
  --accent:      #5c4a3a;

  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --nav-h:       72px;
  --wrap:        1120px;
  --ease:        cubic-bezier(.4, 0, .2, 1);
  --dur:         0.32s;

  --shadow-sm:   0 1px 8px rgba(0,0,0,.06);
  --shadow-md:   0 6px 28px rgba(0,0,0,.10);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(var(--wrap), 100% - 3rem);
  margin-inline: auto;
}

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section--alt { background: var(--off-white); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.22;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.65rem); }
p  { font-size: 1rem; max-width: 64ch; }

.eyebrow {
  display: block;
  font-size: .725rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* ---------- Accessibility: skip link ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: .6rem 1.2rem;
  background: var(--text);
  color: var(--white);
  font-size: .875rem;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  background: var(--white);
  z-index: 200;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease),
              box-shadow    var(--dur) var(--ease);
}
.nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  letter-spacing: .03em;
  color: var(--text);
}
.nav__links {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}
.nav__links a {
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color var(--dur) var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text);
  transition: width var(--dur) var(--ease);
}
.nav__links a:hover,
.nav__links a.active { color: var(--text); }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

/* Hamburger button */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 201;
}
.nav__burger span {
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transform-origin: center;
  transition: transform var(--dur) var(--ease),
              opacity   var(--dur) var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 80vw);
  background: var(--white);
  z-index: 199;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
  transform: translateX(110%);
  transition: transform .42s var(--ease);
  box-shadow: -6px 0 40px rgba(0,0,0,.12);
}
.nav__drawer.open { transform: translateX(0); }
.nav__drawer a {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--text);
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--dur) var(--ease);
}
.nav__drawer a:last-child { border-bottom: none; }
.nav__drawer a:hover { color: var(--accent); }

/* Overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.28);
  z-index: 198;
  opacity: 0;
  pointer-events: none;
  transition: opacity .42s var(--ease);
}
.nav__overlay.visible { opacity: 1; pointer-events: all; }

main { padding-top: var(--nav-h); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2.25rem;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid var(--text);
  background: var(--text);
  color: var(--white);
  transition: background var(--dur) var(--ease),
              color     var(--dur) var(--ease),
              transform .15s var(--ease);
}
.btn:hover { background: var(--white); color: var(--text); }
.btn:active { transform: scale(.98); }

.btn--outline {
  background: transparent;
  color: var(--text);
}
.btn--outline:hover { background: var(--text); color: var(--white); }

.btn--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--text);
}
.btn--light:hover { background: transparent; color: var(--white); }

/* ---------- Hero (homepage) ---------- */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.hero__content { max-width: 520px; }
.hero__title { margin-bottom: 1.5rem; }
.hero__text {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.82;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__visual { position: relative; }
.hero__visual::before {
  content: '';
  position: absolute;
  inset: -1.75rem 1.75rem 1.75rem -1.75rem;
  background: var(--off-white);
  z-index: 0;
}
.hero__img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

/* ---------- Section: Philosophy ---------- */
.philosophy {
  text-align: center;
}
.philosophy__inner {
  max-width: 740px;
  margin-inline: auto;
}
.philosophy__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  margin: 1.5rem 0 2.5rem;
}
.philosophy__deco {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 1.5rem;
}

/* ---------- Offerings preview (home) ---------- */
.services-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3.5rem;
}
.service-item {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background var(--dur) var(--ease);
}
.service-item:hover { background: var(--off-white); }
.service-item__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.service-item__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: .75rem;
}
.service-item__text {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 28ch;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  text-align: center;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--black);
  color: var(--white);
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,.65);
  margin: 0 auto 2.5rem;
  font-size: 1.0625rem;
}
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero (inner pages) ---------- */
.page-banner {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
}
.page-banner__label {
  font-size: .725rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .875rem;
}
.page-banner__title { max-width: 600px; }

/* ---------- About page ---------- */
.about-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 6rem;
  align-items: start;
}
.about-portrait-wrap { position: sticky; top: calc(var(--nav-h) + 2.5rem); }
.about-portrait {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
}
.about-body h3 {
  font-size: 1.1875rem;
  margin: 2.5rem 0 1rem;
  font-family: var(--font-serif);
}
.about-body p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: .9875rem;
  line-height: 1.82;
}
.about-body h2 { margin-bottom: 1.5rem; }
.cred-list { display: flex; flex-direction: column; gap: .625rem; }
.cred-list li {
  font-size: .9375rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.7;
}
.cred-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.license-note {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
  font-size: .875rem;
  color: var(--muted);
  border-left: 2px solid var(--accent);
}

/* ---------- Offerings page ---------- */
.offerings-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 1.5rem;
}
.offering {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: center;
}
.offering:nth-child(even) { direction: rtl; }
.offering:nth-child(even) > * { direction: ltr; }
.offering__img-wrap { position: relative; }
.offering__img-wrap::after {
  content: '';
  position: absolute;
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  background: var(--off-white);
  z-index: -1;
}
.offering__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.offering__tag {
  font-size: .725rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: .75rem;
}
.offering__title { margin-bottom: 1.25rem; }
.offering__text {
  font-size: .9875rem;
  color: var(--muted);
  margin-bottom: 2rem;
  line-height: 1.82;
}
.offering__note {
  font-size: .8625rem;
  color: var(--light);
  font-style: italic;
}

/* SVG illustration placeholder for offerings */
.offering__illus {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.offering__illus svg {
  width: 80px;
  height: 80px;
  opacity: .3;
}

/* ---------- Pricing page ---------- */
.pricing-center { max-width: 680px; margin-inline: auto; }
.price-card {
  border: 1px solid var(--border);
  padding: 3.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.price-tag {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1;
  color: var(--text);
  margin: 1rem 0 .5rem;
}
.price-sub {
  font-size: .9375rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.price-note {
  padding: 1.5rem;
  background: var(--off-white);
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.82;
  text-align: left;
  margin-top: 1.25rem;
}
.good-faith { margin-top: 4.5rem; }
.good-faith h3 { font-size: 1.1875rem; margin-bottom: 1.25rem; }
.good-faith p {
  font-size: .9375rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.82;
  max-width: 58ch;
}
.good-faith a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Contact page ---------- */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  gap: 6rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  margin-bottom: .75rem;
}
.contact-info-item { margin-bottom: 2.25rem; }
.contact-info-item p,
.contact-info-item a {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.85;
  display: block;
}
.contact-info-item a:hover { color: var(--text); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  padding: .875rem 1rem;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: .9375rem;
  color: var(--text);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color var(--dur) var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--text); }
.field textarea { min-height: 140px; resize: vertical; }
.form-success {
  display: none;
  padding: 1.5rem;
  background: var(--off-white);
  border-left: 3px solid var(--accent);
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.75;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0 2.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  display: inline-block;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  text-align: center;
}
.footer__nav a {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color var(--dur) var(--ease);
}
.footer__nav a:hover { color: var(--white); }
.footer__contact { text-align: right; }
.footer__contact a,
.footer__contact p {
  display: block;
  font-size: .9375rem;
  color: rgba(255,255,255,.5);
  line-height: 2;
  transition: color var(--dur) var(--ease);
}
.footer__contact a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer__bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  max-width: none;
}

/* ---------- Scroll animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }

/* ---------- Divider ---------- */
.ornament {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--border);
  margin: 0 auto;
  width: fit-content;
}
.ornament::before, .ornament::after {
  content: '';
  width: 60px;
  height: 1px;
  background: currentColor;
}
.ornament svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__burger  { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2.5rem;
    padding: 2.5rem 0 3.5rem;
  }
  .hero__visual { order: -1; max-width: 340px; margin-inline: auto; }
  .hero__visual::before { display: none; }
  .hero__content { max-width: 100%; text-align: center; }
  .hero__actions { justify-content: center; }

  .services-row { grid-template-columns: 1fr; }

  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-portrait-wrap { position: static; max-width: 320px; }

  .offering { grid-template-columns: 1fr; gap: 2.5rem; }
  .offering:nth-child(even) { direction: ltr; }

  .contact-split { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__contact { text-align: center; }
  .footer__bottom { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .price-card { padding: 2.25rem 1.5rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
}

/* ============================================================
   Blog & Articles
   ============================================================ */

/* ---------- Blog listing grid ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.post-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.post-card__thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--off-white) 0%, #e8e3dc 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.post-card:hover .post-card__thumb img { transform: scale(1.04); }
.post-card__thumb svg { width: 52px; height: 52px; opacity: .2; color: var(--accent); }

.post-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__meta {
  display: flex;
  gap: .75rem;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.post-card__tag {
  font-size: .695rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(92,74,58,.08);
  padding: .2rem .65rem;
}

.post-card__date {
  font-size: .8rem;
  color: var(--muted);
}

.post-card__read-time {
  font-size: .8rem;
  color: var(--light);
}

.post-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: .875rem;
  color: var(--text);
}

.post-card__excerpt {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.77;
  flex: 1;
  margin-bottom: 1.5rem;
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .775rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text);
  transition: gap .22s var(--ease);
}
.post-card__link:hover { gap: .75rem; }
.post-card__link::after { content: '→'; }

/* Featured (large) card — first post on listing page */
.post-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.post-card--featured .post-card__thumb {
  aspect-ratio: auto;
  min-height: 300px;
}
.post-card--featured .post-card__title {
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
}

/* ---------- Blog category filter ---------- */
.blog-filters {
  display: flex;
  gap: .625rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.filter-btn {
  padding: .45rem 1.1rem;
  font-size: .775rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--muted);
  background: none;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease),
              color        var(--dur) var(--ease),
              background   var(--dur) var(--ease);
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--text);
  color: var(--white);
  background: var(--text);
}

/* ---------- Single article: header ---------- */
.article-header {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--border);
}

.article-header__tag {
  display: inline-block;
  font-size: .695rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(92,74,58,.08);
  padding: .25rem .7rem;
  margin-bottom: 1.25rem;
}

.article-header__title {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.2;
  max-width: 780px;
  margin-bottom: 1.5rem;
}

.article-header__meta {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  font-size: .875rem;
  color: var(--muted);
  align-items: center;
}
.article-header__meta span { display: flex; align-items: center; gap: .35rem; }
.article-header__meta svg { width: 14px; height: 14px; opacity: .6; }

/* ---------- Single article: body ---------- */
.article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.article-body > * + * { margin-top: 1.75rem; }

.article-body p {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: var(--text);
  max-width: 100%;
}

.article-body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 3.5rem;
  margin-bottom: .25rem;
}

.article-body h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  margin-top: 2.5rem;
  margin-bottom: .25rem;
}

.article-body blockquote {
  border-left: 3px solid var(--accent);
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  background: var(--off-white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text);
}
.article-body blockquote p { font-size: inherit; line-height: inherit; margin-top: 0; }

.article-body ul,
.article-body ol {
  padding-left: 1.75rem;
  margin: 1.75rem 0;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: .5rem;
}

.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

.article-body strong { font-weight: 500; }

/* ---------- Single article: author box ---------- */
.article-author {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2.25rem;
  background: var(--off-white);
  margin-top: 4rem;
  border-top: 1px solid var(--border);
}
.article-author__img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}
.article-author__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: .25rem;
}
.article-author__role {
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .625rem;
}
.article-author__bio {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.77;
  max-width: 55ch;
}

/* ---------- Single article: prev/next nav ---------- */
.article-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 5rem;
}
.article-pagination__link {
  background: var(--white);
  padding: 1.75rem 2rem;
  transition: background var(--dur) var(--ease);
}
.article-pagination__link:hover { background: var(--off-white); }
.article-pagination__link--next { text-align: right; }
.article-pagination__dir {
  display: block;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.article-pagination__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.35;
}

/* ---------- Blog responsive ---------- */
@media (max-width: 760px) {
  .post-card--featured {
    grid-template-columns: 1fr;
  }
  .post-card--featured .post-card__thumb { min-height: 220px; }
}
@media (max-width: 560px) {
  .article-author { flex-direction: column; }
  .article-pagination { grid-template-columns: 1fr; }
  .article-pagination__link--next { text-align: left; }
}
