/* ═══════════════════════════════════════
   DAVE MENDOZA — Ghost Theme
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --cream: #FAF6F0;
  --warm-white: #FFFDF9;
  --orange: #F28B3B;
  --orange-light: #FDECD8;
  --teal: #4BBFB8;
  --teal-light: #DCF3F2;
  --blue: #2B7FA6;
  --blue-light: #D8EEF7;
  --navy: #1A3A4A;
  --yellow-light: #FEF9E3;
  --rose: #E8A598;
  --rose-light: #FAEAE7;
  --text: #1A2E38;
  --text-soft: #5A7080;
  --border: #E8DDD0;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── DOT SYSTEM ── */
.dot-divider {
  display: flex; align-items: center; gap: 10px;
  padding: 2.5rem 0;
}
.dot-divider .dd {
  width: 13px; height: 13px; border-radius: 50%;
  transition: transform 0.3s; cursor: pointer; flex-shrink: 0;
}
.dot-divider .dd:hover { transform: scale(1.4); }
.dot-divider .line { flex: 1; height: 1px; background: var(--border); }

.section-accent {
  display: flex; gap: 8px; align-items: center; margin-bottom: 1.1rem;
}
.section-accent .sd { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.section-accent .sd.sm { width: 7px; height: 7px; opacity: 0.45; }

.dot-texture {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.parallax-dots {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0;
}
.pdot {
  position: absolute; border-radius: 50%; will-change: transform;
}

@keyframes floatA { 0%,100%{transform:translateY(0) translateX(0)} 50%{transform:translateY(-18px) translateX(6px)} }
@keyframes floatB { 0%,100%{transform:translateY(0) translateX(0)} 50%{transform:translateY(14px) translateX(-8px)} }
@keyframes floatC { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-10px) scale(1.08)} }
@keyframes floatD { 0%,100%{transform:translateY(0) translateX(0)} 33%{transform:translateY(12px) translateX(10px)} 66%{transform:translateY(-8px) translateX(-6px)} }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,253,249,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%; display: flex; align-items: center;
  justify-content: space-between; height: 64px;
}
.nav-left { display: flex; align-items: center; gap: 0.75rem; }
.nav-dot-group { display: flex; gap: 5px; align-items: center; }
.nav-dot-group .nd {
  width: 8px; height: 8px; border-radius: 50%;
  transition: transform 0.25s, opacity 0.25s; cursor: pointer; opacity: 0.4;
}
.nav-dot-group .nd.active { opacity: 1; transform: scale(1.5); }
.site-title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.1rem; color: var(--navy);
}
.site-title span { color: var(--orange); }
.nav-menu { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-menu a {
  font-size: 0.875rem; font-weight: 500; color: var(--text-soft);
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--navy); }
.nav-menu .nav-cta {
  background: var(--orange); color: white;
  padding: 0.5rem 1.25rem; border-radius: 100px; font-weight: 600;
}
.nav-menu .nav-cta:hover { opacity: 0.85; color: white; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--navy); color: white; padding: 0.85rem 2rem;
  border-radius: 100px; font-weight: 600; font-size: 0.92rem;
  display: inline-block; transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--blue); transform: translateY(-1px); color: white; }
.btn-secondary {
  color: var(--navy); font-weight: 600; font-size: 0.92rem;
  border-bottom: 2px solid var(--orange); padding-bottom: 2px; transition: color 0.2s;
}
.btn-secondary:hover { color: var(--orange); }
.btn-white {
  background: white; color: var(--navy); padding: 0.7rem 1.55rem;
  border-radius: 100px; font-weight: 700; font-size: 0.86rem;
  display: inline-block; transition: transform 0.2s;
}
.btn-white:hover { transform: translateY(-2px); }
.btn-orange {
  background: var(--orange); color: white; padding: 0.85rem 2rem;
  border-radius: 100px; font-weight: 600; font-size: 0.92rem;
  display: inline-block; transition: opacity 0.2s, transform 0.2s;
}
.btn-orange:hover { opacity: 0.88; transform: translateY(-1px); color: white; }

/* ── HERO ── */
.hero-section {
  min-height: 100vh; padding-top: 64px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; overflow: hidden; position: relative;
}
.hero-left {
  display: flex; align-items: center;
  padding: 5rem 3rem 5rem 8%;
  background: var(--cream); position: relative; z-index: 1;
}
.hero-tag {
  display: inline-block; background: var(--orange-light); color: var(--orange);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 100px; margin-bottom: 1.4rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
  font-weight: 900; line-height: 1.1; color: var(--navy); margin-bottom: 1.4rem;
}
.hero-title em { font-style: italic; color: var(--teal); }
.hero-subtitle {
  font-size: 0.98rem; color: var(--text-soft); line-height: 1.78;
  max-width: 440px; margin-bottom: 2.5rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-right { position: relative; overflow: hidden; }
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center; display: block;
  position: relative; z-index: 1;
}
.hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(to top, rgba(26,58,74,0.92) 0%, transparent 55%);
  padding: 2.5rem;
}
.hero-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
.hero-stat {
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px; padding: 1rem; text-align: center;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 900;
  color: white; display: flex; align-items: center; justify-content: center;
  line-height: 1; margin-bottom: 0.3rem; min-height: 1.3rem;
}
.hero-stat-label { font-size: 0.68rem; color: rgba(255,255,255,0.65); font-weight: 500; line-height: 1.3; }

/* ── SECTIONS ── */
.site-section { padding: 6rem 8%; position: relative; overflow: hidden; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 2.6vw, 2.5rem);
  font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 1rem;
}
.section-sub {
  font-size: 0.98rem; color: var(--text-soft);
  line-height: 1.72; max-width: 540px; font-weight: 300;
}

/* ── BENCHMARK ── */
.benchmark-section { background: var(--warm-white); }
.benchmark-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; position: relative; z-index: 1;
}
.bm-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--navy); color: white;
  padding: 0.5rem 1.1rem; border-radius: 100px;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; margin-bottom: 1rem;
}
.bm-dots { display: flex; gap: 4px; }
.bm-dot { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.3); }

.posts-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.5rem; margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.posts-grid-secondary {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; position: relative; z-index: 1;
}

.post-card {
  background: white; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--border); transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(26,58,74,0.1); }
.post-card.featured { grid-row: span 2; }

.post-card-image {
  height: 180px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, var(--teal-light), var(--blue-light));
}
.post-card.featured .post-card-image { height: 240px; }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-card-image img { transform: scale(1.04); }
.post-card-image-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
}
.post-card-image-placeholder svg { width: 42px; height: 42px; opacity: 0.3; }

.post-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.post-card-tag {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.67rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 0.5rem;
}
.post-card-tag::before {
  content: ''; display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: var(--orange); flex-shrink: 0;
}
.post-card-title {
  font-family: 'Playfair Display', serif; font-size: 0.98rem; font-weight: 700;
  color: var(--navy); line-height: 1.35; margin-bottom: 0.5rem;
}
.post-card.featured .post-card-title { font-size: 1.2rem; }
.post-card-excerpt { font-size: 0.82rem; color: var(--text-soft); line-height: 1.6; flex: 1; }
.post-card-footer {
  margin-top: 1.1rem; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.74rem; color: var(--text-soft);
  border-top: 1px solid var(--border); padding-top: 0.75rem;
}
.read-more { color: var(--orange); font-weight: 600; font-size: 0.76rem; }
.read-more:hover { opacity: 0.8; }

/* ── POST PAGE ── */
.post-header { padding: 8rem 8% 4rem; background: var(--warm-white); }
.post-header .post-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 1rem;
}
.post-header .post-tag::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); display: inline-block;
}
.post-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; color: var(--navy); line-height: 1.15; margin-bottom: 1.5rem;
}
.post-header .post-meta {
  font-size: 0.85rem; color: var(--text-soft);
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.post-header .post-meta .dot-sep {
  width: 5px; height: 5px; border-radius: 50%; background: var(--orange); opacity: 0.5;
}
.post-feature-image {
  width: 100%; max-height: 520px; object-fit: cover;
  display: block;
}
.post-content {
  max-width: 720px; margin: 0 auto; padding: 4rem 2rem;
  font-size: 1.05rem; line-height: 1.85; color: var(--text);
}
.post-content h2 {
  font-family: 'Playfair Display', serif; font-size: 1.7rem;
  font-weight: 800; color: var(--navy); margin: 2.5rem 0 1rem;
}
.post-content h3 {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  font-weight: 700; color: var(--navy); margin: 2rem 0 0.75rem;
}
.post-content p { margin-bottom: 1.5rem; font-weight: 300; }
.post-content strong { color: var(--navy); font-weight: 600; }
.post-content em { font-style: italic; }
.post-content a { color: var(--teal); border-bottom: 1px solid var(--teal-light); transition: border-color 0.2s; }
.post-content a:hover { border-color: var(--teal); }
.post-content blockquote {
  border-left: 3px solid var(--orange); padding: 1rem 1.5rem;
  margin: 2rem 0; background: var(--orange-light); border-radius: 0 12px 12px 0;
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic;
  color: var(--navy);
}
.post-content ul, .post-content ol {
  padding-left: 1.5rem; margin-bottom: 1.5rem;
}
.post-content li { margin-bottom: 0.5rem; font-weight: 300; }
.post-content img { border-radius: 16px; margin: 2rem 0; }
.post-content hr { border: none; border-top: 1px solid var(--border); margin: 3rem 0; }
.post-content figure { margin: 2rem 0; }
.post-content figcaption { font-size: 0.82rem; color: var(--text-soft); text-align: center; margin-top: 0.5rem; }

.post-nav {
  max-width: 720px; margin: 0 auto; padding: 0 2rem 5rem;
  display: flex; gap: 1rem; justify-content: space-between; flex-wrap: wrap;
}

/* ── DESARROLLO HUMANO ── */
.desarrollo-section { background: linear-gradient(160deg, var(--teal-light) 0%, var(--cream) 55%); }
.dh-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; margin-top: 3rem; position: relative; z-index: 1; }
.dh-cards { display: flex; flex-direction: column; gap: 0.9rem; }
.dh-card {
  background: white; border-radius: 16px; padding: 1.3rem 1.4rem;
  display: flex; gap: 1rem; align-items: flex-start;
  border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s;
}
.dh-card:hover { transform: translateX(5px); box-shadow: 0 8px 28px rgba(26,58,74,0.08); }
.dh-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dh-icon svg { width: 20px; height: 20px; }
.dh-card h4 { font-family: 'Playfair Display', serif; font-size: 0.98rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.dh-card p { font-size: 0.82rem; color: var(--text-soft); line-height: 1.55; }
.dh-featured { background: var(--navy); border-radius: 24px; overflow: hidden; }
.dh-feat-photo { height: 260px; overflow: hidden; position: relative; }
.dh-feat-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.dh-feat-photo-ov { position: absolute; bottom: 0; left: 0; right: 0; height: 65%; background: linear-gradient(to top, var(--navy), transparent); }
.dh-feat-body { padding: 1.75rem 2.25rem 2.25rem; }
.dh-feat-tag {
  display: inline-block; background: rgba(255,255,255,0.12); color: white;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.28rem 0.72rem; border-radius: 100px; margin-bottom: 0.9rem;
}
.dh-feat-body h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 800; line-height: 1.25; color: white; margin-bottom: 0.8rem; }
.dh-feat-body p { font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.68); margin-bottom: 1.6rem; }

/* ── ABOUT / DAVE ── */
.about-section { background: var(--cream); }
.dave-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center; margin-top: 3rem; position: relative; z-index: 1; }
.dave-visual { position: relative; }
.dave-photo { width: 100%; aspect-ratio: 3/4; border-radius: 28px; overflow: hidden; box-shadow: 0 24px 60px rgba(26,58,74,0.14); }
.dave-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.dave-badge {
  position: absolute; bottom: -0.75rem; right: -1rem;
  background: var(--orange); color: white;
  padding: 0.9rem 1.2rem; border-radius: 18px;
  font-weight: 700; font-size: 0.82rem; line-height: 1.4; text-align: center;
  box-shadow: 0 10px 28px rgba(242,139,59,0.38);
}
.dave-badge span { display: block; font-size: 1.65rem; font-family: 'Playfair Display', serif; font-weight: 900; }
.dave-bio { font-size: 0.98rem; color: var(--text-soft); line-height: 1.82; margin-bottom: 1.35rem; font-weight: 300; }
.dave-bio strong { color: var(--navy); font-weight: 600; }
.competencies { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.comp-tag { background: var(--cream); border: 1.5px solid var(--border); color: var(--navy); font-size: 0.78rem; font-weight: 500; padding: 0.32rem 0.82rem; border-radius: 100px; }
.dave-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.linkedin-btn { background: #0A66C2; color: white; padding: 0.72rem 1.45rem; border-radius: 100px; font-weight: 600; font-size: 0.88rem; transition: opacity 0.2s; }
.linkedin-btn:hover { opacity: 0.85; color: white; }

/* ── CONTACT ── */
.contact-section { background: var(--navy); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; position: relative; z-index: 1; }
.contact-info .section-title { color: white; }
.contact-info .section-sub { color: rgba(255,255,255,0.52); margin-bottom: 2.5rem; }
.c-detail { display: flex; align-items: center; gap: 0.85rem; color: rgba(255,255,255,0.62); font-size: 0.88rem; margin-bottom: 1rem; }
.c-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon svg { width: 15px; height: 15px; }
.contact-form { background: white; border-radius: 24px; padding: 2.5rem; }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 1.65rem; }
.fg { margin-bottom: 1.1rem; }
.fg label { display: block; font-size: 0.76rem; font-weight: 600; color: var(--text-soft); margin-bottom: 0.38rem; }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 0.7rem 1rem; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 0.87rem;
  color: var(--text); background: var(--cream); outline: none;
  transition: border-color 0.2s; appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--teal); background: white; }
.fg textarea { height: 96px; resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit {
  width: 100%; background: var(--orange); color: white; border: none;
  padding: 0.9rem; border-radius: 100px; font-family: 'DM Sans', sans-serif;
  font-size: 0.98rem; font-weight: 700; cursor: pointer;
  transition: background 0.2s, transform 0.2s; margin-top: 0.5rem;
}
.btn-submit:hover { background: #E07A2A; transform: translateY(-1px); }

/* ── FOOTER ── */
.site-footer {
  background: #0F2230; padding: 2rem 8%;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-brand { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; color: rgba(255,255,255,0.4); }
.footer-brand span { color: var(--orange); }
.footer-dots { display: flex; gap: 6px; align-items: center; }
.footer-dots .fd { width: 9px; height: 9px; border-radius: 50%; opacity: 0.5; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { font-size: 0.78rem; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.6); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* ── DIVIDERS ── */
.divider-wrap { padding: 0 8%; }
.divider-wrap.bg-warm { background: var(--warm-white); }
.divider-wrap.bg-cream { background: var(--cream); }
.divider-wrap.bg-teal { background: var(--teal-light); }
.divider-wrap.bg-navy { background: var(--navy); padding-top: 3rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-section { grid-template-columns: 1fr; }
  .hero-left { padding: 6rem 6% 3rem; }
  .hero-right { height: 70vw; }
  .posts-grid, .posts-grid-secondary { grid-template-columns: 1fr; }
  .post-card.featured { grid-row: span 1; }
  .dh-grid, .dave-grid, .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .site-section { padding: 4rem 6%; }
  .nav-menu { display: none; }
  .post-content { padding: 3rem 1.5rem; }
}

/* ── GHOST CARD WIDTHS (required) ── */
.kg-width-wide {
  margin-left: calc(25% - 25vw);
  margin-right: calc(25% - 25vw);
  max-width: 1200px;
}
.kg-width-full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
}
.kg-image { max-width: 100%; }
.kg-image-card { margin: 2rem 0; }
.kg-image-card img { border-radius: 12px; }
.kg-gallery-container { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 2rem 0; }
.kg-gallery-row { display: flex; gap: 0.5rem; }
.kg-gallery-image img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.kg-bookmark-card { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin: 2rem 0; }
.kg-bookmark-container { display: flex; text-decoration: none; color: inherit; }
.kg-bookmark-content { padding: 1.25rem; flex: 1; }
.kg-bookmark-title { font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.kg-bookmark-description { font-size: 0.85rem; color: var(--text-soft); }
.kg-bookmark-metadata { font-size: 0.78rem; color: var(--text-soft); margin-top: 0.6rem; }
.kg-bookmark-thumbnail { width: 160px; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.kg-callout-card { display: flex; gap: 1rem; padding: 1.25rem 1.5rem; border-radius: 12px; background: var(--orange-light); margin: 2rem 0; }
.kg-callout-emoji { font-size: 1.4rem; flex-shrink: 0; }
.kg-toggle-card { border: 1px solid var(--border); border-radius: 12px; padding: 1rem 1.25rem; margin: 1.5rem 0; }
.kg-toggle-heading { font-weight: 600; cursor: pointer; }
.kg-video-card { margin: 2rem 0; }
.kg-video-card video { width: 100%; border-radius: 12px; }
.kg-audio-card { margin: 2rem 0; }
.kg-button-card { text-align: center; margin: 2rem 0; }
.kg-button-card a { display: inline-block; background: var(--orange); color: white; padding: 0.85rem 2rem; border-radius: 100px; font-weight: 600; }
.kg-header-card { padding: 4rem 2rem; text-align: center; background: var(--navy); color: white; border-radius: 16px; margin: 2rem 0; }
.kg-header-card h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; }
.kg-divider-card { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* ── PAGE FEATURES ── */
.has-cover .post-feature-image { display: block; }
.post-full-content { padding-bottom: 4rem; }

.kg-canvas {
  --kg-breakout-adjustment: 0px;
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.post-feature-figure { margin: 0; }
.post-feature-figure figcaption {
  text-align: center; font-size: 0.82rem;
  color: var(--text-soft); padding: 0.5rem;
}

/* ── FORM FEEDBACK ── */
[data-members-success] { display: none; }
[data-members-error] { display: none; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
