/* Faculty Achievements Slideshow Styles */
.slideshow-container {
    position: relative;
    min-height: 200px;
}

.achievement-slide {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
    padding: 1rem;
    height: 100%;
}

.achievement-slide.active-slide {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Modern slide indicators - using Tailwind classes for styling */
.slide-indicator {
    border: none;
    outline: none;
    position: relative;
}

.slide-indicator:focus {
    outline: 2px solid #06194A;
    outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .achievement-slide .flex-col {
        height: auto;
    }
    
    .achievement-slide img {
        height: 200px;
    }
    
    /* Stack content and achievements vertically on mobile */
    .flex.flex-col.lg\\:flex-row {
        flex-direction: column;
    }
    
    /* Adjust slideshow height for mobile */
    .slideshow-container {
        min-height: 300px;
    }
    
    /* Make indicators slightly smaller on mobile */
    .slide-indicator {
        width: 10px;
        height: 10px;
        margin: 1px 0;
    }
    
    /* Position indicators on bottom for mobile */
    #slide-indicators {
        right: auto !important;
        top: auto !important;
        bottom: 10px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        flex-direction: row !important;
        gap: 8px !important;
    }
}
