@import url("./field.css");
/*~~~~~~ main ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
main > article::after {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	margin: -.5rem;
	border-radius: 1rem;
	pointer-events: none;
	box-shadow: 0 0 transparent;
	transition: margin .2s, border-radius .2s, box-shadow .2s;
}
main > article:hover::after,
main > article:focus-within::after {
	box-shadow: 0 0 0 .5rem var(--details-background);
}
main > article:active::after {
	margin: 0;
	border-radius: .5rem;
	box-shadow: 0 0 0 .5rem var(--details-background);
}
main > article > h1 > a:not([download]) {
	display: inline-block;
	width: 100%;
}
main > article > h1 > a:not([download]):not(:hover):not(:focus-within) {
	text-decoration-color: transparent;
}
main > article > h1 > a:not([download]):focus-within {
	outline-color: transparent;
}
main > article > h1 > a:not([download])::before {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	border-radius: .5rem;
}
main > article > h1 > a:not([download]):focus-within::before {
	outline: .05rem dashed currentColor;
	outline-offset: .05rem;
}
main > article > h1 + p + figure {
	float: left;
	width: auto;
	height: auto;
	margin: 2rem;
	border-radius: .5rem;
	overflow: clip;
}
main > article > h1 + p + figure > picture {
	width: 8rem;
	aspect-ratio: 1 / 1;
	object-position: center;
	object-fit: cover;
}
main > article > h1 + p + figure > picture > img {
	height: auto;
	aspect-ratio: 1 / 1;
}
main > article > h1 + p + figure + p + figure {
	width: 100%;
	margin: 2rem 0 0 0;
	border: 0;
	background-color: var(--details-background);
}
main > article > h1 + p + figure + p + figure > picture {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	background: none;
	object-position: center;
	object-fit: cover;
}
main > article > h1 + p + figure + p + figure > picture > img {
	height: auto;
	aspect-ratio: 16 / 9;
}
main > section > * a:not([download]),
main > article > h1 ~ * a:not([download]) {
	position: relative;
	z-index: 1;
}
/*~~~~~~ @media ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
@media (min-width: 38.75em) {
	main > article {
		padding-left: 14rem;
		min-height: 16rem;
	}
	main > article::before {
		content: "";
		float: left;
		width: 0;
		height: 16rem;
	}
	main > article > h1 + p + figure {
		position: absolute;
		inset: 0;
	}
	main > article > h1 + p + figure > picture {
		width: 12rem;
		height: 12rem;
	}
	main > article > h1 + p + figure + p + figure {
		clear: both;
		width: calc(100% + 14rem);
		margin: 2rem 0 0 -14rem;
	}
}
