.cb-steps {
    max-width: 1080px;
    margin: 4.5rem auto;
}

.cb-steps-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}
.cb-steps-eyebrow {
    display: inline-block;
    margin-bottom: .75rem;
    color: var(--bs-primary, #fca844);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.cb-steps-headline {
    margin: 0;
    text-wrap: balance;
}

.cb-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 768px) {
    .cb-steps-list {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }
}

.cb-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
}

.cb-step-num {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1.1rem;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    background: var(--bs-bg-gradient, linear-gradient(45deg, #EE4524 0%, #FCA844 100%));
    box-shadow: var(--ad-inset-highlight, inset 0 1px 0 rgba(255, 255, 255, .25)), 0 0 24px -8px rgba(238, 69, 36, .55);
}

@media (min-width: 768px) {
    .cb-step:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 1.375rem;
        left: 50%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, rgba(252, 168, 68, .5) 0%, rgba(255, 255, 255, .06) 100%);
        z-index: 0;
    }
}

.cb-step-title {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: .4rem;
}
.cb-step-text {
    color: var(--ad-text-secondary, #9c9c9d);
    font-size: .95rem;
    line-height: 1.55;
}
.cb-step-text p:last-child {
    margin-bottom: 0;
}
