.hg-b8c82caa-grid {
	display: grid;
	gap: 20px;
}

@media (max-width: 1024px) {
	.hg-b8c82caa-grid {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 768px) {
	.hg-b8c82caa-grid {
		grid-template-columns: 1fr !important;
	}
}

.hg-b8c82caa-item {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	background-color: #ffffff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hg-b8c82caa-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hg-b8c82caa-link {
	text-decoration: none !important;
	color: inherit;
	display: block;
	height: 100%;
}

.hg-b8c82caa-marquee-wrap {
	width: 100%;
	overflow: hidden;
	display: flex;
	background-color: #f5f5f5;
	position: relative;
}

.hg-b8c82caa-marquee-track {
	display: flex;
	width: max-content;
	animation: hg-b8c82caa-scroll 15s linear infinite;
}

.hg-b8c82caa-marquee-track img {
	height: 200px;
	width: auto;
	object-fit: cover;
	flex-shrink: 0;
	display: block;
}

.hg-b8c82caa-placeholder {
	height: 200px;
	width: 250px;
	background-color: #e0e0e0;
	flex-shrink: 0;
	border-right: 1px solid #ccc;
}

.hg-b8c82caa-title {
	padding: 15px;
	margin: 0;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 600;
	color: #333;
}

@keyframes hg-b8c82caa-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		/* Translate by half of the track width because we duplicated the images */
		transform: translateX(-50%);
	}
}

/* Pause animation on hover */
.hg-b8c82caa-item:hover .hg-b8c82caa-marquee-track {
	animation-play-state: paused;
}