/* ── Femme Finance — Design System ──────────────────────────────────────────── */
:root {
  --black:  #0a0a0a;
  --white:  #f5f0eb;
  --accent: #c8922a;
  --accent-light: #e8b86d;
  --accent2:#c94f3a;
  --mid:    #141414;
  --muted:  #888888;
  --border: #1f1f1f;
  --text:   #c8c0b8;
  --green:  #5ec478;
  --blue:   #7eb8e8;
  --orange: #e09050;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(10px);
  z-index: 200;
  gap: 24px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--black) !important;
  padding: 9px 20px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-light) !important; color: var(--black) !important; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  border: 1px solid var(--border);
  min-width: 240px;
  list-style: none;
  z-index: 300;
}
.nav-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 11px 18px;
  font-size: 0.83rem;
  color: var(--muted) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s !important;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: var(--mid); color: var(--white) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--accent);
  padding: 9px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner { display: inline-block; animation: scroll 26s linear infinite; }
.ticker-inner span {
  display: inline-block;
  color: var(--black);
  font-weight: 600;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 28px;
}
.ticker-inner span::before { content:'✦'; margin-right:28px; opacity:0.4; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── HERO (homepage) ── */
.hero {
  padding: 56px 48px 48px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.7s ease both;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  width: 500px; height: 380px;
  background: radial-gradient(ellipse at 80% 100%, rgba(200,146,42,0.10) 0%, transparent 65%);
  pointer-events: none;
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:translateY(0); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 6.5vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}
.hero-title em { font-style:italic; color:var(--accent); }
.hero-desc { font-size:1rem; line-height:1.7; color:#a09890; align-self: center; }
.hero-desc p { margin-bottom: 12px; }
.hero-desc p:last-child { margin-bottom: 0; }
.hero-desc strong { color: var(--white); font-weight: 500; }

/* Framework steps */
.framework {
  padding: 48px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.framework-step {
  background: var(--mid);
  padding: 28px 24px;
  transition: background 0.2s;
}
.framework-step:hover { background: #1a1a1a; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

/* ── FILTER BAR ── */
.filter-bar {
  padding: 22px 48px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.7s 0.15s ease both;
}
.filter-btn {
  padding: 7px 18px;
  border: 1px solid #252525;
  background: transparent;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
  display: inline-block;
}
.filter-btn:hover { background: #1a1a1a; color: var(--white); }
.filter-btn.active { background: var(--accent); color: var(--black); border-color: var(--accent); }

/* ── BLOG GRID ── */
.blog-section { padding: 40px 48px 60px; animation: fadeUp 0.7s 0.2s ease both; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 3px;
}
.card {
  background: var(--mid);
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.5); z-index:2; }
.card:hover .card-img-inner,
.card:hover .card-img-ph { transform: scale(1.04); }

.card-featured { grid-column: span 7; }
.card-medium   { grid-column: span 5; }
.card-small    { grid-column: span 4; }

.card-img      { overflow: hidden; }
.card-featured .card-img { height: 320px; }
.card-medium .card-img   { height: 210px; }
.card-small .card-img    { height: 160px; }

.card-img-inner {
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform 0.45s ease;
}
.card-img-ph {
  width:100%; height:100%;
  display:flex; align-items:center; justify-content:center;
  font-size: 2.5rem;
  transition: transform 0.45s ease;
}
.ph-budgeting     { background: linear-gradient(135deg,#1a1500,#3a2e00); }
.ph-investing     { background: linear-gradient(135deg,#0f2240,#1a3a6e); }
.ph-self-employment { background: linear-gradient(135deg,#2d1830,#5c1f5e); }
.ph-mortgages     { background: linear-gradient(135deg,#0d1f2d,#1a3a5c); }
.ph-credit        { background: linear-gradient(135deg,#2e1a10,#6b3012); }

.card-body { padding: 18px 20px 20px; }
.card-featured .card-body { padding: 22px 26px 26px; }

.card-cat {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 9px; display: inline-block;
}
.cat-budgeting     { color: var(--accent); }
.cat-investing     { color: var(--green); }
.cat-self-employment { color: var(--accent2); }
.cat-mortgages     { color: var(--blue); }
.cat-credit        { color: var(--orange); }

.card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700; line-height: 1.2;
  letter-spacing: -0.01em; color: var(--white);
  margin-bottom: 9px;
}
.card-featured .card-title { font-size: 1.65rem; }
.card-medium .card-title   { font-size: 1.1rem; }
.card-small .card-title    { font-size: 0.97rem; }

.card-excerpt {
  font-size: 0.86rem; line-height: 1.58; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-featured .card-excerpt { -webkit-line-clamp: 3; font-size: 0.9rem; }

.card-meta {
  display:flex; justify-content:space-between; align-items:center;
  margin-top:14px; padding-top:12px; border-top:1px solid #242424;
}
.card-date { font-size: 0.74rem; color: #404040; }
.card-arrow { font-size: 1rem; color: var(--accent); transition: transform 0.18s; }
.card:hover .card-arrow { transform: translateX(4px); }

/* ── CATEGORY PAGE ── */
.cat-hero {
  padding: 60px 48px 48px;
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.7s ease both;
}
.cat-breadcrumb {
  font-size: 0.78rem; color: var(--muted);
  margin-bottom: 20px; letter-spacing: 0.05em;
}
.cat-breadcrumb a { color: var(--accent); }
.cat-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.025em; line-height: 1.0;
  margin-bottom: 16px;
}
.cat-intro {
  max-width: 680px; font-size: 1rem;
  line-height: 1.7; color: #a09890;
}
.skeleton-notice {
  margin-top: 40px; padding: 32px;
  border: 1px solid var(--border);
  background: var(--mid);
  max-width: 520px;
}
.skeleton-notice h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; margin-bottom: 10px;
}
.skeleton-notice p { font-size:0.9rem; color:var(--muted); line-height:1.6; }

/* ── POST PAGE ── */
.post-wrap { max-width: 100%; }
.breadcrumb-bar {
  padding: 20px 48px;
  font-size: 0.78rem; color: var(--muted);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.04em;
}
.breadcrumb-bar a { color: var(--accent); transition: opacity 0.18s; }
.breadcrumb-bar a:hover { opacity: 0.8; }
.breadcrumb-bar span { margin: 0 8px; opacity: 0.4; }

.post-hero { padding: 56px 48px 0; animation: fadeUp 0.6s ease both; }
.post-cat-link {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 18px; display: inline-block;
  transition: opacity 0.18s;
}
.post-cat-link:hover { opacity: 0.7; }
.post-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.025em; line-height: 1.08;
  margin-bottom: 20px; max-width: 820px;
}
.post-meta {
  display: flex; gap: 20px;
  font-size: 0.8rem; color: #555;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.post-meta strong { color: #888; font-weight: 400; }
.post-featured-img {
  width: 100%; max-height: 480px; object-fit: cover; display: block;
}
.post-featured-ph {
  height: 280px; display:flex; align-items:center; justify-content:center; font-size:5rem;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
  max-width: 1200px;
  padding: 0 48px;
}

.post-body {
  padding: 48px 48px 48px 0;
  font-size: 1.05rem; line-height: 1.78; color: var(--text);
  animation: fadeUp 0.6s 0.1s ease both;
}
.post-body h2 {
  font-size: 1.55rem; color: var(--white);
  margin: 42px 0 14px;
}
.post-body h3 {
  font-size: 1.18rem; color: var(--white);
  margin: 30px 0 10px;
}
.post-body p  { margin-bottom: 20px; }
.post-body strong { color: var(--white); font-weight: 500; }
.post-body em     { font-style: italic; color: #a09080; }
.post-body a      { color: var(--accent); border-bottom: 1px solid rgba(232,197,71,0.3); transition: border-color 0.18s; }
.post-body a:hover { border-color: var(--accent); }
.post-body ul, .post-body ol { margin: 0 0 20px 24px; }
.post-body li { margin-bottom: 8px; }
.post-body hr { border: none; border-top: 1px solid var(--border); margin: 36px 0; }
.post-body blockquote {
  border-left: 3px solid var(--accent); margin: 28px 0;
  padding: 4px 0 4px 20px; font-style: italic; color: #907f6f;
}

/* Post sidebar */
.post-sidebar { padding: 48px 0 48px 40px; border-left: 1px solid var(--border); }
.sidebar-section { margin-bottom: 36px; }
.sidebar-title {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-post {
  display: block; padding: 12px 0;
  border-bottom: 1px solid #181818;
  transition: color 0.18s;
}
.sidebar-post:hover { color: var(--accent); }
.sidebar-post-title { font-size: 0.88rem; line-height: 1.4; margin-bottom: 4px; }
.sidebar-post-date  { font-size: 0.74rem; color: var(--muted); }

/* ── UNBIASED CTA ── */
.unbiased-cta {
  background: var(--mid);
  border: 1px solid #2a2a2a;
  border-left: 3px solid var(--accent);
  padding: 28px 30px;
  margin: 40px 0;
}
.unbiased-inner {
  display: flex; gap: 24px;
  align-items: flex-start; flex-wrap: wrap;
}
.unbiased-text { flex: 1; min-width: 200px; }
.unbiased-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; margin-bottom: 8px; color: var(--white);
}
.unbiased-text p { font-size: 0.88rem; line-height: 1.6; color: var(--muted); margin: 0; }
.unbiased-btn {
  display: inline-block;
  background: var(--accent);
  color: #000000 !important;
  padding: 14px 26px;
  font-weight: 700 !important;
  font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.18s;
  align-self: center;
  flex-shrink: 0;
  text-decoration: none !important;
  border: 2px solid var(--accent);
  -webkit-text-fill-color: #000000;
}
.unbiased-btn:hover { background: var(--accent-light); border-color: var(--accent-light); color: #000000 !important; -webkit-text-fill-color: #000000; }
.unbiased-disclosure {
  font-size: 0.73rem; color: #888888;
  margin-top: 12px; font-style: italic;
}

/* ── RELATED POSTS ── */
.related-section {
  padding: 48px 48px 64px;
  border-top: 1px solid var(--border);
}
.related-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 24px;
}
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }

/* ── ABOUT PAGE ── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  padding: 60px 48px 80px;
  animation: fadeUp 0.6s ease both;
}
.about-body h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; margin-bottom: 28px;
}
.about-body h1 em { font-style:italic; color:var(--accent); }
.about-body h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.about-body p { font-size:1.05rem; line-height:1.78; color:var(--text); margin-bottom:20px; }
.about-body p strong { color:var(--white); font-weight:500; }
.about-body ul { margin: 0 0 20px 24px; }
.about-body li { font-size:1rem; color:var(--text); line-height:1.7; margin-bottom:8px; }
.about-sidebar { padding-left: 48px; border-left: 1px solid var(--border); padding-top: 8px; }
.about-photo { margin-bottom: 32px; }
.about-headshot {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.3s ease;
}
.about-headshot:hover { filter: grayscale(0%); }
.about-photo-caption {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 0.05em;
}

.about-stat {
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; color: var(--accent);
  line-height: 1;
}
.about-stat-label { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

/* ── NEWSLETTER ── */
.newsletter {
  background: #b46820;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.nl-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--black); line-height: 1.05;
  letter-spacing: -0.02em;
}
.nl-title em { font-style:italic; }
.nl-right p { color:#222; font-size:0.93rem; line-height:1.65; margin-bottom:20px; }
.nl-form { display:flex; }
.nl-input {
  flex:1; padding:13px 16px;
  background:var(--black); border:none;
  color:var(--white);
  font-family:'DM Sans',sans-serif; font-size:0.88rem; outline:none;
}
.nl-input::placeholder { color:#444; }
.nl-btn {
  padding:13px 22px; background:#111; color:var(--accent);
  border:none; font-family:'DM Sans',sans-serif;
  font-weight:500; font-size:0.8rem;
  letter-spacing:0.09em; text-transform:uppercase;
  cursor:pointer; transition:background 0.18s;
  border-left:1px solid #2a2a2a;
}
.nl-btn:hover { background:#000; }

/* ── STATIC PAGES ── */
.static-body {
  max-width: 760px; padding: 64px 48px 80px;
  animation: fadeUp 0.6s ease both;
}
.static-body h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; margin-bottom: 8px;
}
.static-body h1 em { color:var(--accent); font-style:italic; }
.static-body .last-updated { font-size:0.8rem; color:var(--muted); margin-bottom:36px; }
.static-body h2 { font-size:1.25rem; margin:36px 0 12px; }
.static-body p  { font-size:1rem; line-height:1.78; color:var(--text); margin-bottom:18px; }
.static-body ul { margin:0 0 18px 24px; }
.static-body li { font-size:1rem; color:var(--text); line-height:1.7; margin-bottom:6px; }
.static-body a  { color:var(--accent); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  background: var(--black);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 48px 48px 36px;
}
.footer-brand .logo { margin-bottom: 12px; display:inline-block; }
.footer-brand p { font-size:0.85rem; color:var(--muted); line-height:1.6; max-width:280px; }
.footer-links-group { display:flex; flex-direction:column; gap:0; }
.footer-links-group h4 {
  font-family:'DM Sans',sans-serif; font-size:0.72rem;
  font-weight:500; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--muted); margin-bottom:12px;
}
.footer-links-group a { font-size:0.85rem; color:#444; padding:5px 0; transition:color 0.18s; }
.footer-links-group a:hover { color:var(--white); }
.footer-bottom {
  padding: 18px 48px;
  border-top: 1px solid var(--border);
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:8px;
}
.footer-bottom p { font-size:0.78rem; color:#2e2e2e; }
.footer-bottom a { color:#333; transition:color 0.18s; }
.footer-bottom a:hover { color:var(--white); }

/* ── SCHEMA / SEO helpers ── */
.sr-only {
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); border:0;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width:3px; }
::-webkit-scrollbar-track { background:var(--black); }
::-webkit-scrollbar-thumb { background:#2a2a2a; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .post-layout { grid-template-columns: 1fr; padding: 0 24px; }
  .post-sidebar { display:none; }
  .post-body { padding: 40px 0; }
  .about-layout { grid-template-columns: 1fr; padding: 40px 24px 60px; }
  .about-sidebar { display:none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 860px) {
  nav { padding: 18px 24px; }
  .nav-links { display:none; flex-direction:column; position:absolute; top:100%; left:0; right:0; background:#111; border-bottom:1px solid var(--border); padding:16px 24px; gap:0; }
  nav.open .nav-links { display:flex; }
  .nav-links li { border-bottom:1px solid var(--border); }
  .nav-links a { display:block; padding:12px 0; }
  .nav-toggle { display:block; }
  .dropdown { position:static; transform:none; border:none; background:transparent; }
  .nav-dropdown:hover .dropdown { display:none; }
  .hero { grid-template-columns:1fr; padding:40px 24px 32px; gap:20px; }
  .hero-desc { display:block; font-size:0.88rem; }
  .hero-desc p { margin-bottom:8px; }
  .framework { grid-template-columns:1fr 1fr; padding:24px; }
  .filter-bar { padding:18px 24px; }
  .blog-section { padding:28px 24px 48px; }
  .card-featured, .card-medium, .card-small { grid-column: span 12; }
  .cat-hero { padding:40px 24px 36px; }
  .breadcrumb-bar { padding:16px 24px; }
  .post-hero { padding:40px 24px 0; }
  .related-section { padding:36px 24px 48px; }
  .related-grid { grid-template-columns:1fr; }
  .newsletter { grid-template-columns:1fr; padding:40px 24px; gap:24px; }
  .footer-inner { grid-template-columns:1fr; padding:36px 24px 24px; }
  .footer-brand { grid-column:auto; }
  .footer-bottom { padding:16px 24px; }
  .static-body { padding:40px 24px 60px; }
  .unbiased-inner { flex-direction:column; }
  .unbiased-btn { width:100%; text-align:center; }
}
@media (max-width: 520px) {
  .framework { grid-template-columns:1fr; }
  .hero-title { font-size:2.8rem; }
}

/* ── SOCIAL LINKS ─────────────────────────────────────────────────────────── */
.social-links {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  align-items: center;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}
.social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-bottom-right .social-link {
  width: 28px; height: 28px;
  border: none;
}
.footer-bottom-right span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── PINTEREST SAVE BUTTON ────────────────────────────────────────────────── */
.post-img-wrap {
  position: relative;
  display: block;
}

.pinterest-save {
  position: absolute;
  top: 12px; right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #e60023;
  color: #fff;
  padding: 7px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.post-img-wrap:hover .pinterest-save { opacity: 1; }

/* Framework steps as links */
a.framework-step {
  display: block;
  text-decoration: none;
  color: inherit;
}
a.framework-step:hover { background: #1a1a1a; }
a.framework-step .step-title { color: var(--white); }
a.framework-step:hover .step-title { color: var(--accent); }

/* ── DATA CALLOUT COMPONENTS ─────────────────────────────────────────────── */

/* Comparison table */
.ff-compare {
  margin: 32px 0;
  overflow-x: auto;
}
.ff-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.ff-table tr {
  border-bottom: 1px solid var(--border);
}
.ff-table tr:last-child { border-bottom: none; }
.ff-table td {
  padding: 14px 16px;
  color: var(--text);
  vertical-align: top;
}
.ff-table td.col-label {
  color: var(--white);
  font-weight: 600;
  width: 30%;
  border-right: 1px solid var(--border);
}
.ff-table tr:nth-child(odd) { background: var(--mid); }
.ff-table tr:nth-child(even) { background: #111; }
.ff-table tr:hover { background: #1a1a1a; }

/* Stat blocks */
.ff-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 3px;
  margin: 32px 0;
}
.ff-stat-item {
  background: var(--mid);
  padding: 24px 20px;
  text-align: center;
  border-top: 2px solid var(--accent);
}
.ff-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.ff-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Callout boxes */
.ff-callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  margin: 28px 0;
  border-left: 3px solid var(--accent);
  background: var(--mid);
}
.ff-callout-warning { border-left-color: #e07040; }
.ff-callout-tip     { border-left-color: var(--accent); }
.ff-callout-fact    { border-left-color: #5ec478; }
.ff-callout-example { border-left-color: #7eb8e8; }
.ff-callout-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.ff-callout-body { font-size: 0.92rem; line-height: 1.65; color: var(--text); }

@media (max-width: 520px) {
  .ff-stats { grid-template-columns: repeat(2, 1fr); }
  .ff-stat-num { font-size: 1.8rem; }
}
