/**
 * Film Dreams - estilos personalizados del sitio.
 */

/* Slider Testimonials: foto + nombre en fila, texto ancho completo debajo */
.section-testimonials.text-left .figure-testimonial.container {
	width: 100%;
	max-width: 100%;
}

.section-testimonials.text-left .figure-testimonial > .row {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-areas:
		"avatar author"
		"text text";
	align-items: center;
	column-gap: 1rem;
	row-gap: 0;
}

.section-testimonials.text-left .figure-testimonial > .row > .col-lg-auto {
	grid-area: avatar;
	width: auto !important;
	max-width: none;
	flex: unset;
	margin-bottom: 0;
	order: unset;
}

.section-testimonials.text-left .figure-testimonial > .row > .col {
	display: contents;
}

.section-testimonials.text-left .slider-testimonials__text {
	display: contents;
}

.section-testimonials.text-left .figure-testimonial__avatar {
	display: block;
	margin: 0;
	width: 173px !important;
	max-width: 58%;
}

.section-testimonials.text-left .figure-testimonial__author {
	grid-area: author;
	margin-top: 0 !important;
	align-self: center;
}

.section-testimonials.text-left .figure-testimonial__text {
	grid-area: text;
	width: 100%;
	max-width: 100%;
	margin-top: 1rem;
	font-size: calc(1em - 2px);
	line-height: 1.65;
}

.section-testimonials.text-left .figure-testimonial__sign {
	grid-column: 1 / -1;
	margin-bottom: 0.75rem;
}

@media screen and (max-width: 991px) {
	.section-testimonials.text-left .figure-testimonial {
		text-align: left;
	}

	.section-testimonials.text-left .figure-testimonial > .row {
		column-gap: 0.75rem;
	}

	.section-testimonials.text-left .figure-testimonial__avatar {
		width: 144px !important;
	}
}

/* Language switcher: a la izquierda del burger */
.header__col-lang-switcher {
	margin-left: auto;
	margin-right: 0.75rem;
	display: flex;
	align-items: center;
}

.header .lang-switcher {
	line-height: 1;
}

.header .lang-switcher ul {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.header .lang-switcher li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.header .lang-switcher a {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	opacity: 0.85;
	transition: opacity 0.2s ease;
}

.header .lang-switcher a:hover {
	opacity: 1;
}

@media screen and (max-width: 991px) {
	.header__col-lang-switcher {
		margin-right: 0.5rem;
	}
}
