/*---------------------------------------------------------------------------*\
	#Tiles
\*---------------------------------------------------------------------------*/

.tiles_wrapper {
	display: grid;
	gap: var(--wp--preset--spacing--medium);
	grid-template-columns: repeat(5, 1fr);
}


.tile_container,
.tile_wrapper,
.tile__link,
.tile__content {
	height: 100%;
}

.tile__link {
	background: none;
	cursor: pointer;
	outline: none;
	text-decoration: none;
}

.tile__content {
	background: var(--wp--preset--color--white);
	border-radius: var(--wp--preset--spacing--x-small);
	box-shadow: var(--wp--preset--shadow--medium);
	padding: var(--wp--preset--spacing--small);
	text-align: center;
	transition: background-color .25s ease;
}

.tile__content_wrapper {
	display: grid;
	gap: var(--wp--preset--spacing--small);
	grid-template-columns: 1fr;
}

.tile__link:where(:focus, :hover, :active) :where(.tile__content) {
	background: var(--wp--preset--color--anti-flash-white);
	text-decoration: none;
}

.tile__icon {
	font-size: 4em;
	height: 1em;
	margin: auto;
	width: 1em;
}

	.tile__icon :where(.intakt-rv--icon) {
		display: block;
	}

.tile__heading {
	color: inherit;
	margin: 0;
}

.heading--tile {
	color: var(--wp--preset--color--primary);
	font-size: var(--wp--custom--heading--4--font-size);
	font-weight: var(--wp--custom--heading--4--font-weight);
	line-height: var(--wp--custom--heading--4--line-height);
}

.tile__description {
	color: var(--wp--preset--color--gray);
	font-size: var(--wp--preset--font-size--small);
}

	.tile__link:where(:focus, :hover, :active) :where(.tile__description) {
		color: inherit;
	}