.pg-pannellum {
	--pg-pannellum-height: 650px;
	--pg-pannellum-mobile-height: 450px;
	display: block;
}

.pg-pannellum__viewer {
	width: 100%;
	height: var(--pg-pannellum-height);
	background: #111827;
	border-radius: 14px;
	overflow: hidden;
}

.pg-pannellum__navigation {
	display: flex;
	gap: 12px;
	margin-top: 16px;
	padding-bottom: 4px;
	overflow-x: auto;
	scrollbar-width: thin;
}

.pg-pannellum__scene {
	display: grid;
	grid-template-columns: 72px minmax(120px, 1fr);
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
	min-width: 220px;
	padding: 10px;
	border: 1px solid #d0d7de;
	border-radius: 14px;
	background: #fff;
	color: #1f2328;
	font: inherit;
	line-height: 1.2;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pg-pannellum__scene:hover,
.pg-pannellum__scene:focus {
	border-color: #8c959f;
	background: #f6f8fa;
	outline: none;
	transform: translateY(-1px);
}

.pg-pannellum__scene.is-active {
	border-color: #1f2328;
	background: #1f2328;
	color: #fff;
}

.pg-pannellum__scene-image {
	display: block;
	width: 72px;
	height: 54px;
	overflow: hidden;
	border-radius: 10px;
	background: #0f172a;
}

.pg-pannellum__scene-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pg-pannellum__scene-title {
	display: block;
	font-weight: 600;
	word-break: break-word;
}

.pg-pannellum--notice {
	padding: 18px;
	border: 1px dashed #c3c4c7;
	border-radius: 10px;
	background: #fff;
	color: #1d2327;
}

@media (max-width: 767.98px) {
	.pg-pannellum__viewer {
		height: var(--pg-pannellum-mobile-height);
	}

	.pg-pannellum__scene {
		grid-template-columns: 64px minmax(120px, 1fr);
		min-width: 200px;
	}

	.pg-pannellum__scene-image {
		width: 64px;
		height: 48px;
	}
}
