.bloque-opiniones{
    display: flex;
    flex-direction: column;
	row-gap: var(--gap-xl);
    column-gap: var(--gap-m);
    align-items: center;
}

/*Carrusel*/
.bloque-opiniones .carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.bloque-opiniones .carousel {
    display: flex;
    overflow: hidden;
	min-height: 150px;
}
.bloque-opiniones .block-editor-block-list__block .block-list-appender:only-child {
    align-self: center;
    line-height: inherit;
    list-style: none;
    position: absolute;
    right: 0;
    /* left: 0; */
    bottom: 0;
}
.bloque-opiniones .carousel-track {
    display: flex;
	transition: transform 0.5s ease;
	width: 100%;
}
.bloque-opiniones .item {
    box-sizing: border-box;
    padding: 10px;
    flex: 0 0 33.333%; /* 3 items por defecto, 100% / 3 */
}

.bloque-opiniones .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 100;
    background-color: #fff;
    padding: 10px;
}
.bloque-opiniones .left-arrow {
    left: 0;
	font-size: var(--text-xl-size);
	z-index: 1;
	justify-content: flex-start;
	left: 2px;
}
.bloque-opiniones .right-arrow {
    right: 0;
	font-size: var(--text-xl-size);
	z-index: 1;
	justify-content: flex-end;
	right: 2px;
}
.bloque-opiniones .left-arrow, .bloque-opiniones .right-arrow {
	width: 32px;
	height: 32px;
	border-radius: 50px;
	box-shadow: 0px 0px 6px 0px #0000001A;
	background: #FFFFFF;
	display: flex;
    align-items: center;
}
.bloque-opiniones .left-arrow svg, .bloque-opiniones .right-arrow svg {
	height: 14px;
	padding-right: 1px;
	padding-left: 1px;
}

@media (max-width: 950px) {
    .bloque-opiniones .item {
        flex: 0 0 50%; /* 2 items en tablet, 100% / 2 */
    }
}
@media (max-width: 750px) {
    .bloque-opiniones .item {
        flex: 0 0 100%; /* 1 item en móvil, 100% / 1 */
    }
	.bloque-opiniones {
		row-gap: var(--gap-l);
	}
}