/**
 * Art Category Tile (Blockade addon) — front-end + in-editor styling.
 *
 * The whole tile is a single <a>: image on top, a button-style label beneath.
 * Layout (how many across) is handled by the Simple Columns block these are
 * dropped into, so the tile only styles itself to fill its column.
 */
.wa-art-category-tile {
	display: block;
	text-align: center;
	text-decoration: none;
	color: inherit;
	margin-bottom: 20px;
}
.wa-art-category-tile img,
.wa-art-category-tile .imageblock {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}
.wa-art-category-tile__label {
	display: inline-block;
	margin-top: 14px;
	padding: 10px 20px;
	border: 1px solid #2b2b2b;
	background: #fff;
	color: #2b2b2b;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.2;
	text-transform: uppercase;
	transition: background 0.15s ease, color 0.15s ease;
}
.wa-art-category-tile:hover .wa-art-category-tile__label,
.wa-art-category-tile:focus .wa-art-category-tile__label {
	background: #2b2b2b;
	color: #fff;
}
