/* Bewusst schlicht: erbt Schrift und Farben vom Theme. */
.tatc-posts { margin: 1.25em 0 2em; }
.tatc-cards {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tatc-cols-1 { grid-template-columns: minmax(0, 1fr); }
.tatc-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tatc-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tatc-card { margin: 0; padding: 0; list-style: none; }
.tatc-card a { display: block; color: inherit; text-decoration: none; }
.tatc-card__img { display: block; }
.tatc-card__img img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: 4px;
}
.tatc-card__title {
	display: block;
	margin-top: 0.5em;
	font-size: 1rem;
	line-height: 1.3;
	font-weight: 600;
}
.tatc-card a:hover .tatc-card__title,
.tatc-card a:focus .tatc-card__title { text-decoration: underline; }
.tatc-more { margin: 0.75em 0 0; font-size: 0.95em; }
.tatc-notice { padding: 0.5em 0.75em; background: #fff8e1; border: 1px solid #f0c36d; font-size: 0.9em; }
.tatc-hub-intro { margin-bottom: 1.5em; }
.tatc-hub-intro .tatc-kurz { padding-left: 1em; border-left: 3px solid currentColor; }
.tatc-hub-intro .tatc-stand { font-size: 0.85em; opacity: 0.75; }
@media (max-width: 900px) { .tatc-cols-3, .tatc-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .tatc-cards { grid-template-columns: minmax(0, 1fr); } }
