.bsteps {
    padding: clamp(20px, 5vw, 72px) 0 0;
}

.bsteps__title {
    margin: 0;
}

.bsteps__title .accent,
.bsteps__title b,
.bsteps__title strong {
    color: var(--gold);
    font-weight: inherit;
}

.bsteps__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2px;
    margin-top: clamp(24px, 5vw, 50px);
}

.bsteps__card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 50px 42px 20px;
    background: #f4f4f4;
}

.bsteps__badge {
    position: absolute;
    right: 1px;
    bottom: 100%;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #3B3B3B;
    color: var(--white);
    font-size: clamp(16px,1.75vw,20px);
    line-height: 1;
    white-space: nowrap;
    height: 43px;
    transform: translateY(50%);
}

.bsteps__card-title {
    margin: 0 0 13px;
    font-size: clamp(20px, 2vw, 25px);
    line-height: 1;
}

.bsteps__card-title strong {
    font-weight: inherit;
    color: var(--gold);
}

.bsteps__card-text {
    font-size: clamp(16px,1.2vw,17px);
    line-height: 1.1;
    color: #363636;
    max-width: 264px;
}

.bsteps__card-link {
    margin-top: clamp(20px, 2vw, 24px);
    font-size: clamp(16px,1.25vw,18px);
    color: #686868;
}

.bsteps__card-link:hover {
    color: var(--gold);
    --color-link: var(--gold);
}

@media (width < 1280px) {
    .bsteps__card {
        padding: 36px 32px 32px;
    }
}

@media (width <= 992px) {
    .bsteps__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 4px;
    }

    .bsteps__badge {
        top: 0;
        bottom: auto;
        transform: unset;
        right: 0;
        height: 40px;
    }

    .bsteps__card {
        padding: 32px 24px 24px;
    }

    .bsteps__card-title {
        max-width: calc( 100% - 64px );
    }
}

@media (width < 576px) {
    .bsteps__grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .bsteps__title br {
        display: none;
    }
}
