.hvc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;
    min-height: 40px;

    background: #2271b1;
    color: #fff;
    text-decoration: none;
    font-weight: 600;

    border-radius: 4px;
    border: none;

    cursor: pointer;
}

.hvc-button:hover {
    background: #135e96;
    color: #fff;
}

.hvc-button:active {
    transform: translateY(1px);
}

.hvc-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hvc-nav-item {
    padding: 8px 14px;
    background: #f0f0f1;
    color: #1d2327;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.hvc-nav-item:hover {
    background: #2271b1;
    color: #fff;
}

.hvc-nav-item.is-active {
    background: #2271b1;
    color: #fff;
}
