.oc-process-steps {
    position: relative;
}

.oc-process-steps__header {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px !important;
}

.oc-process-steps__section-title {
    line-height: 1.2;
}

.oc-process-steps__intro {
    max-width: 44rem;
}

.oc-process-steps__intro p:last-child {
    margin-bottom: 0;
}

.oc-process-steps__list {
    width: 100%;
    text-align: center;
    padding-left: 0;
}

.oc-process-steps__item {
    user-select: none;
    position: relative;
    text-align: center;
    padding: 1.25rem 1.5rem;
    transition: background-color 0.4s ease-in-out;
}

.oc-process-steps__item:hover,
.oc-process-steps__item:focus-within {
    background-color: var(--oc-process-hover-bg, #f2f4f7);
}

.oc-process-steps__item:hover .oc-process-steps__number,
.oc-process-steps__item:focus-within .oc-process-steps__number {
    transform: translateY(5px);
}

.oc-process-steps__number {
    display: block;
    margin: 0;
    color: inherit;
    font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: clamp(4rem, 8vw, 5.625rem);
    font-weight: 700;
    line-height: 1;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px currentColor;
    text-shadow: none !important;
    transition: transform 0.4s ease-in-out;
}

.oc-process-steps__title {
    display: block;
    margin: 1.5rem 0 0;
    font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.15;
    text-transform: uppercase;
}

.oc-process-steps__subtitle {
    display: block;
    margin-top: 1.5rem;
    line-height: 1.55;
}

.oc-process-steps__subtitle,
.oc-process-steps__subtitle p {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.oc-process-steps__subtitle p:last-child {
    margin-bottom: 0;
}

.oc-process-steps__subtitle,
.oc-process-steps__subtitle p,
.oc-process-steps__subtitle a,
.oc-process-steps__subtitle a:link,
.oc-process-steps__subtitle a:visited {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    line-height: 1.55;
}

.oc-process-steps__subtitle,
.oc-process-steps__subtitle p {
    color: var(--bs-secondary-color, #6c757d);
}

.oc-process-steps__subtitle a,
.oc-process-steps__subtitle a:link,
.oc-process-steps__subtitle a:visited {
    color: currentColor;
    font-weight: 500;
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.12em;
    transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.oc-process-steps__subtitle a:hover,
.oc-process-steps__subtitle a:focus {
    color: currentColor;
    opacity: 0.85;
    text-decoration-line: underline;
}

.oc-process-steps__subtitle a:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.oc-process-steps__subtitle p a,
.oc-process-steps__subtitle li a,
.oc-process-steps__subtitle span a,
.oc-process-steps__subtitle strong a,
.oc-process-steps__subtitle em a {
    font-size: inherit;
    line-height: inherit;
}

.oc-process-steps__item.is-navy {
    color: #003c71;
}

.oc-process-steps__item.is-blue {
    color: #0d6efd;
}

.oc-process-steps__item.is-teal {
    color: #0f766e;
}

.oc-process-steps__item.is-green {
    color: #198754;
}

.oc-process-steps__item.is-gold {
    color: #b7791f;
}

.oc-process-steps__item.is-red {
    color: #dc3545;
}

.oc-process-steps__item.is-purple {
    color: #6f42c1;
}

.oc-process-steps__item.is-dark {
    color: #212529;
}

.oc-process-steps__subtitle,
.oc-process-steps__subtitle p {
    color: var(--bs-secondary-color, #6c757d);
}

@media (min-width: 768px) {
    .oc-process-steps__item {
        width: 49%;
        display: inline-block;
        vertical-align: top;
    }
}

@media (min-width: 1200px) {
    .oc-process-steps__list {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }

    .oc-process-steps__item {
        width: 100%;
        display: block;
    }

    .oc-process-steps__item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        width: 1px;
        height: 75%;
        background: var(--bs-secondary-color, #6c757d);
        opacity: 0.2;
        transform: translateY(-50%);
    }
}
