/* /Components/AppComponents/AdminAccessBox.razor.rz.scp.css */
.admin-access-box[b-iitnf5hay3] {
    position: fixed;
    top: 13%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 90;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: var(--space-2) var(--space-3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    min-width: 8rem;
}

.admin-access-link[b-iitnf5hay3] {
    color: var(--dark-color);
    font-weight: 500;
    text-decoration: none;
}

.admin-access-link:hover[b-iitnf5hay3],
.admin-access-link.active[b-iitnf5hay3] {
    color: var(--primary-color);
    text-decoration: underline;
}

.admin-edit-toggle[b-iitnf5hay3] {
    white-space: nowrap;
}
/* /Components/AppComponents/Sections/Cards/ImageCard.razor.rz.scp.css */
.split-image[b-6xu9f1wapa] {
    display: flex;
    align-items: stretch;
    background: white;
    margin-bottom: 60px;
}

.image-container[b-6xu9f1wapa],
.content[b-6xu9f1wapa] {
    flex: 1;
}

.image-container[b-6xu9f1wapa] {
    position: relative;
    overflow: hidden;
}

.image-container img[b-6xu9f1wapa] {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% 40%;
}

.content[b-6xu9f1wapa] {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.image-left[b-6xu9f1wapa] {
    flex-direction: row;
}

.image-right[b-6xu9f1wapa] {
    flex-direction: row-reverse;
}

.image-top[b-6xu9f1wapa] {
    flex-direction: column;
}

.image-bottom[b-6xu9f1wapa] {
    flex-direction: column-reverse;
}

.image-top .image-container[b-6xu9f1wapa],
.image-bottom .image-container[b-6xu9f1wapa] {
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.image-top .image-container img[b-6xu9f1wapa],
.image-bottom .image-container img[b-6xu9f1wapa] {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
}

.mode-fixed .image-container[b-6xu9f1wapa] {
    height: 420px;
}

.mode-content[b-6xu9f1wapa] {
    align-items: stretch;
}

.mode-content .image-container[b-6xu9f1wapa] {
    height: auto;
    align-self: stretch;
}

.mode-ratio .image-container[b-6xu9f1wapa] {
    aspect-ratio: 4 / 3;
}

@media (max-width: 922px) {
    .split-image[b-6xu9f1wapa] {
        flex-direction: column;
    }

    .mode-content .image-container[b-6xu9f1wapa],
    .mode-fixed .image-container[b-6xu9f1wapa],
    .mode-ratio .image-container[b-6xu9f1wapa] {
        height: 40vh;
        min-height: 260px;
        aspect-ratio: auto;
    }
}

.remove-padding[b-6xu9f1wapa] {
    padding: 0 !important;
}

.is-linked[b-6xu9f1wapa] {
    position: relative;
}

.mode-tile[b-6xu9f1wapa] {
    margin-bottom: 0;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.09);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.mode-tile.is-linked:hover[b-6xu9f1wapa] {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
    transform: translateY(-3px);
}

.mode-tile .image-container[b-6xu9f1wapa] {
    aspect-ratio: 4 / 3;
}

.mode-tile .content[b-6xu9f1wapa] {
    padding: 16px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    background: #fff;
}

.image-card-caption[b-6xu9f1wapa] {
    display: block;
    font-weight: 500;
    font-size: 1rem;
}

@media (max-width: 922px) {
    .split-image .image-container[b-6xu9f1wapa] {
        position: relative;
        height: auto;
        min-height: 0;
        overflow: hidden;
    }

    .split-image .image-container img[b-6xu9f1wapa] {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* -------------------------------------------------------
   Thumbnail mode — AFTER all other rules so source order
   guarantees these win the cascade.
   Desktop: small fixed square beside the text.
   Mobile:  full-width strip, height capped.
------------------------------------------------------- */
.mode-thumbnail .image-container[b-6xu9f1wapa] {
    flex: 0 0 auto;
    width: 400px;
    align-self: stretch;
    overflow: hidden;
}

.mode-thumbnail .image-container img[b-6xu9f1wapa] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 922px) {
    .split-image.mode-thumbnail[b-6xu9f1wapa] {
        flex-direction: column;
    }

    .split-image.mode-thumbnail .image-container[b-6xu9f1wapa] {
        width: 100%;
        height: 250px;
        min-height: 0;
        border-radius: 0;
    }

    .split-image.mode-thumbnail .image-container img[b-6xu9f1wapa] {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}
/* /Components/AppComponents/Sections/Cards/ImageParalaxCard.razor.rz.scp.css */
.parallax-section[b-j9zr4adpt5] {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.parallax-image[b-j9zr4adpt5] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    object-position: center center;
    transform: translate3d(0, 0, 0) scale(1.1);
    will-change: transform;
}
/* /Components/AppComponents/Sections/NewSectionPlaceholder.razor.rz.scp.css */
.placeholder-section[b-kysa3hvduf] {
    padding: 2rem 0;
}

.placeholder-inner[b-kysa3hvduf] {
    display: flex;
    justify-content: center;
}

.placeholder-card[b-kysa3hvduf] {
    max-width: 540px;
    width: 100%;
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: var(--space-4);
    text-align: center;
}

.placeholder-heading[b-kysa3hvduf] {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-2);
}

.placeholder-subtext[b-kysa3hvduf] {
    color: var(--p-color);
    margin-bottom: var(--space-3);
}

.placeholder-actions[b-kysa3hvduf] {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.placeholder-actions .btn[b-kysa3hvduf] {
    min-width: 8rem;
}
/* /Components/AppComponents/Sections/PageHeroSection.razor.rz.scp.css */
.cover-hero[b-0rh3ovxop4] {
    position: relative;
    padding: 120px 0 60px 0;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 -0.5rem 1rem inset rgba(0, 0, 0, .12);
}

.cover-hero > *[b-0rh3ovxop4] {
    position: relative;
    z-index: 1;
}

.cover-hero[b-0rh3ovxop4]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(1200px circle at 15% 15%, rgba(13, 110, 253, .15), transparent 45%),
    radial-gradient(800px circle at 80% 50%, rgba(32, 201, 151, .15), transparent 50%),
    radial-gradient(800px circle at 50% 90%, rgba(111, 66, 193, .15), transparent 55%),
    linear-gradient(180deg, #f8f9fa, #ffffff);
    z-index: 0;
}

.cover-hero-container[b-0rh3ovxop4] {
}

.cover-title[b-0rh3ovxop4] {
    letter-spacing: 0.25rem;
    line-height: 1.1;
    font-size: calc(1.475rem + 2.7vw);
}

.cover-tagline[b-0rh3ovxop4] {
    line-height: 1.35;
    font-size: calc(1.375rem + 1.5vw);
    font-style: italic;
}

.cover-text[b-0rh3ovxop4] {
    max-width: 60rem;
    line-height: 1.65;
    font-size: 1.8rem;
    text-align: right;
}

.cover-stack[b-0rh3ovxop4] {
    text-align: left;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .cover-stack > * + *[b-0rh3ovxop4] {
        margin-top: 1.75rem;
        max-width: 800px;
    }
}

@media (max-width: 991.98px) {
    .cover-stack[b-0rh3ovxop4] {
        text-align: center;
        align-items: center;
    }

    .cover-stack > * + *[b-0rh3ovxop4] {
        margin-top: 1.25rem;
    }
}

.cover-layout[b-0rh3ovxop4] {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cover-layout.with-image .cover-image[b-0rh3ovxop4] {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
}

.cover-layout.with-image .cover-image img[b-0rh3ovxop4] {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
    display: block;
}

.cover-layout .cover-stack[b-0rh3ovxop4] {
    flex: 1 1 60%;
}

.cover-layout.image-left[b-0rh3ovxop4],
.cover-layout.image-right[b-0rh3ovxop4] {
    flex-direction: row;
}


@media (max-width: 991.98px) {
    .cover-layout[b-0rh3ovxop4] {
        flex-direction: column;
        text-align: center;
    }

    .cover-layout.with-image .cover-image[b-0rh3ovxop4],
    .cover-layout .cover-stack[b-0rh3ovxop4] {
        width: 100%;
    }
}
/* /Components/AppComponents/Sections/SectionContainer.razor.rz.scp.css */
.section[b-ch343ayud1] {
    padding: 3rem 0;
}

.section-fluid[b-ch343ayud1] {
    background-color: var(--section-bg-color);
    padding: 3rem;
}
/* /Components/AppComponents/Sections/SectionHost.razor.rz.scp.css */
.section-edit-shell[b-bvj0t2meqz] {
    position: relative;
}

.section-controls[b-bvj0t2meqz] {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    right: var(--space-2);
    display: none;
    flex-direction: column;
    gap: var(--space-1);
    padding: var(--space-1);
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    z-index: 30;
}

.section-edit-shell.is-editing:hover .section-controls[b-bvj0t2meqz] {
    display: flex;
}

.section-content-shell[b-bvj0t2meqz] {
    position: relative;
    z-index: 10;
}
/* /Components/AppComponents/Sections/SectionInsertionZone.razor.rz.scp.css */

.section-insertion-zone[b-b0cfscgf71] {
    position: relative;
    height: 0;
    padding: 0.75rem 0;
    margin: -0.75rem 0;
    pointer-events: none;
    z-index: 18;
}

.section-insertion-zone.is-editing[b-b0cfscgf71] {
    pointer-events: auto;
}

.section-insertion-line[b-b0cfscgf71] {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(13, 110, 253, 0.08);
    border-top: 1px dashed rgba(13, 110, 253, 0.45);
    top: 50%;
}

.section-insertion-controls[b-b0cfscgf71] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1);
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    z-index: 22;
}

.section-insertion-zone.hovering .section-insertion-controls[b-b0cfscgf71],
.section-insertion-controls.visible[b-b0cfscgf71] {
    display: inline-flex;
}
/* /Components/AppComponents/ShowMore.razor.rz.scp.css */
.show-more-link[b-7iteyb7qmm] {
    border: 0;
    background: none;
    color: var(--bs-primary);
    font-weight: 600;
    text-decoration: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.show-more-link:hover[b-7iteyb7qmm],
.show-more-link:focus[b-7iteyb7qmm] {
    color: var(--bs-primary);
    text-decoration: underline;
    outline: none;
}

.show-more-link.small[b-7iteyb7qmm] {
    font-size: 0.95rem;
    font-weight: 500;
}
/* /Components/AppComponents/SortableList.razor.rz.scp.css */
/* Styles moved to wwwroot/app.css */
/* /Components/Layout/MainFooter.razor.rz.scp.css */
.footer-shell[b-7f52urcn67] {
    padding: 1.25rem 0;
    background: var(--white-color);
}

.footer-content[b-7f52urcn67] {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    justify-content: space-between;
    align-items: flex-start;
}

.footer-meta[b-7f52urcn67] {
    font-size: var(--font-small);
}

.footer-links[b-7f52urcn67] {
    display: flex;
    gap: var(--space-2);
    align-items: center;
}

.footer-link[b-7f52urcn67] {
    font-size: var(--font-small);
    color: var(--dark-color);
}

.footer-link:hover[b-7f52urcn67] {
    color: var(--primary-color);
}

@media (min-width: 576px) {
    .footer-content[b-7f52urcn67] {
        flex-direction: row;
        align-items: center;
    }
}
/* /Components/Layout/MainNavMenu.razor.rz.scp.css */
.navbar[b-8jv1g5kvqa] {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
}

.site-nav[b-8jv1g5kvqa] {
    padding-top: var(--space-3);
    padding-bottom: var(--space-3);
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-nav .nav-container[b-8jv1g5kvqa] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.site-nav .nav-brand[b-8jv1g5kvqa] {
    letter-spacing: -0.01em;
}

.site-nav .nav-toggle[b-8jv1g5kvqa] {
    border: none;
    box-shadow: none;
}

.site-nav .nav-collapse[b-8jv1g5kvqa] {
    flex-grow: 1;
}

.site-nav .nav-list[b-8jv1g5kvqa] {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-left: auto;
    padding: 0;
}

.site-nav .nav-link-item[b-8jv1g5kvqa] {
    color: var(--dark-color);
    padding: var(--space-1) 0;
}

.site-nav .nav-link-item.active[b-8jv1g5kvqa],
.site-nav .nav-link-item:hover[b-8jv1g5kvqa] {
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .site-nav[b-8jv1g5kvqa] {
        padding-top: var(--space-2);
        padding-bottom: var(--space-2);
    }

    .site-nav .nav-list[b-8jv1g5kvqa] {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-2);
        margin-left: 0;
        padding-top: var(--space-2);
        padding-bottom: var(--space-2);
    }
}

/* Cover nav state (existing behavior) */
body.scrolled .cover-nav[b-8jv1g5kvqa],
body.nav-open .cover-nav[b-8jv1g5kvqa],
.cover-nav.nav-open[b-8jv1g5kvqa] {
    background-color: #ffffff;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .12);
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
/* Styles moved to wwwroot/app.css */
