/* ================================================
   MyBankInsider Ghost Theme — main.css
   Matches calculator at mybankinsider.com
   ================================================ */

:root {
  --bg:        #07090f;
  --surface:   #0e1118;
  --surface2:  #151c28;
  --border:    #1f2d42;
  --border2:   #2a3a52;
  --gold:      #c8a84b;
  --gold-lt:   #e5c96a;
  --gold-dim:  rgba(200,168,75,0.13);
  --gold-glow: rgba(200,168,75,0.06);
  --teal:      #2dd4bf;
  --text:      #dde3ee;
  --text2:     #8a9ab8;
  --text3:     #4a5a78;
  --navy:      #1A1245;
  --green:     #34d399;
  --red:       #f87171;
  --blue:      #7ab3f5;
  --purple:    #a78bfa;
  --font-d:    'Cormorant Garamond', serif;
  --font-b:    'Outfit', sans-serif;
  --nav-h:     64px;
  --max-w:     1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }
::selection { background: rgba(200,168,75,0.25); color: var(--text); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: var(--navy);
  border-bottom: 1px solid rgba(200,168,75,0.18);
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 0 rgba(200,168,75,0.08);
}
nav.scrolled {
  border-bottom-color: rgba(200,168,75,0.30);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 1px 0 rgba(200,168,75,0.15);
}
.nav-logo {
  font-family: var(--font-b); font-size: 17px; font-weight: 700;
  color: #fff; text-decoration: none; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
}
.nav-lock-icon {
  width: 30px; height: 30px; border: 1.5px solid #c8a84b; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: rgba(200,168,75,0.06); transition: background 0.18s;
}
.nav-logo:hover .nav-lock-icon { background: rgba(200,168,75,0.14); }
.nav-wordmark-text { color: #fff; font-weight: 700; letter-spacing: -0.01em; }
.nav-logo-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(200,168,75,0.55); border-left: 1px solid rgba(200,168,75,0.25);
  padding-left: 10px; margin-left: 4px; line-height: 1;
}
.nav-links {
  display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text2);
  letter-spacing: 0.04em; transition: color 0.18s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.18s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links .nav-cta {
  padding: 7px 18px; border: 1px solid rgba(200,168,75,0.35);
  border-radius: 6px; color: var(--gold); transition: background 0.18s, border-color 0.18s;
}
.nav-links .nav-cta:hover { background: rgba(200,168,75,0.10); border-color: var(--gold); }
.nav-links .nav-cta::after { display: none; }
.nav-mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text2); border-radius: 2px; transition: all 0.2s;
}

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--navy); border-bottom: 1px solid rgba(200,168,75,0.18);
  padding: 20px 24px; flex-direction: column; gap: 16px; z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: var(--text2); padding: 8px 0; }
.mobile-menu a:last-child { color: var(--gold); }

/* ── HERO ── */
.insights-hero {
  padding: calc(var(--nav-h) + 64px) 20px 48px;
  text-align: center; position: relative;
}
.insights-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 300px;
  background: linear-gradient(180deg, rgba(26,18,69,0.45) 0%, transparent 100%);
  pointer-events: none;
}
.insights-hero::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(200,168,75,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.6s 0.1s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-eyebrow::after { transform: scaleX(-1); }
.insights-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700; line-height: 1; letter-spacing: -0.02em; color: var(--text);
  margin-bottom: 16px; opacity: 0; animation: fadeUp 0.6s 0.2s forwards;
}
.insights-hero h1 em { color: var(--gold); font-style: italic; }
.insights-hero p {
  font-size: 16px; color: var(--text2); max-width: 480px; margin: 0 auto;
  line-height: 1.6; opacity: 0; animation: fadeUp 0.6s 0.3s forwards;
}

/* ── FEATURED POST ── */
.featured-section {
  max-width: var(--max-w); margin: 48px auto 0; padding: 0 20px;
  opacity: 0; animation: fadeUp 0.6s 0.4s forwards;
}
.featured-post {
  background: linear-gradient(150deg, #1A1245 0%, #130d38 100%);
  border: 1px solid var(--gold); border-radius: 20px;
  padding: 48px 52px; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  box-shadow: 0 0 60px rgba(26,18,69,0.5), inset 0 1px 0 rgba(200,168,75,0.20);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
}
.featured-post:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(26,18,69,0.6), inset 0 1px 0 rgba(200,168,75,0.25);
}
.featured-post::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,168,75,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.featured-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.featured-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s infinite;
}
.featured-post h2 {
  font-family: var(--font-d);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--text);
  margin-bottom: 16px;
}
.featured-post h2 em { color: var(--gold); font-style: italic; }
.featured-excerpt { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 24px; }
.featured-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.meta-tag {
  padding: 4px 12px; border-radius: 12px; font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: rgba(200,168,75,0.12);
}
.meta-date, .meta-read { font-size: 11px; color: var(--text3); }
.featured-read-more {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-size: 13px; font-weight: 600; color: var(--gold);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.featured-read-more svg { transition: transform 0.18s; }
.featured-post:hover .featured-read-more svg { transform: translateX(4px); }
.featured-visual { border-radius: 12px; overflow: hidden; }
.featured-img { width: 100%; height: 280px; object-fit: cover; border-radius: 12px; opacity: 0.8; }

/* ── POSTS SECTION ── */
.posts-section {
  max-width: var(--max-w); margin: 48px auto 80px; padding: 0 20px;
}
.section-header {
  display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px;
}
.section-title {
  font-family: var(--font-d); font-size: 28px; font-weight: 700; color: var(--text);
}
.section-title em { color: var(--gold); font-style: italic; }
.section-count { font-size: 12px; color: var(--text3); }
.section-back { font-size: 12px; color: var(--text3); transition: color 0.18s; }
.section-back:hover { color: var(--gold); }

.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.post-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: 28px; text-decoration: none; display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.post-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.3s;
}
.post-card:hover {
  border-color: rgba(200,168,75,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.post-card:hover::before { transform: scaleX(1); }
.post-card-top { margin-bottom: 16px; }
.post-card h3 {
  font-family: var(--font-d); font-size: 20px; font-weight: 700;
  line-height: 1.2; letter-spacing: -0.01em; color: var(--text);
  margin-bottom: 12px;
}
.post-card p { font-size: 13px; color: var(--text2); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.post-card-footer {
  display: flex; align-items: center; justify-content: space-between; margin-top: auto;
}
.post-card-date { font-size: 11px; color: var(--text3); }
.post-card-arrow { color: var(--gold); opacity: 0; transition: opacity 0.18s, transform 0.18s; }
.post-card:hover .post-card-arrow { opacity: 1; transform: translateX(3px); }
.post-card.wide { grid-column: span 2; }
.post-card.wide h3 { font-size: 24px; }

/* Pagination */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 48px;
}
.pagination-btn {
  padding: 10px 24px; border: 1px solid var(--border2); border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--text2);
  transition: border-color 0.18s, color 0.18s;
}
.pagination-btn:hover { border-color: var(--gold); color: var(--gold); }
.pagination-info { font-size: 12px; color: var(--text3); }

/* ── TAG HERO ── */
.tag-hero {
  padding: calc(var(--nav-h) + 64px) 20px 48px;
  text-align: center; position: relative;
  background: linear-gradient(180deg, rgba(26,18,69,0.45) 0%, transparent 40%);
}
.tag-hero-inner { max-width: 600px; margin: 0 auto; }
.tag-hero h1 {
  font-family: var(--font-d); font-size: clamp(36px, 5vw, 60px);
  font-weight: 700; color: var(--text); margin-bottom: 16px;
}
.tag-hero h1 em { color: var(--gold); font-style: italic; }
.tag-hero p { font-size: 16px; color: var(--text2); line-height: 1.6; }

/* ── SINGLE POST PAGE ── */
.post-page { padding-top: var(--nav-h); }

.post-hero {
  padding: 64px 20px 48px; text-align: center; position: relative;
  background: linear-gradient(180deg, rgba(26,18,69,0.45) 0%, transparent 100%);
}
.post-hero-inner { max-width: 760px; margin: 0 auto; }
.post-tag {
  display: inline-block; margin-bottom: 20px;
  padding: 4px 14px; border-radius: 12px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); background: rgba(200,168,75,0.12);
  transition: background 0.18s;
}
.post-tag:hover { background: rgba(200,168,75,0.2); }
.post-title {
  font-family: var(--font-d);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--text);
  margin-bottom: 20px;
}
.post-excerpt {
  font-size: 18px; color: var(--text2); line-height: 1.6;
  max-width: 600px; margin: 0 auto 24px;
}
.post-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
}
.post-date, .post-read, .post-author { font-size: 12px; color: var(--text3); }
.post-meta-divider { color: var(--border2); }

.post-feature-image {
  max-width: 900px; margin: 0 auto 48px; padding: 0 20px;
}
.post-feature-image img {
  width: 100%; border-radius: 16px; border: 1px solid var(--border);
}

.post-content-wrap {
  max-width: 720px; margin: 0 auto; padding: 0 20px 80px;
}

/* ── POST CONTENT (gh-content) ── */
.gh-content { color: var(--text2); font-size: 17px; line-height: 1.8; }

.gh-content h2 {
  font-family: var(--font-d); font-size: 32px; font-weight: 700; color: var(--text);
  margin: 48px 0 16px; letter-spacing: -0.01em;
}
.gh-content h3 {
  font-family: var(--font-d); font-size: 24px; font-weight: 600; color: var(--gold);
  margin: 32px 0 12px;
}
.gh-content h4 {
  font-family: var(--font-b); font-size: 14px; font-weight: 700; color: var(--text);
  letter-spacing: 0.1em; text-transform: uppercase; margin: 24px 0 8px;
}
.gh-content p { margin-bottom: 24px; }
.gh-content a {
  color: var(--gold); border-bottom: 1px solid rgba(200,168,75,0.3);
  transition: border-color 0.18s;
}
.gh-content a:hover { border-bottom-color: var(--gold); }
.gh-content strong { color: var(--text); font-weight: 600; }
.gh-content em { font-style: italic; color: var(--text); }

.gh-content blockquote {
  border-left: 3px solid var(--gold); padding: 16px 24px;
  margin: 32px 0; background: rgba(200,168,75,0.05);
  border-radius: 0 8px 8px 0;
  font-family: var(--font-d); font-size: 22px; font-style: italic; color: var(--text);
}
.gh-content blockquote p { margin-bottom: 0; color: var(--text); }

.gh-content ul, .gh-content ol {
  padding-left: 24px; margin-bottom: 24px;
}
.gh-content li { margin-bottom: 8px; color: var(--text2); }
.gh-content li::marker { color: var(--gold); }

.gh-content hr {
  border: none; border-top: 1px solid var(--border); margin: 48px 0;
}

.gh-content figure { margin: 32px 0; }
.gh-content figcaption {
  text-align: center; font-size: 12px; color: var(--text3); margin-top: 10px;
}
.gh-content img { border-radius: 12px; border: 1px solid var(--border); }

/* Code */
.gh-content code {
  background: var(--surface2); color: var(--gold); padding: 2px 6px;
  border-radius: 4px; font-size: 13px; font-family: 'SF Mono', monospace;
}
.gh-content pre {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; overflow-x: auto; margin-bottom: 24px;
}
.gh-content pre code { background: none; padding: 0; color: var(--text2); }

/* Post tags */
.post-tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.post-tag-link {
  padding: 5px 14px; border-radius: 12px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text3); border: 1px solid var(--border2);
  transition: color 0.18s, border-color 0.18s;
}
.post-tag-link:hover { color: var(--gold); border-color: rgba(200,168,75,0.35); }

/* Back link */
.post-back { margin-top: 32px; }
.post-back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text3);
  transition: color 0.18s;
}
.post-back-link:hover { color: var(--gold); }

/* Related posts */
.related-posts {
  max-width: var(--max-w); margin: 0 auto 80px; padding: 0 20px;
  border-top: 1px solid var(--border); padding-top: 48px;
}
.related-title {
  font-family: var(--font-d); font-size: 28px; font-weight: 700;
  color: var(--text); margin-bottom: 28px;
}
.related-title em { color: var(--gold); font-style: italic; }

/* ── NEWSLETTER ── */
.newsletter-section {
  max-width: var(--max-w); margin: 0 auto 80px; padding: 0 20px;
}
.newsletter-card {
  background: var(--surface); border: 1px solid var(--border2); border-radius: 20px;
  padding: 48px 52px; display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.newsletter-card::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,168,75,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-text h3 {
  font-family: var(--font-d); font-size: 28px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.newsletter-text h3 em { color: var(--gold); font-style: italic; }
.newsletter-text p { font-size: 14px; color: var(--text2); max-width: 360px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input {
  background: var(--surface2); border: 1px solid var(--border2); border-radius: 8px;
  padding: 12px 18px; font-size: 14px; color: var(--text); font-family: var(--font-b);
  width: 260px; outline: none; transition: border-color 0.18s;
}
.newsletter-form input::placeholder { color: var(--text3); }
.newsletter-form input:focus { border-color: rgba(200,168,75,0.4); }
.newsletter-form button {
  padding: 12px 24px; background: var(--gold); color: #07090f;
  border: none; border-radius: 8px; font-size: 13px; font-weight: 700;
  font-family: var(--font-b); letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: background 0.18s, transform 0.18s; white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* ── FOOTER ── */
footer {
  width: 100%; border-top: 1px solid rgba(200,168,75,0.18);
  padding: 32px 40px;
  background: linear-gradient(180deg, rgba(26,18,69,0.25) 0%, transparent 100%);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-left {
  font-family: var(--font-b); font-size: 16px; font-weight: 700; color: var(--text2);
  display: flex; align-items: center; gap: 8px;
}
.footer-lock-icon {
  width: 24px; height: 24px; border: 1.5px solid rgba(200,168,75,0.4);
  border-radius: 5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.footer-brand-stack { display: flex; flex-direction: column; gap: 4px; }
.footer-wordmark { color: var(--text2); font-weight: 700; white-space: nowrap; }
.footer-tagline {
  font-family: var(--font-d); font-size: 12px; font-style: italic;
  color: rgba(200,168,75,0.45); letter-spacing: 0.04em; line-height: 1; white-space: nowrap;
}
.footer-center { font-size: 11px; color: var(--text3); line-height: 1.6; max-width: 420px; text-align: center; }
.footer-right { display: flex; align-items: center; gap: 16px; }
.footer-right a { font-size: 11px; font-weight: 500; color: var(--text3); transition: color 0.18s; }
.footer-right a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.4; }
}

/* ── RESPONSIVE ── */
@media(max-width: 900px) {
  .posts-grid { grid-template-columns: repeat(2,1fr); }
  .post-card.wide { grid-column: span 1; }
  .featured-post { grid-template-columns: 1fr; gap: 32px; }
  .featured-visual { display: none; }
  .newsletter-card { padding: 32px 28px; }
}
@media(max-width: 600px) {
  nav { padding: 0 20px; }
  .nav-logo-tag { display: none; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .posts-grid { grid-template-columns: 1fr; }
  .featured-post { padding: 32px 24px; }
  .newsletter-form input { width: 100%; }
  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
  .footer-center { text-align: left; }
}

/* ── GHOST CARD REQUIRED CLASSES ── */
.kg-width-wide {
  margin-left: calc(50% - 50vw + 20px);
  margin-right: calc(50% - 50vw + 20px);
  max-width: 1000px;
}
.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: 32px 0; }
.kg-image-card img { border-radius: 12px; border: 1px solid var(--border); }
.kg-gallery-container { display: flex; flex-direction: column; gap: 8px; margin: 32px 0; }
.kg-gallery-row { display: flex; gap: 8px; }
.kg-gallery-image { flex: 1; }
.kg-gallery-image img { border-radius: 8px; width: 100%; height: 100%; object-fit: cover; }
.kg-bookmark-card { margin: 32px 0; }
.kg-bookmark-container {
  display: flex; border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; background: var(--surface); text-decoration: none;
  transition: border-color 0.18s;
}
.kg-bookmark-container:hover { border-color: rgba(200,168,75,0.35); }
.kg-bookmark-content { padding: 20px; flex: 1; }
.kg-bookmark-title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.kg-bookmark-description { font-size: 13px; color: var(--text2); line-height: 1.5; }
.kg-bookmark-metadata { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.kg-bookmark-url { font-size: 11px; color: var(--text3); }
.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: 16px; padding: 20px 24px; margin: 32px 0;
  background: var(--surface2); border-radius: 12px; border: 1px solid var(--border);
}
.kg-callout-emoji { font-size: 20px; flex-shrink: 0; }
.kg-callout-text { font-size: 15px; color: var(--text2); line-height: 1.6; }
.kg-toggle-card { margin: 32px 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.kg-toggle-heading { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.kg-toggle-heading-text { font-size: 15px; font-weight: 600; color: var(--text); }
.kg-toggle-content { padding: 0 20px 16px; font-size: 14px; color: var(--text2); line-height: 1.6; }
.kg-video-card { margin: 32px 0; border-radius: 12px; overflow: hidden; }
.kg-audio-card { margin: 32px 0; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.kg-header-card { padding: 48px 32px; text-align: center; margin: 32px 0; background: var(--surface2); border-radius: 16px; }
.kg-header-card h2 { font-family: var(--font-d); font-size: 32px; color: var(--text); }
.kg-button-card { text-align: center; margin: 32px 0; }
.kg-button-card a {
  display: inline-block; padding: 12px 28px; background: var(--gold);
  color: #07090f; border-radius: 8px; font-weight: 700; font-size: 14px;
  transition: background 0.18s;
}
.kg-button-card a:hover { background: var(--gold-lt); border-bottom: none; }
