/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-r5k1op2gxe] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar[b-r5k1op2gxe] {
    position: sticky;
    top: 0;
    z-index: 10;

    /* Navy + Blue Accent (gut für blau/weiße Icons) */
    background: linear-gradient(90deg, #081a2b 0%, #0b2a47 55%, #081f33 100%);
    color: #fff;
    border-bottom: 1px solid rgba(74, 163, 255, 0.28);

    /* Accent für Links/Buttons */
    --accent: #4aa3ff;
    --accent-soft-bg: rgba(74, 163, 255, 0.14);
    --accent-strong-bg: rgba(74, 163, 255, 0.22);

    /* gemeinsame "Ink"-Farbe für Brand + Navigation */
    --nav-ink: rgba(207, 231, 255, 0.96);
}

.topbar-container[b-r5k1op2gxe] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand-link[b-r5k1op2gxe] {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0.6rem;

    text-decoration: none !important;
    color: inherit;
    white-space: nowrap;
}

.brand-icon[b-r5k1op2gxe] {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 8px;

    flex: 0 0 auto;
}

/* Brand-Text braucht dann nur noch Layout, nicht mehr Farbe/Typo doppelt */
.brand-text[b-r5k1op2gxe] {
    display: inline-flex;
    align-items: center;

    /* gleiche "Button-Höhe" wie .topbar-link */
    padding: 0.4rem 0.65rem;
    border-radius: 0.45rem;

    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2px;

    color: var(--nav-ink);
    text-decoration: none !important;
    white-space: nowrap;
}

.topbar-nav[b-r5k1op2gxe] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Links im Menü (gleicher Stil wie Brand-Text) */
.topbar-link[b-r5k1op2gxe] {
    display: inline-flex;
    align-items: center;

    padding: 0.4rem 0.65rem;
    border-radius: 0.45rem;

    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2px;

    text-decoration: none !important;
    color: var(--nav-ink);
}

.topbar-link:hover[b-r5k1op2gxe] {
    text-decoration: none !important;
    background: var(--accent-soft-bg);
    color: #fff;
}

.topbar-link.is-active[b-r5k1op2gxe] {
    text-decoration: none !important;
    background: var(--accent-strong-bg);
    color: #fff;
}

.lang-switch[b-r5k1op2gxe] {
    display: inline-flex;
    gap: 0.35rem;
    margin-left: 0.5rem;
}

/* Sprach-Buttons (wie Links/Brand-Text, nur als Button) */
.lang-btn[b-r5k1op2gxe] {
    display: inline-flex;
    align-items: center;

    padding: 0.4rem 0.65rem; /* bewusst identisch zu .topbar-link */
    border-radius: 0.45rem;

    border: 1px solid transparent;
    background: transparent;

    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2px;

    color: var(--nav-ink);
    text-decoration: none !important;
}

.lang-btn:hover[b-r5k1op2gxe] {
    text-decoration: none !important;
    background: var(--accent-soft-bg);
    border-color: rgba(74, 163, 255, 0.35);
    color: #fff;
}

.lang-btn.is-active[b-r5k1op2gxe] {
    text-decoration: none !important;
    background: var(--accent-strong-bg);
    border-color: rgba(74, 163, 255, 0.45);
    color: #fff;
}

.main-content[b-r5k1op2gxe] {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#blazor-error-ui[b-r5k1op2gxe] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-r5k1op2gxe] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.nav-pill[b-r5k1op2gxe] {
    display: inline-flex;
    align-items: center;

    padding: 0.4rem 0.65rem;
    border-radius: 0.45rem;

    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2px;

    color: var(--nav-ink);
    text-decoration: none !important;
    white-space: nowrap;
}

/* NavLink rendert ein <a> aus einer Child-Component -> ::deep notwendig */
.topbar[b-r5k1op2gxe]  a.brand-link {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 0.6rem;

    text-decoration: none !important;
    color: inherit !important;
    white-space: nowrap;
}

/* Menü-Links: gleiche Farbe wie Text neben dem Icon (var(--nav-ink)) + kein Unterstrich */
.topbar-nav[b-r5k1op2gxe]  a.topbar-link,
.topbar-nav[b-r5k1op2gxe]  a.topbar-link:link,
.topbar-nav[b-r5k1op2gxe]  a.topbar-link:visited,
.topbar-nav[b-r5k1op2gxe]  a.topbar-link:hover,
.topbar-nav[b-r5k1op2gxe]  a.topbar-link:active {
    display: inline-flex;
    align-items: center;

    padding: 0.4rem 0.65rem;
    border-radius: 0.45rem;

    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2px;

    color: var(--nav-ink) !important;
    text-decoration: none !important;
}

/* Hover/Active (nur Background/Farbe ändern, ohne Unterstrich) */
.topbar-nav[b-r5k1op2gxe]  a.topbar-link:hover {
    background: var(--accent-soft-bg);
    color: #fff !important;
    text-decoration: none !important;
}

.topbar-nav[b-r5k1op2gxe]  a.topbar-link.is-active {
    background: var(--accent-strong-bg);
    color: #fff !important;
    text-decoration: none !important;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-zacfmjfcr4] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-zacfmjfcr4] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-zacfmjfcr4] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-zacfmjfcr4] {
    font-size: 1.1rem;
}

.bi[b-zacfmjfcr4] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-zacfmjfcr4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-zacfmjfcr4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-zacfmjfcr4] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-zacfmjfcr4] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-zacfmjfcr4] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-zacfmjfcr4] {
        padding-bottom: 1rem;
    }

    .nav-item[b-zacfmjfcr4]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-zacfmjfcr4]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-zacfmjfcr4]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-zacfmjfcr4] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-zacfmjfcr4] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-zacfmjfcr4] {
        display: none;
    }

    .nav-scrollable[b-zacfmjfcr4] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Blog.razor.rz.scp.css */
.blog[b-oth6mw3pwz] {
    max-width: 920px;
    margin: 0 auto;
}

.blog-header h1[b-oth6mw3pwz] {
    margin: 0;
    font-size: 2.4rem;
    letter-spacing: 0.2px;
}

.blog-subtitle[b-oth6mw3pwz] {
    margin: 0.45rem 0 0 0;
    color: rgba(0, 0, 0, 0.60);
    font-size: 1.05rem;
}

.blog-list[b-oth6mw3pwz] {
    margin-top: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-card[b-oth6mw3pwz] {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.blog-card h2[b-oth6mw3pwz] {
    margin: 0 0 0.6rem 0;
    font-size: 1.55rem;
}

.blog-meta[b-oth6mw3pwz] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    color: rgba(0, 0, 0, 0.55);
    font-size: 0.95rem;
}

.blog-meta-item[b-oth6mw3pwz] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.blog-meta-sep[b-oth6mw3pwz] {
    color: rgba(0, 0, 0, 0.35);
}

.blog-icon[b-oth6mw3pwz] {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    color: rgba(0, 0, 0, 0.55);
}

.blog-divider[b-oth6mw3pwz] {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 1rem 0 1.2rem 0;
}

.blog-card p[b-oth6mw3pwz] {
    margin: 0 0 0.9rem 0;
    line-height: 1.55;
}

.blog-card ul[b-oth6mw3pwz] {
    margin: 0.25rem 0 0 0;
    padding-left: 1.2rem;
}

.blog-card li[b-oth6mw3pwz] {
    margin: 0.35rem 0;
}

@media (max-width: 900px) {
    .blog-card[b-oth6mw3pwz] {
        padding: 1.25rem 1.25rem;
    }

    .blog-header h1[b-oth6mw3pwz] {
        font-size: 2rem;
    }
}
/* /Pages/FAQ.razor.rz.scp.css */
.faq-grid[b-fuq0068rf4] {
    display: grid;

    /* wie im Beispiel: links 1/3 (Bilder), rechts 2/3 (Text) */
    grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
    gap: clamp(1.75rem, 3vw, 3rem);
    align-items: start;
}

.faq-images[b-fuq0068rf4] {
    /* Bilder links deutlich kleiner, aber optisch wie im Beispiel "freistehend" */
    width: 100%;
    max-width: 320px;
    justify-self: center;

    position: sticky;
    top: 5.5rem;

    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.faq-figure[b-fuq0068rf4] {
    margin: 0;
}

.faq-figure img[b-fuq0068rf4] {
    width: 100%;
    height: auto;
    display: block;

    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.faq-figure figcaption[b-fuq0068rf4] {
    margin-top: 0.4rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.65);
}

.faq-content[b-fuq0068rf4] {
    min-width: 0;
    max-width: 820px; /* sorgt für ähnliche Textbreite wie im Screenshot */
}

.faq-content > h1[b-fuq0068rf4] {
    margin-top: 0;
    text-align: center;
}

.faq-content :is(h2, h3)[b-fuq0068rf4] {
    scroll-margin-top: 6rem;
}

@media (max-width: 900px) {
    .faq-grid[b-fuq0068rf4] {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .faq-images[b-fuq0068rf4] {
        position: static;
        max-width: 360px;
        justify-self: start;
    }

    .faq-content[b-fuq0068rf4] {
        max-width: none;
    }

    .faq-content > h1[b-fuq0068rf4] {
        text-align: left;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.home-grid[b-3xz6ym2n51] {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
    gap: clamp(1.75rem, 3vw, 3rem);
    align-items: start;
}

.home-image[b-3xz6ym2n51] {
    width: 100%;
    max-width: 320px;
    justify-self: center;

    position: sticky;
    top: 5.5rem;
}

.home-figure[b-3xz6ym2n51] {
    margin: 0;
}

.home-figure img[b-3xz6ym2n51] {
    width: 100%;
    height: auto;
    display: block;

    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.home-content[b-3xz6ym2n51] {
    min-width: 0;
    max-width: 820px;
}

.home-content > h1[b-3xz6ym2n51] {
    margin-top: 0;
}

@media (max-width: 900px) {
    .home-grid[b-3xz6ym2n51] {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .home-image[b-3xz6ym2n51] {
        position: static;
        max-width: 360px;
        justify-self: start;
    }

    .home-content[b-3xz6ym2n51] {
        max-width: none;
    }
}
