/* Карточка информеров организации */
#organisation .organisation-informs {
    margin: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    color: #363636;
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: normal;
}

/* Текст отдельного информера */
#organisation .organisation-informs__slide {
    box-sizing: border-box;
    padding: 18px 20px;
}

#organisation .organisation-informs__slide > :first-child {
    margin-top: 0;
}

#organisation .organisation-informs__slide > :last-child {
    margin-bottom: 0;
}

#organisation .organisation-informs__slide > br:last-child {
    display: none;
}

/* Панель переключения информеров */
#organisation .organisation-informs__navigation {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 12px;
    align-items: center;
    padding: 8px 12px;
    background: #fafafa;
    border-top: 1px solid #ededed;
}

/* Индикаторы располагаются в центральной области панели навигации */
#organisation .organisation-informs__navigation-center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

/* Кнопки перехода между информерами */
#organisation .organisation-informs__control {
    width: 34px;
    height: 34px;
    padding: 0;
    background: #fff;
    border: 1px solid #f37334;
    border-radius: 50%;
    color: #f37334;
    line-height: 32px;
    text-align: center;
    transition: background-color 150ms ease, color 150ms ease;
}

#organisation .organisation-informs__control:hover,
#organisation .organisation-informs__control:focus {
    background: #f37334;
    color: #fff;
    outline: 2px solid rgba(243, 115, 52, 0.3);
    outline-offset: 2px;
}

/* Индикаторы текущего информера */
#organisation .organisation-informs .organisation-informs__indicators {
    position: static;
    display: flex;
    gap: 6px;
    justify-content: center;
    width: auto;
    margin: 0;
    padding: 0;
}

#organisation .organisation-informs .organisation-informs__indicator {
    width: 8px;
    height: 8px;
    margin: 0;
    padding: 0;
    background: #d2d2d2;
    border: 0;
    border-radius: 999px;
    transition: width 150ms ease, background-color 150ms ease;
}

#organisation .organisation-informs .organisation-informs__indicator.active {
    width: 24px;
    height: 8px;
    margin: 0;
    background: #f37334;
}

#organisation .organisation-informs .organisation-informs__indicator:focus {
    outline: 2px solid rgba(243, 115, 52, 0.45);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    #organisation .organisation-informs__control,
    #organisation .organisation-informs .organisation-informs__indicator {
        transition: none;
    }
}
