/* --------------------------------------------------------------------------
   Vinyl album cover – blur glow on hover
   -------------------------------------------------------------------------- */

.type-vinyl.wp-block-post > .wp-block-group {
	overflow: visible;
}

.type-vinyl .wp-block-post-featured-image {
	position: relative;
	overflow: visible;
	isolation: isolate;
	transform: translateZ(0);
}

.type-vinyl .wp-block-post-featured-image > a > img {
	position: relative;
	z-index: 1;
	transform: translateZ(0);
	transition: transform 0.4s ease;
}

.wp-block-post.vinyl:hover .wp-block-post-featured-image > a > img {
	transform: scale(1.01);
}

.vinyl-blur-glow {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-filter: blur(24px) saturate(1.4);
	filter: blur(24px) saturate(1.4);
	opacity: 0;
	z-index: 0;
	transform: translateZ(0);
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.wp-block-post.vinyl:hover .vinyl-blur-glow {
	opacity: 1;
}

@media (max-width: 599px) {
	.post-type-archive-vinyl .wp-block-post-template.is-layout-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}
