/* Balanced layout when a professional category currently contains two services. */
.catalog-category-page--professional .catalog-category-items--two {
    width: min(100%,960px);
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: repeat(2,minmax(0,1fr));
}

@media (max-width: 640px) {
    .catalog-category-page--professional .catalog-category-items--two {
        width: 100%;
        grid-template-columns: 1fr;
    }
}
