#content, .content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 12px;
}

.tile-section h3, .tile-heading {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #888;
	border-bottom: none;
	margin: 24px 0 10px;
}

.tile-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tile {
	flex: 1 1 260px;
	max-width: 300px;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-left: 4px solid #7cb342;
	border-radius: 0 8px 8px 0;
	padding: 8px 10px;
	overflow: hidden;
	box-sizing: border-box;
}

.tile-warn {
	border-left-color: #f0a500;
}

.tile-crit {
	border-left-color: #e5484d;
}

.tile-title {
	font-size: 12px;
	color: #555;
	margin-bottom: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tile-link {
	display: block;
}

.tile-img {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 480px) {
	.tile {
		flex-basis: calc(50% - 10px);
		max-width: calc(50% - 10px);
	}
	.tile-title {
		font-size: 11px;
	}
}
