section.m10_contact .m10_content_row {
	--gap: 46px;
	gap: 50px var(--gap);
	align-items: center;
}

section.m10_contact .m10_title_container {
	padding-right: 120px;
}

section.m10_contact .m10_text_container {
	margin-bottom: 57px;
}

section.m10_contact .m10_text_container * {
	color: var(--font_color);
}

/* -----------------------------------------------
   Kontaktdaten
----------------------------------------------- */

section.m10_contact .m10_contact_data {
	display: flex;
	justify-content: space-between;
	gap: 10px 70px;
	margin-bottom: 62px;
}

section.m10_contact .m10_contact_data > div {
	flex: 1;
}

/* Label */
section.m10_contact .m10_contact_data p {
	margin: 0;
	color: var(--font_color);
}

section.m10_contact .m10_contact_data a {
	font-weight: 600;
	transition: color 0.4s;
}

section.m10_contact .m10_contact_data a:hover {
	color: #ec7328;
}

/* -----------------------------------------------
   Adresse & Social
----------------------------------------------- */

section.m10_contact .m10_address_info {
	display: flex;
    justify-content: space-between;
    gap: 30px 70px;
}

section.m10_contact .m10_address_info > div {
	flex: 1;
}

/* Internes Section-Label */
section.m10_contact .m10_section_label {
	color: var(--font_color);
	margin: 0;
}

/* Adresszeilen */
section.m10_contact .m10_adresse p {
	margin: 0;
	color: var(--font_color);
	line-height: 1.2;
}

/* Route-Link — nutzt underlined_link Muster aus dem Theme */
section.m10_contact .m10_route_link {
	text-decoration: underline;
	display: inline-block;
	margin-top: 12px;
	transition: color 0.4s;
}

section.m10_contact .m10_route_link:hover {
	color: #ec7328;
}

/* Social-Label */
section.m10_contact .m10_social_links p {
	
}

section.m10_contact .m10_social_links_inner {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

/* Social-Icons: analog footer .social_icon, aber eckig (kein border-radius) */
section.m10_contact .m10_social_link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border: 1px solid rgb( from var(--font_color) r g b / 0.5 );
	background-color: transparent;
	text-decoration: none;
	transition: background-color 0.4s, border-color 0.4s;
}

section.m10_contact .m10_social_link:hover {
	/* background-color: #ec7328; */
	border-color: var(--font_color);
}

section.m10_contact .m10_social_link svg {
	width: auto;
	height: 28px;
	fill: var(--font_color);
	transition: fill 0.4s;
}

section.m10_contact .m10_social_link:hover svg {
	fill: #ec7328;
}

/* -----------------------------------------------
   Right Column – Form Card
----------------------------------------------- */

/* Weißes Card mit abgefaster oberer rechter Ecke */
section.m10_contact .m10_form_container {
	background-color: #fff;
	padding: 80px 75px 50px;
	height: 100%;
	box-sizing: border-box;
	clip-path: polygon(0% 0%, calc(100% - 74px) 0%, 100% 74px, 100% 100%, 0% 100%);
}

/* -----------------------------------------------
   Map
----------------------------------------------- */

section.m10_contact .m10_map_container {
	margin-top: 70px;
	width: 100%;
	display: inline-block;
	max-width: calc(100% - 80px);
	margin-left: 40px;
}

/* -----------------------------------------------
   Responsive
----------------------------------------------- */
@media screen and (max-width: 1599px) {
	section.m10_contact .m10_title_container {
		padding-right: 0;
	}
}

@media screen and (max-width: 1399px) {
	section.m10_contact .m10_map_container {
		max-width: calc(100% - 40px);
		margin-left: 20px;
	}

	section.m10_contact .m10_form_container {
		padding: 65px 50px 35px;
		clip-path: polygon(0% 0%, calc(100% - 55px) 0%, 100% 55px, 100% 100%, 0% 100%);
	}
}

@media screen and (max-width: 767px) {
	section.m10_contact:has(+ footer) {
		padding-bottom: 0;
	}
	
	section.m10_contact .m10_map_container {
		max-width: 100%;
		margin-left: 0;
	}

	section.m10_contact .wpgmza_map {
		height: 481px !important;
	}
}

@media screen and (max-width: 449px) {
	section.m10_contact .m10_form_container {
		padding: 40px 35px 25px;
		clip-path: polygon(0% 0%, calc(100% - 32px) 0%, 100% 32px, 100% 100%, 0% 100%);
	}

	section.m10_contact .m10_contact_data,
	section.m10_contact .m10_address_info {
		flex-direction: column;
	}

	section.m10_contact .m10_contact_data {
		margin-bottom: 47px;
	}

	section.m10_contact .wpgmza_map {
		height: 381px !important;
	}
}

@media screen and (max-width: 349px) {
	section.m10_contact .m10_form_container {
		padding: 30px 15px 25px;
		clip-path: polygon(0% 0%, calc(100% - 24px) 0%, 100% 24px, 100% 100%, 0% 100%);
	}
}