

/* Start:/local/components/books/book/templates/.default/style.css?17884166096728*/
:root {
    --brand-main: #26899e;
    --brand-light: #e0f2f4;
    --brand-accent: #d1eef0;
    --text-main: #2c3e50;

    --brand-dark: #1b6576;
    --brand-soft: #f4fbfc;
    --surface: #ffffff;
    --line: rgba(38, 137, 158, 0.14);
    --shadow: 0 10px 30px rgba(38, 137, 158, 0.08);
    --shadow-hover: 0 18px 40px rgba(38, 137, 158, 0.16);
    --radius: 18px;
    --radius-sm: 14px;
}

.BibleChapterComponent {
    max-width: 860px;
    margin: 0 auto 64px;
    padding: 8px 16px 40px;
    color: var(--text-main);
    font-family: inherit;
}

.book-hero {
    position: relative;
    margin: 8px 0 28px;
    padding: 28px 24px 26px;
    background:
        radial-gradient(1200px 180px at 10% -20%, rgba(38, 137, 158, 0.12), transparent 55%),
        linear-gradient(180deg, var(--brand-light) 0%, var(--brand-soft) 100%);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
}

.book-hero::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--brand-accent);
    opacity: 0.55;
    pointer-events: none;
}

.book-hero__badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: #fff;
    color: var(--brand-main);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(38, 137, 158, 0.08);
}

.book-hero__title {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--text-main);
    font-size: clamp(22px, 4.6vw, 32px);
    font-weight: 750;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.book-hero__meta {
    position: relative;
    z-index: 1;
    margin: 12px 0 0;
    color: var(--brand-dark);
    font-size: 14px;
    opacity: 0.85;
}

.book-hero__meta span {
    font-weight: 700;
}

.chapters__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.chapters__title {
    margin: 0;
    font-size: 20px;
    font-weight: 750;
    color: var(--text-main);
}

.chapters__hint {
    color: var(--brand-main);
    font-size: 13px;
    font-weight: 600;
}

.chapters__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.chapter-item {
    opacity: 0;
    transform: translateY(10px);
    animation: rise 0.45s ease forwards;
    animation-delay: calc(var(--i, 1) * 28ms);
}

@keyframes rise {
    to {
        opacity: 1;
        transform: none;
    }
}

.chapter-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
}

.chapter-card__num {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--brand-light);
    color: var(--brand-main);
    font-size: 14px;
    font-weight: 800;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.chapter-card__body {
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.chapter-card__name {
    font-size: 16px;
    font-weight: 650;
    line-height: 1.35;
    color: var(--text-main);
}

.chapter-card__go {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    color: var(--brand-main);
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.chapter-card:hover,
.chapter-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(38, 137, 158, 0.28);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(180deg, #fff 0%, var(--brand-soft) 100%);
    outline: none;
}

.chapter-card:hover .chapter-card__num,
.chapter-card:focus-visible .chapter-card__num {
    background: var(--brand-main);
    color: #fff;
    transform: scale(1.05);
}

.chapter-card:hover .chapter-card__go,
.chapter-card:focus-visible .chapter-card__go {
    opacity: 1;
    transform: none;
}

.chapter-card:active {
    transform: translateY(-1px);
}

.book-about {
    margin-top: 28px;
}

.book-about__inner,
.description {
    padding: 22px 22px 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.description {
    padding-top: 22px !important;
    margin-bottom: 0 !important;
    border-top: none;
}

.description h2,
.description h3,
.book-about__inner h2,
.book-about__inner h3 {
    margin: 18px 0 8px;
    color: var(--text-main);
    font-size: 20px;
    line-height: 1.3;
}

.description p,
.book-about__inner p {
    margin: 0 0 12px;
    color: #415568;
    font-size: 15.5px;
    line-height: 1.7;
}

.description ul,
.book-about__inner ul {
    margin: 0 0 16px;
    padding-left: 18px;
}

.description li,
.book-about__inner li {
    margin-bottom: 8px;
    color: #415568;
    line-height: 1.6;
}

@media (hover: none) {
    .chapter-card__go {
        opacity: 0.85;
        transform: none;
    }
}

@media (max-width: 640px) {
    .BibleChapterComponent {
        padding: 4px 12px 32px;
    }

    .book-hero {
        padding: 22px 18px 20px;
        border-radius: 20px;
    }

    .chapters__head {
        align-items: flex-end;
    }

    .chapter-card {
        padding: 13px 12px;
        gap: 12px;
        border-radius: 16px;
    }

    .chapter-card__num {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        font-size: 13px;
    }

    .chapter-card__name {
        font-size: 15px;
    }

    .chapter-card__go span,
    .chapter-card__go {
        font-size: 0;
        gap: 0;
    }

    .chapter-card__go svg {
        width: 18px;
        height: 18px;
    }

    .chapter-card__go {
        opacity: 0.7;
        transform: none;
    }

    .book-about__inner,
    .description {
        padding: 18px 16px 6px;
        border-radius: 16px;
    }
}

@media (min-width: 900px) {
    .chapters__list {
        gap: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .chapter-item,
    .chapter-card,
    .chapter-card__num,
    .chapter-card__go {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* End */


/* Start:/local/components/main/breadCrumbs/templates/.default/style.css?17806441032553*/
/* Контейнер */
.mainBreadCrumbsComponent.new-style {
    margin: 15px 20px 25px;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.3s;
}

.mainBreadCrumbsComponent.new-style:hover {
    box-shadow: 0 4px 12px rgba(0, 109, 119, 0.12);
}

.mainBreadCrumbsComponent.new-style .Breadcrumbs.Flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Элемент списка */
.mainBreadCrumbsComponent.new-style .bc-item {
    display: flex;
    align-items: center;
    font-size: 13px;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
}

/* Иконка домика для первого элемента (Главная) */
.mainBreadCrumbsComponent.new-style .bc-item:first-child .bc-link .home-icon {
    display: inline-flex;
    margin-right: 4px;
    vertical-align: middle;
}

.mainBreadCrumbsComponent.new-style .bc-item:first-child .bc-link .home-icon svg {
    width: 14px;
    height: 14px;
    display: block;
}

/* Ссылка (цвет #006d77) */
.mainBreadCrumbsComponent.new-style .bc-link {
    color: #006d77;
    text-decoration: none;
    font-weight: 500;
    padding: 2px 4px;
    border-radius: 4px;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.mainBreadCrumbsComponent.new-style .bc-link:hover {
    color: #004d54;
    background: rgba(0, 109, 119, 0.08);
    text-decoration: none;
}

/* Разделитель (стильная стрелка) */
.mainBreadCrumbsComponent.new-style .bc-separator {
    display: flex;
    align-items: center;
    margin: 0 6px;
    color: #b0c4c6; /* Нейтральный серо-голубой */
    opacity: 0.6;
}

.mainBreadCrumbsComponent.new-style .bc-separator svg {
    width: 10px;
    height: 10px;
}

/* Текущая страница (жирная, с фоном) */
.mainBreadCrumbsComponent.new-style .bc-current {
    color: #006d77;
    font-weight: 600;
    background: rgba(0, 109, 119, 0.1);
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 13px;
    cursor: default;
}

/* Адаптивность */
@media (max-width: 768px) {
    .mainBreadCrumbsComponent.new-style {
        margin: 10px 12px 18px;
        padding: 8px 12px;
    }
    .mainBreadCrumbsComponent.new-style .bc-item {
        font-size: 12px;
    }
}

/* End */
/* /local/components/books/book/templates/.default/style.css?17884166096728 */
/* /local/components/main/breadCrumbs/templates/.default/style.css?17806441032553 */
