.site-header {
    position: sticky;
    top: 32px; /* Höhe der Adminbar bei eingeloggten Usern */
    z-index: 999;
    width: 100%;
    background: linear-gradient(90deg, #ffeb3b 0%, #fffde4 100%);
    color: #1a237e;
    font-size: 2rem;
    padding: 1.2rem 0 0.7rem 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 3px solid #1a237e;
    transition: box-shadow 0.18s, background 0.18s;
}

@media (max-width: 782px) {
    .site-header {
        top: 46px; /* Mobile WP-Adminbar höher */
        padding-left: 1rem;
    }
}
.site-title {
    font-weight: 700;
    font-size: 2.1rem;
    letter-spacing: 0.03em;
}
.site-subline {
    font-size: 1rem;
    color: #333;
    margin-top: 0.1em;
    font-weight: 400;
}
