/* Estilos para la galería de videos modernizada */
.videos {
    margin: 20px 0;
}

.videos .titulo {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.video-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.video-item img {
    transition: opacity 0.3s ease;
}

.video-item:hover img {
    opacity: 0.9;
}

.epigrafe {
    font-size: 0.9em;
    color: #666;
    line-height: 1.3;
    word-wrap: break-word;
}

/* Responsive design */
@media (max-width: 768px) {
    .video-item {
        margin: 5px;
    }
    
    .video-item img,
    .video-item > div {
        width: 150px !important;
        height: 112px !important;
    }
    
    .epigrafe {
        max-width: 150px !important;
    }
}