/* 360°-Panorama-Viewer (Pano2VR) responsiv einbetten via iFrame */
.pano-wrapper {
	position: relative;
	width: 100%;
	max-width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 8px; /* Abgerundete Ecken, wie im Rest der Seite */
}

.pano-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 600px) {
	.pano-wrapper {
		aspect-ratio: 4 / 3;
	}
}
