.translate-bar { 
      position: sticky; top: 0; z-index: 1000; 
      background: #f8fafc; border-bottom: 1px solid #e5e7eb; 
      padding: .5rem 1rem; display: flex; gap: .75rem; align-items: center;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; 
    }
    .translate-bar small { color: #6b7280; }
    .btn { appearance: none; border: 1px solid #e5e7eb; background: #fff; padding: .4rem .7rem; border-radius: .5rem; cursor: pointer; }
    .btn:hover { background: #f3f4f6; }
    .consent { margin-left: auto; display: flex; align-items: center; gap: .5rem; }
    .hidden { display: none !important; }

    /* Google-UI dezent einpassen */
    #google_translate_element { display: inline-block; }
    .goog-te-banner-frame.skiptranslate { display: none !important; }
    body { top: 0 !important; }
    .goog-logo-link, .goog-te-gadget span { display: none !important; }
    .goog-te-gadget { font-size: 0 !important; }
.blog-article {
  max-width: 900px;
  margin: auto;
  padding: 1.5rem;
  font-family: Calibri, sans-serif;
  line-height: 1.6;
}

.article-header {
  /* Container für das Bild mit definiertem Aspect Ratio */
  width: 100%;
  aspect-ratio: 16 / 9; /* Passe das Seitenverhältnis an dein Bild an */
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  background-color: #f5f5f5; /* Fallback-Hintergrund während des Ladens */
}

.article-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 8px;
  /* Verhindert Layout Shift durch explizite Dimensionen */
  min-height: 100%;
}

.article-title h1 {
  font-size: 2.0rem;
  margin-top: 1rem;
  color: black;
}

.article-meta {
  color: #555; /* Verbessert für besseren Kontrast */
  font-size: 1rem;
}

.article-title h2 {
  font-size: 2rem;
  margin-top: 1.5rem;
  color: black;
}

.article-content h3 {
  margin-top: 2rem;
  font-size: 1.3rem;
  color: black;
  font-weight: bold;
}

.article-content p {
  margin: 1rem 0;
  font-size: 1.3rem;
  color: black;
}

.article-title a, .article-content a {
  color: black !important;
}

.article-content a:hover {
  color: #F2AE72 !important;
}

/* Zusätzliche CLS-Optimierungen */
.content-wrapper {
  /* Stabile Container-Dimensionen */
  min-height: 200px;
}

/* Responsive Optimierungen */
@media (max-width: 768px) {
  .article-header {
    aspect-ratio: 4 / 3; /* Angepasstes Verhältnis für mobile Geräte */
  }
  
  .blog-article {
    padding: 1rem;
  }
  
  .article-title h2 {
    font-size: 1.5rem;
  }
  
  .article-content p {
    font-size: 1.1rem;
  }
}

