hh-hotspots {
	display: block;
	position: relative;
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 !important;
	align-self: start;
}

hh-hotspots::part(image) {
	object-fit: unset;
	width: 100%;
	height: auto;
}

hh-hotspots::part(button) {
	appearance: none;
	-webkit-appearance: none;
	background: #0005;
	outline: 3px solid #fff;
	border: none;
	padding: 1rem;
	font-size: inherit;
	color: #fff;
	display: inline-block;
	border-radius: 50%;
	backdrop-filter: blur(5px);
	height: 48px;
	width: 48px;
	cursor: pointer;
	transform: translate(-50%, -50%);
}
hh-hotspots::part(button) img {
	display: inline-block;
	height: 100%;
	width: auto;
}

@media (max-width: 1024px) {
	hh-hotspots::part(button) {
		outline: none;
		border: 3px solid #fff;
		padding: 0.25em;
		font-size: inherit;
		color: #fff;
		align-items: center;
		justify-content: center;
		display: flex;
		height: 30px;
		width: 30px;
	}
	hh-hotspots::part(button):after {
		content: "";
		/* outline: 2px solid lime; */
		width: 48px;
		height: 48px;
		position: absolute;
	}
}