.process-heading {
    text-decoration: underline;
}

.process-wrapper {
    margin-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4px;
}

.process-text {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100%;
}

.process-card {
    position: relative;
    background-color: var(--color-primary-light);
    width: 100%;
    border-radius: var(--spacing-md);
    padding: var(--spacing-md);
    border: solid 2px black;
}

.step-number {
    background-color: var(--color-primary-dark);
    color: var(--color-highlight);
    font-size: 2.4rem;
    line-height: 52px;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    width: 52px;
    height: 52px;
    top: -26px;
    left: -26px;
}

.process-card-heading {
    color: var(--color-secondary-dark);
}

.process-summary {
    margin-top: var(--spacing-sm);
}

.process-text>img {
    width: 52px;
    height: 52px;
    align-self: center;
}

.top-arrow {
    transform: rotate(-45deg);
}

.bottom-arrow {
    transform: rotate(45deg);
}

.process-image-wrapper {
    height: auto;
    width: 50%;
    position: relative;
    display: none;
}

.process-image-wrapper img {
    object-fit: cover;
    border-radius: var(--spacing-sm);
    width: 100%;
}

.img-sm {
    margin-top: var(--spacing-lg);
}

@media screen and (min-width: 620px) {

    .process-text {
        width: 50%;
    }

    .process-image-wrapper {
        display: block;
    }

}

@media screen and (min-width: 850px) {

    .process-wrapper {
        gap: 24px;
    }

    .process-card {
        width: 75%;
    }

    .process-card:nth-child(3) {
        align-self: flex-end;
    }

}

@media screen and (min-width: 1100px) {

    .img-big {
        max-width: calc(80% - 60px);
    }

    .img-sm {
        margin-top: 0;
        border: solid 4px var(--color-secondary-light);
        max-width: 50%;
        position: absolute;
        max-width: 50%;
        top: 50%;
        right: 0;
    }

}