.botkin-menu-cards {
    margin-top: 20px;
}

.botkin-card-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
    min-height: 120px;
}

.botkin-card-link:hover {
    text-decoration: none;
    background: #ffffff;
    border-color: #0076c0;
    /* Фирменный ярко-синий */
    box-shadow: 0 8px 25px rgba(0, 118, 192, 0.1);
    transform: translateY(-4px);
}

.botkin-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0B2F7C;
    line-height: 1.3;
    transition: color 0.3s ease;
    margin-bottom: 15px;
}

.botkin-card-link:hover .botkin-card-title {
    color: #0076c0;
}

.botkin-card-arrow {
    align-self: flex-end;
    color: #cbd5e1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.botkin-card-link:hover .botkin-card-arrow {
    color: #0076c0;
    transform: translateX(5px);
}

/* Стили для активного (текущего) раздела */
.botkin-card-link.active {
    border-color: #0076c0;
    background-color: #f8fafc;
}

.botkin-card-link.active .botkin-card-title,
.botkin-card-link.active .botkin-card-arrow {
    color: #0076c0;
}