.image-lazy-container {
	width: 100%;
	max-width: 1200px;
	margin: 20px auto;
	padding: 0 20px;
}

.lazy-image-wrapper {
	position: relative;
	width: 100%;
	margin-bottom: 20px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	background: #f5f5f5;
	min-height: 300px;
}

.lazy-img {
	width: 100%;
	height: auto;
	display: block;
	opacity: 0;
	transition: opacity 0.8s ease;
}

.lazy-img.loaded {
	opacity: 1;
}

.loading-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: loading 1.5s infinite;
}

@keyframes loading {
	0% {
		background-position: 200% 0;
	}

	100% {
		background-position: -200% 0;
	}
}

