/**
 * Bookly's staff form writes a fixed card width from the Appearance setting
 * (currently 260px) as an inline style. On phones that leaves very little
 * room around the resource cards. Keep the desktop setting intact and make
 * only this site's resource cards fluid below the small-screen breakpoint.
 */
@media (max-width: 599px) {
	[id^="bookly-staff-form-my-form-400"] .bookly-staffs-staff-mark {
		box-sizing: border-box !important;
		flex: 0 0 calc(100% - 1rem) !important;
		width: calc(100% - 1rem) !important;
		min-width: 0 !important;
		max-width: 100% !important;
		margin: 0.5rem !important;
	}
}
