.hw-next-moves {
    margin-top: 0;
}

.hw-next-list {
    display: flex;
    flex-direction: column;
}

.hw-next-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    text-decoration: none;
    color: var(--hw-color-text-strong);
    border-bottom: 1px solid var(--hw-dashboard-line);
    transition: background var(--hw-transition-fast), transform var(--hw-transition-fast);
}

.hw-next-item:hover {
    background: rgba(136, 60, 166, 0.04);
    transform: translateX(1px);
}

.hw-next-left {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.hw-next-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--hw-dashboard-header-icon);
}

.hw-next-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.hw-next-label {
    font-size: 12px;
    font-weight: 600;
}

.hw-next-sub {
    font-size: 10px;
    color: var(--hw-color-muted);
}

.hw-next-arrow {
    font-size: 16px;
    color: var(--hw-color-primary);
}

.hw-next-item--locked {
    gap: 12px;
    background: var(--hw-app-surface);
}

.hw-next-item--locked:hover {
    background: var(--hw-app-surface);
    transform: none;
}

.hw-next-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--hw-color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
}
