
/* Make a textlink expand to the whole container that it is inside of */
.stretch-link {
	position: relative;
}
.stretch-link a::after {
	content: "";
	position: absolute;
	inset: 0;
}
.stretch-link a::is(:focus-visible)::after {
	outline: 2px solid;
}

.stretch-link a:is(:hover, :focus) {
	outline: none;
}