:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: rgba(17, 24, 39, 0.75);
  --bg-card-hover: rgba(30, 41, 59, 0.85);
  --border-color: rgba(56, 189, 248, 0.15);
  --border-glow: rgba(56, 189, 248, 0.4);
  --text-main: #f3f4f6;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --accent-cyan: #38bdf8;
  --accent-emerald: #10b981;
  --accent-blue: #3b82f6;
  --accent-purple: #a855f7;
  --terminal-bar: #1e293b;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', Consolas, monospace;
}

[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-card-hover: #ffffff;
  --border-color: rgba(14, 165, 233, 0.2);
  --border-glow: rgba(14, 165, 233, 0.5);
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-dim: #64748b;
  --accent-cyan: #0284c7;
  --accent-emerald: #059669;
  --accent-blue: #2563eb;
  --accent-purple: #7c3aed;
  --terminal-bar: #e2e8f0;
}

[data-theme="light"] .bg-grid-overlay {
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

[data-theme="light"] .bg-radial-glow {
  background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, rgba(5, 150, 105, 0.04) 50%, transparent 80%);
}

[data-theme="light"] .navbar {
  background-color: rgba(248, 250, 252, 0.88);
}

[data-theme="light"] .tag {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.12);
  color: #334155;
}

[data-theme="light"] .tag.highlight {
  background: rgba(2, 132, 199, 0.1);
  border-color: rgba(2, 132, 199, 0.3);
  color: #0284c7;
}

[data-theme="light"] .card {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .card:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 0 20px rgba(2, 132, 199, 0.12);
}

[data-theme="light"] .highlight-box {
  background: rgba(2, 132, 199, 0.06);
  border-left-color: #0284c7;
  color: #0f172a;
}

[data-theme="light"] .connect-card:hover {
  background: #ffffff;
  border-color: #0284c7;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background Cyber Grid & Glow */
.bg-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  pointer-events: none;
  z-index: 0;
}

.bg-radial-glow {
  position: fixed;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, rgba(16, 185, 129, 0.04) 50%, transparent 80%);
  top: -150px;
  right: -100px;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Navigation */
.navbar {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background-color: rgba(10, 14, 23, 0.85);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  padding: 0.85rem 0;
}

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

.nav-brand {
  font-family: var(--font-mono);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  transition: all 0.2s ease;
  letter-spacing: -0.01em;
}

.nav-brand:hover {
  background: rgba(56, 189, 248, 0.16);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
  transform: translateY(-1px);
}

.nav-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(56, 189, 248, 0.2);
  color: var(--accent-cyan);
  font-size: 0.85rem;
}

.nav-brand-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

[data-theme="light"] .nav-brand {
  background: rgba(2, 132, 199, 0.08);
  border-color: rgba(2, 132, 199, 0.25);
  color: #0284c7;
}

[data-theme="light"] .nav-brand:hover {
  background: rgba(2, 132, 199, 0.15);
  border-color: #0284c7;
}

[data-theme="light"] .nav-brand-icon {
  background: rgba(2, 132, 199, 0.15);
  color: #0284c7;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover, .nav-links a.nav-link-active {
  color: var(--accent-cyan);
}

.nav-links a.nav-link-active {
  font-weight: 600;
}

.nav-actions {
  display: flex;
  gap: 0.75rem;
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}

.btn-outline {
  background-color: rgba(30, 41, 59, 0.5);
  color: var(--text-main);
  border-color: var(--border-color);
}

.btn-outline:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background-color: rgba(56, 189, 248, 0.1);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
}

/* Hero Section */
.hero {
  padding: 4.5rem 0 3rem;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-emerald);
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  margin-bottom: 1.25rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, #38bdf8 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 1.25rem;
  max-width: 680px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.hero-badges img {
  height: 24px;
  border-radius: 4px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Sections General */
section {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
  margin-bottom: 2rem;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  display: block;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Cards & Grids */
.card {
  background-color: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-glow);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3), 0 0 20px rgba(56, 189, 248, 0.1);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* About / Transition Profile */
.about-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.highlight-box {
  background: rgba(56, 189, 248, 0.05);
  border-left: 3px solid var(--accent-cyan);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 1.5rem;
}

/* Skill Categories */
.skill-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.skill-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 189, 248, 0.1);
  color: var(--accent-cyan);
  font-size: 1.2rem;
}

.skill-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

.tag.highlight {
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.35);
  color: var(--accent-cyan);
}

/* Experience / Career Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 5px;
  bottom: 5px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-cyan), rgba(56, 189, 248, 0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent-cyan);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

.timeline-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.role-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.role-company {
  color: var(--accent-cyan);
  font-size: 0.95rem;
  font-weight: 600;
}

.role-period {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.bullet-list {
  list-style: none;
  margin-top: 0.75rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.bullet-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: var(--accent-emerald);
}

/* Projects Showcase */
.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.project-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.project-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
  border-radius: 4px;
}

.project-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.project-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-grow: 1;
  margin-bottom: 1rem;
}

/* Blog index */
.blog-index-hero {
  padding: 4rem 0 2rem;
}

.blog-posts {
  border-bottom: none;
  padding-top: 1rem;
}

.blog-post-card {
  padding: 1.75rem;
}

.blog-post-badge-cyan {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.3);
  color: var(--accent-cyan);
}

.blog-post-badge-emerald {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--accent-emerald);
}

.blog-post-read-time {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
}

.blog-post-title {
  font-size: 1.35rem;
  margin: 0.75rem 0 0.5rem;
  font-weight: 700;
}

.blog-post-link {
  color: var(--text-main);
  text-decoration: none;
}

.blog-post-tags {
  margin-bottom: 1.25rem;
}

.blog-post-action {
  margin-top: auto;
  padding-top: 0.5rem;
}

.blog-index-cta {
  margin: 4rem 0 2rem;
  text-align: center;
}

/* Resume */
.resume-header {
  padding: 4rem 0 2rem;
}

.resume-contact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.resume-contact-link {
  color: var(--text-muted);
  text-decoration: none;
}

.resume-contact-cyan,
.section-icon-cyan {
  color: var(--accent-cyan);
}

.resume-contact-purple {
  color: var(--accent-purple);
}

.resume-summary {
  padding-top: 1rem;
}

.resume-certification {
  margin-bottom: 1.25rem;
}

.resume-inline-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.resume-status-tag {
  font-size: 0.75rem;
}

.resume-status-scheduled {
  border-color: var(--accent-emerald);
  color: var(--accent-emerald);
}

.resume-certification-description {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.resume-degree {
  font-size: 1.05rem;
  font-weight: 700;
}

.resume-degree-specialization {
  color: var(--accent-cyan);
  font-size: 0.9rem;
  font-weight: 600;
}

.resume-school {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.35rem;
}

.resume-credential {
  margin-top: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.4rem 0.6rem;
  border-radius: 4px;
}

.resume-credential-icon {
  color: var(--accent-emerald);
}

.resume-actions {
  margin: 4rem 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Connect / Contact */
.connect-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.connect-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.2s ease;
  min-width: 220px;
  flex: 1 1 calc(50% - 1rem);
}

.connect-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-cyan);
  background: rgba(30, 41, 59, 0.8);
}

.connect-icon {
  font-size: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
}

.connect-details h4 {
  font-size: 1rem;
  font-weight: 600;
}

.connect-details p {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* Footer */
footer {
  padding: 2.5rem 0;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-details {
  margin-top: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Print Optimization */
@media print {
  body {
    background: #ffffff !important;
    color: #111827 !important;
  }

  .bg-grid-overlay,
  .bg-radial-glow,
  .navbar,
  .hero-cta,
  .btn,
  footer {
    display: none !important;
  }

  .container {
    max-width: 100% !important;
    padding: 0 !important;
  }

  .hero {
    padding: 1rem 0 !important;
  }

  .hero-title {
    color: #111827 !important;
    font-size: 2rem !important;
  }

  .text-gradient {
    background: none !important;
    -webkit-text-fill-color: #0f172a !important;
  }

  .card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: none !important;
    color: #111827 !important;
    break-inside: avoid;
  }

  .tag {
    background: #f1f5f9 !important;
    color: #334155 !important;
    border-color: #cbd5e1 !important;
  }

  .timeline::before {
    background: #94a3b8 !important;
  }

  .timeline-marker {
    background: #ffffff !important;
    border-color: #0284c7 !important;
  }

  section {
    padding: 1.5rem 0 !important;
    border-bottom: 1px solid #e2e8f0 !important;
  }

  a {
    color: #0369a1 !important;
    text-decoration: none !important;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .nav-links {
    display: none;
  }

  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }

  .connect-card {
    flex: 1 1 100%;
  }
}

/* ===================================================
   Blog & Article Formatting (Obsidian-Style Rendering)
   =================================================== */
.blog-header {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2.5rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 1rem;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.article-content {
  max-width: 840px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
}

.article-content h2 {
  font-size: 1.65rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

[data-theme="light"] .article-content h2 {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.article-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.8rem 0 0.8rem;
  color: var(--accent-cyan);
}

.article-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.6rem;
  color: var(--accent-emerald);
}

.article-content p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

[data-theme="light"] .article-content p {
  color: #334155;
}

.article-content ul, 
.article-content ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

[data-theme="light"] .article-content ul,
[data-theme="light"] .article-content ol {
  color: #334155;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content pre {
  background-color: #050811;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 1.25rem 0 1.5rem;
  position: relative;
}

[data-theme="light"] .article-content pre {
  background-color: #f1f5f9;
  border-color: #cbd5e1;
}

.article-content code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: rgba(56, 189, 248, 0.1);
  color: var(--accent-cyan);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

[data-theme="light"] .article-content code {
  background: rgba(2, 132, 199, 0.1);
  color: #0369a1;
}

.article-content pre code {
  background: transparent;
  color: #e2e8f0;
  padding: 0;
  border-radius: 0;
}

[data-theme="light"] .article-content pre code {
  color: #0f172a;
}

/* Obsidian Callout Styles */
.obsidian-callout {
  border-left: 4px solid var(--accent-cyan);
  background: rgba(56, 189, 248, 0.08);
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}

.obsidian-callout.tip {
  border-left-color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.08);
}

.obsidian-callout.warning {
  border-left-color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
}

.obsidian-callout-title {
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

/* Responsive Image Containers */
.article-image-container {
  margin: 1.75rem 0;
  text-align: center;
}

.article-image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

[data-theme="light"] .article-image-container img {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.article-image-container img:hover {
  transform: scale(1.01);
}

.article-image-caption {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-dim);
  margin-top: 0.5rem;
}
