/*
 * Bileşen: Adım Listesi (Steps)
 * Amaç: Numaralandırılmış, sıralı adımları gösteren listeler için evrensel stil.
 */

.bfwt-steps {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    counter-reset: steps-counter;
}

.bfwt-steps__item {
    position: relative;
    background: var(--color-background-soft);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-base);
    padding: 20px 20px 20px 60px;
    transition: all 0.2s ease;
}
.bfwt-steps__item:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
    border-color: var(--color-primary);
}

.bfwt-steps__item::before {
    counter-increment: steps-counter;
    content: counter(steps-counter);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}