.blog-categories a {
    padding: 6px 14px !important;
    background: #f1f5f9 !important;
    border-radius: 20px !important;
    font-size: 0.9rem !important;
    color: #334155 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.blog-categories a:hover,
.blog-categories a[style*="font-weight:bold"] {
    background: #2563eb !important;
    color: #ffffff !important;
}

/* --- Blog Artikel --- */
.blog-entry {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 24px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.blog-entry:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

/* --- Thumbnail --- */
.blog-thumb {
    width: 100% !important;
    height: 220px !important;
    object-fit: cover !important;
    border-radius: 10px !important;
    margin-bottom: 15px !important;
}

/* --- Überschrift & Text --- */
.blog-entry h3 {
    font-family: "Raleway", sans-serif !important;
    font-weight: 600 !important;
    margin-top: 0 !important;
    color: #0f172a !important;
}

.blog-entry p {
    color: #475569 !important;
    line-height: 1.6 !important;
}

/* --- "Weiterlesen"-Link --- */
.blog-link {
    display: inline-block !important;
    margin-top: 10px !important;
    font-size: 0.95em !important;
    font-weight: 600 !important;
    color: #2563eb !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.blog-link:hover {
    color: #1d4ed8 !important;
    text-decoration: underline !important;
}

/* --- Vollbild-Bild (Post-Seite) --- */
.blog-full-img {
    width: 100% !important;
    max-height: 400px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
}

/* ===========================================
   Blog Content Styling (Quill-kompatibel)
   =========================================== */
.blog-content {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
  margin-top: 1.5rem;
}

.blog-content p {
  margin-bottom: 1rem;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #111;
}

.blog-content h1 {
  font-size: 2rem;
}
.blog-content h2 {
  font-size: 1.6rem;
}
.blog-content h3 {
  font-size: 1.3rem;
}
.blog-content h4 {
  font-size: 1.1rem;
}

.blog-content ul,
.blog-content ol {
  margin: 1rem 0 1rem 2rem;
  padding: 0;
}

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

.blog-content a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-content a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.blog-content blockquote {
  border-left: 4px solid #007bff;
  background: #f9f9f9;
  color: #444;
  padding: 0.75rem 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  border-radius: 0.5rem;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 8px;
  display: block;
}

.blog-content pre {
  background: #282c34;
  color: #f8f8f2;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  font-family: "Fira Code", monospace;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.blog-content code {
  background: #f4f4f4;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: "Fira Code", monospace;
  font-size: 0.95em;
}

/* ==========================
   Zitat / Callout-Box Style
   ========================== */
.blog-content .ql-align-center {
  text-align: center;
}
.blog-content .ql-align-right {
  text-align: right;
}
.blog-content .ql-align-justify {
  text-align: justify;
}

/* ==========================
   Dark Mode Support
   ========================== */
@media (prefers-color-scheme: dark) {
  .blog-content {
    color: #ddd;
  }
  .blog-content h1,
  .blog-content h2,
  .blog-content h3,
  .blog-content h4 {
    color: #fff;
  }
  .blog-content blockquote {
    background: #1e1e1e;
    border-left-color: #0d6efd;
    color: #ccc;
  }
  .blog-content pre {
    background: #1e1e1e;
    color: #f5f5f5;
  }
  .blog-content code {
    background: #2a2a2a;
    color: #f0f0f0;
  }
  .blog-content a {
    color: #4ea3ff;
  }
  .blog-content a:hover {
    color: #91c9ff;
  }
}
