

/* 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/peoplesAndPlaces.search/templates/.default/style.css?17810779403756*/
:root {
    --brand-main: #26899e;
    --brand-light: #e0f2f4;
    --brand-accent: #d1eef0;
    --text-main: #2c3e50;
    --border-color: #eee;
}

.bible-dictionary {
    max-width: 1200px;
    margin: 20px auto;
    color: var(--text-main);
}

/* Заголовок и счётчик */
.dic-header {
    margin-bottom: 20px;
}

.dic-title {
    font-size: 28px;
    color: var(--brand-main);
    margin: 0 0 8px 0;
    font-weight: 700;
}

.dic-counter {
    background: var(--brand-light);
    color: var(--brand-main);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Поиск */
.dic-search-box {
    position: relative;
    margin-bottom: 20px;
}

.dic-search-input {
    width: 100%;
    padding: 14px 45px 14px 20px;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
}

.dic-search-input:focus {
    outline: none;
    border-color: var(--brand-main);
    box-shadow: 0 0 0 3px var(--brand-accent);
}

.dic-search-clear {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #bbb;
    cursor: pointer;
    padding: 5px;
}

/* Фильтры */
.dic-filters {
    margin-bottom: 24px;
    display: flex;
    gap: 10px;
}

.dic-filter-btn {
    background: var(--brand-light);
    color: var(--brand-main);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.dic-filter-btn.active {
    background: var(--brand-main);
    color: #fff;
}

/* Сетка карточек */
.dic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.dic-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.flexCard{
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.dic-card-badges {
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;       /* ДОБАВИТЬ: бейдж не сжимается, если имя длинное */
    align-self: center;   /* ДОБАВИТЬ: вертикальное центрирование относительно карточки */
}
.dic-card:hover {
    transform: translateY(-2px);
    border-color: var(--brand-main);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.dic-card-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-main);
}

.dic-card-verses {
    font-size: 13px;
    color: #888;
}

.dic-badge {
    width: 38px;
    height: 38px;
    background: var(--brand-light);
    color: var(--brand-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Кнопка «Показать ещё» */
.dic-footer {
    text-align: center;
    margin-top: 40px;
}

.dic-more-btn {
    background: var(--brand-main);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.dic-more-btn:hover {
    opacity: 0.9;
}

/* Пустой результат */
.dic-empty {
    padding: 60px 0;
    text-align: center;
    color: #999;
}

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