.tcc-wrapper {
	display: flex;
	gap: 24px;
	align-items: stretch;
	justify-content: center;
	flex-wrap: wrap;
}

.tcc-card {
	flex: 1 1 280px;
	max-width: 380px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tcc-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

.tcc-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.tcc-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tcc-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 12px;
}

.tcc-headline {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a2e;
}

.tcc-copy {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #555555;
	flex: 1;
}

.tcc-btn {
	display: inline-block;
	margin-top: 8px;
	padding: 12px 24px;
	border-radius: 6px;
	background-color: #4f46e5;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	transition: background-color 0.2s ease, opacity 0.2s ease;
	align-self: flex-start;
}

.tcc-btn:hover {
	opacity: 0.88;
}

@media (max-width: 768px) {
	.tcc-wrapper {
		flex-direction: column;
		align-items: center;
	}

	.tcc-card {
		max-width: 100%;
		width: 100%;
	}
}
