/* =============================================================
   M36 – Testimonial  |  Sidebar-Label, 2 Zitate, Pfeil rechts
   ============================================================= */

section.m36_testimonial {
	overflow: hidden;
	position: relative;
}

/* ---- Inner (Container) ---- */
.m36_inner {
	position: relative;
	padding: 135px 0 127px;
	background: #f6f6f6;
}

/* ---- Slider Wrap: Slides + Pfeil-Button ---- */
.m36_slider_wrap {
	display: flex;
	align-items: center;
}

.m36_slides {
	flex: 1;
	min-width: 0;
	padding-left: 110px;
	overflow: hidden;
}

.m36_slides .slick-list {
	overflow: visible;
	padding-right: 113px;
}

/* ---- Single Slide ---- */
.m36_slide {
	padding-right: 170px;
	transition: all .4s;
	opacity: .5;
}

.m36_slide.slick-active {
	opacity: 1;
}

/* ---- Quote Header: Box + Anführungszeichen ---- */
.m36_quote_header {
	position: relative;
	height: 92px; /* 66px Box + 26px Überhang " */
	margin-bottom: 6px;
}

.m36_quote_box {
	position: absolute;
	top: 0;
	left: 0;
	width: 66px;
	height: 66px;
	background-color: #fff;
}

.m36_quote_mark {
	position: absolute;
	top: 16px;
	left: 15px;
	font-family: 'Effra', sans-serif;
	font-weight: 500;
	font-size: 80px;
	line-height: 80px;
	color: #40437d;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
}

.m36_quote_mark::before {
	content: '\201C';
}

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

/* ---- Autorenname ---- */
.m36_author_name {
	font-family: 'Effra', sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 25px;
	color: #4d4d4f;
	letter-spacing: 0.85px;
	margin: 0;
}

/* ---- Navigations-Pfeile ---- */
.m36_arrows {
	display: flex;
}

.m36_prev,
.m36_next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 73px;
	height: 73px;
	background-color: #40437d;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: background-color 0.3s;
}

.m36_prev {
	display: none;
	left: -36px;
}

.m36_next {
	right: 40px;
}

.m36_prev:hover,
.m36_next:hover {
	background-color: #fff;
}

.m36_prev svg,
.m36_next svg {
	width: 19px;
	height: auto;
	fill: #fff;
	transition: fill 0.3s;
}

.m36_prev svg {
	transform: rotate(180deg);
}

.m36_prev:hover svg,
.m36_next:hover svg {
	fill: #40437d;
}

/* ---- Sidebar-Label ---- */
section.m36_testimonial .m36_untertitel_container {
	top: 0;
}

section.m36_testimonial.set_margin_top {
	margin-top: 137px;
}

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

@media screen and (max-width: 1599px) {
	.m36_inner {
		padding: 110px 0 90px;
	}
}

@media screen and (max-width: 1399px) {
	.m36_inner {
		padding: 90px 0 80px;
	}
}

@media screen and (max-width: 1199px) {
	/* Sidebar-Label wird horizontal (kein rotate) */
	.m36_inner {
		padding: 60px 0;
	}

	.m36_slide {
		padding-right: 30px;
	}

	.m36_quote_mark {
		font-size: 64px;
		line-height: 64px;
	}

	.m36_quote_header {
		height: 76px;
	}
}

@media screen and (max-width: 991px) {
	.m36_inner {
		padding: 50px 0;
	}

	.m36_slide {
		padding-right: 20px;
	}

	.m36_slide {
		opacity: 0;
	}

	.m36_prev {
		left: 0;
	}

	section.m36_testimonial.set_margin_top {
		margin-top: 75px;
	}
}

@media screen and (max-width: 767px) {
	.m36_inner {
		padding: 40px 0;
	}

	.m36_slide {
		padding-right: 0;
	}

	.m36_quote_mark {
		font-size: 56px;
		line-height: 56px;
	}

	.m36_quote_header {
		height: 68px;
		margin-bottom: 10px;
	}

	.m36_quote_box {
		width: 52px;
		height: 52px;
	}

	.m36_next,
	.m36_prev {
		width: 56px;
		height: 56px;
	}

	.m36_next svg {
		width: 15px;
	}
}

@media screen and (max-width: 575px) {
	.m36_arrows {
		gap: 10px;
		justify-content: flex-end;
		margin-right: 20px;
	}

	.m36_slider_wrap {
		flex-direction: column-reverse;
		align-items: unset;
	}

	.m36_next,
	.m36_prev {
		position: relative;
		left: unset;
		right: unset;
		top: unset;
		transform: unset;
	}

	.m36_slides .slick-list {
		padding-right: 20px;
	}

	.m36_slides.slick-dotted.slick-slider {
		padding-left: 20px;
		margin-bottom: 0;
	}

	section.m36_testimonial.set_margin_top {
		margin-top: 35px;
	}
}