.tc-section {
	max-width: 1140px;
	margin: 0 auto;
	padding: 48px 0;
	box-sizing: border-box;
}

.tc-carousel {
	position: relative;
}

.tc-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding-bottom: 4px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.tc-track::-webkit-scrollbar {
	display: none;
}

.tc-card {
	flex: 0 0 auto;
	scroll-snap-align: start;
	width: clamp(150px, 24vw, 260px);
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	box-sizing: border-box;
}

.tc-card-image {
	width: 100%;
	aspect-ratio: 4 / 5;
	border-radius: 16px;
	overflow: hidden;
	background: #f2f2f2;
	margin-bottom: 14px;
}

.tc-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.tc-card:hover .tc-card-image img {
	transform: scale(1.04);
}

.tc-card-title {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0 0 4px;
	color: #171717;
}

.tc-card-text {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #6b7280;
	margin: 0;
}

/* Bottom navigation: arrows either side of a progress bar */
.tc-nav {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	margin-top: 28px;
}

.tc-arrow {
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	border: 1px solid #e5e5e5;
	background: #fff;
	color: #171717;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.tc-arrow svg {
	width: 24px;
	height: 24px;
}

.tc-arrow:hover:not([disabled]) {
	background: #a12878;
	border-color: #a12878;
	color: #fff;
}

.tc-arrow[disabled] {
	opacity: 0.3;
	cursor: default;
	pointer-events: none;
}

.tc-progress {
	flex: 0 0 auto;
	width: clamp(150px, 24vw, 260px);
	height: 2px;
	background: #d8d3c8;
	border-radius: 999px;
	overflow: hidden;
}

.tc-progress-fill {
	height: 100%;
	width: 0%;
	background: #a12878;
	border-radius: 999px;
	transition: width 0.3s ease;
}

@media (max-width: 640px) {
	.tc-section {
		padding: 32px 0;
	}

	.tc-track {
		gap: 14px;
	}

	.tc-card {
		width: 42vw;
	}

	.tc-progress {
		width: 140px;
	}
}

@media (max-width: 400px) {
	.tc-card {
		width: 62vw;
	}
}
