.tbc-cards-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 12px 0;
}

.tbc-card {
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 14px 18px;
	min-width: 200px;
	max-width: calc(50% - 6px);
	flex: 0 0 calc(50% - 6px);
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.tbc-card-header {
	display: flex;
	align-items: center;
	gap: 10px;
}

.tbc-card-dates {
	font-size: 15px;
}

.tbc-badge {
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
}

.tbc-badge--upcoming {
	background: #f0a500;
}

.tbc-badge--passed {
	background: #aaa;
}

.tbc-badge--active {
	background: #2ecc71;
}

.tbc-card-detail {
	color: #888;
	font-size: 13px;
}