/* Globale Seiten-Struktur für wissen4vertrieb.de
 * Diese CSS-Datei gestaltet den Hauptcontainer aller Blogseiten
 */

/* Hintergrundfarbe für die gesamte Seite */
body {
    background-color: #e9eef2 !important;
}

/* Hauptcontainer für den Inhalt */
main {
    max-width: 1200px;
    margin: 2rem auto;
}

/* Styling für den Blogpost */
.blog-post-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

/* Blogpost-Titel */
.blog-post-title {
    color: #001373;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Meta-Informationen */
.blog-post-meta {
    color: #6c757d;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

/* Überschriften im Blogpost */
.blog-post-content h2 {
    color: #001373;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.blog-post-content h3 {
    color: #002db3;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

/* Besondere Anpassung für den Unilevel-Rechner */
#unilevel-calculator {
    background-color: #f0f5fa;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #dde5ee;
}

/* Blog-Post Einzelansicht */
.blog-post__image {
  max-width: 800px;
  margin: 2rem auto;
  background: var(--background-color);
  padding: 1rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-post__image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  display: block;
}

.blog-post__image figcaption {
  margin-top: 1rem;
  text-align: center;
  color: var(--secondary-color);
  font-size: 0.9rem;
  font-style: italic;
  padding: 0 1rem;
  line-height: 1.5;
} 