/* /Components/Layout/MainLayout.razor.rz.scp.css */
.container[b-3o5vhg09kj] {    
    width: 1180px;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.main-content[b-3o5vhg09kj] {
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 40px;
}

.footer[b-3o5vhg09kj] {
    background: white;
    padding: 20px 40px 20px 40px;
    align-items: center;
    text-align: center;
}

    .footer p[b-3o5vhg09kj] {
        font-size: 1.2rem;
        margin: 0px;
    }

@media (max-width: 768px) {
    .container[b-3o5vhg09kj] {
        width: 100%;
        margin: 0px 0px;
        box-shadow: none;
    }

    .main-content[b-3o5vhg09kj] {
        padding-left: 10px;
        padding-right: 10px;
        padding-bottom: 40px;
    }
}

#blazor-error-ui[b-3o5vhg09kj] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-3o5vhg09kj] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ==========================================================================
   NAVIGATION STYLES
   ========================================================================== */

.nav-header[b-15kv3f4xti] {
    background: white;
    padding: 20px 40px 0 40px;
    position: sticky; /* Keep navigation visible on scroll */
    top: 0;           /* Stick to top of the viewport */
    z-index: 1001;    /* Ensure it stays above page content */
}

.main-nav[b-15kv3f4xti] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Hamburger toggle (hidden on desktop) */
.menu-toggle[b-15kv3f4xti] {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    background: transparent;
    border: none;
    padding: 0;
    margin-right: 10px;
    margin-top: 10px;
}

.menu-toggle .bar[b-15kv3f4xti] {
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 2px;
}

.nav-menu[b-15kv3f4xti] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
}

.nav-item[b-15kv3f4xti] {
    position: relative;
}
    .nav-item.active .nav-link[b-15kv3f4xti] {
        color: var(--color-accent);
    }

    .nav-item .underline-line[b-15kv3f4xti] {
        visibility: hidden;
    }

    .nav-item.active .underline-line[b-15kv3f4xti] {
        visibility: visible;
    }

    .nav-item:hover .dropdown[b-15kv3f4xti] {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }


.nav-link[b-15kv3f4xti] {
    text-decoration: none;
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    padding: 10px 10px 0px 10px;
    display: block;
    transition: color 0.3s ease;
}

    .nav-link:hover[b-15kv3f4xti] {
        color: var(--color-accent);
    }

.underline-line[b-15kv3f4xti] {
    height: 10px;
    margin-bottom: 10px;
    display: block;
}

.dropdown[b-15kv3f4xti] {
    position: absolute;
    top: 90%;
    left: -20px;
    padding: 30px;
    padding-top: 10px;
    min-width: 300px;
    visibility: hidden;
    z-index: 1000;
    background-image: url('images/NavMenu/Kasten_offen_weiss_schmal.webp');
    background-size: 100% auto;
    background-position: bottom;
    background-repeat: no-repeat;
    border-top: solid 4px white;
}

    .dropdown a[b-15kv3f4xti] {
        display: block;
        padding-bottom: 12px;
        color: #333;
        text-decoration: none;
        font-size: 1.6rem;
        font-weight: 600;
    }

        .dropdown a:hover[b-15kv3f4xti] {
            color: var(--color-accent);
        }

.logo[b-15kv3f4xti] {
    font-size: 24px;
    font-weight: bold;
    margin-top: -20px;
}

.logo-text[b-15kv3f4xti] {
    color: #333;
}

.logo-highlight[b-15kv3f4xti] {
    color: white;
    background: var(--color-accent);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    padding-left: 4px;
}

/* ===================== Responsive ===================== */
@media (max-width: 768px) {
    .main-nav[b-15kv3f4xti] {
        align-items: flex-start;
        gap: 10px;
    }

    .menu-toggle[b-15kv3f4xti] { display: flex; }

    .logo[b-15kv3f4xti] { order: 2; margin-top: 0; }

    .nav-menu[b-15kv3f4xti] {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        gap: 10px;
        background: white;
        padding: 10px 20px 20px 20px;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        z-index: 1001;
    }

    .main-nav.open .nav-menu[b-15kv3f4xti] { display: flex; }

    .nav-link[b-15kv3f4xti] { font-size: 1.8rem; padding: 8px 6px 0 6px; }

    .underline-line[b-15kv3f4xti] { display: none; }

    /* Dropdowns become inline lists under each parent item */
    .dropdown[b-15kv3f4xti] {
        position: static;
        padding: 0 0 10px 10px;
        min-width: auto;
        visibility: visible;
        background: none;
        border: 0;
    }

        .dropdown a[b-15kv3f4xti] {
            display: block;
            padding-bottom: 4px;
            color: #333;
            text-decoration: none;
            font-size: 1.2rem;
        }

    .nav-item:hover .dropdown[b-15kv3f4xti] { opacity: 1; visibility: visible; transform: none; }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-bsqgiaxcaa],
.components-reconnect-repeated-attempt-visible[b-bsqgiaxcaa],
.components-reconnect-failed-visible[b-bsqgiaxcaa],
.components-pause-visible[b-bsqgiaxcaa],
.components-resume-failed-visible[b-bsqgiaxcaa],
.components-rejoining-animation[b-bsqgiaxcaa] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-bsqgiaxcaa],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-bsqgiaxcaa],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-bsqgiaxcaa],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-bsqgiaxcaa],
#components-reconnect-modal.components-reconnect-retrying[b-bsqgiaxcaa],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-bsqgiaxcaa],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-bsqgiaxcaa],
#components-reconnect-modal.components-reconnect-failed[b-bsqgiaxcaa],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-bsqgiaxcaa] {
    display: block;
}


#components-reconnect-modal[b-bsqgiaxcaa] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-bsqgiaxcaa 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-bsqgiaxcaa 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-bsqgiaxcaa 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-bsqgiaxcaa]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-bsqgiaxcaa 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-bsqgiaxcaa {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-bsqgiaxcaa {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-bsqgiaxcaa {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-bsqgiaxcaa] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-bsqgiaxcaa] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-bsqgiaxcaa] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-bsqgiaxcaa] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-bsqgiaxcaa] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-bsqgiaxcaa] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-bsqgiaxcaa] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-bsqgiaxcaa 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-bsqgiaxcaa] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-bsqgiaxcaa {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Blog.razor.rz.scp.css */
.blog-list[b-oai77vfyra] {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 1.25rem;
}

.blog-list h4[b-oai77vfyra] {
    margin-top: 0px;
    margin-bottom: 5px;
}

.blog-thumb[b-oai77vfyra] {
    width: 100%;
}
/* /Components/Pages/BlogPostDetail.razor.rz.scp.css */
.blog-image[b-1x9r5znead]{
    width: 30%;
}

a[b-1x9r5znead] {

}
/* /Components/Pages/Home.razor.rz.scp.css */
.title-section[b-prop0mxzj9] {
    position: relative;
    margin-bottom: 10px;
    margin-top: 20px;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-image[b-prop0mxzj9] {
    width: 70%;
}

.subtitle-section[b-prop0mxzj9] {
    margin-bottom: 40px;
}

.subtitle[b-prop0mxzj9] {
    font-size: 2.5rem;
    max-width: 870px;
    font-weight: 700;
}

.section[b-prop0mxzj9] {
    margin-top: 50px;
}

.section-title[b-prop0mxzj9] {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.principles-grid[b-prop0mxzj9] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    gap: 30px;
}

.principles-item[b-prop0mxzj9] {

}

.principles-header[b-prop0mxzj9] {
    display: flex;
    align-items: flex-end; 
    gap: 12px;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
    min-height: 110px; 
}

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */

/* Services Grid */
.services-grid[b-prop0mxzj9] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(333px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Service Card Links */
.service-card-link[b-prop0mxzj9] {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover[b-prop0mxzj9] {
    text-decoration: none;
    color: inherit;
}

/* Service Cards */
.service-card[b-prop0mxzj9] {
    background-image: url('images/Kasten/Kasten.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15px 15px;
    text-align: center;
    min-height: 210px;
    transition: transform 0.3s ease;
    position: relative;
    display: grid;
    grid-template-rows: 1fr 2fr;
    gap: 0;
    width: 303px;
}

.service-card-link:hover .service-card[b-prop0mxzj9] {
    transform: translateY(-8px);
    cursor: pointer;
}

.service-card h3[b-prop0mxzj9] {
    font-size: 2rem;
    margin-block-start: 0;
    margin-block-end: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Service Icons */
.service-icon[b-prop0mxzj9] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}


@media (max-width: 768px) {
    .title-image[b-prop0mxzj9] {
        width: 90%;
    }
}
/* /Components/Pages/Kontakt.razor.rz.scp.css */
/* Layout */
.contact-form[b-q6i7wzro1e] {
    margin-top: 20px;
    width: 80%;
}
.form-group[b-q6i7wzro1e] {
    margin-bottom: 16px;
}
.form-group label[b-q6i7wzro1e] {
    display: block;
    margin-bottom: 6px;
}
.form-actions[b-q6i7wzro1e] {
    margin-top: 10px;
}
.status[b-q6i7wzro1e] {
    margin-top: 12px;
}

.contact-form[b-q6i7wzro1e]  .input {
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(255,255,255,0.9);
}

.contact-form[b-q6i7wzro1e]  .textarea {
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(255,255,255,0.9);
}

/*.input:focus, .textarea:focus {
    outline: none;
    background-image: url('images/Kasten/Kasten_Ohne_Schatten_grau_gefuellt.webp');
}*/
.button[b-q6i7wzro1e] {
    cursor: pointer;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 15px;
}
.button:hover:not([disabled])[b-q6i7wzro1e] {
    background-image: url('images/Kasten/Kasten_grau_gefuellt.webp');
}
.button[disabled][b-q6i7wzro1e] {
    opacity: 0.6;
    cursor: not-allowed;
}
.validation-message[b-q6i7wzro1e] { color: #b32121; }

.contact-form[b-q6i7wzro1e]  .valid.modified:not([type=checkbox]) {
    outline: 0px solid #26b050;
}

.hint-with-image[b-q6i7wzro1e] {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.hint-image[b-q6i7wzro1e] {
    flex-shrink: 0;
    width: 80px;
    height: auto;
    border-radius: 8px;
}

.hint-text[b-q6i7wzro1e] {
    width: 80%;
}

p[b-q6i7wzro1e] {
    margin-block-start: 0px;
}

li[b-q6i7wzro1e] {
    margin-bottom: 10px;
    padding-left: 10px;
    list-style-type: "□";
}

@media (max-width: 768px) {
    .contact-form[b-q6i7wzro1e] {
        margin-top: 20px;
        width: 100%;
    }
}
/* /Components/Pages/Leistungen.razor.rz.scp.css */
.services-container[b-yw0cmsbo8j] {
    margin-top: 30px;
}

.service-tabs[b-yw0cmsbo8j] {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-tab[b-yw0cmsbo8j] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background-image: url('images/Kasten/Kasten_Ohne_Schatten.webp');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 10px 10px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
    flex: 1;
    max-width: 200px;
}

.service-tab:hover[b-yw0cmsbo8j] {
    background-image: url('images/Kasten/Kasten_Ohne_Schatten_grau_gefuellt.webp');
}

.service-tab.active[b-yw0cmsbo8j] {
    transform: translateY(-4px);
    background-image: url('images/Kasten/Kasten.webp');
}

.service-tab.active:hover[b-yw0cmsbo8j] {
    transform: translateY(-4px);
    background-image: url('images/Kasten/Kasten_grau_gefuellt.webp');
}

.service-tab h3[b-yw0cmsbo8j] {
    margin: 0;
    text-align: center;
}

.service-tab .service-icon[b-yw0cmsbo8j] {
    display: flex;
    justify-content: center;
}

/* Service Icons */
.service-icon-div[b-yw0cmsbo8j] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.service-icon[b-yw0cmsbo8j] {
    height: 80px;
    width: auto;
    display: block;
}

.service-description[b-yw0cmsbo8j] {
    flex: 1;
    padding: 0;
    margin: 0;
}

.service-content[b-yw0cmsbo8j] {
    min-height: 200px;
}

/* Mobile carousel hidden on larger screens */
.service-carousel[b-yw0cmsbo8j] {
    display: none;
    position: relative;
    margin: 20px 0 30px 0;
}

.service-carousel .carousel-viewport[b-yw0cmsbo8j] {
    overflow: hidden;
    width: 100%;
}

.service-carousel .carousel-track[b-yw0cmsbo8j] {
    display: flex;
    width: 100%;
    transition: transform .45s ease;
}

/* Ensure exactly one slide per view */
.service-carousel .service-tab[b-yw0cmsbo8j] {
    flex: 0 0 100%;
    max-width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    padding: 15px 55px 25px;
}

.carousel-slide[b-yw0cmsbo8j] {
    opacity: .9;
    transition: opacity .3s;
}

.carousel-slide.active[b-yw0cmsbo8j],
.service-carousel .service-tab.active[b-yw0cmsbo8j] {
    opacity: 1;
}

/* Navigation buttons (desktop/tablet default positioning) */
.service-carousel .carousel-nav[b-yw0cmsbo8j] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.5);
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.service-carousel .carousel-nav:hover[b-yw0cmsbo8j] {
    background: rgba(0,0,0,.65);
}

.service-carousel .carousel-nav.prev[b-yw0cmsbo8j] { left: 6px; }
.service-carousel .carousel-nav.next[b-yw0cmsbo8j] { right: 6px; }

/* Indicators (default) */
.service-carousel .carousel-indicators[b-yw0cmsbo8j] {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: -5px;
}

.service-carousel .indicator[b-yw0cmsbo8j] {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid var(--color-accent, #88bf02);
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.service-carousel .indicator.active[b-yw0cmsbo8j] {
    background: var(--color-accent, #88bf02);
}

/* Responsive switch */
@media (max-width: 768px) {
    .service-tabs[b-yw0cmsbo8j] {
        display: none;
    }
    .service-carousel[b-yw0cmsbo8j] {
        display: grid;
        grid-template-columns: 44px 1fr 44px;
        column-gap: 4px;
        align-items: center;
        position: relative;
        margin: 20px 0 30px 0;
    }

    /* Grid placement overrides */
    .service-carousel .carousel-nav[b-yw0cmsbo8j] {
        position: static;
        transform: none;
        width: 38px;
        height: 38px;
        background: rgba(0,0,0,.45);
    }
    .service-carousel .carousel-nav.prev[b-yw0cmsbo8j] { grid-column: 1; justify-self: center; }
    .service-carousel .carousel-nav.next[b-yw0cmsbo8j] { grid-column: 3; justify-self: center; }

    .service-carousel .carousel-viewport[b-yw0cmsbo8j] {
        grid-column: 2;
        width: 100%;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: center;
        padding: 6px 0;
        overflow: hidden;
    }

    .service-carousel .service-tab[b-yw0cmsbo8j] {
        padding: 15px 25px 25px;
    }

    /* FIX: Make indicator bar sit under the slide in the middle column */
    .service-carousel .carousel-indicators[b-yw0cmsbo8j] {
        grid-column: 2;
        margin-top: 8px;
        justify-content: center;
        gap: 10px;
    }

    /* Defensive reset if global button styles leak in (uncomment if needed)
    .service-carousel .indicator {
        all: unset;
        box-sizing: border-box;
        width: 11px;
        height: 11px;
        border-radius: 50%;
        border: 2px solid var(--color-accent, #88bf02);
        background: transparent;
        cursor: pointer;
        display: block;
    }
    .service-carousel .indicator.active {
        background: var(--color-accent, #88bf02);
    }
    */
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .service-tab[b-yw0cmsbo8j] {
        min-width: 120px;
    }
    .service-tab h3[b-yw0cmsbo8j] {
        font-size: 1.1rem;
    }
}

/* Additions for synced description carousel on mobile */
.service-content-carousel[b-yw0cmsbo8j] { display:none; }
.desktop-only[b-yw0cmsbo8j] { display:block; }
.mobile-only[b-yw0cmsbo8j] { display:none; }

@media (max-width:768px){
    .desktop-only[b-yw0cmsbo8j] { display:none; }
    .mobile-only[b-yw0cmsbo8j] { display:block; }

    .service-content-carousel[b-yw0cmsbo8j] {
        margin-top: 10px;
    }

    .service-desc-viewport[b-yw0cmsbo8j] {
        overflow:hidden;
        width:100%;
    }

    .service-desc-track[b-yw0cmsbo8j] {
        display:flex;
        width:100%;
        transition: transform .45s ease;
    }

    .service-description-slide[b-yw0cmsbo8j] {
        flex:0 0 100%;
        max-width:100%;
        box-sizing:border-box;
        padding:8px 4px 4px;
    }

    /* Optional: adjust internal paragraphs spacing if needed */
    .service-description-slide .service-description[b-yw0cmsbo8j] {
        margin:0;
    }
}
/* /Components/Pages/Prinzipien.razor.rz.scp.css */
.principles-accordion[b-3kgwu7bfnw] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.principles-item[b-3kgwu7bfnw] {
    background-image: url('images/Kasten/Kasten_duenn_2_quer.webp');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 10px 10px 10px;
    overflow: hidden;
/*    transition: all 0.3s ease;*/
}

.principles-item.expanded[b-3kgwu7bfnw] {
    background-image: url('images/Kasten/Kasten_duenn_2.webp');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 10px 10px 10px;
    }

@media (max-width: 768px) {
    .principles-item.expanded[b-3kgwu7bfnw] {
        background-image: url('images/Kasten/Kasten_duenn_2_hoch.webp');
        background-size: 100% 100%;
        background-position: center;
        background-repeat: no-repeat;
    }
}

.principles-header[b-3kgwu7bfnw] {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    user-select: none;
}

.principles-header:hover[b-3kgwu7bfnw] {
}

.principles-item.expanded .principles-header[b-3kgwu7bfnw] {
}

.expand-icon[b-3kgwu7bfnw] {
    margin-left: auto;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.expand-icon.rotated[b-3kgwu7bfnw] {
    transform: rotate(90deg);
}

.expand-icon.notrotated[b-3kgwu7bfnw] {
    transform: rotate(270deg);
}

.principles-content[b-3kgwu7bfnw] {
    padding: 0px 20px 20px 20px;
}

.principles-grid[b-3kgwu7bfnw] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 768px) {
    .principles-grid[b-3kgwu7bfnw] {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .principles-header[b-3kgwu7bfnw] {
        font-size: 1.25rem;
        padding: 16px;
    }
}

.bullet-icon[b-3kgwu7bfnw] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.benefit-item[b-3kgwu7bfnw] {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.benefit-label[b-3kgwu7bfnw] {
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 180px;
}

.benefit-text[b-3kgwu7bfnw] {
    flex: 1;
    line-height: 1.5;
}
/* /Components/Pages/Trainings.razor.rz.scp.css */
.title-grid[b-xptr4vq4ot] {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
}

.beschreibung-grid-links[b-xptr4vq4ot] {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    margin-bottom: 20px;
}

.beschreibung-grid-rechts[b-xptr4vq4ot] {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 40px;
    margin-bottom: 20px;
}

.termine-grid[b-xptr4vq4ot] {
    display: grid;
    grid-template-columns: 1.5fr 1fr 2fr 1fr;
    margin-left: 50px;
    margin-right: 50px;    
    row-gap: 10px;
}

.grid-header[b-xptr4vq4ot] {
    font-weight: 700;
}

.grid-fullwidth[b-xptr4vq4ot] {
    grid-column: 1 / -1;
}

li[b-xptr4vq4ot] {
    margin-bottom: 10px;
    padding-left: 10px;
    list-style-type: "□";
}

.grid-divider[b-xptr4vq4ot] {
    height: 13px;
    background-image: url('images/NavMenu/Linie_Gruen_Duenn.webp');
    background-size: 100% 10px;
    background-position: center;
    background-repeat: repeat-x;
    margin-top: -2px;
    margin-left: -50px;
    margin-right: -50px;
}
/* /Components/Pages/UeberUns.razor.rz.scp.css */
/* /Components/Pages/Workshops.razor.rz.scp.css */
li[b-8n9u90a1qz] {
    margin-bottom: 5px;
    padding-left: 10px;
    list-style-type: "□";
}
