.cyg-wrapper {
    width: 100%;
}

.cyg-videos {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Tarjeta estilo moderno */
.cyg-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
}

.cyg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* Imagen */
.cyg-thumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Título */
.cyg-title {
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
}

/* Ajuste para móvil */
@media (max-width: 600px) {
    .cyg-videos {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cyg-title {
        font-size: 15px;
    }
}