/* /Components/Blocks/Loader.razor.rz.scp.css */
.lds-ripple[b-zmxd6sy4ll] {
    color: #1c4c5b;
    margin: 0 auto;
    display: block;
    position: relative;
    width: 80px;
    height: 80px;
    
    &, & div {
        box-sizing: border-box;
    }
    
    & div[b-zmxd6sy4ll] {
        position: absolute;
        border: 4px solid currentColor;
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple-b-zmxd6sy4ll 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
        
        &:nth-child(2) {
            animation-delay: -0.5s;
        }
    }
}

@keyframes lds-ripple-b-zmxd6sy4ll {
    0% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 0;
    }
    4.9% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 0;
    }
    5% {
        top: 36px;
        left: 36px;
        width: 8px;
        height: 8px;
        opacity: 1;
    }
    100% {
        top: 0;
        left: 0;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Blocks/Main/Breadcrumbs.razor.rz.scp.css */
#breadcrumb[b-fjj2x1ip89] {
    --breadcrumb-padding: 0.75rem;
    --breadcrumb-font-size: 0.875rem;
    --breadcrumb-separator: "›";
    margin: 1rem 0;
    font-family: system-ui, -apple-system, sans-serif;
    /* Базовые цвета (светлая тема) */
    --breadcrumb-bg: #f8f9fa;
    --breadcrumb-color: #007bff;
    --breadcrumb-hover-bg: #e9ecef;
    --breadcrumb-active-bg: #007bff;
    --breadcrumb-active-color: white;
    --breadcrumb-radius: 0.5rem;
    --breadcrumb-transition: all 0.3s ease;

    ul {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5rem;
        margin: 0;
        padding: 0;
        list-style: none;

        li {
            display: flex;
            align-items: center;
            gap: 0.5rem;

            &:not(:last-child)::after {
                content: var(--breadcrumb-separator);
                color: #6c757d;
                font-size: 1.125rem;
                line-height: 1;
                margin-left: 0.5rem;
            }
            /* Анимация появления элементов */
            animation: breadcrumb-fade-in 0.3s ease forwards;

            &:nth-child(1)[b-fjj2x1ip89] {
                animation-delay: 0.1s;
            }

            &:nth-child(2)[b-fjj2x1ip89] {
                animation-delay: 0.2s;
            }

            &:nth-child(3)[b-fjj2x1ip89] {
                animation-delay: 0.3s;
            }

            &:nth-child(4)[b-fjj2x1ip89] {
                animation-delay: 0.4s;
            }
        }

        a[b-fjj2x1ip89] {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            padding: 0.5rem var(--breadcrumb-padding);
            background-color: var(--breadcrumb-bg);
            border-radius: var(--breadcrumb-radius);
            color: var(--breadcrumb-color);
            font-size: var(--breadcrumb-font-size);
            font-weight: 500;
            line-height: 1.2;
            transition: var(--breadcrumb-transition);
            position: relative;
            max-width: 200px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;

            &:hover {
                background-color: var(--breadcrumb-hover-bg);
                transform: translateY(-1px);
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            }

            &:focus[b-fjj2x1ip89] {
                outline: 2px solid var(--breadcrumb-color);
                outline-offset: 2px;
            }

            &:active[b-fjj2x1ip89] {
                transform: translateY(0);
            }
        }

        span[itemprop="name"][b-fjj2x1ip89] {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem var(--breadcrumb-padding);
            background-color: var(--breadcrumb-active-bg);
            color: var(--breadcrumb-active-color);
            border-radius: var(--breadcrumb-radius);
            font-size: var(--breadcrumb-font-size);
            font-weight: 600;
            line-height: 1.2;
            max-width: 200px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    }
    /* Анимация появления */
    @keyframes breadcrumb-fade-in-b-fjj2x1ip89 {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    /* Улучшенная доступность */
    [itemprop="itemListElement"][b-fjj2x1ip89] {
        position: relative;
    }

    meta[itemprop="position"][b-fjj2x1ip89] {
        display: none; /* Скрываем от визуального отображения, но оставляем для семантики */
    }
    /* Адаптивность для мобильных устройств */
    @media (max-width: 768px) {
        --breadcrumb-padding: 0.5rem;
        --breadcrumb-font-size: 0.8rem;
        margin: 0.5rem 0;

        ul[b-fjj2x1ip89] {
            gap: 0.25rem;

            li {
                gap: 0.25rem;

                &:not(:last-child)::after {
                    margin-left: 0.25rem;
                    font-size: 1rem;
                }
            }

            a[b-fjj2x1ip89],
            span[itemprop="name"][b-fjj2x1ip89] {
                max-width: 150px;
                padding: 0.375rem var(--breadcrumb-padding);
            }
        }
    }

    @media (max-width: 480px) {
        --breadcrumb-font-size: 0.75rem;

        ul[b-fjj2x1ip89] {
            gap: 0.125rem;

            a,
            span[itemprop="name"] {
                max-width: 120px;
            }
        }
    }
    /* Тёмная тема */
    @media (prefers-color-scheme: dark) {
        /* Цвета для тёмной темы */
        --breadcrumb-bg: #2d3748;
        --breadcrumb-hover-bg: #4a5568;
        --breadcrumb-active-bg: #3182ce;[b-fjj2x1ip89] /* более мягкий синий для тёмной темы */
    }
    /* Поддержка высокого контраста */
    @media (prefers-contrast: high) {
        a[b-fjj2x1ip89] {
            border: 1px solid currentColor;
        }
    }
    /* Поддержка редукции движения */
    @media (prefers-reduced-motion: reduce) {
        --breadcrumb-transition: none;

        a[b-fjj2x1ip89] {
            transition: none;

            &:hover {
                transform: none;
            }
        }

        li[b-fjj2x1ip89] {
            animation: none;
        }
    }
}
/* /Components/Blocks/Main/Main_Badge_age_for_img.razor.rz.scp.css */
.story-bage-img[b-3zprb1ymof] {
    position: absolute;
    top: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    left: 1rem;
    background-color: #850505;
    color: #eedf0f;
}
/* /Components/Blocks/Main/Main_Badge_text_img.razor.rz.scp.css */
.story-tag2[b-hnvs6vv933] {
    position: absolute;
    top: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    right: 1rem;
    background-color: #ffd166;
    color: #333;
}
/* /Components/Blocks/Main/Main_Hero.razor.rz.scp.css */
.container_h[b-eq9lhimdu5] {
    container-type: inline-size;
}

#hero[b-eq9lhimdu5] {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
    grid-template-areas:
        "hero-text-1"
        "hero-image"
        "hero-text-2";
    margin-bottom: 12px;
}

@container (width > 700px) {
    #hero[b-eq9lhimdu5] {
        grid-template-columns: 2fr 3fr;
        gap: 30px;
        grid-template-areas:
            "hero-image hero-text-1"
            "hero-text-2 hero-text-2";
        margin-bottom: 20px;
    }
}

@container (width > 900px) {
    #hero[b-eq9lhimdu5] {
        grid-template-columns: 2fr 3fr;
        gap: 30px;
        grid-template-areas:
            "hero-image hero-text-1"
            "hero-image hero-text-2";
        margin-bottom: 20px;
    }
}

.hero-image[b-eq9lhimdu5] {
    grid-area: hero-image;
    position: relative;
    img

{
    border-radius: 12px;
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
    display: block;
}

}

.hero-text-1[b-eq9lhimdu5] {
    grid-area: hero-text-1;
    text-align: center;
}
h1:focus:not(:focus-visible)[b-eq9lhimdu5] {
    outline: none;
}

h1:focus-visible[b-eq9lhimdu5] {
    outline: 2px solid transparent;
}

.hero-text-2[b-eq9lhimdu5] {
    grid-area: hero-text-2;
    p

{
    text-align: justify;
    hyphens: auto;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-indent: 40px;
}
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-mvm1aocoz8] {
    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-mvm1aocoz8] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-5dl7lagg8j],
.components-reconnect-repeated-attempt-visible[b-5dl7lagg8j],
.components-reconnect-failed-visible[b-5dl7lagg8j],
.components-pause-visible[b-5dl7lagg8j],
.components-resume-failed-visible[b-5dl7lagg8j],
.components-rejoining-animation[b-5dl7lagg8j] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-5dl7lagg8j],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-5dl7lagg8j],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-5dl7lagg8j],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-5dl7lagg8j],
#components-reconnect-modal.components-reconnect-retrying[b-5dl7lagg8j],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-5dl7lagg8j],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-5dl7lagg8j],
#components-reconnect-modal.components-reconnect-failed[b-5dl7lagg8j],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-5dl7lagg8j] {
    display: block;
}


#components-reconnect-modal[b-5dl7lagg8j] {
    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-5dl7lagg8j 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-5dl7lagg8j 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-5dl7lagg8j 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-5dl7lagg8j]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-5dl7lagg8j 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-5dl7lagg8j {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-5dl7lagg8j {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-5dl7lagg8j {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-5dl7lagg8j] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-5dl7lagg8j] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-5dl7lagg8j] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-5dl7lagg8j] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-5dl7lagg8j] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-5dl7lagg8j] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-5dl7lagg8j] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-5dl7lagg8j 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-5dl7lagg8j] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-5dl7lagg8j {
    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/Search.razor.rz.scp.css */
/* /Components/Pages/Автор.razor.rz.scp.css */
/* /Components/Pages/Лицензия.razor.rz.scp.css */
.license-content[b-cvsejxscke] {
    max-width: 800px;
    line-height: 1.6;
}

.license-content h2[b-cvsejxscke] {
    color: var(--Text_C);
    margin-top: 2rem;
}

.license-content ul[b-cvsejxscke] {
    padding-left: 2rem;
}

.effective-date[b-cvsejxscke] {
    background-color: var(--Fon_a);
    padding: 1rem;
    border-left: 4px solid #3498db;
}
/* /Components/Pages/Плитка.razor.rz.scp.css */
.collage-grid[b-osua3qscao] {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	grid-auto-rows: 200px;
	gap: 10px;
	grid-auto-flow: dense; /* заполняет пустые места */
}

.collage-grid img[b-osua3qscao] {
	width: 100%;
	height: 100%;
	object-fit: cover; /* обрезает изображение для заполнения */
}
.content-image[b-osua3qscao] {
	transition: transform 0.3s ease;
}

.content-image:hover[b-osua3qscao] {
	transform: scale(1.03);
	filter: brightness(80%);
}
@media (max-width: 768px) {
	.collage-grid[b-osua3qscao] {
		grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
		gap: 0.5rem;
	}
}
