/*/ ========================================================================
	Awards Grid
	Three-up grid of the 2026 Mississippi Magazine award badges shown in the
	Press Highlights sidebar, beneath the OpenTable badge. Uses CSS Grid so a
	single `gap` sets uniform spacing between all six logos; `margin-top`
	sets the larger separation from the badge above. Tooltips are handled by
	the site's global [data-toggle="tooltip"] init.
======================================================================== /*/

.awards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-top: 20px;
}

.awards-badge {
	display: block;
	width: 100%;
	height: auto;
}
