/* Estilos base del carrusel */
.swiper.eventos-carrusel {
	width: 100%;
	padding: 50px 0;
}

.swiper-slide.item-evento {
	width: 400px;
	text-align: center;
}

.swiper-slide.item-evento img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.eventos-carrusel-textos {
	position: relative;
	width: 100%;
	text-align: center;
	margin-top: 20px;
	min-height: 120px;
}

.evento-texto {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80%;
	transition: opacity 0.5s ease;
}

.evento-titulo {
	margin: 0;
}

.evento-titulo a {
	text-decoration: none;
	color: #303030;
	font-size: 30px;
	font-style: italic;
	line-height: 35px;
	display: block;
}

.evento-titulo a:hover {
	color:var(--orange);
}

.evento-excerpt p,
.evento-excerpt a {
	font-size: 18px;
	color: #555; 
	margin-top: 25px;
}

.flechas-container {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	gap: 30px;
}

.swiper-button-prev,
.swiper-button-next {
	position: static; 
	width: auto;
	height: auto;
	background: none; 
	color: #303030;
	font-size: 30px; 
	opacity: 1;
	cursor: pointer;
	transition: color 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	color: #000; 
}

.swiper-button-prev::after,
.swiper-button-next::after {
	font-size: 30px; 
}
