/* Extends photo-card styles, adding play icon overlay */

.hvv-video-card__image {
	position: relative;
}

.hvv-video-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	transition: transform 0.3s ease;
}

.hvv-video-card__play svg {
	width: 80px;
	height: 80px;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.hvv-photo-card.hvv-video-card:hover .hvv-video-card__play {
	transform: translate(-50%, -50%) scale(1.08);
}

@media screen and (max-width: 768px) {
	.hvv-video-card__play svg {
		width: 56px;
		height: 56px;
	}
}
