.cb-bestsellers {
    margin-top: 3rem;
}

.bestseller-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 32px;
    grid-row-gap: 0;
}

.bestseller-grid article {
    height: 100%;
}


.bestseller-grid article .thumbnail-top {
    width: 50%;
    height: 100%;
}


@media (max-width: 1450px) {
    .bestseller-grid {
        display: flex;
        flex-direction: column;
    }

    .bestseller-grid article .thumbnail-top {
        width: 100%;
    }

}