

/* Start:/local/components/bible/book/templates/audio/style.css?17799705366387*/
:root {
    --brand-main: #26899e;
    --brand-dark: #1a5f6e;
    --brand-gradient: linear-gradient(135deg, #26899e 0%, #1a5f6e 100%);
    --brand-gradient-accent: linear-gradient(90deg, #3aa8bf 0%, #26899e 100%);
    --brand-light: #e0f2f4;
    --brand-accent: #d1eef0;
    --text-main: #2c3e50;
    --text-muted: #5a7d8a;
    --bg-page: #f4f9fa;
    --shadow-card: 0 4px 20px rgba(26, 95, 110, 0.08), 0 1px 4px rgba(26, 95, 110, 0.04);
    --shadow-hover: 0 12px 32px rgba(26, 95, 110, 0.12);
}

* { box-sizing: border-box; }

.gb-audio-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px;
    background: var(--bg-page);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== HERO ===== */
.gb-audio-hero {
    background: var(--brand-gradient);
    padding: 48px 28px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(26, 95, 110, 0.25);
    margin-bottom: 28px;
}

.gb-audio-hero::before {
    content: '';
    position: absolute;
    top: -60%; right: -20%;
    width: 260px; height: 260px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
}

.gb-audio-hero__title {
    font-size: clamp(26px, 5vw, 42px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px 0;
    letter-spacing: -0.015em;
    line-height: 1.15;
}

.gb-audio-hero__line {
    width: 48px;
    height: 3px;
    background: #fff;
    opacity: 0.5;
    border-radius: 2px;
    margin-bottom: 14px;
}

.gb-audio-hero__subtitle {
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    margin: 0;
    display: flex;
    gap: 8px;
}

.gb-audio-hero__subtitle .sep {
    opacity: 0.4;
}

/* ===== СЕТКА ===== */
.gb-audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 16px;
}

/* ===== КАРТОЧКА ===== */
.gb-audio-card {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gb-audio-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Заголовок карточки */
.gb-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gb-chapter-badge {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.gb-chapter-badge .num {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1;
}

.gb-chapter-badge .lab {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.8px;
}

/* Кнопка скачивания — премиум */
.gb-download-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-main);
    transition: all 0.2s ease;
}

.gb-download-btn:hover {
    background: var(--brand-main);
    color: #fff;
    transform: scale(1.05);
}

.gb-download-btn svg {
    width: 18px;
    height: 18px;
}

/* Плеер */
.gb-player-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Кнопка Play — крупная, с градиентом */
.gb-play-trigger {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    border: none;
    background: var(--brand-gradient);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(26, 95, 110, 0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.gb-play-trigger:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(26, 95, 110, 0.35);
}

.gb-play-trigger:active {
    transform: scale(0.96);
}

.gb-play-trigger svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.gb-player-meta {
    flex: 1;
    min-width: 0;
}

.gb-player-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Таймлайн */
.gb-timeline-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gb-time {
    font-size: 11px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    color: var(--text-muted);
    min-width: 32px;
    text-align: center;
}

.gb-progress-container {
    flex: 1;
    height: 5px;
    background: var(--brand-accent);
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.gb-progress-fill {
    position: absolute;
    left: 0; top: 0; height: 100%;
    background: var(--brand-gradient-accent);
    border-radius: 10px;
    width: 0%;
    transition: width 0.1s linear;
}

.gb-progress-fill::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px; height: 12px;
    background: #fff;
    border: 2.5px solid var(--brand-main);
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(26, 95, 110, 0.2);
}

/* ===== МОБИЛЬНЫЕ УСТРОЙСТВА ===== */
@media (max-width: 680px) {
    .gb-audio-page { padding: 10px; }

    .gb-audio-hero {
        padding: 32px 18px;
        border-radius: 14px;
        margin-bottom: 18px;
    }

    .gb-audio-hero__title { font-size: 22px; }

    .gb-audio-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gb-audio-card {
        padding: 14px;
        border-radius: 14px;
        gap: 10px;
    }

    .gb-play-trigger {
        width: 42px; height: 42px;
        min-width: 42px;
        border-radius: 12px;
    }

    .gb-play-trigger svg { width: 20px; height: 20px; }

    .gb-player-row { gap: 10px; }

    .gb-download-btn {
        width: 32px; height: 32px;
        border-radius: 8px;
    }
    .gb-download-btn svg { width: 16px; height: 16px; }

    .gb-timeline-block { gap: 6px; }
    .gb-time { font-size: 10px; min-width: 28px; }
}

/* 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/bible/book/templates/audio/style.css?17799705366387 */
/* /local/components/main/breadCrumbs/templates/.default/style.css?17806441032553 */
