.cds-phcv-viewer {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
	gap: 32px;
	align-items: start;
	margin: 32px 0;
}

.cds-phcv-viewer-image {
	position: relative;
	width: 100%;
}

.cds-phcv-viewer-image img {
	display: block;
	width: 100%;
	height: auto;
}

.cds-phcv-point {
	position: absolute;
	transform: translate(-50%, -50%);
	width: 30px;
	height: 30px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: #111;
	color: #fff;
	box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45), 0 8px 20px rgba(0, 0, 0, 0.22);
	cursor: pointer;
	padding: 0;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.cds-phcv-point:hover,
.cds-phcv-point.is-active {
	transform: translate(-50%, -50%) scale(1.14);
	background: #c62828;
}

.cds-phcv-point span {
	display: block;
	font-size: 13px;
	font-weight: 700;
	line-height: 26px;
	text-align: center;
}

.cds-phcv-content-list {
	display: grid;
	gap: 16px;
}

.cds-phcv-panel {
	display: none;
	border: 1px solid #e4e4e4;
	padding: 18px;
	background: #fff;
}

.cds-phcv-panel.is-active {
	display: block;
}

.cds-phcv-panel h3 {
	margin: 0 0 10px;
	font-size: 20px;
	line-height: 1.25;
}

.cds-phcv-text {
	margin-bottom: 14px;
}

.cds-phcv-text > :first-child {
	margin-top: 0;
}

.cds-phcv-text > :last-child {
	margin-bottom: 0;
}

.cds-phcv-media {
	margin-top: 14px;
}

.cds-phcv-media img,
.cds-phcv-media video,
.cds-phcv-media iframe {
	display: block;
	width: 100%;
	max-width: 100%;
}

.cds-phcv-media video {
	height: auto;
}

@media (max-width: 900px) {
	.cds-phcv-viewer {
		grid-template-columns: 1fr;
		gap: 22px;
	}
}

@media (max-width: 600px) {
	.cds-phcv-point {
		width: 26px;
		height: 26px;
	}

	.cds-phcv-point span {
		font-size: 12px;
		line-height: 22px;
	}

	.cds-phcv-panel {
		padding: 14px;
	}
}
