.category {
	gap: 20px;
}
.category-item {
	position: relative;
	height: 299px;
}
.category-item.w-60 {
	width: calc(100% - 690px);
}
.category-item.w-20 {
	width: 325px;
}
.category-item-gallery {
	width: 100%;
	height: 100%;
}
.category-item-info {
	position: absolute;
	width: 100%;
	height: 100%;
	align-items: flex-end;
	justify-content: flex-start;
	padding: 24px;
	z-index: 2;
	top: 0;
	left: 0;
}
.category-item-info .info-name {
	display: block;
	margin-bottom: 6px;
	color: var(--Neutral-0);
}
.category-item-info .info-price {
	color: var(--Neutral-0);
}
.category-link {
	padding: 12px 16px;
	display: flex;
	gap: 20px;
	width: max-content;
	margin: 20px 0 0 auto;
	font-weight: 700;
}
.category-link svg {
	transition: .4s;
}
.category-link:hover svg {
	transform: translateX(8px);
}

@media (max-width: 1439px) {
	.category {
		gap: 16px;
	}
	.category-item-info {
		padding: 16px;
	}
	.category-item {
		height: 216px;
	}
	.category-item.w-60 {
		width: calc(100% - 496px);
	}
	.category-item.w-20 {
		width: 232px;
	}
	.category-item-info .info-name {
		font-size: 16px;
	}
	.category-link {
		margin: 16px 0 0 0;
	}
}
@media (max-width: 1023px) {
	.category {
		gap: 12px;
	}
	.category-item.w-20 {
		width: 184px;
	}
	.category-item.w-60 {
		width: calc(100% - 392px);
	}
	.category-item:nth-child(5) {
		order: 6;
	}
	.category-item-info .info-name {
		margin-bottom: 4px;
	}
}
@media (max-width: 767px) {
	.category {
		gap: 3.07vw;
	}
	.category-item {
		height: 41.02vw;
	}
	.category-item.w-20,
	.category-item.w-60 {
		width: 35.38vw;
	}
	.category-item:nth-child(1),
	.category-item:nth-child(4),
	.category-item:nth-child(5) {
		width: 51.28vw;
	}
	.category-item-info {
		padding: 3.07vw;
	}
	.category-item-info .info-name {
		font-size: 3.58vw;
		margin-bottom: 0.51vw;
	}
	.category-link {
        margin: 4.10vw 0 0 0;
        padding: 3.07vw 4.10vw;
        gap: 3vw;
        width: 60vw;
	}
	.category-link svg {
		width: auto;
		height: 2.82vw;
		position: relative;
		top: 0.25vw;
	}
	.category-link:hover svg {
		transform: translateX(2.05vw);
	}
	.category-item:nth-child(5) {
		order: initial;
	}
}