#sidebar .widget h2, .footer-inside .widget h2 {
    outline-offset: 3px;
    outline: 2px solid #A2815E; /* Farbe des Umrisses geändert */
    background: #A2815E; /* Hintergrundfarbe geändert */
}


.widget_categories span {
    float: right;
    padding: 0 5px;
    background: #A2815E; /* Hintergrundfarbe geändert */
    color: #fff; /* Beibehalten der weißen Schriftfarbe */
    border-radius: 50%;
    min-width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-size: 12px;
}

.featured-box-item {
    height: 112px;
    width: 112px;
    border-radius: 50%;
    border: 2.5px solid #A2815E; /* Rahmenfarbe und -stärke geändert */
    clear: both;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0 auto;
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -ms-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
}

.see-more a {
    background: #A2815E; /* Hintergrundfarbe geändert */
    color: #fff; /* Beibehalten der weißen Schriftfarbe */
    padding: 10px 20px;
    transition: 300ms;
    outline-offset: 3px;
    outline: 2px solid #A2815E; /* Rahmenfarbe geändert */
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 700;
}


#sidebar .widget h2, .footer-inside .widget h2 {
    color: #fff; /* Setzt die Textfarbe auf Weiß */
}


#sidebar {
    float: right;
    color: #001936;
    font-size: 14px;
    width: 20%; /* Aktualisierte Breite */
}


/* Setze den Container für Sidebar und Hauptinhalt auf Flexbox */
.content-wrapper { /* Ersetze .content-wrapper durch die tatsächliche Klasse/ID des Containers */
    display: flex;
    flex-wrap: nowrap; /* Verhindert, dass Elemente auf kleinere Bildschirme umgebrochen werden */
}


/* Hauptinhalt-Einstellungen */


.logo-text h1 a {
    margin-bottom: 0;
    font-size: 28px;
    line-height: 1.4; /* Erhöht für minimal mehr Zeilenabstand */
    width: 100%;
    font-family: 'Playfair Display', cursive;
    color: #000;
    display: inline-block;
}

#main-content { /* Ersetze #main-content durch die tatsächliche ID/Klasse deines Hauptinhalts */
    flex-grow: 1; /* Erlaubt dem Hauptinhalt, den verbleibenden Platz zu nutzen */
    flex-basis: 0; /* Startet ohne eine feste Basis, sodass es den verfügbaren Raum füllt */
    max-width: 80%; /* Optional, um sicherzustellen, dass der Hauptinhalt nicht breiter wird */
}

.theme-author {
    display: none !important;
}


@media (max-width: 768px) {
    #sidebar {
        width: 100%;
        flex: none;
    }
    #main-content {
        max-width: 100%;
    }
}
