/*
 * Marketplace tablet alignment fix.
 *
 * At the existing single-column tablet breakpoint, vendor cards retain a
 * desktop max-width and default to the left edge of the full-width directory.
 * Center only those cards. Desktop and mobile geometry remains unchanged.
 */

@media (min-width: 521px) and (max-width: 980px) {
    body.post-type-archive-vendor_partner .dt-vendor-directory > .dt-vendor-card {
        justify-self: center;
    }
}
