html.smooth{
	scroll-behavior: smooth;
}
.highlight__modal {
	position: fixed;
	inset: 0;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.3s ease 0s;
	transition: 0.3s ease 0s;
}
.highlight__modal.is-open {
	opacity: 1;
	visibility: visible;
}
.highlight__modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
}
.highlight__modal__inner {
	position: absolute;
	inset: 50% auto auto 50%;
	-webkit-transform: translate(-50%, -50%);
			transform: translate(-50%, -50%);
	width: 100%;
	max-width: 800px;
	aspect-ratio: 16/9;
}
.highlight__modal__image {
	width: 100%;
}
.highlight__modal__close {
	position: absolute;
	top: -3rem;
	right: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
}

body.is-modal-open {
	overflow: hidden;
}
