

/* 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/bible/strong.search/templates/.default/style.css?17799646094432*/
/* style.css */
:root {
    --brand-main: #26899e;
    --brand-light: #e0f2f4;
    --brand-accent: #d1eef0;
    --text-main: #2c3e50;
    --bg-card: #ffffff;
    --shadow-soft: 0 4px 15px rgba(38, 137, 158, 0.08);
}

.gb-strong-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-main);
}

.gb-strong-header {
    text-align: center;
    margin-bottom: 40px;
}

.gb-strong-header__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-main);
    margin-bottom: 25px;
}

.gb-strong-search__wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.gb-strong-search__input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    font-size: 16px;
    border: 2px solid var(--brand-light);
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    outline: none;
}

.gb-strong-search__input:focus {
    border-color: var(--brand-main);
    box-shadow: 0 6px 20px rgba(38, 137, 158, 0.15);
}

.gb-strong-search__icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-main);
}

.gb-strong-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    padding: 10px;
}

.gb-strong-item {
    display: flex;
    align-items: center;
    padding: 18px;
    background: var(--bg-card);
    border: 1px solid var(--brand-light);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.gb-strong-item:hover {
    transform: translateY(-3px);
    border-color: var(--brand-main);
    box-shadow: var(--shadow-soft);
}

.gb-strong-item.hidden {
    display: none;
}

.gb-strong-item__code {
    font-size: 12px;
    font-weight: 800;
    color: var(--brand-main);
    background: var(--brand-light);
    padding: 4px 8px;
    border-radius: 6px;
    margin-right: 12px;
    min-width: 50px;
    text-align: center;
}

.gb-strong-item__name {
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gb-strong-empty {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 16px;
}

/* Кнопка "Показать ещё" */
.gb-strong-loadmore {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.gb-strong-loadmore__btn {
    padding: 12px 40px;
    background: var(--brand-main);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.gb-strong-loadmore__btn:hover {
    background: #1e6f80;
}

.gb-strong-loadmore__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Только мобильная версия — десктоп не трогаем */
@media (max-width: 600px) {
    .gb-strong-container {
        padding: 0 12px;
    }

    .gb-strong-header {
        margin-bottom: 20px;
    }

    .gb-strong-header__title {
        font-size: 1.4rem;
        margin-bottom: 14px;
    }

    .gb-strong-search__input {
        padding: 10px 14px 10px 36px;
        font-size: 14px;
    }

    .gb-strong-search__icon {
        left: 12px;
        width: 16px;
        height: 16px;
    }

    /* Две колонки вместо одной — экономим место по вертикали */
    .gb-strong-results {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        padding: 4px;
    }

    .gb-strong-item {
        padding: 8px 10px;
        border-radius: 8px;
        gap: 6px;
    }

    .gb-strong-item__code {
        font-size: 10px;
        padding: 2px 5px;
        border-radius: 4px;
        margin-right: 6px;
        min-width: 38px;
    }

    .gb-strong-item__name {
        font-size: 12px;
        min-width: 0; /* позволяет text-overflow работать в флексе */
    }

    .gb-strong-empty {
        padding: 24px;
        font-size: 14px;
    }

    .gb-strong-loadmore {
        margin-top: 16px;
        margin-bottom: 12px;
    }

    .gb-strong-loadmore__btn {
        padding: 8px 24px;
        font-size: 13px;
    }
}

/* End */
/* /local/components/main/breadCrumbs/templates/.default/style.css?17806441032553 */
/* /local/components/bible/strong.search/templates/.default/style.css?17799646094432 */
