/* =============================================================
   M35 – Zuhause  |  Weißer Hintergrund, Text links, 2 Bilder rechts
   ============================================================= */

section.m35_zuhause {
	background-color: #fff;
	overflow: hidden;
	position: relative;
}

/* ---- Inner row ---- */
.m35_inner {
	display: flex;
	align-items: flex-start;
	gap: 110px;
}

/* ---- Text column ---- */
.m35_text_col {
	flex: 0 0 calc(50% - 110px);
	width: calc(50% - 110px);
	padding-top: 61px;
}

/* Untertitel-Label (rotiert, via mM_title_container) */
.m35_zuhause .m35_untertitel_container {
	top: 190px;
}

/* Title injected via mM_title_container – Farbe ist Standard #4d4d4f */

.m35_text_inner {
	margin-top: 40px;
}

.m35_text_inner p {
	font-family: 'Effra', sans-serif;
	font-size: 17px;
	font-weight: 400;
	line-height: 25px;
	letter-spacing: 0.85px;
	color: #4d4d4f;
	margin: 0 0 25px 0;
}

.m35_text_inner p:last-child {
	margin-bottom: 0;
}

/* ---- Link ---- */
.m35_link_container {
	margin-top: 108px;
}

.m35_link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: 'Effra', sans-serif;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 3.4px;
	text-transform: uppercase;
	color: #40437d;
	text-decoration: none;
	transition: gap 0.2s ease;
}

.m35_link:hover {
	gap: 18px;
}

.m35_link_arrow {
	display: inline-block;
	width: 21px;
	height: 7px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 7'%3E%3Cpath d='M0 3.5h18M15 0l6 3.5-6 3.5' stroke='%2340437d' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	flex-shrink: 0;
}

/* ---- Images column ---- */

/*
 * Proportionen aus Figma (1920px-Seite):
 * Spaltenbreite: 630px
 * Spalte Gesamthöhe: 646px (= 578px Großbild + 68px Überhang Kleinbild)
 *
 * Großbild (bild_item_1): 519×578px → 82.4% × 89.5%
 *   Position: oben rechts
 * Kleinbild (bild_item_2): 371×247px → 58.9% × 38.2%
 *   Position: 61.8% von oben (399/646), links
 */

/*
 * Spalte: 630×646px Proportionen.
 * Großbild belegt calc(100% - 110px) × calc(100% - 68px) → oben rechts.
 * Kleinbild belegt unten links und überlappt das Großbild.
 */
.m35_bilder_col {
	flex: 0 0 50%;
	width: 50%;
	position: relative;
	aspect-ratio: 630 / 646;
	flex-shrink: 0;
}

.m35_bild_item {
	position: absolute;
	overflow: hidden;
}

/* Großbild: oben rechts, lässt 110px links und 68px unten frei */
.m35_bild_item_1 {
	top: 0;
	right: 0;
	width: calc(100% - 110px);
	height: calc(100% - 68px);
}

/* Kleinbild: unten links, überlappt Großbild */
.m35_bild_item_2 {
	bottom: 0;
	left: 0;
	width: 58.9%;  /* 371 / 630 */
	height: 38.2%; /* 247 / 646 */
}

.m35_image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ============================================================
   Responsive
   ============================================================ */

@media screen and (max-width: 1599px) {
	.m35_link_container {
		margin-top: 58px;
	}
}

@media screen and (max-width: 1200px) {
	.m35_inner {
		gap: 60px;
	}
}

@media screen and (max-width: 991px) {
	.m35_inner {
		flex-direction: column;
		gap: 30px;
	}

	.m35_text_col {
		flex: none;
		width: 100%;
		padding-top: 0;
	}

	.m35_bilder_col {
		flex: none;
		width: 100%;
		aspect-ratio: 630 / 646;
	}

	.m35_link_container {
    	margin-top: 0;
  	}
}

@media screen and (max-width: 767px) {
	/* .m35_bilder_col {
		aspect-ratio: 4 / 5;
	} */

	.m35_bild_item_1 {
  		width: calc(100% - 30px);
  		height: calc(100% - 30px);
	}

	.m35_zuhause .m35_titel {
		font-size: 32px;
	}
}
