/**
 * Location Posts Shortcode Styles
 *
 * Three-column flexbox list with no bullets and no list-item
 * padding or margin.
 *
 * @package LocationPostsShortcode
 */

.location-posts__list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.location-posts__item {
	box-sizing: border-box;
	flex: 0 0 33.333%;
	margin: 0;
	padding: 0;
}

/* Five-column variant used by [location_posts_by_state]. */
.location-posts__list--five-col .location-posts__item {
	flex: 0 0 20%;
}
