/* CSS Base para garantizar el apilamiento sin romper el LCP */
.vsl-cards-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 10vh;
}
.vsl-card {
    position: sticky; 
    top: 15vh; 
    width: 90%;
    max-width: 800px;
    height: 60vh;
    background: rgba(11, 23, 39, 0.9);
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(0, 229, 155, 0.2);
    border-radius: 20px;
    margin-bottom: 50px;
    transform-origin: center top;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
}