@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Lora:ital,wght@0,400;0,600;1,400&family=Barlow:wght@300;400;500&display=swap');

:root {
  --gold: #C9973A;
  --gold-light: #E8BF6A;
  --gold-dark: #8B6320;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #181818;
  --white: #F5F0E8;
  --gray: #999990;
  --border: rgba(201,151,58,0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Barlow', sans-serif; font-weight: 400; overflow-x: hidden; }

/* NAV TOP */
.nav-top { background: var(--black); border-bottom: 1px solid rgba(201,151,58,0.12); padding: 7px 8vw; display: flex; justify-content: space-between; align-items: center; font-size: 11px; letter-spacing: 2px; color: rgba(245,240,232,0.35); text-transform: uppercase; }
.nav-top a { color: rgba(245,240,232,0.35); text-decoration: none; transition: color .2s; }
.nav-top a:hover { color: var(--gold); }
.nav-top-links { display: flex; gap: 24px; }

/* NAV MAIN */
.nav-main { position: sticky; top: 0; z-index: 1000; background: rgba(10,10,10,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: box-shadow .3s; }
.nav-main.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.6); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 8vw; height: 68px; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--gold-dark); object-fit: cover; display: block; }
.nav-logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; flex: 1; justify-content: center; }
.nav-links > li { position: relative; }
.nav-links > li > a { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(245,240,232,0.7); text-decoration: none; padding: 8px 12px; display: block; transition: color .2s; white-space: nowrap; }
.nav-links > li > a:hover { color: var(--gold); }
.nav-links > li > a::after { content: ''; display: block; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .25s; margin-top: 2px; }
.nav-links > li:hover > a::after { transform: scaleX(1); }
.nav-dropdown { position: absolute; top: calc(100% + 1px); left: 50%; transform: translateX(-50%) translateY(-6px); background: rgba(15,15,15,0.98); border: 1px solid var(--border); border-top: 2px solid var(--gold); min-width: 180px; list-style: none; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; backdrop-filter: blur(12px); }
.nav-links > li:hover .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown li a { display: block; padding: 12px 20px; font-size: 13px; color: rgba(245,240,232,0.6); text-decoration: none; border-bottom: 1px solid rgba(201,151,58,0.07); transition: color .2s, background .2s, padding-left .2s; white-space: nowrap; }
.nav-dropdown li:last-child a { border-bottom: none; }
.nav-dropdown li a:hover { color: var(--gold); background: rgba(201,151,58,0.05); padding-left: 26px; }
.nav-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-instagram { display: flex; align-items: center; gap: 7px; background: var(--gold); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 8px 16px; text-decoration: none; transition: background .2s; white-space: nowrap; }
.nav-instagram:hover { background: var(--gold-light); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }
.nav-mobile { display: none; position: fixed; inset: 0; top: 68px; background: rgba(10,10,10,0.98); z-index: 999; padding: 40px 8vw; flex-direction: column; gap: 8px; overflow-y: auto; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(245,240,232,0.7); text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--border); transition: color .2s; }
.nav-mobile a:hover { color: var(--gold); }
@media(max-width:1000px) { .nav-links { display: none; } .nav-hamburger { display: flex; } }

/* HERO */
.hero { position: relative; min-height: 92vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; background: var(--black); }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.45) 55%, rgba(10,10,10,0.2) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 8vw; max-width: 900px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-eyebrow span { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); }
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(72px, 11vw, 150px); font-weight: 800; text-transform: uppercase; letter-spacing: -1px; line-height: 0.88; color: var(--white); margin-bottom: 32px; }
.hero h1 .gold { color: var(--gold); display: block; }
.hero-sub { font-size: 18px; font-weight: 300; line-height: 1.8; color: rgba(245,240,232,0.55); max-width: 560px; margin-bottom: 48px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 80px; }
.hero-stats { position: relative; z-index: 2; display: flex; gap: 0; border-top: 1px solid var(--border); padding: 0 8vw; background: rgba(10,10,10,0.65); backdrop-filter: blur(8px); flex-wrap: wrap; }
.hero-stat { padding: 28px 48px 28px 0; border-right: 1px solid var(--border); margin-right: 48px; }
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hero-stat .num { font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 800; color: var(--gold-light); display: block; line-height: 1; }
.hero-stat .lbl { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gray); }

/* BUTTONS */
.btn-gold { background: var(--gold); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 16px 36px; text-decoration: none; display: inline-block; transition: background .2s; clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px)); }
.btn-gold:hover { background: var(--gold-light); color: var(--black); }
.btn-outline { background: transparent; color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; padding: 15px 36px; border: 1px solid rgba(245,240,232,0.2); text-decoration: none; display: inline-block; transition: all .2s; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* SECTION LABELS */
.section-label { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.section-label span { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); }
.section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.section-title { font-family: 'Lora', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 600; line-height: 1.1; color: var(--white); margin-bottom: 20px; }
.section-title em { color: var(--gold); font-style: italic; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* CATEGORIES */
.categories { padding: 100px 8vw; }
.categories-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 40px; }
.categories-header p { font-size: 16px; font-weight: 300; color: var(--gray); line-height: 1.7; max-width: 400px; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.cat-card { position: relative; aspect-ratio: 3/4; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; text-decoration: none; }
.cat-card-bg { position: absolute; inset: 0; transition: transform .6s ease; }
.cat-bg-dest { background: linear-gradient(135deg, #0d1a0d 0%, #162a16 40%, #0a0a0a 100%); }
.cat-bg-gear { background: linear-gradient(135deg, #1a1208 0%, #2a1e0a 40%, #0a0a0a 100%); }
.cat-bg-tips { background: linear-gradient(135deg, #0d0d1a 0%, #161628 40%, #0a0a0a 100%); }
.cat-card:hover .cat-card-bg { transform: scale(1.05); }
.cat-emoji-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%); font-size: 80px; opacity: 0.15; transition: opacity .4s, transform .4s; }
.cat-card:hover .cat-emoji-bg { opacity: 0.25; transform: translate(-50%, -65%); }
.cat-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.2) 60%, transparent 100%); }
.cat-card-content { position: relative; z-index: 1; padding: 28px; }
.cat-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.cat-name { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--white); display: block; margin-bottom: 10px; }
.cat-desc { font-size: 13px; font-weight: 300; color: rgba(245,240,232,0.55); line-height: 1.6; margin-bottom: 16px; }
.cat-arrow { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

/* LATEST POSTS */
.latest { padding: 100px 8vw; background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.latest-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.posts-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2px; }
.post-card { position: relative; overflow: hidden; display: flex; align-items: flex-end; text-decoration: none; }
.post-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s ease; }
.post-card:hover .post-card-bg { transform: scale(1.04); }
.post-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 65%); }
.post-card-content { position: relative; z-index: 1; padding: 32px; width: 100%; }
.post-card.featured { aspect-ratio: 16/10; }
.post-card.small { min-height: 160px; }
.posts-sidebar { display: flex; flex-direction: column; gap: 2px; }
.post-tag { background: var(--gold); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; padding: 4px 12px; display: inline-block; margin-bottom: 12px; }
.post-title-card { font-family: 'Lora', serif; font-size: clamp(16px, 2vw, 24px); font-weight: 600; color: var(--white); line-height: 1.3; margin-bottom: 8px; }
.post-card.small .post-title-card { font-size: 16px; }
.post-meta-card { font-size: 12px; color: var(--gray); letter-spacing: 1px; }

/* ABOUT */
.about { padding: 100px 8vw; }
.about-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
.about-visual { display: flex; justify-content: center; }
.about-logo-wrap { position: relative; width: 280px; height: 280px; display: flex; align-items: center; justify-content: center; }
.about-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid var(--border); animation: spin 20s linear infinite; }
.about-ring::before { content: ''; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; transform: translateX(-50%); }
.about-ring-2 { position: absolute; inset: 20px; border-radius: 50%; border: 1px solid rgba(201,151,58,0.08); animation: spin 30s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.about-logo-circle { width: 180px; height: 180px; border-radius: 50%; border: 3px solid var(--gold-dark); object-fit: cover; display: block; position: relative; z-index: 1; }
.about-stat-badge { position: absolute; bottom: 20px; right: -10px; background: var(--gold); padding: 12px 18px; text-align: center; z-index: 2; }
.about-stat-badge .big { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--black); display: block; line-height: 1; }
.about-stat-badge .small { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(10,10,10,0.6); }
.about-text p { font-size: 16px; font-weight: 300; line-height: 1.9; color: rgba(245,240,232,0.65); margin-bottom: 20px; }
.about-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.about-pill { background: transparent; border: 1px solid var(--border); color: var(--gold); font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 10px 20px; text-decoration: none; transition: all .2s; }
.about-pill:hover { background: rgba(201,151,58,0.08); border-color: var(--gold); }

/* NEWSLETTER */
.newsletter { background: var(--dark2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 60px 8vw; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text .big { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; text-transform: uppercase; color: var(--white); letter-spacing: 1px; }
.newsletter-text .sub { font-size: 14px; font-weight: 300; color: var(--gray); margin-top: 4px; }
.newsletter-form { display: flex; gap: 0; flex: 1; max-width: 480px; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-right: none; color: var(--white); padding: 14px 20px; font-size: 14px; font-family: 'Barlow', sans-serif; outline: none; }
.newsletter-form input::placeholder { color: rgba(245,240,232,0.25); }
.newsletter-form button { background: var(--gold); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 14px 28px; border: none; cursor: pointer; white-space: nowrap; transition: background .2s; }
.newsletter-form button:hover { background: var(--gold-light); }

/* BLOG INDEX */
.blog-header { padding: 80px 8vw 60px; border-bottom: 1px solid var(--border); }
.blog-grid { padding: 60px 8vw; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.blog-card { display: flex; flex-direction: column; text-decoration: none; background: var(--dark); transition: transform .3s; }
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img { aspect-ratio: 16/9; background: var(--dark2); overflow: hidden; position: relative; }
.blog-card-img-inner { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform .6s; display: flex; align-items: center; justify-content: center; font-size: 48px; opacity: 0.4; }
.blog-card:hover .blog-card-img-inner { transform: scale(1.04); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; border: 1px solid var(--border); border-top: none; }
.blog-card-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.blog-card-title { font-family: 'Lora', serif; font-size: 18px; font-weight: 600; color: var(--white); line-height: 1.4; margin-bottom: 12px; flex: 1; }
.blog-card-meta { font-size: 11px; color: var(--gray); letter-spacing: 1px; }

/* SINGLE POST */
.post-hero { position: relative; min-height: 60vh; display: flex; align-items: flex-end; overflow: hidden; }
.post-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.post-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.1) 100%); }
.post-hero-content { position: relative; z-index: 1; padding: 60px 8vw; max-width: 900px; }
.post-body { max-width: 780px; margin: 0 auto; padding: 60px 8vw; }
.post-body h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--gold-light); margin: 48px 0 20px; }
.post-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); margin: 32px 0 14px; }
.post-body p { font-size: 17px; line-height: 1.9; color: rgba(245,240,232,0.75); margin-bottom: 24px; }
.post-body a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(201,151,58,0.3); transition: border-color .2s; }
.post-body a:hover { border-color: var(--gold); }
.post-body ul, .post-body ol { margin: 0 0 24px 24px; }
.post-body li { font-size: 17px; line-height: 1.9; color: rgba(245,240,232,0.75); margin-bottom: 8px; }
.post-body img { width: 100%; border-radius: 2px; margin: 32px 0; }
.post-body blockquote { border-left: 3px solid var(--gold); padding: 20px 28px; margin: 32px 0; background: rgba(201,151,58,0.05); font-family: 'Lora', serif; font-size: 20px; font-style: italic; color: var(--gold-light); }
.affiliate-disclosure { background: rgba(201,151,58,0.07); border: 1px solid rgba(201,151,58,0.2); border-left: 3px solid var(--gold); padding: 16px 20px; margin-bottom: 40px; font-size: 13px; color: var(--gray); line-height: 1.6; }
.affiliate-disclosure strong { color: var(--gold); }

/* FOOTER */
footer { background: var(--black); border-top: 1px solid var(--border); padding: 64px 8vw 40px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; text-decoration: none; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--gold-dark); object-fit: cover; display: block; }
.footer-brand-name { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); }
.footer-about { font-size: 14px; font-weight: 300; color: var(--gray); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-heading { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--gray); text-decoration: none; transition: color .2s; display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: ''; display: block; width: 14px; height: 1px; background: var(--gold-dark); transition: width .2s; }
.footer-links a:hover { color: var(--white); }
.footer-links a:hover::before { width: 22px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.18); letter-spacing: 1px; }
.footer-copy span { color: var(--gold-dark); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.2); text-decoration: none; letter-spacing: 1px; transition: color .2s; }
.footer-legal a:hover { color: var(--gray); }

/* STATIC PAGES */
.page-header { padding: 100px 8vw 60px; border-bottom: 1px solid var(--border); }
.page-body { padding: 60px 8vw; max-width: 900px; }
.page-body p { font-size: 17px; line-height: 1.9; color: rgba(245,240,232,0.75); margin-bottom: 24px; }

/* RESPONSIVE */
@media(max-width: 900px) {
  .cat-grid { grid-template-columns: 1fr; }
  .posts-layout { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .categories-header { flex-direction: column; align-items: flex-start; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media(max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .hero-stat { padding: 20px 24px 20px 0; margin-right: 24px; }
}

/* Ghost Card Width Classes - Required */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: auto calc(50% - 50vw) * 0.15;
}
.kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.kg-image { max-width: 100%; }
.kg-image-card { margin: 32px 0; }
.kg-image-card img { width: 100%; }
.kg-gallery-container { display: flex; flex-direction: column; }
.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%; margin: 24px 0; }
.kg-bookmark-container { display: flex; min-height: 148px; border: 1px solid var(--border); text-decoration: none; }
.kg-bookmark-content { flex: 1; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
.kg-bookmark-title { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: var(--white); }
.kg-bookmark-description { font-size: 14px; color: var(--gray); margin-top: 8px; }
.kg-bookmark-thumbnail { width: 180px; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
