.csp-youtube-reels{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.csp-yreels-content {
    display: flex;
    width: 1600px;
    justify-content: center;
    text-align: center;
}

.csp-reel{
    width: 365px; /* largura do card vertical */
    height: 725px;
    flex: 0 0 auto;
    border: 1px solid #ddd;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.csp-reel iframe{
    width: 100%;
    aspect-ratio: 9 / 16; /* formato vertical tipo Shorts */
}

.csp-reel h4{
    font-size: 14px;
    text-align: center;
    margin: 5px 0;
}

/* Responsivo */
@media (max-width: 768px){
    .csp-reel{
        width: 45%;
    }
}

@media (max-width: 480px){
    .csp-reel{
        width: 90%;
    }
}
