.vts-testimonios {
	opacity: 0;
}

.vts-testimonios.is-ready {
	opacity: 1;
	transition: opacity 0.3s ease;
}

.vts-testimonios__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 32px;
}

.vts-testimonios__heading {
	display: inline-block;
	padding: 4px 0px 4px 10px;
	font-family: "Inter Tight", sans-serif;
	font-size: clamp(17px, 1.65vw + 5.24px, 29px);
	font-weight: 500;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #FFFFFF;
	background-color: #000000;
	margin: 0;
}

.vts-testimonios__nav {
	display: flex;
	gap: 8px;
}

.vts-testimonios__nav .vts-testimonios__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	border-radius: 0;
	background-color: #FFFFFF;
	color: #FF2730;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.vts-testimonios__nav .vts-testimonios__arrow:hover {
	background-color: #000000;
	color: #FFFFFF;
}

/* Oculta flechas si solo hay 1 testimonio */
.vts-testimonios.vts-testimonios--single .vts-testimonios__nav {
	display: none;
}

.vts-testimonios__slides {
	position: relative;
}

.vts-testimonios__slide {
	display: none;
	align-items: center;
	gap: clamp(24px, 4vw, 64px);
}

.vts-testimonios__slide.is-active {
	display: flex;
}

/* --- Columna imagen --- */
.vts-testimonios__image-wrap {
	position: relative;
	flex: 1 1 48%;
	overflow: visible;
}

.vts-testimonios__image-wrap img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 572 / 382;
	object-fit: cover;
}

/* SVG decorativo: escala al ancho de la imagen; overflow visible permite
   que los bloques salgan por la izquierda y por abajo sin cortar */
.vts-testimonios__deco {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	pointer-events: none;
	overflow: visible;
}

.vts-testimonios__deco svg {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

/* --- Columna contenido --- */
.vts-testimonios__content {
	flex: 1 1 52%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	font-family: "Inter Tight", sans-serif;
}

.vts-testimonios__stars {
	display: flex;
	gap: 4px;
	margin-bottom: 16px;
	color: #FF83F7;
}

.vts-testimonios__stars svg {
	width: 22px;
	height: 21px;
}

.vts-testimonios__title {
	font-size: clamp(22px, 2.07vw + 7.24px, 37px);
	font-weight: 400;
	line-height: 1.2;
	color: #000000;
	margin: 0 0 20px;
}

.vts-testimonios__text {
	font-size: clamp(12px, 0.69vw + 7.07px, 17px);
	font-weight: 400;
	line-height: 1.6;
	color: #000000;
	margin-bottom: 16px;
}

.vts-testimonios__text p {
	margin: 0;
}

.vts-testimonios__author {
	font-size: clamp(12px, 0.69vw + 7.07px, 17px);
	font-weight: 700;
	color: #000000;
	margin: 0;
}

@media (max-width: 768px) {
	.vts-testimonios__slide.is-active {
		flex-direction: column;
		align-items: flex-start;
	}

	.vts-testimonios__image-wrap,
	.vts-testimonios__content {
		flex: 1 1 100%;
		width: 100%;
	}

	.vts-testimonios__content {
		padding-top: calc(93 / 692 * 100%);
	}
}
