.stream-tiles {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

.tile {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}

.tile img {
	display: block;
}

.tile .coming-soon {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	user-select: none;
	transition: height var(--hover-overlay-duration), font-size var(--hover-overlay-duration);
	font-size: 1em;
}

.tile:hover .coming-soon {
	height: 100%;
	font-size: 2em;
}

.tile a {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.tile .accent {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	z-index: 3;
}

.stream-tile-container:not(:has(.tile)) {
	display: none;
}