@font-face {
            font-family: 'Satoshi';
            src: url('../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.woff2') format('woff2'),
                 url('../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Regular.woff') format('woff'),
                 url('../fonts/Satoshi_Complete/Fonts/OTF/Satoshi-Regular.otf') format('opentype'),
                 url('../fonts/Satoshi_Complete/Fonts/TTF/Satoshi-Variable.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        /* General body and layout styling */
        body {
            background-color: #f8f8f8;
            margin: 0;
            padding: 0;
            font-family: 'Satoshi', sans-serif;
        }


        #main {
            max-width: 800px; /* Maximale Breite des Hauptinhalts */
            margin: 70px auto;
            padding: 20px; /* Innenabstand für den Hauptinhalt */
            background-color: #fff; /* Hintergrundfarbe für den Hauptinhalt */
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Schatten für den Hauptinhalt */
            border-radius: 5px; /* Abrundung der Ecken */
            flex: 1; /* Flexibles Layout, um den Hauptinhalt zu erweitern */
        }
        
h1 {
    margin: 0;
    padding: 10px 0;
    color: #333; /* Textfarbe */
    font-size: 2.5em;
    text-align: center;
}
/* CSS für die Suchleiste */
form {
    margin-bottom: 20px;
    margin-right: 20px; /* Abstand auf der rechten Seite */
}

label {
    display: block;
    font-weight: bold;
}

input[type="text"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: 10px;
}

input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}
#blogPosts {
    background-color: #f9f9f9; /* Hintergrundfarbe für Blog-Posts */
    padding: 20px; /* Innenabstand für Blog-Posts */
    border-radius: 5px; /* Abrundung der Ecken für Blog-Posts */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* Schatten für Blog-Posts */
}

.post {
    background-color: #fff; /* Hintergrundfarbe für einzelne Blog-Posts */
    margin: 0 0 20px; /* Abstand zwischen einzelnen Blog-Posts */
    padding: 20px; /* Innenabstand für einzelne Blog-Posts */
    border: 1px solid #ddd; /* Rahmen um einzelne Blog-Posts */
    border-radius: 5px; /* Abrundung der Ecken für einzelne Blog-Posts */
}

h2 {
    margin: 0;
    padding: 0;
    color: #333; /* Textfarbe für Überschriften */
    font-size: 1.8em;
}

.post p {
    margin: 0 0 10px; /* Abstand zwischen Absätzen in einem Blog-Post */
}

.post span {
    display: block;
    padding: 4px;
    background-color: #333; /* Hintergrundfarbe für das Span-Element */
    color: #fff; /* Textfarbe für das Span-Element */
}

/* Skalierung für Bilder */
.post img {
    max-width: 100%; /* Bild auf Bildschirmbreite skalieren */
    height: auto; /* Das Seitenverhältnis beibehalten */
    display: block; /* Verhindern, dass Bilder den Text überlappen */
    margin: 0 auto; /* Zentriert das Bild horizontal */
}
/* Kommentarfeld */
#comment-form {
    margin-top: 20px;
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #f9f9f9;
}

#comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical;
}

#comment-form input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* Kommentare */
#comments {
    margin-top: 20px;
}

.comment {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
}

.comment p {
    margin: 0;
}

.comment p.comment-text {
    font-weight: bold;
}

.comment p.comment-date {
    color: #888;
}

.topic-link {
    display: inline-block;
    background-color: white;
    color: #4CAF50; /* Grün, oder wählen Sie eine andere Farbe */
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, color 0.3s;
}

.topic-link:hover {
    background-color: #4CAF50; /* Grün, oder wählen Sie eine andere Farbe */
    color: white;
    text-decoration: none;
}
    .header {
            background-color: #4CAF50; /* Grüner Hintergrund */
            color: white;
            padding: 8px;
            text-align: left;
            margin-left: 0;
            display: flex; /* Flexbox für die Anordnung nutzen */

        }

        .trending-topic.fade {
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    .trending-topic a {
        text-decoration: none; /* Entfernt die Unterstreichung */
        color: inherit; /* Erbt die Farbe vom Elternelement */
        margin-left: 10px; /* Fügt etwas Abstand links hinzu */
    }
    .trending-topic {
        flex-grow: 0;
    }
    .trending-container {
    display: flex;
    align-items: center;
    /* Fügen Sie hier eventuell weiteren Abstand oder Stile hinzu */
}
        .blog-container {
            display: flex;
        }

        #main {
            max-width: 800px; /* Maximale Breite des Hauptinhalts */
            margin: 70px auto;
            padding: 20px; /* Innenabstand für den Hauptinhalt */
            background-color: #fff; /* Hintergrundfarbe für den Hauptinhalt */
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Schatten für den Hauptinhalt */
            border-radius: 5px; /* Abrundung der Ecken */
            flex: 1; /* Flexibles Layout, um den Hauptinhalt zu erweitern */
        }

         #juicer-widget {
            width: 300px; /* Festgelegte Breite des Widgets */
            margin-left: auto; /* Widget rechts ausrichten */
        }
        
        /* Stil für das Suchfeld */
        #search-form {
            margin-right: 20px; /* Abstand auf der rechten Seite des Suchfeldes */
        }

        .blog-post {
            margin-bottom: 20px;
            border: 1px solid #ddd;
            padding: 20px;
            border-radius: 5px;
            overflow: hidden;
        }

        .blog-title {
            font-size: 1.8em;
            margin-bottom: 10px;
        }

        .blog-title a {
            text-decoration: none;
            color: #333;
        }

        .blog-date {
            color: #888;
        }

        .blog-image {
            max-width: 100%;
            height: auto;
            transition: transform 0.2s;
        }

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

        .pagination {
            margin-top: 20px;
        }

        .pagination a {
            text-decoration: none;
            padding: 5px 10px;
            background-color: #333;
            color: #fff;
            border-radius: 5px;
            margin-right: 5px;
        }

        .pagination a:hover {
            background-color: #555;
        }
        .shop-and-social {
    display: flex;
    align-items: center;
    gap: 10px; /* Abstand zwischen den Elementen */
    justify-content: flex-end; /* Ausrichtung am rechten Rand */
    flex-grow: 0; /* Verhindert, dass dieser Bereich wächst */
}

.shop-link, .social-icon {
    text-decoration: none;
    color: inherit; /* oder eine spezifische Farbe */
    /* Weitere Styles für Links */
}
.social-icon:hover {
        color: #555; /* Farbe der Icons beim Hover */
            .teaser-bar {
        display: flex;
        background-color: white; /* Weißer Hintergrund */
        padding: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Leichter Schatten für Tiefe */
        overflow-x: auto; /* Ermöglicht horizontales Scrollen bei vielen Tags */
    }

    .teaser-item {
        display: inline-block;
        padding: 5px 10px;
        margin-right: 10px; /* Abstand zwischen den Tags */
        border-radius: 5px;
        background-color: #f0f0f0; /* Leichter grauer Hintergrund für die Tags */
        text-decoration: none; /* Entfernt die Unterstreichung */
        color: #333; /* Dunkle Schriftfarbe */
        transition: background-color 0.3s;
    }

    .teaser-item:hover {
        background-color: #e0e0e0; /* Farbänderung beim Hover */
    }
.blog-post {
    margin-bottom: 2em;
}

.post-title {
    color: #333;
    font-size: 24px;
}

.post-image img {
    max-width: 100%;
    height: auto;
}

.post-meta span {
    display: block;
    margin-bottom: 0.5em;
    font-style: italic;
}

.post-content p {
    text-align: justify;
    line-height: 1.6;
}

.comments {
    margin-top: 2em;
}

.comment-form .comment-textarea {
    width: 100%;
    margin-bottom: 1em;
}

.submit-comment {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 0.5em 1em;
    cursor: pointer;
}

.ck-content img {
    max-width: 100%;
    height: auto;
}
