/* ============================================================
   O³ Zone — Ghost Theme Styles
   Palette C: Dark Ozone
   Navy #0A1628 | Blue #0D6DC4 | Lime #B5E700
   NO GRADIENTS. Solid colors only.
   ============================================================ */

:root {
  --primary: #0A1628;       /* Navy main background */
  --primary-dark: #060e1a; /* Even darker navy */
  --accent: #0D6DC4;       /* Blue headings, links, accents */
  --accent-hover: #0a5ab0; /* Darker blue for hover */
  --bg: #0A1628;          /* Navy background */
  --bg-light: #132238;    /* Slightly lighter navy */
  --text: #ffffff;        /* White text */
  --text-muted: #94a3b8;  /* Light gray text */
  --text-light: #cbd5e1;  /* Lighter gray text */
  --border: #1d2f48;      /* Dark border */
  --highlight: #B5E700;   /* Lime accent for buttons, badges on dark */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Merriweather', Georgia, serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--primary);
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.site-logo .o3 {
  color: var(--accent);
}

.site-logo .zone {
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.site-nav a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.site-nav a:hover:after {
  width: 100%;
}

.navigation-section {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-item a {
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-item a:hover {
  color: var(--accent);
}

.nav-item a.active {
  color: var(--accent);
}

/* Custom navigation menu styles for primary nav */
.nav-main-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-main-link {
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.2s;
  position: relative;
}

.nav-main-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-main-link:hover {
  color: var(--accent);
}

.nav-main-link:hover:after {
  width: 100%;
}

.nav-main-link.active {
  color: var(--accent);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .site-header { 
    padding: 14px 20px; 
    flex-direction: column;
  }
  
  .nav-toggle { 
    display: block; 
  }
  
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 16px 20px;
    flex-direction: column;
    align-items: center;
  }
  
  .site-nav.open { 
    display: flex; 
  }
  
  .site-nav a { 
    margin: 8px 0; 
  }
}

/* ============================================================
   HERO — SOLID, NO GRADIENTS
   ============================================================ */
.hero {
  background: var(--primary);
  color: var(--text);
  padding: 60px 40px;
  text-align: center;
  border-bottom: 3px solid var(--accent);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero .subtitle {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 24px;
}

.hero .btn {
  display: inline-block;
  background: var(--highlight); /* Using lime on dark */
  color: var(--primary-dark);   /* Dark text, good contrast on lime background */
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.hero .btn:hover {
  background: var(--accent);
  color: var(--text);         /* White text on blue background */
}

.trust-bar {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 12px;
}

.trust-item strong {
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero { padding: 40px 20px; }
  .hero h1 { font-size: 26px; }
  .trust-bar { gap: 16px; }
}

/* ============================================================
   CONTENT CONTAINER
   ============================================================ */
.site-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-title {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--accent);           /* Blue headings */
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--text-muted);        /* Light gray text */
  font-size: 14px;
  font-family: var(--font-heading);
  margin-bottom: 24px;
}

/* ============================================================
   THERAPY CARDS
   ============================================================ */
.therapy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.therapy-card {
  background: var(--bg-light);  /* Darker background on cards */
  border: 1px solid var(--border); /* Subtle border on dark background */
  border-radius: 10px;
  padding: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);          /* White/light text on dark cards */
  display: block;
}

.therapy-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(13,109,196,0.3); /* Updated shadow color to match new blue */
}

.therapy-card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.therapy-card .name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);        /* Blue headings on therapy cards */
  margin-bottom: 4px;
}

.therapy-card .desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.therapy-card .tag {
  display: inline-block;
  margin-top: 8px;
  background: var(--highlight);   /* Lime background on dark cards */
  color: var(--primary-dark);     /* Dark text for good contrast on lime */
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .therapy-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .therapy-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   DECISION GUIDE PROMO
   ============================================================ */
.guide-promo {
  background: var(--primary);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  margin: 32px 0;
  border: 1px solid var(--border); /* Adding subtle border for definition */
}

.guide-promo h3 {
  font-family: var(--font-heading);
  color: var(--text);             /* White text on dark background */
  font-size: 20px;
  margin-bottom: 8px;
}

.guide-promo p {
  color: var(--text-light);       /* Light gray text for readability */
  font-size: 14px;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.guide-promo .btn {
  background: var(--highlight);   /* Lime on dark background */
  color: var(--primary-dark);     /* Dark text for contrast */
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  transition: background 0.2s;
}

.guide-promo .btn:hover {
  background: var(--accent);      /* Blue on hover */
  color: var(--text);             /* White text on blue background */
}

/* ============================================================
   LATEST POSTS
   ============================================================ */
.post-card {
  background: var(--bg-light);     /* Darker background for cards */
  border: 1px solid var(--border); /* Subtle border */
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: border-color 0.2s;
  text-decoration: none;
  color: var(--text);              /* White/light text on dark cards */
}

.post-card:hover {
  border-color: var(--accent);
}

.post-number {
  background: var(--primary);
  color: var(--accent);           /* Blue color on navy background */
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  min-width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-info h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--accent);           /* Blue headings on dark background */
  margin-bottom: 4px;
}

.post-info p {
  font-size: 12px;
  color: var(--text-muted);        /* Light gray text */
}

.post-tag {
  font-family: var(--font-heading);
  font-size: 10px;
  color: var(--accent);           /* Blue tags on dark background */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 480px) {
  .post-card { flex-direction: column; text-align: center; }
}

/* ============================================================
   OPINION CARDS
   ============================================================ */
.opinion-card {
  background: var(--bg-light);      /* Darker background on opinion cards */
  border-left: 4px solid var(--accent); /* Blue accent border on dark */
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
  text-decoration: none;
  color: var(--text);               /* White text on opinion cards */
  display: block;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.opinion-card:hover {
  border-left-color: var(--highlight); /* Lime hover color for accent */
}

.opinion-card .topic {
  font-family: var(--font-heading);
  font-size: 10px;
  color: var(--accent);           /* Blue topic on dark background */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.opinion-card h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--text);            /* White heading on dark background */
  margin-bottom: 6px;
}

.opinion-card p {
  font-size: 13px;
  color: var(--text-muted);        /* Light gray text */
  line-height: 1.6;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--bg-light);     /* Darker background for newsletter */
  border: 2px solid var(--accent); /* Blue border on dark background */
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  margin: 32px 0;
}

.newsletter h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--accent);           /* Blue title on dark background */
  margin-bottom: 8px;
}

.newsletter p {
  font-size: 13px;
  color: var(--text-muted);        /* Light gray text */
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-heading);
}

.newsletter-form .submit {
  background: var(--highlight);    /* Lime on dark background */
  color: var(--primary-dark);      /* Dark text for contrast on lime */
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form .submit:hover {
  background: var(--accent);       /* Blue on hover */
  color: var(--text);              /* White text on blue background */
}

@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary);
  padding: 32px 40px;
  margin-top: 48px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.footer-logo .o3 {
  color: var(--accent);
}

.footer-logo .zone {
  color: var(--text);            /* White text to match "o3" color */
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  margin-left: 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--accent);          /* Blue on hover instead of white */
}

.footer-copy {
  color: var(--text-muted);      /* Light gray footer text */
  font-family: var(--font-heading);
  font-size: 11px;
  margin-top: 16px;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.footer-disclaimer {
  color: var(--text-muted);      /* Light gray footer text */
  font-family: var(--font-heading);
  font-size: 10px;
  margin-top: 8px;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .site-footer { padding: 24px 20px; }
  .footer-inner { flex-direction: column; gap: 16px; }
  .footer-links a { margin: 0 10px; }
}

/* ============================================================
   POST PAGE — 3-LAYER DEPTH
   ============================================================ */
.post-header {
  background: var(--primary);
  color: var(--text);
  padding: 48px 40px;
  text-align: center;
}

.post-header h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto 12px;
}

.post-header .post-meta {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 13px;
}

.post-header .post-meta a {
  color: var(--accent);
  text-decoration: none;
}

/* Depth navigation */
.depth-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 24px auto 0;
  flex-wrap: wrap;
}

.depth-btn {
  background: rgba(255,255,255,0.1);
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 16px;
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.depth-btn:hover,
.depth-btn.active {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .post-header { padding: 32px 20px; }
  .post-header h1 { font-size: 24px; }
}

/* Post content */
.post-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 24px;
}

.post-content h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--accent);           /* Blue headings on dark background */
  margin: 32px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.post-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--accent);           /* Blue headings on dark background */
  margin: 24px 0 8px;
}

.post-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 24px;
  color: var(--text);             /* Make sure text is readable */
}

.post-content ul, .post-content ol {
  margin: 0 0 16px 24px;
}

.post-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.post-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 12px 20px;
  margin: 20px 0;
  background: var(--bg-light);    /* Dark background on blockquotes */
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-muted);        /* Light gray text */
}

.post-content strong {
  color: var(--accent);        /* Blue strong text on dark background */
  font-weight: 700;
}

.post-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(8,145,178,0.3);
  text-underline-offset: 2px;
}

.post-content a:hover {
  text-decoration-color: var(--accent);
}

/* Protocol card (printable) */
.protocol-card {
  background: var(--bg-light);    /* Dark background on protocol card */
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
}

.protocol-card h4 {
  font-family: var(--font-heading);
  color: var(--accent);          /* Blue headings */
  font-size: 16px;
  margin-bottom: 12px;
}

.protocol-card .download-btn {
  display: inline-block;
  background: var(--highlight);   /* Lime on dark background */
  color: var(--primary-dark);     /* Dark text for contrast on lime */
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  margin-top: 12px;
  transition: background 0.2s;
}

.protocol-card .download-btn:hover {
  background: var(--accent);      /* Blue on hover */
  color: var(--text);             /* White text on blue background */
}

/* ============================================================
   SEARCH
   ============================================================ */
.search-trigger {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
  transition: color 0.2s;
}

.search-trigger:hover {
  color: #ffffff;
}

.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.85);
  z-index: 200;
  padding: 80px 20px 20px;
}

.search-overlay.open {
  display: block;
}

.search-box {
  max-width: 600px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--accent);
  border-radius: 8px;
  font-size: 18px;
  font-family: var(--font-heading);
  background: var(--bg-light);    /* Dark background for search input */
  color: var(--text);             /* Light text color */
  outline: none;
}

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

.search-results {
  margin-top: 16px;
  max-height: 60vh;
  overflow-y: auto;
}

.search-result {
  background: var(--bg-light);     /* Dark background for search results */
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 8px;
  text-decoration: none;
  color: var(--text);              /* Light text color */
  display: block;
  transition: border-color 0.2s;
  border: 1px solid var(--border);
}

.search-result:hover {
  border-color: var(--accent);
}

.search-result h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--accent);           /* Blue header for contrast on dark */
  margin-bottom: 4px;
}

.search-result p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.search-result .match-context {
  font-size: 11px;
  color: var(--accent);
  margin-top: 4px;
}

.search-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
}

.search-no-results {
  color: var(--text-light);
  font-family: var(--font-heading);
  text-align: center;
  padding: 32px;
  font-size: 14px;
}

/* ============================================================
   PAGE (generic)
   ============================================================ */
.page-header {
  background: var(--primary);
  color: #ffffff;
  padding: 48px 40px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .page-header { padding: 32px 20px; }
  .page-header h1 { font-size: 24px; }
}

/* ============================================================
   TAG PAGE
   ============================================================ */
.tag-header {
  background: var(--primary);
  color: #ffffff;
  padding: 48px 40px;
  text-align: center;
}

.tag-header h1 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
}

.tag-header .tag-desc {
  color: var(--text-light);
  font-size: 14px;
  margin-top: 8px;
  font-family: var(--font-heading);
}

/* ============================================================
   ERROR PAGE
   ============================================================ */
.error-page {
  text-align: center;
  padding: 80px 20px;
}

.error-code {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.error-message {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text-muted);        /* Light gray text */
  margin-bottom: 24px;
}

.error-link {
  display: inline-block;
  background: var(--highlight);    /* Lime on dark background */
  color: var(--primary-dark);      /* Dark text for contrast */
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  transition: background 0.2s;
}

.error-link:hover {
  background: var(--accent);       /* Blue on hover */
  color: var(--text);              /* White text on blue background */
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
.hidden-mobile { display: block; }
.visible-mobile { display: none; }

@media (max-width: 768px) {
  .hidden-mobile { display: none; }
  .visible-mobile { display: block; }
}

/* ============================================================
   GHOST EDITOR WIDTH CLASSES (required by Ghost)
   ============================================================ */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: auto calc(50% - 42.5vw);
  max-width: none;
}

.kg-width-full {
  position: relative;
  width: 100vw;
  margin: auto calc(50% - 50vw);
  max-width: none;
}

.kg-width-wide img,
.kg-width-full img {
  width: 100%;
  height: auto;
}

.kg-card figcaption {
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  font-family: var(--font-heading);
}

@media (max-width: 768px) {
  .kg-width-wide {
    width: 100%;
    margin: 0;
  }
}

/* ============================================================
   GHOST CARDS (embeds, galleries, etc.)
   ============================================================ */
.kg-bookmark-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin: 24px 0;
}

.kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.kg-bookmark-content {
  flex: 1;
  padding: 16px;
}

.kg-bookmark-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);           /* Blue color on bookmark titles */
  margin-bottom: 6px;
}

.kg-bookmark-description {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kg-bookmark-metadata {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.kg-bookmark-icon {
  width: 16px;
  height: 16px;
}

.kg-bookmark-thumbnail {
  width: 160px;
  min-height: 100%;
  object-fit: cover;
}

.kg-code-card {
  background: var(--primary);    /* Navy background */
  border-radius: 8px;
  padding: 16px;
  margin: 24px 0;
  overflow-x: auto;
}

.kg-code-card pre {
  margin: 0;
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  color: var(--text-light);    /* Light gray text */
  line-height: 1.6;
}