/* Fix for PDF Preview Section Slideshow */

/* Ensure the PDF preview section slideshow is visible on desktop */
@media (min-width: 768px) {
    /* Force display of PDF preview section slideshow container */
    .pdf-preview-section .preview-slideshow {
        display: block !important;
    }
    
    .pdf-preview-section .slideshow-container {
        display: block !important;
        position: relative !important;
    }
    
    /* Style for preview slide images - DO NOT force display */
    .pdf-preview-section .preview-slide-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* Keep mobile behavior unchanged */
@media (max-width: 767px) {
    /* Hero slideshow hidden on mobile */
    .hero-right .pdf-preview-slideshow {
        display: none !important;
    }
    
    /* But PDF preview section slideshow should be visible */
    .pdf-preview-section .preview-slideshow {
        display: block !important;
    }
    
    .pdf-preview-section .slideshow-container {
        display: block !important;
    }
    
    /* Style for preview slide images - DO NOT force display */
    .pdf-preview-section .preview-slide-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* Fix potential z-index issues */
.pdf-preview-section .slideshow-nav {
    z-index: 10;
}

.pdf-preview-section .slideshow-dots {
    z-index: 10;
}

/* Ensure slide description is visible */
.pdf-preview-section .slide-description {
    z-index: 10;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}