.process-shows {
    display: grid;
    grid-template-columns: repeat(2, minmax(0px, 1fr));
    gap: 1em;
    position: relative;
}

.process-shows > a {
    display: block;
    width: 100%;
    border: solid 2px var(--kbsb-dark);
    padding: 1em;
    position: relative;
}

.process-shows > a > img {
    width: 100%;
    display: block;
}

.process-shows > a > span {
    font-size: 1em;
    font-weight: 600;
}

@media all and (max-width: 767px) {

    .process-shows {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .process-shows > a {
        max-width: 100%;
    }

}