/* ================================================
   조용한 복리 — screen.css
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAF7F2;
  --offwhite: #F4EFE4;
  --sand: #E8DFC8;
  --tan: #C9B99A;
  --brown: #8B6F47;
  --dark-brown: #4A3728;
  --charcoal: #2C2420;
  --sage: #7A8C72;
  --muted: #A89880;
  --gold: #C4963A;
  --rust: #B85C38;
  --font-serif: 'Noto Serif KR', Georgia, serif;
  --font-sans: 'Noto Sans KR', -apple-system, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;
}

html { font-size: 62.5%; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 300;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Grain */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  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.035'/%3E%3C/svg%3E");
  opacity: 0.7;
}

/* ================================
   NAVIGATION
================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(244, 239, 228, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sand);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 18px 48px;
  display: flex; justify-content: space-between; align-items: center;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 600;
  color: var(--dark-brown);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 10px;
}

.nav-logo span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}

.nav-links li a {
  font-family: var(--font-sans);
  font-size: 1.35rem; font-weight: 400;
  color: var(--dark-brown);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 2px;
  transition: all 0.18s;
  letter-spacing: 0.02em;
  display: block;
}

.nav-links li a:hover {
  background: var(--sand);
  color: var(--charcoal);
}

.nav-links li.nav-cta { margin-left: 8px; }

.nav-links li.nav-cta a {
  background: var(--dark-brown);
  color: var(--cream);
  border-radius: 2px;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.nav-links li.nav-cta a:hover {
  background: var(--brown);
  color: var(--cream);
}

.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: 1.5px;
  background: var(--dark-brown); border-radius: 1px;
  transition: all 0.2s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: 61px; left: 0; right: 0; z-index: 99;
  background: var(--offwhite);
  border-bottom: 1px solid var(--sand);
  padding: 16px 0;
}

.mobile-menu.open { display: block; }

.mobile-menu ul { list-style: none; }

.mobile-menu ul li a {
  display: block;
  padding: 12px 32px;
  font-family: var(--font-sans);
  font-size: 1.5rem; font-weight: 400;
  color: var(--dark-brown);
  text-decoration: none;
  border-bottom: 1px solid var(--sand);
}

.mobile-menu ul li a.mobile-cta {
  color: var(--gold);
  font-weight: 500;
}

/* ================================
   HERO
================================ */
.hero {
  padding: 130px 48px 80px;
  background: var(--cream);
}

.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1.1rem; font-weight: 400;
  color: var(--sage);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--sage);
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 5.2rem; font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-desc {
  font-family: var(--font-sans);
  font-size: 1.55rem; font-weight: 300;
  color: var(--brown);
  line-height: 1.9;
  max-width: 440px;
  margin-bottom: 44px;
}

.subscribe-form {
  display: flex; max-width: 400px;
}

.subscribe-input {
  flex: 1;
  padding: 13px 18px;
  font-family: var(--font-sans);
  font-size: 1.35rem; font-weight: 300;
  border: 1px solid var(--tan);
  border-right: none;
  background: var(--offwhite);
  color: var(--charcoal);
  outline: none;
  border-radius: 2px 0 0 2px;
}

.subscribe-input::placeholder { color: var(--muted); }

.subscribe-btn {
  padding: 13px 24px;
  background: var(--gold);
  color: white; border: none; cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.25rem; font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 0 2px 2px 0;
  white-space: nowrap;
  transition: background 0.2s;
}

.subscribe-btn:hover { background: var(--brown); }

.subscribe-note {
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: 1.1rem; font-weight: 300;
  color: var(--muted);
}

/* Hero card */
.card-stack { position: relative; }

.card-bg {
  position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  background: var(--sand); border-radius: 4px;
}

.card-main {
  position: relative;
  background: white;
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(74,55,40,0.07);
}

.card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 18px;
}

.card-date {
  font-family: var(--font-sans);
  font-size: 1.1rem; font-weight: 300;
  color: var(--muted); letter-spacing: 0.04em;
}

.live-dot {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-sans);
  font-size: 1.0rem; font-weight: 400;
  color: var(--sage);
}

.live-dot::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--sage); border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.75rem; font-weight: 600;
  color: var(--charcoal); line-height: 1.5;
  margin-bottom: 14px;
}

.card-excerpt {
  font-family: var(--font-sans);
  font-size: 1.35rem; font-weight: 300;
  color: var(--brown); line-height: 1.8;
  margin-bottom: 22px;
}

.metrics-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--sand);
  border: 1px solid var(--sand); border-radius: 3px;
  overflow: hidden; margin-bottom: 20px;
}

.metric {
  background: var(--offwhite);
  padding: 14px 16px; text-align: center;
}

.metric-label {
  font-family: var(--font-sans);
  font-size: 0.95rem; font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 6px;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--charcoal);
}

.metric-value.pos { color: var(--sage); }
.metric-value.neg { color: var(--rust); }
.metric-value.small { font-size: 1.5rem; padding-top: 4px; }

.card-footer {
  display: flex; justify-content: space-between; align-items: center;
}

.lock-badge {
  font-family: var(--font-sans);
  font-size: 1.05rem; font-weight: 300;
  color: var(--muted);
}

.read-more {
  font-family: var(--font-sans);
  font-size: 1.1rem; font-weight: 400;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.read-more:hover { color: var(--brown); border-color: var(--brown); }

/* ================================
   SECTION DIVIDER
================================ */
.section-divider {
  max-width: 1200px; margin: 0 auto;
  padding: 40px 48px;
  display: flex; align-items: center; gap: 24px;
}

.divider-line { flex: 1; height: 1px; background: var(--sand); }

.divider-text {
  font-family: var(--font-sans);
  font-size: 1.1rem; font-weight: 300;
  color: var(--muted); letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 1.1rem; font-weight: 400;
  color: var(--sage);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 36px;
}

/* ================================
   POSTS SECTION
================================ */
.posts-section {
  background: var(--offwhite);
  padding: 72px 48px;
}

.posts-inner { max-width: 1200px; margin: 0 auto; }

.posts-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 1px; background: var(--sand);
  border: 1px solid var(--sand); border-radius: 3px;
  overflow: hidden;
  margin-bottom: 36px;
}

.post-card {
  background: var(--cream);
  padding: 32px; cursor: pointer;
  transition: background 0.2s;
  text-decoration: none; color: inherit;
  display: block;
}

.post-card:hover { background: white; }

.post-tag {
  font-family: var(--font-sans);
  font-size: 1.05rem; font-weight: 400;
  color: var(--sage); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 12px;
}

.post-title {
  font-family: var(--font-serif);
  font-size: 1.65rem; font-weight: 600;
  color: var(--charcoal); line-height: 1.55;
  margin-bottom: 10px;
}

.post-title a { color: inherit; text-decoration: none; }
.post-title a:hover { color: var(--gold); }

.post-card.featured .post-title { font-size: 2.2rem; }

.post-excerpt {
  font-family: var(--font-sans);
  font-size: 1.35rem; font-weight: 300;
  color: var(--brown); line-height: 1.8;
  margin-bottom: 18px;
}

.post-meta {
  font-family: var(--font-sans);
  font-size: 1.05rem; font-weight: 300;
  color: var(--muted);
}

.posts-more { text-align: center; }

.btn-more {
  font-family: var(--font-sans);
  font-size: 1.3rem; font-weight: 400;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.btn-more:hover { color: var(--brown); border-color: var(--brown); }

/* ================================
   PREMIUM SECTION
================================ */
.premium-section {
  padding: 80px 48px;
  background: var(--cream);
}

.premium-inner { max-width: 1200px; margin: 0 auto; }

.premium-header {
  text-align: center; margin-bottom: 56px;
}

.premium-title {
  font-family: var(--font-serif);
  font-size: 3.6rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.premium-desc {
  font-family: var(--font-sans);
  font-size: 1.5rem; font-weight: 300;
  color: var(--brown);
}

.plans-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 720px; margin: 0 auto;
}

.plan-card {
  border: 1px solid var(--sand);
  border-radius: 4px; padding: 36px;
  background: white;
}

.plan-card.featured-plan {
  border-color: var(--gold);
  background: var(--charcoal);
}

.plan-name {
  font-family: var(--font-serif);
  font-size: 1.8rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 6px;
}

.plan-card.featured-plan .plan-name { color: var(--cream); }

.plan-price {
  font-family: var(--font-display);
  font-size: 4rem; color: var(--charcoal); margin-bottom: 4px;
}

.plan-card.featured-plan .plan-price { color: var(--gold); }

.plan-period {
  font-family: var(--font-sans);
  font-size: 1.2rem; font-weight: 300;
  color: var(--muted); margin-bottom: 28px;
}

.plan-card.featured-plan .plan-period { color: var(--tan); }

.plan-features {
  list-style: none; margin-bottom: 28px;
}

.plan-features li {
  font-family: var(--font-sans);
  font-size: 1.35rem; font-weight: 300;
  color: var(--brown);
  padding: 9px 0;
  border-bottom: 1px solid var(--sand);
  display: flex; align-items: center; gap: 10px;
}

.plan-features li::before { content: '—'; color: var(--sage); font-size: 1.2rem; }

.plan-card.featured-plan .plan-features li {
  color: var(--tan);
  border-bottom-color: rgba(255,255,255,0.08);
}

.plan-card.featured-plan .plan-features li::before { color: var(--gold); }

.btn-plan {
  display: block; width: 100%; padding: 13px;
  font-family: var(--font-sans);
  font-size: 1.25rem; font-weight: 500;
  letter-spacing: 0.06em; cursor: pointer;
  border-radius: 2px; text-align: center;
  text-decoration: none; transition: all 0.2s;
}

.btn-plan-free {
  background: transparent;
  border: 1px solid var(--tan);
  color: var(--brown);
}

.btn-plan-free:hover { border-color: var(--brown); color: var(--dark-brown); }

.btn-plan-premium {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: white;
}

.btn-plan-premium:hover { background: var(--brown); border-color: var(--brown); }

/* ================================
   POST PAGE
================================ */
.post-main { padding: 100px 48px 80px; }

.post-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 280px;
  gap: 64px; align-items: start;
}

.post-header { margin-bottom: 40px; }

.post-tag-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1.1rem; font-weight: 400;
  color: var(--sage); letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid var(--sage);
  padding: 3px 12px; border-radius: 20px;
  margin-bottom: 20px;
}

.post-title {
  font-family: var(--font-serif);
  font-size: 4.2rem; font-weight: 700;
  color: var(--charcoal); line-height: 1.25;
  letter-spacing: -0.02em; margin-bottom: 16px;
}

.post-excerpt-header {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem; color: var(--brown);
  line-height: 1.5; margin-bottom: 20px;
}

.post-meta-row {
  font-family: var(--font-sans);
  font-size: 1.3rem; font-weight: 300;
  color: var(--muted); display: flex; gap: 8px; align-items: center;
}

.post-sep { color: var(--sand); }

.post-feature-image {
  margin-bottom: 40px; border-radius: 3px; overflow: hidden;
}

.post-feature-image img { width: 100%; height: auto; display: block; }

/* Post content */
.gh-content {
  font-family: var(--font-serif);
  font-size: 1.85rem; font-weight: 400;
  color: var(--charcoal); line-height: 2.0;
}

.gh-content h2 {
  font-size: 2.6rem; font-weight: 700;
  margin: 48px 0 20px;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 12px;
}

.gh-content h3 {
  font-size: 2.1rem; font-weight: 600;
  margin: 36px 0 16px;
}

.gh-content p { margin-bottom: 28px; }

.gh-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.gh-content blockquote {
  border-left: 3px solid var(--gold);
  background: var(--offwhite);
  padding: 20px 28px;
  border-radius: 0 3px 3px 0;
  font-style: italic; color: var(--brown);
  margin: 32px 0;
}

.gh-content code {
  font-size: 1.5rem;
  background: var(--offwhite);
  padding: 2px 6px; border-radius: 2px;
  color: var(--dark-brown);
}

.gh-content pre {
  background: var(--charcoal);
  padding: 24px; border-radius: 3px;
  overflow-x: auto; margin: 32px 0;
}

.gh-content pre code {
  background: none; color: var(--cream);
  font-size: 1.4rem; padding: 0;
}

.gh-content img { max-width: 100%; border-radius: 3px; }

.gh-content ul, .gh-content ol {
  padding-left: 28px; margin-bottom: 28px;
}

.gh-content li { margin-bottom: 8px; }

/* Upgrade CTA */
.upgrade-cta {
  background: var(--offwhite);
  border: 1px solid var(--sand); border-radius: 3px;
  padding: 48px; text-align: center; margin: 40px 0;
}

.upgrade-cta h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 12px;
}

.upgrade-cta p {
  font-family: var(--font-sans);
  font-size: 1.5rem; font-weight: 300;
  color: var(--brown); margin-bottom: 28px; line-height: 1.7;
}

.btn-upgrade {
  display: inline-block;
  background: var(--gold); color: white;
  padding: 14px 32px; border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 1.35rem; font-weight: 500;
  letter-spacing: 0.04em; text-decoration: none;
  transition: background 0.2s;
}

.btn-upgrade:hover { background: var(--brown); }

/* Post footer / tags */
.post-footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--sand); }

.post-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.post-tag-badge {
  font-family: var(--font-sans);
  font-size: 1.15rem; font-weight: 400;
  color: var(--sage); text-decoration: none;
  border: 1px solid var(--sage);
  padding: 4px 14px; border-radius: 20px;
  transition: all 0.2s;
}

.post-tag-badge:hover { background: var(--sage); color: white; }

/* Post aside */
.post-aside { padding-top: 8px; }

.aside-posts { display: flex; flex-direction: column; gap: 1px; }

.aside-post {
  background: var(--offwhite);
  padding: 20px; text-decoration: none; color: inherit;
  border: 1px solid var(--sand); border-radius: 2px;
  margin-bottom: 12px; transition: background 0.2s;
}

.aside-post:hover { background: white; }

.aside-tag {
  font-family: var(--font-sans);
  font-size: 1.0rem; font-weight: 400;
  color: var(--sage); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 8px;
}

.aside-title {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 600;
  color: var(--charcoal); line-height: 1.45;
  margin-bottom: 8px;
}

.aside-date {
  font-family: var(--font-sans);
  font-size: 1.1rem; font-weight: 300;
  color: var(--muted);
}

/* ================================
   TAG / PAGE
================================ */
.tag-main, .page-main { padding: 100px 48px 80px; }

.tag-inner, .page-inner, .page-article {
  max-width: 800px; margin: 0 auto;
}

.tag-header { margin-bottom: 48px; }
.tag-desc {
  font-family: var(--font-sans);
  font-size: 1.5rem; font-weight: 300;
  color: var(--brown); margin-top: 12px;
}

.tag-posts { display: flex; flex-direction: column; gap: 2px; }

.page-title {
  font-family: var(--font-serif);
  font-size: 4rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 32px;
}

.page-content { font-family: var(--font-serif); font-size: 1.85rem; line-height: 2.0; }

/* ================================
   FOOTER
================================ */
.site-footer {
  background: var(--charcoal);
  padding: 56px 48px;
}

.footer-inner {
  max-width: 1200px; margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.9rem; font-weight: 600;
  color: var(--cream); margin-bottom: 6px;
}

.footer-sub {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold); font-size: 1.4rem;
  margin-bottom: 28px;
}

.footer-links {
  display: flex; justify-content: center; gap: 28px;
  list-style: none; margin-bottom: 28px;
}

.footer-links li a {
  font-family: var(--font-sans);
  font-size: 1.25rem; font-weight: 300;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}

.footer-links li a:hover { color: var(--cream); }

.footer-copy {
  font-family: var(--font-sans);
  font-size: 1.1rem; font-weight: 300;
  color: #5A4A3A;
}

/* ================================
   ANIMATIONS
================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tag { animation: fadeUp 0.6s ease 0.1s both; }
.hero-title { animation: fadeUp 0.6s ease 0.2s both; }
.hero-sub { animation: fadeUp 0.6s ease 0.3s both; }
.hero-desc { animation: fadeUp 0.6s ease 0.35s both; }
.hero-subscribe { animation: fadeUp 0.6s ease 0.45s both; }
.hero-right { animation: fadeUp 0.7s ease 0.3s both; }

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { max-width: 520px; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .post-inner { grid-template-columns: 1fr; }
  .post-aside { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .hero { padding: 100px 24px 60px; }
  .hero-title { font-size: 3.8rem; }
  .posts-section, .premium-section { padding: 56px 24px; }
  .posts-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .section-divider { padding: 32px 24px; }
  .post-main, .tag-main, .page-main { padding: 80px 24px 60px; }
  .post-title { font-size: 3rem; }
  .site-footer { padding: 48px 24px; }
  .footer-links { gap: 16px; flex-wrap: wrap; }
  .nav-inner { padding: 18px 24px; }
}

/* ================================
   GHOST CARD WIDTH CLASSES (required)
================================ */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: 0 auto;
  transform: translateX(calc(50% - 50vw * 0.85));
}

.kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.kg-image { max-width: 100%; }

.kg-gallery-container { width: 100%; }

.kg-gallery-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.kg-gallery-image img {
  display: block;
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kg-bookmark-card {
  width: 100%;
  border: 1px solid var(--sand);
  border-radius: 3px;
  overflow: hidden;
  margin: 24px 0;
}

.kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: var(--charcoal);
}

.kg-bookmark-content { padding: 20px; flex: 1; }
.kg-bookmark-title { font-weight: 600; margin-bottom: 6px; }
.kg-bookmark-description { font-size: 1.4rem; color: var(--brown); }
.kg-bookmark-thumbnail img { width: 160px; height: 100%; object-fit: cover; }

.kg-video-card video { width: 100%; }

.kg-audio-card audio { width: 100%; }

.kg-callout-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--offwhite);
  border: 1px solid var(--sand);
  border-radius: 3px; padding: 20px;
  margin: 24px 0;
}

.kg-toggle-card {
  border: 1px solid var(--sand);
  border-radius: 3px; padding: 20px;
  margin: 24px 0;
}

.kg-button-card { text-align: center; margin: 24px 0; }

.kg-button-card a {
  display: inline-block;
  background: var(--gold); color: white;
  padding: 12px 28px; border-radius: 2px;
  text-decoration: none; font-weight: 500;
}
