/* About Page Styles */

.about-slideshow {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg-secondary, #f5f5f5);
}

.about-slideshow .slideshow-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-slideshow .slideshow-image.active {
    opacity: 1;
}

/* Ensure the container has proper dimensions */
.about-image.about-slideshow {
    min-height: 300px;
    aspect-ratio: 4/3;
}

@media (max-width: 768px) {
    .about-image.about-slideshow {
        min-height: 200px;
        height: auto;
        aspect-ratio: 16/10;
        max-width: 100%;
    }

    .about-image {
        height: auto;
        max-width: 100%;
        aspect-ratio: 16/10;
    }

    .about-grid {
        gap: 30px;
    }
}
