/* ============================================
   KP DESIGN SYSTEM - kharypenebaker.com
   Global styles: variables, typography, header,
   footer, animations, utility classes
   ============================================ */

/* ---- VARIABLES ---- */
:root {
  --ink: #0B0E1A;
  --ink-soft: #1A1F35;
  --ink-muted: #2D3452;
  --surface: #F4F1EC;
  --surface-warm: #EDE8E0;
  --cream: #FAF8F5;
  --accent: #D4812A;
  --accent-light: #E9A85C;
  --accent-glow: rgba(212, 129, 42, 0.15);
  --text-primary: #1A1F35;
  --text-secondary: #5A5F72;
  --text-light: rgba(255,255,255,0.85);
  --text-dim: rgba(255,255,255,0.5);
  --white: #FFFFFF;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --section-pad: clamp(80px, 10vw, 140px);
  --content-width: 1200px;
  --narrow-width: 800px;
}

/* ---- RESET OVERRIDES ---- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body) !important;
  color: var(--text-primary);
  background: var(--cream) !important;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

*, *::before, *::after { box-sizing: border-box; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Kill Kadence defaults that leak through */
.site-header-wrap,
.site-header-inner-wrap,
#masthead,
.site-footer-wrap,
.kadence-header-wrap { display: none !important; }

/* Remove Kadence inner-wrap padding */
#inner-wrap {
  margin: 0;
  padding: 0;
}

/* ---- HOMEPAGE: KADENCE WRAPPER OVERRIDES ---- */
/* Kadence wraps homepage in .content-area > .content-container > .site-main > .entry-content-wrap
   with margins, max-width, and padding that break our full-width layout */
.home .content-area {
  margin: 0 !important;
  padding: 0 !important;
}

.home .content-container.site-container {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.home .site-main {
  padding: 0 !important;
  margin: 0 !important;
}

.home .entry-content-wrap {
  padding: 0 !important;
  margin: 0 !important;
}

.home .entry-content.single-content {
  max-width: none !important;
  padding: 0 !important;
}

/* Hide Kadence entry hero on homepage (we have our own) */
.home .entry-hero-container-inner,
.home .page-hero-section { display: none !important; }

/* ---- SITE-WIDE CTA BAR OVERRIDE ---- */
/* Old CTA bar has inline styles with old design tokens; override them */
#site-cta-bar {
  background: var(--ink) !important;
  padding: 48px 24px !important;
}

#site-cta-bar p:first-child {
  font-family: var(--font-display) !important;
  color: #fff !important;
}

#site-cta-bar p:nth-child(2) {
  font-family: var(--font-body) !important;
  color: var(--text-light) !important;
}

#site-cta-bar a {
  background: var(--accent) !important;
  font-family: var(--font-mono) !important;
  font-size: 13px !important;
  letter-spacing: 2px !important;
  border-radius: 6px !important;
  padding: 14px 36px !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
}

#site-cta-bar a:hover {
  background: var(--accent-light) !important;
  transform: translateY(-1px);
}

/* ---- UTILITY CLASSES ---- */
.kp-container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.kp-narrow { max-width: var(--narrow-width); }

.kp-section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.kp-section-label--light {
  color: var(--accent-light);
}

/* ---- HEADER / NAV ---- */
.kp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 4vw, 60px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.kp-header.scrolled {
  background: rgba(11, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.kp-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.kp-nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  text-decoration: none;
}

.kp-nav-logo span { color: var(--accent); }

.kp-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.kp-nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s ease;
  position: relative;
  text-decoration: none;
}

.kp-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.kp-nav-links a:hover { color: var(--white); }
.kp-nav-links a:hover::after { width: 100%; }

.kp-nav-links a.current-page { color: var(--white); }
.kp-nav-links a.current-page::after { width: 100%; }

.kp-nav-cta {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase;
  color: var(--ink) !important;
  background: var(--accent);
  padding: 10px 24px;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.kp-nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.kp-nav-cta::after { display: none !important; }

/* Mobile menu toggle */
.kp-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.kp-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* Mobile nav overlay */
.kp-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--ink);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.kp-mobile-nav.open {
  display: flex;
  opacity: 1;
}

.kp-mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.kp-mobile-nav a:hover { color: var(--accent); }

.kp-mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* ---- BUTTONS ---- */
.kp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--accent);
  padding: 16px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none !important;
}

.kp-btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  color: #fff !important;
}

/* Prevent wpautop <br> tags inside buttons */
.kp-btn-primary br,
.kp-btn-ghost br,
.kp-btn-outline br { display: none; }

.kp-btn-primary svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.kp-btn-primary:hover svg { transform: translateX(3px); }

.kp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 16px 24px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.kp-btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

/* Light-bg ghost variant */
.kp-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 16px 32px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}

.kp-btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

/* ---- FOOTER ---- */
.kp-footer {
  background: var(--ink-soft);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 40px;
}

.kp-footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.kp-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.kp-footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.kp-footer-brand span { color: var(--accent); }

.kp-footer-tagline {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 300px;
}

.kp-footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.kp-footer-links a {
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.3s ease;
  text-decoration: none;
}

.kp-footer-links a:hover { color: var(--white); }

.kp-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kp-footer-copyright {
  font-size: 13px;
  color: var(--text-dim);
}

.kp-footer-social {
  display: flex;
  gap: 16px;
}

.kp-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.3s ease;
  text-decoration: none;
}

.kp-footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.kp-footer-social svg {
  width: 16px;
  height: 16px;
}

/* ---- CARDS (shared pattern) ---- */
.kp-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.kp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* Card with top accent bar on hover */
.kp-card--accent {
  position: relative;
}

.kp-card--accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.kp-card--accent:hover::before { transform: scaleX(1); }

/* Dark card variant */
.kp-card--dark {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.08);
}

.kp-card--dark:hover {
  border-color: rgba(212, 129, 42, 0.3);
  box-shadow: none;
  transform: none;
}

/* ---- TYPOGRAPHY (global) ---- */
.kp-h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
}

.kp-h2--light { color: var(--white); }

.kp-h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.kp-h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.kp-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ---- GRAIN TEXTURE (applied to dark sections) ---- */
.kp-grain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 1;
}

/* ---- ANIMATIONS ---- */
@keyframes kpFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes kpFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes kpSlideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Scroll-triggered reveal */
.kp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.kp-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.kp-reveal.visible > *:nth-child(1) { transition-delay: 0s; }
.kp-reveal.visible > *:nth-child(2) { transition-delay: 0.1s; }
.kp-reveal.visible > *:nth-child(3) { transition-delay: 0.2s; }
.kp-reveal.visible > *:nth-child(4) { transition-delay: 0.3s; }

/* ---- CTA SECTION (reusable) ---- */
.kp-cta {
  padding: var(--section-pad) 0;
  background: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.kp-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
}

.kp-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.kp-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.kp-cta p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 40px;
}

.kp-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .kp-nav-links { display: none; }
  .kp-menu-toggle { display: block; }

  .kp-footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .kp-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .kp-footer-links {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .kp-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   HOMEPAGE-SPECIFIC STYLES
   Moved from post_content to avoid wpautop()
   corruption of CSS inside <style> tags
   ============================================ */

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  align-items: center;
  padding: 120px 0 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 100%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(212, 129, 42, 0.06), transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-credentials {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.credential {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  white-space: nowrap;
}

.hero-visual { position: relative; }

.hero-image-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  position: relative;
}

.hero-image-frame img {
  width: 100%;
  display: block;
  filter: contrast(1.05) brightness(0.95);
}

.hero-stat-card {
  position: absolute;
  background: rgba(11, 14, 26, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 16px 24px;
  z-index: 3;
}

.hero-stat-card--top { top: 20px; right: -30px; }
.hero-stat-card--bottom { bottom: 30px; left: -20px; }

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ---- FEATURED IN ---- */
.featured-in {
  position: relative;
  z-index: 3;
  background: var(--ink-soft);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 28px 0;
}

.featured-in-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  gap: 40px;
}

.featured-in-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.featured-in-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: nowrap;
}

.featured-in-logos br { display: none; }

.featured-in-logos span {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.featured-in-logos span.sans {
  font-family: var(--font-body);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
}

.featured-in-logos span:hover { color: #fff; }

/* ---- TOPICS (What I Speak About) ---- */
.topics {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.topics-header {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  margin-bottom: 60px;
}

.topics-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
}

.topics-grid {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.topic-card {
  background: var(--white);
  border-radius: 8px;
  padding: 44px 36px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.topic-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.topic-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.topic-card:hover::before { transform: scaleX(1); }

.topic-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(0,0,0,0.04);
  line-height: 1;
  margin-bottom: 20px;
}

.topic-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.topic-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ---- ABOUT SECTION (homepage) ---- */
.home .about {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.about-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-left { position: sticky; top: 100px; }

.home .about h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 20px;
}

.home .about h2 em { font-style: italic; font-weight: 400; color: var(--accent); }

.about-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.5;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.about-stat {
  padding: 24px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.06);
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.about-body p {
  font-size: 20px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.about-body p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 900;
  float: left;
  line-height: 0.8;
  margin-right: 12px;
  margin-top: 6px;
  color: var(--accent);
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.testimonials h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 60px;
  line-height: 1.15;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s ease;
}

.testimonial-card:hover { border-color: rgba(212, 129, 42, 0.3); }

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.testimonial-name { font-size: 14px; font-weight: 600; color: var(--white); }
.testimonial-role { font-size: 12px; color: var(--text-dim); }

/* ---- MEDIA SECTION (homepage) ---- */
.hp-media {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.hp-media-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.hp-media-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.hp-media-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
}

.hp-media-header a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.hp-media-header a:hover { gap: 12px; }

.hp-media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hp-media-grid > p { display: none; }
.media-card > p { display: none; }

.media-card {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: start;
  text-decoration: none;
}

.media-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }

.media-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-card-icon svg { width: 20px; height: 20px; color: var(--accent); }

.media-card-content h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.35;
}

.media-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.media-card-content p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); }

/* ---- ADVOCACY & LEADERSHIP (homepage) ---- */
.home .advocacy {
  padding: var(--section-pad) 0;
  background: var(--surface);
  position: relative;
}

.advocacy-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.home .advocacy h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 24px;
}

.advocacy-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.advocacy-roles {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.advocacy-role {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.06);
}

.advocacy-role-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.advocacy-role span { font-size: 15px; color: var(--text-primary); font-weight: 500; }
.advocacy-role em { font-style: normal; color: var(--text-secondary); font-weight: 400; }

.pull-quote {
  background: var(--ink);
  border-radius: 8px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.pull-quote::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
}

.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 20px;
}

.pull-quote cite {
  font-family: var(--font-mono);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---- SOCIAL SECTION ---- */
.social {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.social-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  text-align: center;
}

.social h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.social-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.social-card {
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  background: var(--white);
  transition: transform 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  display: block;
}

.social-card:hover { transform: translateY(-4px); border-color: var(--accent); }

.social-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-card-icon.linkedin { background: #0A66C2; }
.social-card-icon.twitter { background: #000; }
.social-card-icon.facebook { background: #1877F2; }
.social-card-icon svg { width: 20px; height: 20px; color: white; }

.social-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.social-card .handle {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.social-card p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); }

/* ---- HOMEPAGE CTA ---- */
.hp-cta {
  padding: var(--section-pad) 0;
  background: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hp-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
}

.hp-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.hp-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hp-cta p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 40px;
}

.hp-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ---- HOMEPAGE RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-left { position: static; }
  .advocacy-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .topics-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .hp-media-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; max-width: 400px; }
  .hp-cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-credentials { gap: 12px; }
  .featured-in-inner { flex-direction: column; gap: 16px; text-align: center; }
  .featured-in-logos { justify-content: center; }
  .hp-media-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---- HOMEPAGE ANIMATIONS ---- */
.hero-eyebrow { animation: kpSlideIn 0.6s ease 0.2s both; }
.hero h1 { animation: kpFadeUp 0.7s ease 0.3s both; }
.hero-subtitle { animation: kpFadeUp 0.7s ease 0.45s both; }
.hero-actions { animation: kpFadeUp 0.7s ease 0.6s both; }
.hero-credentials { animation: kpFadeIn 0.8s ease 0.8s both; }
.featured-in { animation: kpFadeIn 0.6s ease 1s both; }

/* ---- BLOG: ARCHIVE PAGE ---- */

/* Archive page background */
.blog #wrapper,
.archive #wrapper,
.search #wrapper {
  background: var(--cream);
}

/* Archive hero section */
.post-archive-hero-section {
  background: var(--ink) !important;
  padding: calc(72px + 60px) 0 60px !important;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.post-archive-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,129,42,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.post-archive-hero-section .hero-section-overlay {
  display: none;
}

.post-archive-hero-section .archive-title,
.post-archive-hero-section .page-title {
  font-family: var(--font-display) !important;
  font-size: clamp(36px, 5vw, 56px) !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 !important;
  position: relative;
}

/* Archive grid container */
#archive-container.kadence-posts-list {
  gap: 28px;
}

/* Archive card: the entry-list-item wrapper */
.loop-entry.content-bg {
  background: #fff !important;
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(11,14,26,0.06);
  border: 1px solid rgba(11,14,26,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.loop-entry.content-bg:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(11,14,26,0.1);
}

/* Card thumbnail */
.loop-entry .post-thumbnail-inner img {
  transition: transform 0.4s ease;
}

.loop-entry:hover .post-thumbnail-inner img {
  transform: scale(1.03);
}

/* Card content area */
.loop-entry .entry-content-wrap {
  padding: 24px !important;
}

/* Category tags on cards */
.loop-entry .entry-taxonomies .category-links a {
  font-family: var(--font-mono) !important;
  font-size: 11px !important;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent) !important;
  text-decoration: none !important;
  background: rgba(212,129,42,0.08);
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
}

/* Card title */
.loop-entry .entry-title,
.kadence-post-title {
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  line-height: 1.3 !important;
  margin: 8px 0 !important;
}

.loop-entry .entry-title a {
  color: var(--ink) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.loop-entry .entry-title a:hover {
  color: var(--accent) !important;
}

/* Card meta (author, date) */
.loop-entry .entry-meta {
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  color: var(--ink-muted) !important;
  letter-spacing: 0.5px;
}

.loop-entry .entry-meta a {
  color: var(--ink-muted) !important;
  text-decoration: none !important;
}

.loop-entry .entry-meta a:hover {
  color: var(--accent) !important;
}

.loop-entry .entry-meta .meta-label {
  display: none;
}

/* Card excerpt */
.entry-summary,
.post-summary {
  font-family: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

/* Card read more link */
.loop-entry .post-more-link {
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.loop-entry .post-more-link:hover {
  color: var(--ink) !important;
}

.loop-entry .post-more-link .kadence-svg-icon {
  color: var(--accent);
  transition: transform 0.2s ease;
}

.loop-entry .post-more-link:hover .kadence-svg-icon {
  transform: translateX(4px);
}

/* Pagination */
.pagination {
  padding: 40px 0;
}

.pagination .page-numbers {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-muted);
  padding: 8px 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.pagination .page-numbers:hover {
  background: rgba(11,14,26,0.04);
  color: var(--ink);
}

.pagination .page-numbers.current {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
}

/* ---- BLOG: SINGLE POST ---- */

/* Single post page background */
.single-post #wrapper {
  background: var(--cream);
}

/* Single post featured image (behind layout) */
.article-post-thumbnail.kadence-thumbnail-position-behind {
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  margin-bottom: 0;
}

.article-post-thumbnail .post-thumbnail-inner img {
  border-radius: 0;
}

/* Single post article card */
.single-entry.content-bg {
  background: #fff !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 16px rgba(11,14,26,0.06);
  border: 1px solid rgba(11,14,26,0.04);
  overflow: hidden;
}

.single-entry .entry-content-wrap {
  padding: 40px 48px !important;
}

/* Single post title */
.single-entry .entry-title {
  font-family: var(--font-display) !important;
  font-size: clamp(28px, 4vw, 40px) !important;
  font-weight: 700 !important;
  color: var(--ink) !important;
  line-height: 1.2 !important;
  margin-bottom: 16px !important;
}

/* Single post category tag */
.single-entry .entry-taxonomies .category-links a {
  font-family: var(--font-mono) !important;
  font-size: 11px !important;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent) !important;
  text-decoration: none !important;
  background: rgba(212,129,42,0.08);
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}

/* Single post meta */
.single-entry .entry-meta {
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  color: var(--ink-muted) !important;
  letter-spacing: 0.5px;
  margin-bottom: 32px !important;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(11,14,26,0.06);
}

.single-entry .entry-meta a {
  color: var(--ink-muted) !important;
  text-decoration: none !important;
}

.single-entry .entry-meta a:hover {
  color: var(--accent) !important;
}

.single-entry .entry-meta .meta-label {
  display: none;
}

/* Single post content typography */
.entry-content,
.single-content {
  font-family: var(--font-body);
  color: var(--text-primary);
  line-height: 1.8;
  font-size: 17px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.2;
  margin-top: 2em;
  margin-bottom: 0.5em;
  font-weight: 700;
}

.entry-content h2 { font-size: clamp(22px, 3vw, 28px); }
.entry-content h3 { font-size: clamp(18px, 2.5vw, 22px); }

/* ---- DARK-SECTION OVERRIDES ----
   .entry-content applies blog-post colors (dark text, light bg).
   These overrides restore correct colors for homepage sections
   that sit on dark backgrounds (--ink, --ink-soft, --ink-muted). */
.entry-content .hero,
.entry-content .testimonials,
.entry-content .hp-cta,
.entry-content .pull-quote {
  color: var(--text-light);
}

.entry-content .hero h1,
.entry-content .hero h2,
.entry-content .testimonials h2,
.entry-content .hp-cta h2 {
  color: var(--white);
  margin-top: 0;
}

.entry-content .hero h1 em {
  color: var(--accent);
}

.entry-content .hero p,
.entry-content .testimonials p,
.entry-content .hp-cta p,
.entry-content .pull-quote p {
  color: var(--text-light);
}

.entry-content .testimonial-card blockquote,
.entry-content .testimonial-card p,
.entry-content .pull-quote blockquote {
  color: var(--text-light);
}

.entry-content .hero a,
.entry-content .hp-cta a {
  text-decoration: none;
}

.entry-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(212,129,42,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s ease;
}

.entry-content a:hover {
  text-decoration-color: var(--accent);
}

.entry-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(212,129,42,0.04);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: var(--ink);
}

.entry-content img {
  border-radius: 8px;
  margin: 24px 0;
}

.entry-content hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,14,26,0.1), transparent);
  margin: 40px 0;
}

.entry-content ul,
.entry-content ol {
  padding-left: 24px;
}

.entry-content li {
  margin-bottom: 8px;
}

/* Share buttons in post content */
.entry-content .wp-block-buttons .wp-element-button {
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px !important;
  padding: 10px 20px !important;
}

/* Post footer */
.single-entry .entry-footer {
  padding-top: 24px;
  border-top: 1px solid rgba(11,14,26,0.06);
}

/* Post navigation (prev/next) */
.post-navigation {
  padding: 40px 0;
}

.post-navigation .nav-links {
  display: flex;
  gap: 24px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1;
}

.post-navigation a {
  display: block;
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(11,14,26,0.04);
  border: 1px solid rgba(11,14,26,0.04);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-navigation a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(11,14,26,0.08);
}

.post-navigation .post-navigation-sub small {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.post-navigation .nav-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-top: 8px;
}

.post-navigation a:hover .nav-title {
  color: var(--accent);
}

.post-navigation .kadence-svg-icon {
  color: var(--accent);
}

/* Comments section */
.comments-area {
  padding: 40px 0;
}

.comments-area .comments-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 24px;
}

.comments-area .comment-body {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(11,14,26,0.04);
  border: 1px solid rgba(11,14,26,0.04);
}

.comments-area .comment-author {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.comments-area .comment-metadata {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.5px;
}

.comments-area .comment-content {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.7;
}

.comment-respond .comment-reply-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.comment-respond textarea,
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"] {
  font-family: var(--font-body);
  border: 1.5px solid rgba(11,14,26,0.12);
  border-radius: 6px;
  padding: 12px 16px;
  transition: border-color 0.2s ease;
}

.comment-respond textarea:focus,
.comment-respond input:focus {
  border-color: var(--accent);
  outline: none;
}

.comment-respond .form-submit .submit {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.comment-respond .form-submit .submit:hover {
  background: var(--accent-light);
}

/* ---- BLOG: Responsive ---- */
@media (max-width: 768px) {
  .post-archive-hero-section {
    padding: calc(72px + 40px) 20px 40px !important;
  }

  .single-entry .entry-content-wrap {
    padding: 24px 20px !important;
  }

  .post-navigation .nav-links {
    flex-direction: column;
  }
}

/* ---- KADENCE CONTENT AREA OVERRIDES ---- */

/* Ensure cream background bleeds through content areas */
.content-area {
  background: transparent;
}

.site-main {
  background: transparent;
}

/* Override Kadence content container padding for blog */
.blog .content-container,
.archive .content-container,
.single-post .content-container {
  padding-top: 40px;
  padding-bottom: 40px;
}
