.scg-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.scg-inline {
	display: flex;
	gap: 12px;
	overflow: hidden;
	width: max-content;
	animation: scg-scroll 140s linear infinite;
}

.scg-inline-wrapper {
	overflow: hidden;
	width: 100%;
}

.scg-inline:hover {
	animation-play-state: paused;
}

@keyframes scg-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.scg-inline .scg-card {
	min-width: 290px;
	max-width: 290px;
}

.scg-card {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 8px;
	border: 1px solid #E6E6E6;
	border-radius: 12px;
	background: #ffffff;
	text-decoration: none;
	color: inherit;
}

.scg-image {
	width: 79px;
	height: 79px;
	flex-shrink: 0;
	border-radius: 10px;
	overflow: hidden;
	background: #ffffff;
}

.scg-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.scg-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.scg-title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	color: #080808;
	font-family: "Wix Madefor Display", sans-serif;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.scg-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #7B828B;
	font-family: "Wix Madefor Display", sans-serif;
}

.scg-link:hover {
	color: #F36D21;
}

.scg-arrow {
	font-size: 18px;
	line-height: 1;
}