.rov-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
	margin-bottom: -36px;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    top: 0;
    left: 100%;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
}

.carousel-slide.attivo {
    left: 0;
    opacity: 1;
}

.title {
    font-weight: bold;
    margin-right: 10px;
	width: 250px;
}

.red {
	padding: 1%;
    background-color: red;
	color: #fff;
}

.program-info {
	padding: 1%;
    color: #000; /* Adatta questo colore secondo il tuo schema */
}

@media (max-width: 480px) {
	.title {
		width: 100%;
		margin-right: 0;
		text-align: center;
	}
	.carousel-slide {
		flex-direction: column;
	}
	.rov-carousel {
		margin-bottom: -18px;
	}
}