.contenido__section h5.title__events__forums {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #621132;
    text-align: center;
}

.list__events__forums {
    display: flex;
    justify-content: flex-start;
    list-style: none;
    flex-wrap: wrap;
}

.events__forums__item {
    max-width: 32%;
    width: 32%;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
    transform: scale(1, 1);
    transition: all linear 0.25s;
    position: relative;
    text-decoration: none;
}

.events__forums__item a {
    padding: 2rem 2rem 2rem 3rem;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: #621132;
    font-weight: 500;
}

.list__events__forums .events__forums__item:nth-of-type(3n + 2) {
    margin-left: 2%;
    margin-right: 2%;
}

.events__forums__item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 3rem;
    background-image: url('../img/icon__calendar.svg');
    background-repeat: no-repeat;
    background-size: 24px auto;
    background-position: 0.5rem center;
}

.events__forums__item:hover {
    transform: scale(1.05, 1.05);
    transition: transform 0.3s ease-in-out;
}

.events__forums__item:hover a {
    text-decoration: none;
}

.contenido__section h5.subtitle__events__forums {
    font-size: 2rem;
    font-style: italic;
    text-align: left;
    width: 100%;
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
    color: #621132;
}

/* galeria */
.contenido__section .titulo-foro {
    font-size: 2em;
}

.mosaico-galeria {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    /* más espacio entre imágenes */
    margin: 60px auto 0 auto;
    /* más espacio arriba */
    max-width: 900px;
    /* más ancho */
    justify-content: center;
}

.mosaico-galeria .mosaico-img {
    flex: 0 0 calc(50% - 12px);
    box-sizing: border-box;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mosaico-galeria .mosaico-img img {
    width: 100%;
    max-width: 100%;
    max-height: 300px;
    object-fit: cover;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.en-vivo-titulo {
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 1.5em;
    color: #621132;
    text-align: center;
    letter-spacing: 1px;
}


.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.inner__video__foros{
    max-width: 800px;
    margin-left: auto;  
    margin-right: auto;
}



@media screen and (max-width: 767px) {
    .contenido__section h5.title__events__forums{
        font-size: 2rem;
    }
    .contenido__section h5.subtitle__events__forums{
        font-size: 1.25rem;
    }

    .events__forums__item{
        max-width: 100%;
        width: 100%;
    }
    .list__events__forums .events__forums__item:nth-of-type(3n + 2){
        margin-left: 0;
        margin-right: 0;
    }
}