/* Drop Testimonial Slider */

.drop-testimonial-slider {
	box-sizing: border-box;
	width: 100%;
}

/* ── Äußerer Swiper ── */

.dts-outer-swiper {
	width: 100%;
	overflow: hidden;
}

/* ── Slide-Layout (flex-direction via Elementor responsive selector) ── */

.dts-slide {
	display: flex;
	align-items: stretch;
	box-sizing: border-box;
	width: 100%;
	flex-direction: row; /* Fallback; Elementor überschreibt per responsive control */
}

/* ── Testimonial-Seite ── */

.dts-testimonial-side {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 0 0 40%;
	max-width: 40%;
	padding-right: 40px;
	box-sizing: border-box;
}

/* Wenn Layout column oder column-reverse: volle Breite */
.dts-slide[style*="column"] .dts-testimonial-side {
	flex: none;
	max-width: 100%;
	padding-right: 0;
	padding-bottom: 24px;
}

/* Wenn reversed (row-reverse): Padding wechseln */
.dts-slide[style*="row-reverse"] .dts-testimonial-side {
	padding-right: 0;
	padding-left: 40px;
}

/* Quote + (Text + Name) als Flex-Container */
.dts-text-block {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: flex-start;
}

.dts-quote {
	display: block;
	font-size: 60px;
	line-height: 0.8;
	color: #b5a898;
	font-family: Georgia, serif;
	flex-shrink: 0;
}

/* Text + Name immer als Spalte — fluchtgerecht unter dem Text */
.dts-text-name {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

.dts-text {
	font-size: 1rem;
	line-height: 1.65;
	margin: 0 0 16px;
	color: #3d3530;
}

.dts-bottom-row {
	display: flex;
	flex-direction: column;
	margin-top: 0;
	gap: 8px;
}

.dts-name {
	display: block;
	font-size: 0.9rem;
	color: #3d3530;
	letter-spacing: 0.02em;
}

/* ── Navigation ── */

.dts-nav {
	--dts-nav-arrows: flex;
	--dts-nav-dots: flex;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
	flex-shrink: 0;
}

.dts-prev,
.dts-next {
	all: unset;
	display: var(--dts-nav-arrows, flex) !important;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	background: none !important;
	background-color: transparent !important;
	background-image: none !important;
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
	width: auto !important;
	height: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	font-size: 18px !important;
	line-height: 1 !important;
	color: #3d3530 !important;
	cursor: pointer;
	flex-shrink: 0;
	transition: opacity 0.2s ease;
	text-transform: none !important;
	letter-spacing: normal !important;
	font-weight: normal !important;
}

.dts-prev:hover,
.dts-next:hover {
	opacity: 0.5;
	background: none !important;
	background-color: transparent !important;
}

.dts-dots {
	display: var(--dts-nav-dots, flex);
	gap: 8px;
	align-items: center;
}

.dts-dot {
	all: unset;
	display: inline-block;
	box-sizing: border-box;
	width: 10px !important;
	height: 10px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	border-radius: 50% !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	margin: 0 !important;
	background-color: #c8b9ae !important;
	background-image: none !important;
	cursor: pointer;
	flex-shrink: 0;
	transition: background-color 0.25s ease;
	text-indent: -9999px;
	overflow: hidden;
}

.dts-dot.active {
	background-color: #3d3530 !important;
}

/* ── Foto-Seite ── */

.dts-photo-side {
	flex: 1;
	min-width: 0;
	position: relative;
}

.dts-swiper {
	width: 100%;
	position: relative;
}

.dts-swiper .swiper-wrapper {
	display: flex;
	align-items: stretch;
}

.dts-swiper .swiper-slide {
	flex-shrink: 0;
}

.dts-swiper .swiper-slide img {
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
}

/* Foto-Pfeile */
.dts-photo-side .swiper-button-prev,
.dts-photo-side .swiper-button-next {
	background-color: rgba(0, 0, 0, 0.4);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	margin-top: 0;
}

.dts-photo-side .swiper-button-prev::after,
.dts-photo-side .swiper-button-next::after {
	font-size: 14px;
	color: #fff;
}

/* ── Responsive Fallback (wenn kein Elementor-Wert gesetzt) ── */

@media (max-width: 767px) {
	.dts-testimonial-side {
		padding-right: 0 !important;
		padding-left: 0 !important;
	}

	.dts-bottom-row {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}
