.steps-section {
    padding-top: 48px;
    padding-bottom: 48px;
}

.steps-section__grid {
    position: relative;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    text-align: center;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid rgba(48, 51, 52, 0.12);
    border-top: 4px solid var(--base-color);
    padding: 28px 22px 24px;
    position: relative;
}

.step-card__number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(200, 170, 94, 0.15);
    color: var(--base-color);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step-card__title {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 12px;
}

.step-card__text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--medium-gray);
    margin: 0;
}

@media (min-width: 992px) {
    .steps-section__grid .col:not(:last-child) .step-card::after {
        content: '';
        position: absolute;
        top: 52px;
        right: -14px;
        width: 28px;
        height: 2px;
        background: rgba(200, 170, 94, 0.45);
        z-index: 1;
    }
}
