/*
Theme Name: Vocabu Theme
Theme URI: https://vocabu.de
Author: Vocabu
Description: Ein minimalistisches Theme, passend zur Vocabu App Website.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* Basis-Styling für WP-spezifische Elemente */
.aligncenter {
    display: block;
    margin: 0 auto;
}
.alignleft {
    float: left;
    margin-right: 1.5em;
}
.alignright {
    float: right;
    margin-left: 1.5em;
}

/* Blog spezifisches Styling, das nicht im Haupt-CSS ist */
.blog-post {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

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

.blog-post h2 a:hover {
    color: #007bff; /* Vocabu blau - muss evtl angepasst werden */
}

.blog-meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Fix für den Konflikt mit dem globalen Header-Styling */
header.entry-header {
    position: static;     /* Kein Sticky */
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    z-index: auto;
}

