/* Contenedor principal */
.spotlight-display-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    width: 100%;
}

/* Slide Principal */
.spotlight-main-slider {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid #ddd;
}

.spotlight-swiper-container {
    width: 100%;
    height: 100%;
}

/* Spots Laterales */
.spotlight-side-spots {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spotlight-static-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 8.5; /* Ajuste para que los dos sumen la altura del grande */
    border: 1px solid #ddd;
}

.spotlight-display-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Modal / Pop-up */
.spotlight-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.spotlight-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    position: relative;
    text-align: center;
}

.spotlight-close {
    position: absolute;
    top: 10px; right: 15px;
    font-size: 24px;
    cursor: pointer;
}