.columns-view{
    display: grid;
    gap: 1rem;
    width: 100%;
    margin: 0.5rem 0;
}

.columns-view > div {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

@media only screen and (max-width: 800px) {
    .columns-view{
        display: block;
    }
}
