

/* 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 */


/* Start:/local/components/sermons/detail/templates/.default/style.css?17809942128536*/
/* ========== CSS-стили (вставьте в style.css) ========== */

/* ---------- Детальная карточка ---------- */
.sermon-detail {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.sermon-detail__card {
    background: #ffffff;
    border: 1px solid #e3eff2;
    border-radius: 20px;
    padding: 40px 44px;
    box-shadow: 0 4px 24px rgba(38, 137, 158, 0.06);
    position: relative;
    overflow: hidden;
}

.sermon-detail__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--brand-main) 0%, #1a6e80 100%);
    border-radius: 5px 0 0 5px;
}

/* ---------- Хедер ---------- */
.sermon-detail__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.sermon-detail__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-main);
    letter-spacing: -0.4px;
    margin: 0;
    flex: 1;
    min-width: 0;
}

.sermon-detail__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brand-light);
    color: var(--brand-main);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
    padding: 6px 16px;
    border-radius: 24px;
    white-space: nowrap;
    border: 1px solid rgba(38, 137, 158, 0.15);
    flex-shrink: 0;
    align-self: center;
}

.sermon-detail__badge::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: var(--brand-main);
    border-radius: 50%;
    animation: detail-pulse 2s ease-in-out infinite;
}

@keyframes detail-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ---------- Список аудиоплееров ---------- */
.sermon-detail__audio-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid #eaf2f5;
}

/* ---------- Аудиоплеер ---------- */
.audio-player {
    background: linear-gradient(135deg, #f7fbfc 0%, var(--brand-light) 100%);
    border-radius: 14px;
    padding: 8px;
    border: 1px solid rgba(38, 137, 158, 0.08);
    transition: all 0.3s ease;
}

.audio-player:hover {
    background: linear-gradient(135deg, #eef7f9 0%, #d6edf0 100%);
    border-color: rgba(38, 137, 158, 0.15);
    box-shadow: 0 4px 16px rgba(38, 137, 158, 0.06);
}

.audio-player__controls {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 14px;
}

/* Кнопка play/pause */
.audio-player__play-btn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: none;
    background: var(--brand-main);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.25s ease;
    box-shadow: 0 3px 12px rgba(38, 137, 158, 0.35);
}

.audio-player__play-btn:hover {
    background: #1f7a8c;
    box-shadow: 0 5px 18px rgba(38, 137, 158, 0.45);
    transform: scale(1.06);
}

.audio-player__play-btn:active {
    transform: scale(0.96);
}

.audio-player__play-icon,
.audio-player__pause-icon {
    transition: transform 0.2s ease;
}

.audio-player__play-btn:hover .audio-player__play-icon {
    transform: scale(1.1);
}

/* Прогресс-бар */
.audio-player__progress-wrapper {
    flex: 1;
    min-width: 0;
    position: relative;
}

.audio-player__slider {
    width: 100%;
    height: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: #c4dce3;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.audio-player__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--brand-main);
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(38, 137, 158, 0.35);
    cursor: pointer;
    transition: all 0.2s ease;
}

.audio-player__slider::-webkit-slider-thumb:hover {
    transform: scale(1.25);
    box-shadow: 0 3px 12px rgba(38, 137, 158, 0.45);
}

/* Время */
.audio-player__time {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-main);
    min-width: 44px;
    text-align: right;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.3px;
}

/* Кнопка скачивания */
.audio-player__download-btn {
    display: flex;
    align-items: center;
    color: #6b8a96;
    transition: all 0.25s ease;
    padding: 8px;
    border-radius: 10px;
}

.audio-player__download-btn:hover {
    color: var(--brand-main);
    background: rgba(38, 137, 158, 0.1);
    transform: translateY(-1px);
}

/* ---------- Контент проповеди ---------- */
.sermon-detail__content {
    margin-bottom: 32px;
}

.sermon-detail__text {
    font-size: 16px;
    line-height: 1.85;
    color: #3a4e58;
    letter-spacing: 0.1px;
}

.sermon-detail__text p {
    margin-bottom: 1.5em;
}

.sermon-detail__text h2,
.sermon-detail__text h3 {
    color: var(--text-main);
    margin-top: 2em;
    margin-bottom: 0.8em;
}

.sermon-detail__text blockquote {
    border-left: 4px solid var(--brand-main);
    padding: 16px 24px;
    margin: 1.5em 0;
    background: var(--brand-light);
    border-radius: 0 12px 12px 0;
    color: #1a5e6e;
    font-style: italic;
}

/* ---------- Футер ---------- */
.sermon-detail__footer {
    padding-top: 24px;
    border-top: 1px solid #eaf2f5;
}

.sermon-detail__back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-main);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--brand-light);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sermon-detail__back-link:hover {
    background: #ffffff;
    border-color: var(--brand-main);
    box-shadow: 0 2px 12px rgba(38, 137, 158, 0.1);
    gap: 14px;
}

.sermon-detail__back-link:hover svg {
    transform: translateX(-3px);
}

.sermon-detail__back-link svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* ---------- Адаптив ---------- */
@media (max-width: 768px) {
    .sermon-detail {
        padding: 24px 16px 60px;
    }

    .sermon-detail__card {
        padding: 28px 22px;
        border-radius: 16px;
    }

    .sermon-detail__card::before {
        width: 4px;
    }

    .sermon-detail__title {
        font-size: 22px;
    }

    .audio-player__controls {
        gap: 10px;
        padding: 6px 10px;
    }

    .audio-player__play-btn {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .sermon-detail__text {
        font-size: 15px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .sermon-detail {
        padding: 16px 10px 40px;
    }

    .sermon-detail__card {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .sermon-detail__title {
        font-size: 19px;
    }

    .sermon-detail__badge {
        font-size: 10px;
        padding: 4px 12px;
    }

    .audio-player__controls {
        gap: 8px;
        padding: 6px 8px;
    }

    .audio-player__play-btn {
        width: 38px;
        height: 38px;
    }

    .audio-player__time {
        font-size: 11px;
        min-width: 36px;
    }

    .audio-player__download-btn {
        padding: 6px;
    }
}
/* Тонкая, компактная цитата без размашистых элементов */

.sermon-detail__text .quote {
    margin: 32px 0 12px;
    padding: 24px 28px;
    background: #f9fbfc;
    border-left: 3px solid #26899e;
    border-radius: 6px;
}

.sermon-detail__text .quote div {
    font-size: 16px;
    line-height: 1.7;
    color: #3a4e58;
    margin-bottom: 4px;
}

.sermon-detail__text .quote div:last-child {
    margin-bottom: 0;
}

.sermon-detail__text .verse {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #6b8a96;
    margin-bottom: 28px;
}

.sermon-detail__text .verse.right {
    text-align: right;
}

/* End */
/* /local/components/main/breadCrumbs/templates/.default/style.css?17806441032553 */
/* /local/components/sermons/detail/templates/.default/style.css?17809942128536 */
