/* ===== EINLEITUNG (optional, wenn vorhanden) ===== */
.uebersicht-einleitung {
	font-family: 'Montserrat', sans-serif;
	padding: 3rem 1rem 2rem;
	text-align: center;
	color: #2d2c80;
}

.uebersicht-einleitung__headline {
	font-size: 2rem;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0 0 1rem;
}

.uebersicht-einleitung__text {
	font-size: 1.1rem;
	font-weight: 400;
	max-width: 960px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ===== GRID DER TEASERKACHELN ===== */
.unterseiten-teaser {
	padding: 2rem 1rem 4rem;
	background-color: #fff;
}

.unterseiten-teaser__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 10px;
	max-width: 960px;
	margin: 0 auto;
}


/* ===== EINZELKACHEL ===== */
.unterseiten-teaser__item {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	color: #2d2c80;
	text-align: left;
}

/* ===== BILD ===== */
.unterseiten-teaser__img {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

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

/* ===== TEXTBEREICH ===== */
.unterseiten-teaser__content {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1rem 0 0;
	box-sizing: border-box;
}

.unterseiten-teaser__content h3 {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
}

.unterseiten-teaser__content p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* ===== BUTTON ===== */
.unterseiten-teaser__button {
	margin-top: 1rem;
}

.unterseiten-teaser__button a {
	display: inline-block;
	padding: 0.5rem 1.25rem;
	border: 1px solid #2d2c80;
	color: #2d2c80;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	border-radius: 0;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.unterseiten-teaser__button a:hover {
	background-color: #2d2c80;
	color: #fff;
}

	.unterseiten-teaser__item {
		margin-bottom: 2.5rem;
	}

@media (max-width: 985px) {

}
