.tae-event-collection {
	margin-top: 2rem;
}

.tae-event-collection-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 0.75rem;
}

.tae-event-collection-card {
	display: grid;
	grid-template-columns: 92px minmax(0, 1fr);
	min-width: 0;
	overflow: hidden;
	border-left: 4px solid var(--tae-collection-card-color, #80b538);
	background: #f5f5f5;
}

.tae-event-collection-card.has-no-image {
	grid-template-columns: minmax(0, 1fr);
}

.tae-event-collection-card-image {
	display: block;
	min-height: 100%;
}

.tae-event-collection-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 125px;
	object-fit: cover;
}

.tae-event-collection-card-content {
	padding: 0.7rem 0.8rem;
}

.tae-event-collection-card h3 {
	margin: 0 0 0.35rem !important;
	min-height: 3.75em;
	font-size: 1.15rem !important;
	line-height: 1.25 !important;
}

.tae-event-collection-card h3 a {
	color: inherit;
	text-decoration: none;
}

.tae-event-collection-card p {
	margin: 0 0 0.22rem;
	font-size: 0.86rem;
	line-height: 1.35;
}

.tae-event-collection-card-date,
.tae-event-collection-card-time {
	font-weight: 700;
}

.tae-event-collection-card-link {
	display: inline-block;
	margin-top: 0.3rem;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
}

@media (max-width: 480px) {
	.tae-event-collection-card h3 {
		min-height: 0;
	}

	.tae-event-collection-card {
		grid-template-columns: 82px minmax(0, 1fr);
	}

	.tae-event-collection-card-image img {
		min-height: 115px;
	}

	.tae-event-collection-card-content {
		padding: 0.65rem;
	}
}
