.tjc-carousel {
	display: flex;
	align-items: center;
	gap: 12px;
}

.tjc-carousel-track {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	gap: 6px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 4px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.tjc-carousel-track::-webkit-scrollbar {
	display: none;
}

.tjc-carousel-item {
	flex: 0 0 auto;
	scroll-snap-align: start;
	height: clamp(280px, 40vw, 480px);
	margin: 0;
}

.tjc-carousel-item img {
	height: 100%;
	width: auto;
	display: block;
	object-fit: cover;
	border-radius: 2px;
}

.tjc-carousel-arrow {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: #faf7f2;
	color: #2a2420;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
	transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.tjc-carousel-arrow:hover {
	background: #e0e0e0;
	color: #2a2420;
}

.tjc-carousel-arrow:disabled {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
}

@media (max-width: 600px) {
	.tjc-carousel {
		gap: 6px;
	}

	.tjc-carousel-item {
		height: clamp(220px, 60vw, 320px);
	}

	.tjc-carousel-arrow {
		width: 36px;
		height: 36px;
		font-size: 1.2rem;
	}
}
