/* Contenedor principal de la sección */
.cnt-shorts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px; /* Espacio uniforme entre tarjetas */
    padding: 40px 15px;
    background-color: #1E1E21; /* Fondo ligero para resaltar las tarjetas */
    /*border: solid 4px #000;*/
}

/* Tarjeta individual */
.shorts {
    background: #FFFFFF;
    width: 100%;
    max-width: 300px; /* Ancho máximo para evitar que se vea muy ancho */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.shorts:hover {
    transform: translateY(-8px);
    box-shadow: 0px 15px 30px rgba(0,0,0,0.15);
}

/* Contenedor del Video - Altura Controlada */
.card-image {
    width: 100%;
    height: 450px; /* Altura optimizada para Shorts */
    background: #000;
}

.card-image iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Título de la tarjeta */
.shorts .tt-shorts h2 {
    background: #eef3f6;
    margin: 0;
    padding: 18px 10px;
    font-size: 1.15rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 600;
    border-top: 1px solid #e0e0e0;
}

/* Responsive: Ajustes para tablets y móviles */
@media (max-width: 768px) {
    .cnt-shorts {
        gap: 20px;
    }
    .card-image {
        height: 420px; /* Un poco más pequeño en móviles */
    }
}