/* ===== ROSA BEREICH – exakt ausgerichtet am Hero-Bereich ===== */
.rosa-bereich {
	font-family: 'Montserrat', system-ui, sans-serif;
	color: #2d2c80;
	margin: 0;
	padding: 0;
	overflow: hidden;
	position: relative; /* für fliese unten */
}

/* Wrapper: 4-Spalten wie Hero */
.rosa-bereich__wrapper {
	display: grid;
	grid-template-columns: minmax(0, 220px) 2fr 1fr minmax(0, 220px);
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	align-items: stretch;
	box-sizing: border-box;
}

/* ==== Fliesen-Bereich mit vertikaler Wiederholung ==== */
.rosa-bereich__fliese {
	/*background-image: url('../img/fliesen-grau-versatz.png');*/
	background-repeat: repeat-y;
	background-position: center top;
	background-size: 100% auto;
	width: 100%;
}

/* Content block (nimmt Spalte 2 bis 3 ein, wie im Hero) */
.rosa-bereich__content {
	grid-column: 2 / 4;
	background-color: #f9c1cd;
	padding: 3rem 2rem;	
	display: flex;
	justify-content: center;
	align-items: flex-start;
	box-sizing: border-box;
	position: relative;
}

/* Inneres Grid: umgekehrtes Verhältnis (Headline schmal, Text breit) */
.rosa-bereich__inner {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 2rem;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

/* Headline */
.rosa-bereich__headline {
	grid-column: 1 / 2;
	align-self: start;
	font-size: 1.8rem;
	font-weight: 600;
	text-transform: uppercase;
	margin: 0;
}

/* Text */
.rosa-bereich__text {
	grid-column: 2 / 3;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
	margin: 0;
}

/* ===== Fliesen wechseln bei schmalerem Viewport (unter 1225px) ===== */
@media (max-width: 1224px) {
	.rosa-bereich__wrapper {
		grid-template-columns: minmax(0, 110px) 2fr 1fr minmax(0, 110px);
	}

	.rosa-bereich__fliese {
		/*background-image: url('../img/fliese_grau.png');*/
	}
}

/* ===== Fliesen komplett ausblenden unter 580px ===== */
@media (max-width: 579px) {
	.rosa-bereich__wrapper {
		grid-template-columns: 0 1fr 1fr 0;
	}

	.rosa-bereich__fliese {
		display: none;
	}
	.rosa-bereich__content {
	padding-bottom: calc(3rem + 49px);
	}
	
	/* Fliese unten hinzufügen */
	.rosa-bereich__content::after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		height: 49px;
		/*background-image: url('../img/fliese-rosa.png');*/
		background-repeat: repeat-x;
		background-size: auto 100%;
		background-position: bottom center;
		pointer-events: none;
	}
}

/* ===== Responsive Inhalt: Headline über Text unter 900px ===== */
@media (max-width: 900px) {
	.rosa-bereich__inner {
		grid-template-columns: 1fr;
	}

	.rosa-bereich__headline,
	.rosa-bereich__text {
		grid-column: auto;
	}

	.rosa-bereich__headline {
		margin-bottom: 1.5rem;
		font-size: 1.4rem;
	}
}
