/* Starseite Anpassungen */
 
/* ALLE Bullets auf Site entfernen */
li, ul {
    list-style: none !important;
}


 

/* Widget-Title: Dunkelblau entfernen */
#block-26 .cm-widget-title,
.cm-widget-title span {
    background: none !important;
    color: #333 !important; /* Dunkelgrau statt weiß */
    border: none !important;
    padding: 10px 0 !important;
}


/* Anpassung der Blog Posts */

/* Post-Container und Titel */
.wp-block-latest-posts__post-title {
    display: block !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 12px !important;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.2) !important;
    padding: 20px !important;
    margin: 25px auto 25px 0 !important;
    max-width: 700px;
    border-left: 5px solid #2196f3 !important;
    text-decoration: none !important;
    color: #1565c0 !important;
    font-size: 1.4em !important;
    font-weight: bold;
}

/* Linke Bilder in Posts */
.wp-block-latest-posts__featured-image.alignleft {
    float: left !important;
    margin: 0 20px 20px 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.15) !important;
}

/* Post-Bilder */
.attachment-thumbnail.size-thumbnail.wp-post-image {
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

/* Trennlinie vor Post */
.wp-block-latest-posts__post-title::before {
    content: '' !important;
    display: block !important;
    height: 3px !important;
    background: linear-gradient(to right, transparent, #2196f3, transparent) !important;
    margin: 0 0 15px 0 !important;
    border-radius: 2px;
}

/* Trennlinie nach Post */
.wp-block-latest-posts__post-title::after {
    content: '' !important;
    display: block !important;
    height: 3px !important;
    background: linear-gradient(to right, transparent, #2196f3, transparent) !important;
    margin: 15px 0 0 0 !important;
    border-radius: 2px;
}

/* Listen/Inline-Content in Posts (z.B. Tore, Aufstellungen) */
.wp-block-latest-posts__post-title + ul,
.wp-block-latest-posts__post-title ~ ul {
    background: rgba(33, 150, 243, 0.05) !important;
    border-left: 3px solid #2196f3 !important;
    padding-left: 16px !important;
    margin: 10px 0 !important;
}

nav, header, .menu { /* Navigation schützen */
    all: revert !important;
}