﻿/* body {
	padding-top: 100px;
	display: flex;
	gap: 20px;
	background-color: gray;
}

div {
	position: relative;
	width: 600px;
	height: 200px;
	overflow: hidden;
} */

.blur-cover-img {
	position: relative;
	overflow: hidden;
	min-height: 1.8rem;
	width: 100%;
}

.blur-cover-img::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url(--blur-image-url);
	background-size: cover;
	filter: blur(10px);
	transform: scale(1.1);
	background-position: top;
	z-index: 1;
	overflow: hidden;
	min-height: 1.8rem;
	width: ;
}

.blur-cover-img img {
	position: relative;
	z-index: 2;
	width: 100%;
	object-fit: contain;
}
