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

/* Light Theme (High Contrast & Clean) */
:root {
  /* Backgrounds */
  --bg-primary: #fafafa;
  --bg-secondary: #f4f4f5;
  /* Zinc 100 */
  --bg-tertiary: #e4e4e7;
  /* Zinc 200 */
  --bg-card: #ffffff;

  /* Text Colors */
  --text-primary: #000000;
  /* Pure Black */
  --text-secondary: #3f3f46;
  /* Zinc 700 */
  --text-tertiary: #71717a;
  /* Zinc 500 */
  --text-muted: #71717a;
  /* Zinc 500 - Darkened for visibility */

  /* Accent Colors */
  --accent-cyan: #0891b2;
  /* Cyan 600 */
  --accent-purple: #7c3aed;
  /* Violet 600 */
  --accent-teal: #0d9488;
  /* Teal 600 */

  /* UI Colors */
  --border-color: #e4e4e7;
  /* Zinc 200 */
  --border-hover: #d4d4d8;
  /* Zinc 300 */
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(228, 228, 231, 0.6);

  /* Shadows - Minimal & Grounded */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
}

/* Dark Theme (Pure Neutral Black) */
[data-theme="dark"] {
  /* Backgrounds */
  --bg-primary: #000000;
  /* Pure Black */
  --bg-secondary: #09090b;
  /* Zinc 950 */
  --bg-tertiary: #18181b;
  /* Zinc 900 */
  --bg-card: #09090b;
  /* Zinc 950 */

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  /* Zinc 400 */
  --text-tertiary: #52525b;
  /* Zinc 600 */
  --text-muted: #3f3f46;
  /* Zinc 700 */

  /* Accent Colors */
  --accent-cyan: #22d3ee;
  /* Cyan 400 */
  --accent-purple: #c084fc;
  /* Violet 400 */
  --accent-teal: #2dd4bf;
  /* Teal 400 */

  /* UI Colors */
  --border-color: #27272a;
  /* Zinc 800 - Subtle Borders */
  --border-hover: #3f3f46;
  /* Zinc 700 */
  --glass-bg: rgba(9, 9, 11, 0.85);
  --glass-border: rgba(39, 39, 42, 0.6);

  /* Shadows - Subtle Depth */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

html {
  overscroll-behavior: none;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 2rem;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -1px;
  transition: color 0.3s ease;
}

.nav-logo:hover {
  color: var(--accent-cyan);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none !important;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: none;
  border: none !important;
  box-shadow: none !important;
}

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

/* Hero Section */
.hero-section {
  min-height: 40vh;
  /* Reduced from 60vh to lift contents */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
  padding-bottom: 0rem !important;
}

.hero-container {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  /* Lift the name even higher */
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--accent-cyan);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(3rem, 10vw, 5rem);
  /* Slightly smaller for minimalism */
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  padding: 0.2rem 0;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-button,
.cta-secondary {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: none;
}

.cta-button {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  color: white;
  border: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.cta-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--glass-border);
}

.cta-secondary:hover {
  background: var(--glass-bg);
  border-color: var(--accent-cyan);
}

.floating-element {
  position: absolute;
  animation: float 6s ease-in-out infinite;
  opacity: 0.3;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in-up:nth-child(3) {
  animation-delay: 0.4s;
}

.fade-in-up:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Terminal Section */
.terminal-section {
  padding: 1rem 2rem 4rem;
  /* Reduced top padding */
  max-width: 1400px;
  margin: 0 auto;
}

.terminal-container {
  max-width: 650px;
  /* Reduced width */
  margin: 0 auto;
}

.terminal-window {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.terminal-header {
  background: var(--bg-tertiary);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.terminal-buttons {
  display: flex;
  gap: 0.5rem;
}

.terminal-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-button.close {
  background: #ff5f56;
}

.terminal-button.minimize {
  background: #ffbd2e;
}

.terminal-button.maximize {
  background: #27c93f;
}

.terminal-title {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.terminal-body {
  padding: 2rem 1.5rem;
  font-family: "Fira Code", monospace;
  font-size: 1rem;
  min-height: 120px;
}

.terminal-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terminal-prompt {
  color: var(--accent-cyan);
  font-weight: 500;
}

.terminal-command {
  color: var(--text-primary);
  flex: 1;
}

.terminal-cursor {
  color: var(--accent-cyan);
  display: inline-block;
  width: 10px;
  height: 1.2em;
  background-color: var(--accent-cyan);
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* Content Section */
.content-section {
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.2rem;
  /* Restored from 1.4rem */
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

/* Search and Filter Controls */
.content-controls {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  /* Align left for better flow usually, or center */
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.control-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.8rem 1.8rem;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  /* Pill shape */

  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;

  cursor: pointer;
  /* Ensure pointer */
  transition: all 0.2s ease-in-out;
  outline: none;
  min-width: 140px;
}

.control-btn svg {
  width: 20px;
  height: 20px;
  opacity: 0.8;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.15);
}

.control-btn:active {
  transform: translateY(0);
}

.control-btn.active {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--bg-primary);
  box-shadow: var(--shadow-sm);
}

.filter-badge {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

/* Modals */
.search-modal,
.filter-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.search-modal.active,
.filter-modal.active {
  display: flex;
}

.modal-content {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  animation: modalSlideIn 0.3s ease;
  box-shadow: var(--shadow-xl);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--text-primary);
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrapper svg {
  position: absolute;
  left: 1rem;
  color: var(--text-secondary);
}

.search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

/* Filter Tags */
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.filter-tag {
  padding: 0.75rem 1.5rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-secondary);
  cursor: none;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
}

.filter-tag:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.filter-tag.active {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.modal-actions {
  display: flex;
  justify-content: center;
}

.clear-filters-btn {
  padding: 0.75rem 2rem;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.clear-filters-btn:hover {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

/* Restored Subtitle */
.articles-page-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.content-card {
  display: flex;
  /* Critical fix for Link element */
  flex-direction: column;
  height: 100%;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: none;
  /* No floating shadow */
}

.content-card:hover {
  transform: translateY(-2px);
  border-color: var(--text-primary);
  background: var(--bg-tertiary);
}



.content-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.content-image {
  object-fit: cover !important;
}

.content-body {
  padding: 1.25rem;
}

.content-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--accent-cyan);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--accent-cyan);
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.content-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  text-decoration: none !important;
  border: none !important;
}

.content-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.content-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.content-tag {
  padding: 0.35rem 0.75rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.content-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 500;
  transition: gap 0.3s ease;
}

.content-link:hover {
  gap: 0.75rem;
}

.no-results {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-secondary);
  min-height: 300px;
}

.no-results svg {
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.no-results h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text-secondary);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  /* Space between icons and copyright */
  width: 100%;
  /* Ensure it breaks to its own line if needed */
}

.footer-link:hover {
  color: var(--accent-cyan);
}

.footer-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Scroll Reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 1.5rem 3rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .modal-content {
    padding: 1.5rem;
  }
}

/* Classic Blog Typography & Styling */
.article-container {
  max-width: 680px;
  margin: 0 auto;
  font-family: "Inter", -apple-system, sans-serif;
  color: var(--text-primary);
}

/* Article typography styles moved to bottom of file for better organization */
/* See "Article Detail Page - Improved Readability" section */


.article-image {
  margin: 0.5rem 0 2.5rem 0;
  /* Reduced top margin to close title gap */
}

.article-image .image-container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0f172a;
}

.article-image figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: #94a3b8;
  margin-top: 0.75rem;
  font-style: italic;
}

/* Removed duplicate article-callout definition */


/* Article Page Layout */
.article-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}

@media (min-width: 1024px) {
  .article-page-layout {
    grid-template-columns: 1fr 350px;
    align-items: start;
    padding-top: 6rem;
  }
}

.article-main {
  min-width: 0;
  /* Prevent flex/grid blowout */
}

/* Article Header */
.article-header {
  margin-bottom: 1.5rem;
  /* Reduced gap to image */
  grid-column: 1 / -1;
  /* Span full width to allow sidebar to align with image below */
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-family: monospace;
}

.meta-chip {
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--accent-cyan);
}

.article-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  /* Downsized further */
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  text-decoration: none !important;
  border-bottom: none !important;
}

/* Article Cover */
.article-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0f172a;
}

.article-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent);
  pointer-events: none;
}

/* Sidebar */
.article-sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .article-sidebar {
    display: block;
    position: sticky;
    top: 2rem;
  }
}

.sidebar-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.sidebar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-marker {
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan);
}

/* Related Articles */
.sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.related-item {
  display: block;
  text-decoration: none;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.related-item:hover {
  background: var(--bg-card);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.related-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--bg-tertiary);
}

.related-image {
  object-fit: cover !important;
  transition: transform 0.5s ease !important;
}

.related-item:hover .related-image {
  transform: scale(1.05);
}

.related-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
  text-decoration: none !important;
}

.related-item:hover .related-title {
  color: var(--accent-cyan);
}

/* Author Card */
.author-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.author-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.author-avatar {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-cyan);
}

.author-info h3 {
  color: var(--text-primary);
  font-weight: 700;
  margin: 0;
}

.author-info p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.author-bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Footer Icons Fix */
.footer-link svg {
  width: 24px;
  height: 24px;
}

/* Modal Overlay Fix */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Sidebar Top Offset Fix */
@media (min-width: 1024px) {
  .article-sidebar {
    top: 6rem !important;
    /* Force override for navbar clearance */
  }
}

/* Notion Tag Colors - Enforcing colors */
.tag-default {
  background: rgba(227, 226, 224, 0.5) !important;
  color: #32302c !important;
  border: 1px solid rgba(50, 48, 44, 0.2) !important;
}

.tag-gray {
  background: rgba(227, 226, 224, 0.5) !important;
  color: #32302c !important;
  border: 1px solid rgba(50, 48, 44, 0.2) !important;
}

.tag-brown {
  background: rgba(238, 224, 218, 0.5) !important;
  color: #442a1e !important;
  border: 1px solid rgba(68, 42, 30, 0.2) !important;
}

.tag-orange {
  background: rgba(250, 222, 201, 0.5) !important;
  color: #49290e !important;
  border: 1px solid rgba(73, 41, 14, 0.2) !important;
}

.tag-yellow {
  background: rgba(253, 236, 200, 0.5) !important;
  color: #402c1b !important;
  border: 1px solid rgba(64, 44, 27, 0.2) !important;
}

.tag-green {
  background: rgba(219, 237, 219, 0.5) !important;
  color: #1c3829 !important;
  border: 1px solid rgba(28, 56, 41, 0.2) !important;
}

.tag-blue {
  background: rgba(211, 229, 239, 0.5) !important;
  color: #183347 !important;
  border: 1px solid rgba(24, 51, 71, 0.2) !important;
}

.tag-purple {
  background: rgba(232, 222, 238, 0.5) !important;
  color: #412454 !important;
  border: 1px solid rgba(65, 36, 84, 0.2) !important;
}

.tag-pink {
  background: rgba(245, 224, 233, 0.5) !important;
  color: #4c2337 !important;
  border: 1px solid rgba(76, 35, 55, 0.2) !important;
}

.tag-red {
  background: rgba(255, 226, 221, 0.5) !important;
  color: #5d1715 !important;
  border: 1px solid rgba(93, 23, 21, 0.2) !important;
}

/* Notion Background Colors (if returned by API) */
.tag-red_background {
  background: rgba(255, 226, 221, 0.5) !important;
  color: #5d1715 !important;
}

.tag-blue_background {
  background: rgba(211, 229, 239, 0.5) !important;
  color: #183347 !important;
}

/* Add others if needed, but usually it matches the simple color name */

/* Dark mode adjustments for tags */
@media (prefers-color-scheme: dark) {
  .tag-default {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #e3e2e0 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  .tag-gray {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #e3e2e0 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  .tag-brown {
    background: rgba(147, 114, 100, 0.3) !important;
    color: #eee0da !important;
    border: 1px solid rgba(147, 114, 100, 0.4) !important;
  }

  .tag-orange {
    background: rgba(175, 87, 0, 0.3) !important;
    color: #fadac1 !important;
    border: 1px solid rgba(175, 87, 0, 0.4) !important;
  }

  .tag-yellow {
    background: rgba(197, 126, 0, 0.3) !important;
    color: #fdecc8 !important;
    border: 1px solid rgba(197, 126, 0, 0.4) !important;
  }

  .tag-green {
    background: rgba(45, 125, 60, 0.3) !important;
    color: #dbeddb !important;
    border: 1px solid rgba(45, 125, 60, 0.4) !important;
  }

  .tag-blue {
    background: rgba(35, 131, 226, 0.2) !important;
    color: #d3e5ef !important;
    border: 1px solid rgba(35, 131, 226, 0.2) !important;
  }

  .tag-purple {
    background: rgba(144, 101, 176, 0.3) !important;
    color: #e8deee !important;
    border: 1px solid rgba(144, 101, 176, 0.2) !important;
  }

  .tag-pink {
    background: rgba(193, 76, 138, 0.3) !important;
    color: #f5e0e9 !important;
    border: 1px solid rgba(193, 76, 138, 0.2) !important;
  }

  .tag-red {
    background: rgba(212, 76, 71, 0.3) !important;
    color: #ffe2dd !important;
    border: 1px solid rgba(212, 76, 71, 0.2) !important;
  }

  .tag-red_background {
    background: rgba(212, 76, 71, 0.3) !important;
    color: #ffe2dd !important;
    border: 1px solid rgba(212, 76, 71, 0.2) !important;
  }
}

/* Base Tag Style Override */
.filter-tag,
.meta-chip {
  border: none !important;
}

/* Terminal Positioning */
.hero-section {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 18rem 2rem 4rem !important;
  /* Perfect balance for name height */
}

.terminal-section {
  padding-top: 0;
  margin-top: 2rem;
  /* Reduced margin to keep terminal in viewport */
  position: relative;
  z-index: 10;
}

/* Search Modal Spacing */
.search-modal .modal-actions {
  margin-top: 1.5rem;
}

/* Footer Refinements */
.footer-content {
  flex-direction: column;
  gap: 1.5rem;
}

.footer-link svg {
  width: 32px !important;
  /* Larger icons */
  height: 32px !important;
}

/* Article Title & Card Hover */
.article-title,
.content-title,
.section-title,
a {
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.content-card:hover .content-title {
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
  color: var(--accent-cyan) !important;
  -webkit-text-fill-color: var(--accent-cyan) !important;
  /* Force fill color override */
  cursor: pointer;
}

/* --- ÖZER CLOUD TERMINAL - 2. GÖRSEL AYARI --- */

.terminal-section {
  padding: 0 2rem 3rem !important;
  /* Üst boşluk sıfır */
  margin-top: -3.5rem !important;
  /* İsminin altına tam o mesafede yaklaşması için */
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 20;
}

.terminal-container {
  max-width: 620px !important;
  /* 2. görseldeki o kompakt genişlik */
  margin: 0 auto !important;
}

.terminal-window {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.terminal-header {
  background: var(--bg-tertiary);
  padding: 0.7rem 1.2rem;
  /* Daha ince bir üst bar */
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid var(--border-color);
}

.terminal-buttons {
  display: flex;
  gap: 0.4rem;
}

.terminal-button {
  width: 10px;
  /* Butonlar biraz daha ufak */
  height: 10px;
  border-radius: 50%;
}

.terminal-button.close {
  background: #ff5f56;
}

.terminal-button.minimize {
  background: #ffbd2e;
}

.terminal-button.maximize {
  background: #27c93f;
}

.terminal-title {
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.8;
}

.terminal-body {
  padding: 1.8rem 1.5rem !important;
  /* İç boşluğu 2. görseldeki gibi daralttık */
  font-family: "Fira Code", monospace;
  font-size: 0.95rem;
  /* Yazı boyutu daha dengeli */
  min-height: 110px !important;
  /* Kutu boyutu tam o görseldeki gibi */
  color: var(--text-primary);
}

.terminal-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.terminal-prompt {
  color: var(--accent-cyan);
  font-weight: 500;
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  background-color: var(--accent-cyan);
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* --- TERMINAL SON --- */

/* Article sayfasındaki o meşhur uçurumu kapatan final dokunuşu */

.article-header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.article-title {
  margin-bottom: 0.2rem !important;
  /* Başlığın alt boşluğunu neredeyse sıfırladık */
}

.article-main {
  margin-top: -1.5rem !important;
  /* GÖRSELİ YUKARI TIRMANDIRAN ASIL KOD BU */
}

.article-cover {
  margin-top: 0 !important;
  border-top: none !important;
}

/* --- SADECE CSS ILE HIZALAMA OPERASYONU --- */

/* 1. Başlık ve altındaki boşluğu tamamen daraltıyoruz */
.article-header {
  margin-bottom: 0.5rem !important;
  padding-bottom: 0 !important;
}

.article-title {
  margin-bottom: 0.25rem !important;
}

/* 2. Görseli yukarı çeken kod (Zaten yapmıştık, üzerinden geçiyoruz) */
.article-main {
  margin-top: -1.2rem !important;
}

/* 3. YAZAR KARTINI GÖRSELLE AYNI HIZAYA ÇEKEN ASIL KOD */
.article-sidebar {
  /* Başlık ve meta bilgilerinden kurtulup görselin hizasına inmesi için */
  /* Bu değeri (örneğin 4rem) yazar kartı tam görselin yanına gelene kadar artır/azalt */
  margin-top: -1.1rem !important;
}

/* 4. Sidebar'ın içindeki yazar kartının üst boşluğunu sıfırla */
.author-card {
  margin-top: 0 !important;
  padding-top: 1.5rem !important;
  /* Kartın içindeki ferahlık */
}

/* Mobilde bu ayarları iptal etmemiz lazım yoksa yazar kartı yazının üstüne biner */
@media (max-width: 1024px) {
  .article-sidebar {
    margin-top: 0 !important;
  }
}

/* --- TIKLANABİLİR ALANLARDA EL İŞARETİ (POINTER) FIX --- */

/* 1. Tüm linkleri, butonları ve makale kartlarını kapsa */
a,
button,
input[type="submit"],
input[type="button"],
.article-card,
/* Ana sayfadaki kartların sınıf ismi */
.related-item,
/* Benzer içerik kartları */
.author-card,
.nav-link,
/* Navbar linkleri */
[role="button"] {
  cursor: pointer !important;
}

/* 2. Kartların içindeki her şeyin (resim, başlık, div) bu el işaretini miras almasını sağla */
.article-card *,
.related-item *,
.sidebar-content * {
  cursor: pointer !important;
}

/* Load More Button - Clean & Solid */
.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 3rem;
  background: var(--text-primary);
  color: var(--bg-primary) !important;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  text-decoration: none !important;
}

/* LIGHT MODE - Enforced Visibility for Tags & Badges */
html:not([data-theme="dark"]) .content-tag,
html:not([data-theme="dark"]) .content-badge,
html:not([data-theme="dark"]) .filter-tag,
html:not([data-theme="dark"]) [class^="tag-"],
html:not([data-theme="dark"]) [class*=" tag-"] {
  color: #000000 !important;
  opacity: 1 !important;
  font-weight: 600 !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

html:not([data-theme="dark"]) .article-category,
html:not([data-theme="dark"]) .meta-chip {
  color: #000000 !important;
  border: none !important;
  font-weight: 700 !important;
}

/* Restore/Refine Notion background colors in Light Mode */
html:not([data-theme="dark"]) .tag-default {
  background: rgba(227, 226, 224, 0.7) !important;
}

html:not([data-theme="dark"]) .tag-gray {
  background: rgba(227, 226, 224, 0.7) !important;
}

html:not([data-theme="dark"]) .tag-brown {
  background: rgba(238, 224, 218, 0.7) !important;
}

html:not([data-theme="dark"]) .tag-orange {
  background: rgba(250, 222, 201, 0.7) !important;
}

html:not([data-theme="dark"]) .tag-yellow {
  background: rgba(253, 236, 200, 0.7) !important;
}

html:not([data-theme="dark"]) .tag-green {
  background: rgba(219, 237, 219, 0.7) !important;
}

html:not([data-theme="dark"]) .tag-blue {
  background: rgba(211, 229, 239, 0.7) !important;
}

html:not([data-theme="dark"]) .tag-purple {
  background: rgba(232, 222, 238, 0.7) !important;
}

html:not([data-theme="dark"]) .tag-pink {
  background: rgba(245, 224, 233, 0.7) !important;
}

html:not([data-theme="dark"]) .tag-red {
  background: rgba(255, 226, 221, 0.7) !important;
}

/* Ensure visibility on hover */
html:not([data-theme="dark"]) .content-tag:hover,
html:not([data-theme="dark"]) .content-badge:hover,
html:not([data-theme="dark"]) .filter-tag:hover {
  filter: brightness(0.9);
  color: #000000 !important;
}

.load-more-btn:hover {
  background: var(--bg-tertiary);
  color: var(--text-primary) !important;
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.load-more-btn:active {
  transform: translateY(0);
}

/* Control Buttons (Search/Filter) */
.control-btn {
  padding: 0.75rem 1.5rem;
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.control-btn:hover {
  background: var(--bg-tertiary);
  border-color: var(--text-primary);
}

/* Articles List Layout (Horizontal Desktop) */
.articles-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.article-list-item {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  /* Grounded border */
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: none;
  /* Removed floating shadow */
  cursor: pointer !important;
}

.article-list-item * {
  cursor: pointer !important;
}

@media (min-width: 768px) {
  .article-list-item {
    flex-direction: row;
    height: 280px;
    /* Fixed height for consistency */
  }
}

.article-list-item:hover {
  border-color: var(--text-primary);
}

.article-list-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-tertiary);
  overflow: hidden;
}

@media (min-width: 768px) {
  .article-list-image {
    width: 35%;
    /* Fixed width % */
    height: 100%;
    aspect-ratio: auto;
  }
}

.article-list-image img {
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-list-item:hover .article-list-image img {
  transform: scale(1.05);
}

.article-list-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}

.article-header-top {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.article-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-cyan);
}

.article-list-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  margin: 0;
}

.article-list-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: auto;
  /* Pushes date to bottom */
}

.article-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Article Detail Page - Improved Readability */
.article-paragraph {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.article-h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary) !important;
  /* Force visibility */
  line-height: 1.2;
}

.article-h1,
.article-h2,
.article-h3 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-h2 {
  font-size: 1.875rem;
  padding-left: 1rem;
  border-left: 4px solid var(--accent-cyan);
}

.article-h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.article-ul,
.article-ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
}

.article-ul li,
.article-ol li {
  margin-bottom: 0.5rem;
}

.article-ul li::marker {
  color: var(--accent-cyan);
}

.article-ol li::marker {
  color: var(--accent-cyan);
  font-weight: bold;
}

.article-quote {
  border-left: 4px solid var(--accent-cyan);
  background: var(--bg-tertiary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1.15rem;
}

.article-code {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  overflow-x: auto;
  position: relative;
}

.code-content {
  font-family: "Fira Code", monospace;
  font-size: 0.9rem;
  color: var(--accent-cyan);
  line-height: 1.5;
}

.article-callout {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  margin: 2rem 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.callout-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.callout-text {
  color: var(--text-primary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.article-block-children {
  padding-left: 1.5rem;
  border-left: 2px solid var(--border-color);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Responsive Articles List */
@media (max-width: 768px) {
  .article-list-image {
    padding-bottom: 60%;
    /* Taller on mobile */
  }

  .article-list-content {
    padding: 1.5rem;
  }

  .article-list-title {
    font-size: 1.5rem;
  }
}

/* 3. Genel metin alanlarında (paragraflar vs) normal metin seçme ikonu kalsın */
p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
  cursor: auto;
}

p,
span,
h1,
h2,
h3,
li {
  cursor: text !important;
}

/* Theme Toggle Container - Native Select with Icon */
.theme-toggle-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.theme-toggle-container:hover {
  background: var(--bg-tertiary);
  border-color: var(--accent-cyan);
  transform: scale(1.05);
}

.theme-toggle-container svg {
  transition: transform 0.3s ease;
  pointer-events: none;
}

.theme-toggle-container:hover svg {
  transform: rotate(20deg);
}

/* Native select overlay - invisible but clickable */
.theme-select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  font-size: 16px;
  /* Prevents iOS zoom */
  color-scheme: light dark;
}

/* Fix for Windows dropdown backgrounds */
.theme-select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

/* Legacy .theme-toggle support */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 1rem;
}

.theme-toggle:hover {
  background: var(--bg-tertiary);
  border-color: var(--accent-cyan);
  transform: scale(1.05);
}

.theme-toggle svg {
  transition: transform 0.3s ease;
}

.theme-toggle:hover svg {
  transform: rotate(20deg);
}

/* Navbar Right Section */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0;
}

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

/* Articles Page Styling */
.articles-page-section {
  padding: 8rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
}

.articles-page-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Articles Page Styles adjusted */
.articles-page-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* Fix Image Aspect Ratio - More Specific */
.content-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-tertiary);
}

.content-image {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Notion Renderer Image - Natural Size & Lightbox Friendly */
.article-image .image-container {
  position: relative;
  width: 100%;
  height: auto !important;
  aspect-ratio: auto !important;
  overflow: visible;
  background: transparent;
  border-radius: 8px;
  cursor: zoom-in;
  /* Indicate clickable */
}

.article-image img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 8px;
}

/* High Specificity Title Color Override - Foolproof */
.article-header-title {
  color: #000000 !important;
}

[data-theme="dark"] .article-header-title {
  color: #ffffff !important;
}

.article-divider {
  margin: 3rem 0;
  border: none;
  border-top: 1px solid var(--border-color);
}