.blt-steps {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    gap: 24px;
    font-family: 'Inter', sans-serif;
}
.blt-steps-item {
    flex: 1 1 0;
    min-width: 160px;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}
.blt-steps-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #003750;
    margin: 0 auto 16px;
    transition: all 0.2s;
}
.blt-steps-title {
    font-size: 13px;
    font-weight: 700;
    color: #003750;
    margin-bottom: 6px;
}
.blt-steps-desc {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.55;
}

.blt-steps--line .blt-steps-line {
    position: absolute;
    top: 20px;
    left: calc(100% / var(--blt-steps-cols, 4) / 2);
    right: calc(100% / var(--blt-steps-cols, 4) / 2);
    height: 1px;
    background: #e5e7eb;
    z-index: 0;
}
.blt-steps--cols-2 .blt-steps-line { --blt-steps-cols: 2; }
.blt-steps--cols-3 .blt-steps-line { --blt-steps-cols: 3; }
.blt-steps--cols-4 .blt-steps-line { --blt-steps-cols: 4; }
.blt-steps--cols-5 .blt-steps-line { --blt-steps-cols: 5; }
.blt-steps--cols-6 .blt-steps-line { --blt-steps-cols: 6; }

@media (max-width: 900px) {
    .blt-steps-line { display: none; }
    .blt-steps-item { flex: 1 1 45%; margin-bottom: 24px; }
}