.comw-cs-wrap {
	--comw-cs-accent: #1f8a5c;
	margin: 0 0 32px;
}

.comw-cs-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.comw-cs-title {
	position: relative;
	margin: 0;
	padding-bottom: 12px;
	font-size: 1.6rem;
	font-weight: 700;
}

.comw-cs-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 46px;
	height: 3px;
	background: var(--comw-cs-accent);
}

.comw-cs-arrows {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.comw-cs-arrow {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: #eef0ee;
	color: #666;
}

.comw-cs-arrow.comw-cs-next {
	background: var(--comw-cs-accent);
	color: #fff;
}

.comw-cs-arrow:disabled {
	opacity: 0.4;
	cursor: default;
}

.comw-cs-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	padding-bottom: 4px;
}

.comw-cs-track::-webkit-scrollbar {
	display: none;
}

.comw-cs-card {
	flex: 0 0 auto;
	width: 140px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	scroll-snap-align: start;
	text-decoration: none;
	color: inherit;
}

.comw-cs-card:hover {
	text-decoration: none;
}

.comw-cs-thumb {
	width: 100%;
	height: 100px;
	background: #f4f5f4;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.comw-cs-thumb img {
	max-width: 70%;
	max-height: 70%;
	object-fit: contain;
}

.comw-cs-placeholder {
	color: #b7bdb9;
}

.comw-cs-name {
	font-size: 0.95rem;
	font-weight: 600;
	text-align: center;
}

@media (max-width: 600px) {
	.comw-cs-card {
		width: 110px;
	}

	.comw-cs-thumb {
		height: 84px;
	}
}
