#ThemenweltenSubCat {
    background-color: #ffffff;
    margin:10px 0;
    width: 100%;
    padding: 30px;
}
.themen-kachel {
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    background: #d1eea6;
}



.ThemenweltenList {
    width: 33.33%;
}
.themen-kachel-inhalt {
    padding: 1rem;
    flex-grow: 1;
}
.themen-kachel-inhalt h3 {
    font-size: 1.25rem;
    margin-top: 0;
}
.themen-kachel-inhalt p {
    font-size: 0.9rem;
    color: #666;
}
#ThemenweltenSubCat .ThemeProductLink a {
    font-size: 1rem;
    background-color: var(--HighlightBackground);
    border-radius: 5px;
    padding: 5px 10px;
    text-decoration: none;
    color: var(--LinkDark);
}
#ThemenweltenSubCat .ThemeProductLink a:hover {
    box-shadow: none;
    background-color: #fbdea2;

}
#ThemenweltenSubCat .ThemeProductLink a::before {
    content: ' \2192';
    display: inline-block;
    margin-right: 8px;
    transition: transform 0.2s ease;
    font-size: 1.8rem;
}
#ThemenweltenSubCat .ThemeProductLink {position: relative}
#ThemenweltenSubCat .ThemeProductLink a:hover::before {
    margin-right: 4px;
    transition: transform 0.2s ease;
}

#ThemenweltenSubCat .plbox {
    padding:15px;
    text-align: center;
}
.PostBackLink {
    width: 100%;
    padding:10px 0;
    background-color: #d1eea6;
}
.PostBackLink:hover {
    background-color: #e6fac6;
}
.PostBackLink a {
    font-size: 1.4rem;
    text-decoration: none!important;
}
.PostBackLink a::before {
    content: '\1F4D6';
    font-size: 1.8rem;
}

#ThemenweltenSubCat {background:#e6fac6; }
.themen-kachel {
    background: #ffffff;
}
.ProductGroupHeader {
    background-color: #d1eea6;
    padding:3px 0 3px 15px;
    margin-top:25px;
}
.ProductGroupHeader h2 {
    font-size: 1.4rem;
    font-weight: 500;
}
#SidebarBlogSnipes ul {list-style: none; padding-left: 10px}
#SidebarBlogSnipes ul li .icon {padding-right: 8px}
.boxen_leftside #boxen #SidebarBlogSnipes ul li a {padding:0}
#SidebarBlogSnipes ul li {border-bottom: 1px #ccc dashed; padding: 10px 0}
.boxen_leftside #boxen #SidebarBlogSnipes .SidebarBlogLink a {margin:0 0 8px 8px; color:#ffffff; padding: 3px 15px 3px 15px;}
.boxen_leftside #boxen #SidebarBlogSnipes .SidebarBlogLink a:hover {color:black}


/* B2BWeb: Styling für den neuen Call-to-Action Block */

.b2b-cta-box {
    display: flex;
    align-items: center;
    gap: 20px; /* Abstand zwischen den Elementen */
    background-color: #f8f9fa; /* Ein sehr heller, neutraler Hintergrund */
    border: 1px solid #e9ecef;
    border-left: 5px solid #d1eea6; /* Akzent in unserem Shop-Grün */
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
}

.b2b-cta-box .cta-icon {
    flex-shrink: 0; /* Verhindert, dass das Icon schrumpft */
    background-color: #d1eea6; /* Shop-Grün als Hintergrund */
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.b2b-cta-box .cta-icon svg {
    width: 28px;
    height: 28px;
}

.b2b-cta-box .cta-text {
    flex-grow: 1; /* Nimmt den verfügbaren Platz ein */
}

.b2b-cta-box .cta-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.4rem;
    color: #333;
}

.b2b-cta-box .cta-text p {
    margin: 0;
    color: #666;
}

.b2b-cta-box .cta-action .button-primary {
    background-color: #f5c35b; /* Unser starkes Gelb für die Aktion */
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap; /* Verhindert Umbruch des Button-Textes */
    transition: background-color 0.2s ease;
}

.b2b-cta-box .cta-action .button-primary:hover {
    background-color: #e0b04f; /* Etwas dunkler beim Hovern */
}