/* ── Tailwind-like utility CSS for Vehiso Ghost Theme ──────────────────────── */
/* Matches design tokens from vehiso.com tailwind.config.js                    */

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

/* ── Base ──────────────────────────────────────────────────────────────────── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #3d3d4d; /* neutral-700 */
  background: #fff;
  line-height: 1.6;
}

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

/* ── Design tokens ─────────────────────────────────────────────────────────── */
:root {
  --primary: #2f55d4;
  --primary-dark: #1e3fa8;
  --primary-light: #eef1fd;
  --neutral-950: #0a0a0f;
  --neutral-700: #3d3d4d;
  --neutral-600: #52525b;
  --neutral-400: #9898aa;
  --neutral-200: #e5e5ea;
  --neutral-100: #f4f4f8;
  --neutral-50: #fafafa;
  --success: #16a34a;
  --danger: #dc2626;
  --radius-card: 12px;
  --radius-btn: 8px;
  --max-content: 1280px;
}

/* ── Container ─────────────────────────────────────────────────────────────── */
.vehiso-container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Utility classes (matching Tailwind usage on vehiso.com) ───────────────── */
.h-8 { height: 2rem; }
.h-20 { height: 5rem; }

.flex { display: flex; }
.hidden { display: none; }
[data-dropdown-panel].hidden { display: none !important; }
.block { display: block; }
.grid { display: grid; }
.inline-flex { display: inline-flex; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }

.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pt-24 { padding-top: 6rem; }
.pt-28 { padding-top: 7rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-20 { padding-bottom: 5rem; }
.pl-4 { padding-left: 1rem; }

.m-0 { margin: 0; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-2 { margin-left: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-full { width: 100%; }

.w-\[280px\] { width: 280px; }
.w-\[400px\] { width: 400px; }
.w-\[480px\] { width: 480px; }
.w-\[520px\] { width: 520px; }

.max-w-xs { max-width: 20rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }

/* Colors */
.text-white { color: #fff; }
.text-primary { color: var(--primary); }
.text-neutral-950 { color: var(--neutral-950); }
.text-neutral-700 { color: var(--neutral-700); }
.text-neutral-600 { color: var(--neutral-600); }
.text-neutral-400 { color: var(--neutral-400); }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/80 { color: rgba(255,255,255,0.8); }

.bg-white { background-color: #fff; }
.bg-primary { background-color: var(--primary); }
.bg-primary-light { background-color: var(--primary-light); }
.bg-primary\/5 { background-color: rgba(47,85,212,0.05); }
.bg-primary\/10 { background-color: rgba(47,85,212,0.1); }
.bg-neutral-950 { background-color: #0a0a0f; }
.bg-neutral-100 { background-color: var(--neutral-100); }
.bg-neutral-50 { background-color: var(--neutral-50); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.bg-white\/80 { background-color: rgba(255,255,255,0.8); }
.bg-green-400 { background-color: #4ade80; }

.border-neutral-100 { border-color: var(--neutral-100); }
.border-neutral-100\/50 { border-color: rgba(244,244,248,0.5); }
.border-neutral-200 { border-color: var(--neutral-200); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/30 { border-color: rgba(255,255,255,0.3); }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }

.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.rounded-card { border-radius: var(--radius-card); }
.rounded-btn { border-radius: var(--radius-btn); }

.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }

.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

/* Logo variants — light mode default */
.logo-dark { display: none; }

.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-20 { top: 5rem; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.top-full { top: 100%; }

.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.-z-10 { z-index: -10; }
.-inset-4 { top: -1rem; right: -1rem; bottom: -1rem; left: -1rem; }

.overflow-y-auto { overflow-y: auto; }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.aspect-video { aspect-ratio: 16/9; }

.transition-colors { transition: color 0.15s, background-color 0.15s, border-color 0.15s; }
.transition-all { transition: all 0.2s; }
.duration-300 { transition-duration: 300ms; }

.-translate-x-1\/2 { transform: translateX(-50%); }
.left-1\/2 { left: 50%; }

.w-2 { width: 0.5rem; }
.h-2 { height: 0.5rem; }
.w-3\.5 { width: 0.875rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.w-9 { width: 2.25rem; }
.h-9 { height: 2.25rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }

.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ── Nav components ────────────────────────────────────────────────────────── */
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-600);
  transition: all 0.15s;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-link:hover {
  background: var(--neutral-100);
  color: var(--neutral-950);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  transition: background 0.15s;
}
.dropdown-item:hover { background: var(--neutral-100); }

.dropdown-icon {
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.5rem;
  border-radius: 0.375rem;
  flex-shrink: 0;
}

.dropdown-label {
  font-weight: 500;
  color: var(--neutral-950);
  font-size: 0.875rem;
}
.dropdown-desc {
  font-size: 0.75rem;
  color: var(--neutral-400);
  margin-top: 0.125rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--neutral-600);
  font-size: 0.875rem;
  transition: all 0.15s;
}
.mobile-nav-link:hover {
  background: var(--neutral-100);
  color: var(--primary);
}

/* ── Post card ─────────────────────────────────────────────────────────────── */
.post-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-card);
  border: 1px solid var(--neutral-200);
  overflow: hidden;
  transition: all 0.2s;
  background: #fff;
}
.post-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  border-color: rgba(47,85,212,0.3);
}

.post-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.post-card:hover .post-card-image img {
  transform: scale(1.03);
}

.post-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.post-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--neutral-950);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-excerpt {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--neutral-100);
  font-size: 0.75rem;
  color: var(--neutral-400);
}

/* ── Article content (Ghost kg-* classes) ──────────────────────────────────── */
.gh-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--neutral-700);
}

.gh-content > * + * { margin-top: 1.5rem; }

.gh-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--neutral-950);
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.gh-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neutral-950);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.gh-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-950);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.gh-content p { margin-bottom: 1.5rem; }

.gh-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.gh-content a:hover { opacity: 0.8; }

.gh-content ul, .gh-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.gh-content li { margin-bottom: 0.5rem; }
.gh-content ul { list-style-type: disc; }
.gh-content ol { list-style-type: decimal; }

.gh-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--neutral-100);
  border-radius: 0 var(--radius-btn) var(--radius-btn) 0;
  font-style: italic;
  color: var(--neutral-600);
}

.gh-content pre {
  background: var(--neutral-950);
  color: #e5e5ea;
  padding: 1.5rem;
  border-radius: var(--radius-card);
  overflow-x: auto;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 2rem 0;
}
.gh-content code {
  font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
  font-size: 0.875em;
}
.gh-content :not(pre) > code {
  background: var(--neutral-100);
  padding: 0.15em 0.4em;
  border-radius: 0.25rem;
  color: var(--neutral-950);
}

.gh-content img {
  border-radius: var(--radius-card);
  margin: 2rem auto;
}

.gh-content figure {
  margin: 2rem 0;
}
.gh-content figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--neutral-400);
  margin-top: 0.75rem;
}

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

.gh-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.875rem;
}
.gh-content th, .gh-content td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--neutral-200);
  text-align: left;
}
.gh-content th {
  background: var(--neutral-100);
  font-weight: 600;
  color: var(--neutral-950);
}

/* Ghost card widths */
.kg-width-wide { margin-left: -4rem; margin-right: -4rem; max-width: calc(100% + 8rem); }
.kg-width-full { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); max-width: 100vw; }
.kg-width-full img { max-width: 100vw; border-radius: 0; }

/* Ghost bookmark card */
.kg-bookmark-card {
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.kg-bookmark-container {
  display: flex;
  text-decoration: none !important;
}
.kg-bookmark-content {
  padding: 1.25rem;
  flex: 1;
}
.kg-bookmark-title {
  font-weight: 600;
  color: var(--neutral-950);
  font-size: 1rem;
}
.kg-bookmark-description {
  font-size: 0.875rem;
  color: var(--neutral-600);
  margin-top: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.kg-bookmark-thumbnail {
  width: 200px;
  flex-shrink: 0;
}
.kg-bookmark-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* ── Pagination ────────────────────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 0;
}
.pagination a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-btn);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  border: 1px solid var(--neutral-200);
  transition: all 0.15s;
}
.pagination a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.pagination .page-number {
  font-size: 0.875rem;
  color: var(--neutral-400);
}

/* ── CTA section ───────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--primary);
  padding: 5rem 0;
  text-align: center;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-btn);
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  transition: background 0.15s;
}
.btn-white:hover { background: var(--neutral-100); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-btn);
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 600;
  transition: background 0.15s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-btn);
  background: var(--primary);
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--primary-dark); }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2; }
  .md\:flex-row { flex-direction: row; }
  .md\:text-5xl { font-size: 3rem; line-height: 1.1; }
}

@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:w-\[60\%\] { width: 60%; }
}

/* Hide lg:hidden on desktop, show on mobile */
@media (max-width: 1023px) {
  .hidden.lg\:flex { display: none; }
  .kg-width-wide { margin-left: 0; margin-right: 0; max-width: 100%; }
}

/* ── Dark mode ────────────────────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  :root {
    --primary-light: rgba(47,85,212,0.15);
  }

  body {
    background: #0a0a0f;
    color: #c5c5d0;
  }

  /* Backgrounds — bg-neutral-950 is hardcoded to #0a0a0f so it stays dark */
  .bg-white { background-color: #0a0a0f; }
  .bg-neutral-50 { background-color: #111116; }
  .bg-neutral-100 { background-color: #1c1c24; }
  .bg-white\/80 { background-color: rgba(10,10,15,0.8); }
  .bg-white\/10 { background-color: rgba(255,255,255,0.06); }

  /* Text — invert neutral scale for readability */
  .text-neutral-950 { color: #f5f5f7; }
  .text-neutral-700 { color: #c5c5d0; }
  .text-neutral-600 { color: #a1a1aa; }
  .text-neutral-400 { color: #9898aa; }

  /* Borders */
  .border-neutral-100 { border-color: #2a2a35; }
  .border-neutral-100\/50 { border-color: rgba(42,42,53,0.5); }
  .border-neutral-200 { border-color: #2a2a35; }

  /* Logo */
  .logo-light { display: none; }
  .logo-dark { display: block; }

  /* Header */
  #site-header {
    background: rgba(10,10,15,0.8);
    border-color: rgba(255,255,255,0.06);
  }
  #site-header.shadow-sm {
    background: #0a0a0f;
  }

  /* Nav */
  .nav-link { color: #a1a1aa; }
  .nav-link:hover { background: #1c1c24; color: #f5f5f7; }
  [data-dropdown-panel] { background: #141418; border-color: #2a2a35; }
  .dropdown-item:hover { background: #1c1c24; }
  .dropdown-label { color: #f5f5f7; }
  .dropdown-desc { color: #71717a; }
  .dropdown-icon { background: rgba(47,85,212,0.15); }

  /* Mobile menu */
  #mobile-menu { background: #0a0a0f; }
  .mobile-nav-link { color: #a1a1aa; }
  .mobile-nav-link:hover { background: #1c1c24; color: var(--primary); }
  #mobile-toggle { color: #a1a1aa; }
  #mobile-toggle:hover { background: #1c1c24; }

  /* "Get started" button */
  .bg-neutral-950.text-white { background-color: #f5f5f7; color: #0a0a0f; }

  /* Post cards */
  .post-card { background: #111116; border-color: #2a2a35; }
  .post-card:hover { border-color: rgba(47,85,212,0.4); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3); }
  .post-card-title { color: #f5f5f7; }
  .post-card-excerpt { color: #a1a1aa; }
  .post-card-meta { border-color: #2a2a35; color: #71717a; }

  /* Article content */
  .gh-content { color: #c5c5d0; }
  .gh-content h2, .gh-content h3, .gh-content h4 { color: #f5f5f7; }
  .gh-content blockquote { background: #1c1c24; color: #a1a1aa; }
  .gh-content :not(pre) > code { background: #1c1c24; color: #f5f5f7; }
  .gh-content hr { border-color: #2a2a35; }
  .gh-content th { background: #1c1c24; color: #f5f5f7; }
  .gh-content th, .gh-content td { border-color: #2a2a35; }

  /* Ghost cards */
  .kg-bookmark-card { border-color: #2a2a35; }
  .kg-bookmark-title { color: #f5f5f7; }
  .kg-bookmark-description { color: #a1a1aa; }

  /* Pagination */
  .pagination a { border-color: #2a2a35; color: var(--primary); }
  .pagination a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

  /* Footer — keep dark as-is, just deepen slightly */
  footer .border-white\/10 { border-color: rgba(255,255,255,0.06); }

  /* Shadows */
  .shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.3), 0 8px 10px -6px rgba(0,0,0,0.3); }
  .shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3), 0 4px 6px -4px rgba(0,0,0,0.3); }
}
