/* Увеличиваем стрелочку при наведении на карточку */
.card:hover .arrow {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

/* Для карточки в блоке T686 с классом news-custom */
.news-custom .t-card_col {
    /* Внутренние отступы самой карточки (от края до контента) */
    padding: 24px !important;
}

/* Отступ между текстом и кнопкой */
.news-custom .t686_button-container {
    margin-top: 16px !important;
}
}

/* Высота блока */
.custom-menu {
    height: 320px !important;
    min-height: 320px !important;
}

/* Внутренние отступы контейнера (24px или 32px – по желанию) */
.custom-menu .t601b__container {
    padding: 32px !important;   /* отступы от краёв блока до пунктов */
}

/* Пункты меню как кнопки */
.custom-menu .t601b__link {
    display: inline-block;
    background-color: #0073e6;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.custom-menu .t601b__link:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}