.featured
{
	display: grid;
	grid-template-areas: "l l l" "g icon r" "g title r""g breadcrumbs r" "t t t";
	grid-template-columns: var(--wp--custom--h-inset) 1fr var(--wp--custom--h-inset);
	grid-template-rows: minmax(20px, 1fr) auto auto auto minmax(20px, 1fr);
	gap: 10px 0;

	background: var(--featured-background, var(--wp--preset--color--blue));
	color: var(--featured-text, var(--wp--preset--color--white));
	text-align: center;
}

.featuredImage
{
	opacity: 0.15;
	mix-blend-mode: luminosity;
	grid-column: 1/-1;
	grid-row: 1/-1;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.featured .title
{
	grid-area: title;
	margin: 0;
	align-self: end;
	position:relative;
	line-height: 1;

	font-size: var(--wp--preset--font-size--heading);
	font-weight: 600;
	text-transform: uppercase;
}

.featured .breadcrumbs
{
	grid-area: breadcrumbs;
	position:relative;
	font-size: var(--wp--preset--font-size--smaller);
	text-transform: uppercase;
	font-weight: 700;
}

.featured .parent
{
	text-decoration: none;
	display: inline-block;
}

.featured .current
{
	display: inline-block;
	color: var(--featured-highlight, var(--wp--preset--color--green));
	text-decoration: none;
}

.featured .iconWrap
{
	grid-area: icon;
	aspect-ratio: 1/1;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	max-width: 200px;
	width: 100%;
	justify-self: center;
}

.featured .icon
{
	height: 70%;
	width: 70%;
	object-fit: contain;
}

@media (min-width: 650px)
{
	.featured
	{
		--icon-width: 100px;
		grid-template-areas: "l l l l l" "g title s icon r" "g breadcrumbs s icon r" "t t t t t";
		grid-template-columns: var(--wp--custom--h-inset) 1fr 20px var(--icon-width) var(--wp--custom--h-inset);
		grid-template-rows: minmax(20px, 1fr) auto auto minmax(20px, 1fr);
		text-align: left;
	}
}

@media (min-width: 870px)
{
	.featured
	{
		--icon-width: 200px;
		max-height: 300px;
	}
}

@media (hover: hover)
{
	.featured a.parent:hover
	{
		color: var(--featured-highlight, var(--wp--preset--color--green))
	}

	.featured a.current:hover
	{
		color: inherit;
	}
}
