/*
Theme Name: Custom Fixed Width Template
Theme URI: https://example.com
Description: A custom WordPress template with fixed width layout, configurable header, footer, sidebars, and central panel. All dimensions and colors are customizable through the Customizer.
Author: Gemfony scientific UG (haftungsbeschränkt)
Author URI: https://www.gemfony.eVersion: 2.5.407
License: All Rights Reserved
License URI:
Text Domain: custom-fixed-width
Tags: custom-layout, fixed-width, two-sidebars
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 8.0
*/

/* ==========================================================================
   Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color, #000000);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

/* h1, h2 und h3 in Gemfony-Orange */
h1, h2, h3 {
    color: var(--header-border-color, #CD7D0F);
}

/* Stellt sicher, dass Widget-Titel im Haupt-Content-Bereich die Gemfony-Farbe haben */
.main-content-area .widget-title {
    color: var(--header-border-color, #CD7D0F);
}

/* h4, h5, h6 in Dunkelgrau (#404040 ist dunkler als #808080) */
h4, h5, h6 {
    color: #404040;
}

h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.75em; }
h4 { font-size: 1.5em; }
h5 { font-size: 1.25em; }
h6 { font-size: 1em; }

/* Paragraphs */
p {
    margin-bottom: 1em;
}

/* Links */
a {
    color: var(--link-color, #000000);
    text-decoration: none;
    transition: color 0.2s ease;
}

/* ==========================================================================
   Main Wrapper (W)
   ========================================================================== */

.site-wrapper {
    width: var(--site-width, 1024px);
    min-height: var(--site-min-height, 800px);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

/* ==========================================================================
   Header (H)
   ========================================================================== */

.site-header {
    height: var(--header-height, 104px);   background-color: var(--header-bg-color, #ffffff);
    color: var(--header-text-color, #000000);
    border-bottom: var(--header-border-width, 4px) solid var(--header-border-color, #CD7D0F);
    display: flex;
    align-items: flex-end;
    padding: 0; /* Padding entfernt, um absolute Positionierung zu vereinfachen */
    border-left: none;
    border-right: none;
    border-top: none;
    position: relative;
}

.site-header .site-title {
    margin: 0;
    font-size: 24px;
}

.site-header .site-description {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

.site-header .header-logo {
    position: absolute;
    bottom: var(--header-logo-bottom, -3px);
    right: var(--header-logo-right, 0px);
    z-index: 10;
}

.site-header .header-logo .main-logo {
    display: block;
    height: auto;
    max-height: var(--header-logo-max-height, 96px);
    padding-right: 0;
}

.site-header .header-logo .blind-link {
    display: block;
    position: absolute; /* Wichtig, um es über das Logo zu legen */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 11; /* Höher als das Logo */
}

.site-header .header-logo .blind-image {
    display: block;
    height: auto;
    max-height: var(--header-logo-max-height, 96px);
    opacity: 0; /* Unsichtbar machen */
}
}

/* Header Menu */
.header-content {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: 0 20px 8px 20px; /* Ursprüngliches Header-Padding hierher verschoben */
}

.header-menu {
    display: flex;
    align-items: flex-end;
    gap: 0;
}

.menu-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 15px;
    border-right: 1px solid #ddd;
}

.menu-column:first-child {
    padding-left: 20px;
}



.menu-column:last-child {
    border-right: none;
}

.menu-item-top,
.menu-item-bottom {
    display: block;
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.menu-item-top {
    font-size: 11px;
    color: var(--header-menu-top-color, #999);
    margin-bottom: 2px;
}

.menu-item-top:hover {
    color: var(--header-menu-top-hover-color, #666);
}

.menu-item-bottom {
    font-size: 15px;
    color: var(--header-menu-bottom-color, #555);
    font-weight: 600;
}

.menu-item-bottom:hover {
    color: var(--header-menu-bottom-hover-color, #CD7D0F);
}

/* ==========================================================================
   Content Area
   ========================================================================== */

.site-content {
    display: flex;
    width: 100%;
    flex: 1;
}

/* ==========================================================================
   Left Sidebar (L)
   ========================================================================== */

.sidebar-left {
    width: var(--sidebar-left-width, 187px);
    background-color: var(--sidebar-left-bg-color, #808080);
    color: var(--sidebar-left-text-color, #ffffff);
    padding: 20px;
    flex-shrink: 0;
}

.sidebar-left .widget {
    margin-bottom: 20px;
    background-color: transparent !important; /* Hintergrund transparent machen (mit !important zur Überschreibung) */
    color: var(--sidebar-left-text-color, #ffffff); /* Textfarbe von der Sidebar erben */
    padding: 0; /* Padding entfernen, da die Sidebar selbst Padding hat */
}

.sidebar-left .simple-bullet-list-widget .widget-title {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--sidebar-left-text-color, #ffffff) !important; /* Überschrift weiß */
    border-bottom: 1px solid var(--sidebar-left-text-color, #ffffff); /* Trennlinie */
    padding-bottom: 5px;
}
.sidebar-left .simple-bullet-list-widget a {
    color: var(--sidebar-left-text-color, #ffffff); /* Weiße Linkfarbe für das Widget */
    text-decoration: none;
}

.sidebar-left .simple-bullet-list-widget a:hover {
    color: var(--link-hover-color, #CD7D0F); /* Hover-Farbe (Gold) */
}

/* ==========================================================================
   Central Panel (C)
   ========================================================================== */

.main-content {
    flex: 1;
    background-color: var(--main-content-bg-color, #ffffff);
    color: var(--main-content-text-color, #000000);
    padding: 20px 40px; /* Aggressives Padding für den Hauptinhalt */
}

/* Aggressive Korrektur: Stellt sicher, dass die inneren Blöcke das Padding nicht neutralisieren */
.main-content .textblock-1,
.main-content .textblock-2 {
    padding: 0 !important;
    margin: 0 !important;
}

/* Textblock 1 - Upper section */
.textblock-1 {
    margin-bottom: 30px;
}

.textblock-1 .content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.textblock-1 .image-description {
    font-style: italic;
    margin-bottom: 15px;
    color: #666;
}

/* Textblock 2 - Lower section */
.textblock-2 {
    margin-bottom: 20px;
}

/* ==========================================================================
   Right Sidebar (R)
   ========================================================================== */

.sidebar-right {
    width: var(--sidebar-right-width, 226px);
    background-color: var(--sidebar-right-bg-color, #ffffff);
    color: var(--sidebar-right-text-color, #000000);
    padding: 0;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.sidebar-right .widget {
    margin: 0 20px 20px 20px;
}

.sidebar-right .widget-title {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}

.sidebar-right a {
    color: var(--sidebar-right-text-color, #000000);
    text-decoration: none;
}

.sidebar-right a:hover {
    color: var(--link-hover-color, #CD7D0F);
    text-decoration: underline;
}

/* Right Sidebar Image */
.sidebar-right-image {
    margin-top: auto;
    margin-bottom: var(--sidebar-right-image-bottom, 0px);
}

.sidebar-right-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Footer (F)
   ========================================================================== */

.site-footer {
    min-height: var(--footer-height, 36px); /* Verwende min-height, da es nun zwei Zeilen gibt */
    background-color: var(--footer-bg-color, #ffffff);
    color: var(--footer-text-color, #000000);
    border-top: var(--footer-border-width, 6px) solid var(--footer-border-color, #CD7D0F);
    display: flex;
    flex-direction: column; /* Ändere die Richtung auf Spalte */
    align-items: center;
    justify-content: center;
    padding: 5px 20px; /* Füge etwas vertikales Padding hinzu */
    border-left: none;
    border-right: none;
    border-bottom: none;
}

.site-footer a {
    color: var(--footer-text-color, #000000);
    text-decoration: none;
}

.footer-copyright-line {
    font-size: 12px;
    margin-bottom: 2px;
}

.footer-links-line {
    font-size: 12px;
}

.site-footer a:hover {
    color: var(--link-hover-color, #CD7D0F);
    text-decoration: underline;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* ==========================================================================
   Widget Styles for Main Content Area
   ========================================================================== */

.main-content .widget {
    margin-bottom: 20px;
}

.main-content .widget-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
    color: var(--main-content-text-color, #000000);
}

.page-content-widget-inner {
    line-height: 1.6;
}

.widget-featured-image {
    margin-bottom: 20px;
}

.widget-featured-image .content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.widget-featured-image .image-description {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.widget-page-content {
    margin-top: 15px;
}

.widget-page-content p {
    margin-bottom: 15px;
}

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

.widget-page-content h1,
.widget-page-content h2,
.widget-page-content h3,
.widget-page-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.widget-page-content ul,
.widget-page-content ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.widget-page-content li {
    margin-bottom: 5px;
}

/* ==========================================================================
   Full Content Layout (for page-full-content.php template)
   ========================================================================== */

.main-content-full {
    display: flex;
    flex-direction: column;
}

.content-full {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-full .widget {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-full .widget-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.content-full .page-content-widget-inner {
    flex: 1;
}

/* ==========================================================================
   Blog & News Widget
   ========================================================================== */

.sidebar-right .blog-news-widget {
    /* Rahmen entfernen */
    border: none;
    /* Padding entfernen, um den Hintergrund über die gesamte Breite des Widgets zu ermöglichen */
    padding: 0;
}

.sidebar-right .blog-news-widget .widget-title {
    margin-top: 0;
}

.sidebar-right .blog-news-widget ul {
    list-style: none;
    padding: 10px; /* Padding für den Inhalt */
    margin: 0;
    /* Hintergrundfarbe für den Inhaltsbereich */
    background-color: #F5F5F5;
}

.sidebar-right .blog-news-widget li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #ccc;
}

.sidebar-right .blog-news-widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0; /* Kein Padding unten, da es im ul-Padding enthalten ist */
}





.sidebar-right .blog-news-widget a {
    font-weight: bold;
}

.sidebar-right .blog-news-widget .post-date {
    display: block;
    font-size: 0.85em;
    color: #666;
    margin-top: 2px;
}

/* ==========================================================================

/* Simple List Widget in Left Sidebar (for Custom HTML or Text Widget) */

.sidebar-left .simple-bullet-list-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-left .simple-bullet-list-widget li {
    position: relative;
    padding-left: 20px; /* Platz für das Bullet-Bild */
    margin-bottom: 5px;
    color: var(--sidebar-left-text-color, #ffffff); /* Weiße Schrift */
    font-size: 0.9em; /* Kleinere Schriftgröße für Listenelemente */
}

.sidebar-left .simple-bullet-list-widget li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3em; /* Vertikale Ausrichtung des Bullets */
    width: 10px;
    height: 10px;
    background: url('images/gemfony_point_kl.gif') no-repeat center center;
    background-size: contain;
}










  ========================================================================== */
.blog-news-widget {
    width: 100%;
    border: var(--blog-widget-border-width, 2px) solid var(--blog-widget-header-bg, #CCCCCC); /* Konfigurierbare Rahmenbreite */
    background-color: #ffffff;
    overflow: hidden;
}
.blog-news-header {
    padding: 8px 15px; /* Reduced padding from 12px to 8px */
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    /* Background and text color are set inline via widget */
}

.blog-news-content {
    background-color: #ffffff;
    padding: 0;
}

.blog-news-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-news-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.blog-news-item:last-child {
    border-bottom: none;
}

.blog-news-item a {
    display: block;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.blog-news-item a:hover {
    color: #CD7D0F;
}

.blog-news-date {
    display: block;
    font-size: 11px;
    color: #999;
    margin-top: 4px;
}

/* Ensure widget doesn't overlap with sidebar image */
.sidebar-right .blog-news-widget {
    margin-bottom: 20px;
}

/* ==========================================================================
   Blog & Archive Pages
   ========================================================================== */

.blog-home,
.archive-page {
    padding: 20px;
}

.blog-header,
.archive-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #CD7D0F;
}

.blog-title,
.archive-title {
    font-size: 2em;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.archive-description {
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}

.blog-posts,
.archive-posts {
    margin-bottom: 40px;
}

.blog-post-item,
.archive-post-item {
    padding: 25px 0;
    border-bottom: 1px solid #e0e0e0;
}

.blog-post-item:last-child,
.archive-post-item:last-child {
    border-bottom: none;
}

.blog-post-title,
.archive-post-title {
    font-size: 1.5em;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.blog-post-title a,
.archive-post-title a {
    color: #333;
    transition: color 0.2s ease;
}

.blog-post-title a:hover,
.archive-post-title a:hover {
    color: #CD7D0F;
}

.blog-post-meta,
.archive-post-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 15px;
}

.blog-post-category,
.archive-post-category {
    color: #CD7D0F;
    font-weight: 600;
}

.blog-post-excerpt,
.archive-post-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.blog-post-readmore,
.archive-post-readmore {
    display: inline-block;
    color: #CD7D0F;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.blog-post-readmore:hover,
.archive-post-readmore:hover {
    color: #A66309;
}

/* Pagination */
.pagination,
.nav-links {
    margin-top: 40px;
    text-align: center;
}

.pagination .page-numbers,
.nav-links .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    background-color: #f5f5f5;
    color: #333;
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

.pagination .page-numbers:hover,
.nav-links .page-numbers:hover {
    background-color: #CD7D0F;
    color: #ffffff;
}

.pagination .page-numbers.current,
.nav-links .page-numbers.current {
    background-color: #CD7D0F;
    color: #ffffff;
}

.no-posts {
    padding: 40px 20px;
    text-align: center;
    color: #999;
}

/* Blog Widget Header Link */
.blog-news-header-link {
    display: block;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.blog-news-header-link:hover {
    opacity: 0.9;
}

.blog-news-header-link .blog-news-header {
    cursor: pointer;
}

/* ==========================================================================
   Post Archive Widget
   ========================================================================== */

.post-archive-widget {
    border: 1px solid var(--blog-widget-border-color, #CCCCCC);
    background-color: #ffffff;
    margin-bottom: 20px;
}

.post-archive-header {
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.post-archive-content {
    padding: 0;
}

.post-archive-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-archive-list li {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.post-archive-list li:last-child {
    border-bottom: none;
}

.post-archive-list a {
    color: #333;
    font-size: 13px;
    transition: color 0.2s ease;
}

.post-archive-list a:hover {
    color: #CD7D0F;
}

.post-archive-list .post-count {
    color: #999;
    font-size: 11px;
    margin-left: 5px;
}

/* ==========================================================================
   Custom Bullet List Widget
   ========================================================================== */

.custom-bullet-list-widget {
    /* Widget-Container */
    padding: 0;
    margin: 0;
}

.sidebar-left .custom-bullet-list-widget {
    /* Stellt sicher, dass das Widget links ausgerichtet ist und das Padding der Sidebar ignoriert */
    margin-left: -20px; /* Negatives Margin, um das Sidebar-Padding auszugleichen */
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.custom-bullet-list-title {
    /* Überschrift */
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: bold;
    padding-top: 10px;
}

.custom-bullet-list-title a {
    /* Link in der Überschrift */
    color: var(--sidebar-left-text-color, #ffffff);
    text-decoration: none;
}

.custom-bullet-list-separator {
    /* Farbige Trennlinie */
    height: 2px;
    width: 100%;
    margin-bottom: 15px;
    /* Farbe wird inline gesetzt, falls nicht, fallback auf Header Border Color */
}

.custom-bullet-list {
    /* Container für die Liste */
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.custom-bullet-list li {
    /* Listeneintrag */
    padding: 5px 0 5px 25px; /* Platz für das Bulletpoint-Bild */
    margin-bottom: 5px;
    line-height: 1.4;
    position: relative;
    background-color: transparent; /* Standardmäßig transparent */
}

.sidebar-left .custom-bullet-list li {
    /* Grauer Balken-Effekt in der linken Sidebar */
    background-color: rgba(0, 0, 0, 0.1); /* Dunklere Version der Sidebar-Farbe */
    background-color: color-mix(in srgb, var(--sidebar-left-bg-color, #808080) 80%, black 20%); /* Versuch, eine dunklere Version der Sidebar-Farbe zu verwenden */
    background-color: var(--sidebar-left-bg-color-darker, #666666); /* Fallback, da color-mix nicht immer verfügbar ist */
    background-color: var(--sidebar-left-bg-color); /* Nur für den linken Balken */
    background-image: linear-gradient(to right, rgba(0, 0,0, 0.2) 20px, transparent 20px); /* Grauer Balken links */
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
    
    /* Die tatsächliche Farbe des Balkens wird durch das Sidebar-Padding und die Listen-Items erzeugt */
    padding-left: 25px; /* Platz für das Bulletpoint-Bild */
    margin-left: -20px; /* Negatives Margin, um den Balken links zu erzeugen */
    padding-right: 20px;
    width: calc(100% + 40px); /* Breite anpassen, um das negative Margin auszugleichen */
    
    /* Hintergrund für den Balken-Effekt */
    background-color: transparent;
    
    /* Der graue Balken wird durch ein Pseudo-Element erzeugt, um die Farbe der Sidebar zu verwenden */
}

.sidebar-left .custom-bullet-list li::before {
    /* Benutzerdefinierter Bulletpoint */
    content: "";
    display: block;
    position: absolute;
    left: 0; /* Positionierung links vom Text */
    top: 50%;
    transform: translateY(-50%);
    width: 20px; /* Größe des Bildes */
    height: 20px; /* Größe des Bildes */
    /* Da das Bild nun hochauflösend ist, stellen wir sicher, dass es korrekt skaliert wird. */
    background-image: url('images/pfeil-bullet.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.sidebar-left .custom-bullet-list li::after {
    /* Grauer Balken links */
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 20px; /* Breite des Balkens */
    background-color: var(--sidebar-left-bg-color, #808080); /* Sidebar-Farbe */
    opacity: 0.2; /* Transparenz für den Balken */
    z-index: 0;
}

.sidebar-left .custom-bullet-list li {
    /* Text über dem Balken */
    position: relative;
    z-index: 2;
}

.sidebar-left .custom-bullet-list li a {
    /* Links in der Liste */
    color: #000000; /* Schwarze Linkfarbe für das Widget */
}

.sidebar-left .custom-bullet-list li a:hover {
    color: var(--link-hover-color, #CD7D0F); /* Link-Hover-Farbe beibehalten */
    text-decoration: underline;
}

/* Anpassung des Widget-Containers für den Balken-Effekt */
.sidebar-left .widget {
    /* Das Padding der Sidebar wird hier entfernt, um den Balken-Effekt zu ermöglichen */
    padding: 0;
    background-color: #ffffff; /* Weißer Hintergrund für das Widget */
    color: #000000; /* Schwarze Textfarbe für das Widget */
}

.sidebar-left .widget-title {
    /* Padding für die Überschrift wiederherstellen */
    padding: 20px 20px 10px 20px;
}

.sidebar-left .custom-bullet-list-widget .custom-bullet-list-title {
    /* Padding für die Überschrift des neuen Widgets */
    padding: 0 0 0 20px;
}

.sidebar-left .custom-bullet-list-widget .custom-bullet-list-separator {
    /* Padding für die Trennlinie */
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
}

.sidebar-left .custom-bullet-list-widget {
    /* Padding für den gesamten Widget-Inhalt */
    padding: 0 0 20px 0;
}

.sidebar-left .custom-bullet-list li {
    /* Finales Styling für den Balken-Effekt */
    margin-left: 0;
    padding-left: 40px; /* Platz für Balken (20px) und Bulletpoint (20px) */
    width: 100%;
}

.sidebar-left .custom-bullet-list li::before {
    left: 20px; /* Positionierung des Bulletpoints nach dem Balken */
}

.sidebar-left .custom-bullet-list li::after {
    left: 0;
    width: 20px; /* Breite des Balkens */
}

.sidebar-left .custom-bullet-list-widget {
    /* Entferne das negative Margin, da wir das Widget-Padding der Sidebar entfernt haben */
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.sidebar-left .custom-bullet-list-widget .custom-bullet-list-title {
    /* Überschrift-Padding anpassen */
    padding: 0 20px 0 20px;
}

.sidebar-left .custom-bullet-list-widget .custom-bullet-list-separator {
    /* Trennlinie-Margin anpassen */
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
}

.sidebar-left .custom-bullet-list-widget .custom-bullet-list {
    /* Listen-Container-Padding anpassen */
    padding: 0 20px;
}

.sidebar-left .custom-bullet-list li {
    /* Listen-Item-Padding anpassen */
    padding: 5px 0 5px 20px; /* Nur Platz für das Bulletpoint-Bild */
    margin-left: 0;
    width: auto;
}

.sidebar-left .custom-bullet-list li::before {
    left: 0; /* Positionierung des Bulletpoints am Anfang des Textes */
}

.sidebar-left .custom-bullet-list li::after {
    /* Grauer Balken links */
    left: -20px; /* Verschiebe den Balken in den Sidebar-Padding-Bereich */
    width: 20px;
}

.sidebar-left .custom-bullet-list li {
    /* Finaler Versuch für den Balken-Effekt */
    padding-left: 25px; /* Platz für das Bulletpoint-Bild */
    margin-left: 0;
    width: 100%;
    position: relative;
}

.sidebar-left .custom-bullet-list li::before {
    left: 0;
}

.sidebar-left .custom-bullet-list li::after {
    /* Grauer Balken links */
    content: "";
    display: block;
    position: absolute;
    left: -20px; /* Verschiebe den Balken in den Sidebar-Padding-Bereich */
    top: 0;
    bottom: 0;
    width: 20px; /* Breite des Balkens */
    background-color: var(--sidebar-left-bg-color, #808080); /* Sidebar-Farbe */
    opacity: 0.2; /* Transparenz für den Balken */
    z-index: 0;
}

.sidebar-left .custom-bullet-list li {
    /* Text über dem Balken */
    position: relative;
    z-index: 2;
}

.sidebar-left .custom-bullet-list li::before {
    /* Benutzerdefinierter Bulletpoint */
    content: "";
    display: block;
    position: absolute;
    left: 0; /* Positionierung links vom Text */
    top: 50%;
    transform: translateY(-50%);
    width: 20px; /* Größe des Bildes */
    height: 20px; /* Größe des Bildes */
    /* Da das Bild nun hochauflösend ist, stellen wir sicher, dass es korrekt skaliert wird. */
    background-image: url('images/pfeil-bullet.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 3;
}


