/*INICIO Comunidad video container popup*/

.video-thumbnail {
    text-align: left;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.video-thumbnail img {
    border-radius: 5px;
    width: 100%;
    display: block;
}

/* Estilo del tiempo de duración */
.video-thumbnail .video-duration {
    position: absolute;
    bottom: 3px;
    right: 3px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 0px 4px;
    font-size: 10px;
    border-radius: 3px;
    line-height: 14px;
}

/* Estilos cuando es un video "Próximamente" */
.upcoming-video::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Bloque negro con opacidad */
    z-index: 1;
}

/* Texto perfectamente centrado */
.upcoming-video .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    width: max-content;
    min-width: 150px; /* Asegura que el texto no quede muy comprimido */
	font-family: Montserrat;
}

/*FIN Comunidad video container popup*/