.kcg-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.kcg-card {
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	overflow: hidden;
	background: #ffffff;
	text-decoration: none;
	transition: 0.2s ease;
	border: 1px solid #F3F3F3;
}

.kcg-card:hover {
	transform: translateY(-2px);
}

.kcg-image {
	aspect-ratio: 1 / 1;
	background: #ffffff;
}

.kcg-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kcg-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 20px;
	background: #ffffff;
}

.kcg-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	color: #080808;
	font-family: "Wix Madefor Display", sans-serif;
}

.kcg-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 33px;
	height: 33px;
	border-radius: 4px;
	background: #232F3E;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	flex-shrink: 0;
}

.kcg-card:hover .kcg-button {
	background: #F36D21;
}

.kcg-small .kcg-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
}

.kcg-small .kcg-bottom {
	padding: 10px;
}

.kcg-small .kcg-title {
	font-size: 14px;
}

.kcg-small .kcg-button {
	width: 24px;
	height: 24px;
}

.kcg-small .kcg-button svg {
	width: 4px;
	height: 9px;
}

@media (max-width: 767px) {

	.kcg-grid {
		display: flex;
		gap: 12px;
		overflow-x: auto;
		padding-bottom: 8px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.kcg-grid::-webkit-scrollbar {
		display: none;
	}

	.kcg-card {
		flex: 0 0 240px;
		border-radius: 16px;
		scroll-snap-align: start;
		justify-content: space-between;
	}

	.kcg-image {
		aspect-ratio: 1 / 1;
	}
	
	

	.kcg-bottom {
		padding: 8px;
		align-items: flex-end;
	}

	.kcg-title {
	font-size: 18px;
	line-height: 1.2;
	margin-top: auto;
}

	.kcg-button {
		width: 33px;
		height: 33px;
		border-radius: 4px;
	}

	.kcg-button svg {
		transform: scale(1.3);
	}
}