/* Стили для кликабельных карточек */
.CHPubsListBlock_clickableCard {
    display: flex;
    flex-direction: column;
    background-color: #ffffff; /* Белый фон */
    margin-bottom: 20px; /* Отступ снизу */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Плавный переход для анимации */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.CHPubsListBlock_clickableCard:hover {
    transform: translateY(-5px); /* Сдвиг вверх при наведении */
    box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.03),
                0 6.7px 5.3px rgba(0, 0, 0, 0.04),
                0 12.5px 10px rgba(0, 0, 0, 0.045),
                0 22.3px 17.9px rgba(0, 0, 0, 0.05),
                0 41.8px 33.4px rgba(0, 0, 0, 0.06),
                0 100px 80px rgba(0, 0, 0, 0.08);
}

.CHPubsListBlock_clickableCard .card-content {
    flex: 1; /* Растягиваем содержимое по вертикали */
}

.CHPubsListBlock_clickableCard h3 {
    font-size: 1.25em; /* Размер шрифта заголовка */
    color: #201f1e; /* Цвет текста заголовка */
    margin-bottom: 10px; /* Отступ снизу */
}

.CHPubsListBlock_clickableCard p {
    color: #605e5c; /* Цвет текста */
    line-height: 1.6; /* Межстрочный интервал */
    margin-bottom: 15px; /* Отступ снизу */
}

.CHPubsListBlock_clickableCard a {
    color: #0078d4; /* Цвет ссылок в стиле Fluent */
    text-decoration: none; /* Убираем подчеркивание */
    font-weight: 500; /* Полужирный текст */
}

.CHPubsListBlock_clickableCard a:hover {
    text-decoration: underline; /* Подчеркивание при наведении */
}


.BaseMaster_mainMenuContainer .CHMenu_menu .CHMenu_menuItem a
{
  font-family: 'Roboto', sans-serif; !important
  font-weight: 600; !important
  color: blue; !important
  /* This line makes header links blue for readers */
  /*color: red !important; */
  /* Uncomment the following line to get red header links */
  /*color: red !important;
}.CHBlock_richTextContent, .CHBlock_container * {font-family: 'Segoe UI',Frutiger,'Frutiger Linotype','Dejavu Sans','Helvetica Neue',Arial,sans-serif;}