.Overview {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
}

.Overview__Column {
    width: 100%;
}

@media only screen and (min-width: 767px) {
    .Overview { 
        justify-content: flex-start; 
    }

    .Overview__Column {
        width: auto
    }

    .Overview > * + * {
        margin-left: 2rem;
    }
    
}
