.pr-public {
    border-radius: 28px;
}

.pr-public__panes,
.spec-neo-tabs__content {
    max-width: 100%;
    overflow: hidden;
}

.pr-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    width: 100%;
    align-items: stretch;
}

.pr-steps>.pr-step-card {
    box-sizing: border-box;
    flex: 0 1 280px;
    width: 100%;
    max-width: 360px;
}

@media (min-width: 1401px) {
    .pr-steps>.pr-step-card {
        flex-basis: calc((100% - 18px * 4) / 5);
        max-width: calc((100% - 18px * 4) / 5);
    }
}

@media (max-width: 1400px) and (min-width: 901px) {
    .pr-steps>.pr-step-card {
        flex-basis: calc((100% - 18px * 2) / 3);
        max-width: calc((100% - 18px * 2) / 3);
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .pr-steps>.pr-step-card {
        flex-basis: calc((100% - 18px) / 2);
        max-width: calc((100% - 18px) / 2);
    }
}

@media (max-width: 768px) {
    .pr-steps {
        gap: 22px;
    }
    .pr-steps>.pr-step-card {
        flex-basis: 100%;
        max-width: 520px;
    }
}

.pr-step-card {
    position: relative;
    background: var(--main-blue-light);
    border-radius: 18px;
    padding: 56px 20px 28px;
    border: 0;
    min-height: 190px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    overflow: visible;
}

.pr-step-card__badge {
    position: absolute;
    top: -44px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: var(--main-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pr-step-card__badge::before,
.pr-step-card__badge::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    border: 8px solid #fff;
    box-sizing: border-box;
}

.pr-step-card__badge::after {
    inset: 0;
    border-width: 3px;
    border-color: var(--main-blue-light);
}

.pr-step-card__badge-inner {
    position: relative;
    display: flex;
    gap: 2px;
}

.pr-step-card__digit--muted {
    color: var(--main-blue-dark__50);
}

.pr-step-card__digit--accent {
    color: var(--main-blue);
}

.pr-step-card__content {
    width: 100%;
    max-width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 1200px) {
    .pr-step-card {
        min-height: 170px;
    }
    .pr-step-card__badge {
        width: 104px;
        height: 104px;
        top: -40px;
    }

}

@media (max-width: 768px) {
    .pr-step-card {
        padding: 52px 18px 22px;
    }
}

.pr-public__legend {
    margin: 0 0 48px;
}


    @media (max-width: 768px) {
        .pr-steps--volunteer {
            gap: 34px;
            max-width: 100%;
        }

        .pr-step-card--volunteer {
            max-width: 100%;
            min-height: 118px;
            padding: 32px 18px 16px;
        }

        .pr-step-card--volunteer .pr-step-card__badge {
            width: 56px;
            height: 56px;
            top: -32px;
        }

    }