
/* WD responsive grid helpers — keep desktop cols but collapse on mobile (avoid inline grid-template-columns) */
.rsg-page .wd-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
.rsg-page .wd-cols-2 { grid-template-columns: repeat(2, 1fr) !important; }
@media (max-width: 760px) { .rsg-page .wd-cols-3, .rsg-page .wd-cols-2 { grid-template-columns: 1fr !important; } }
