/* About Page Image Carousel - Reduce image sizes only */
.about-page .swiper-width-auto .swiper-slide img {
    max-width: 100%;
    height: auto;
    max-height: 450px; /* Increased from 400px as requested */
    width: auto;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-page .swiper-width-auto .swiper-slide img:hover {
    transform: scale(1.02);
}

/* Responsive sizing for image carousel only */
@media (max-width: 1200px) {
    .about-page .swiper-width-auto .swiper-slide img {
        max-height: 430px;
    }
}

@media (max-width: 992px) {
    .about-page .swiper-width-auto .swiper-slide img {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .about-page .swiper-width-auto .swiper-slide img {
        max-height: 350px;
    }
}

@media (max-width: 576px) {
    .about-page .swiper-width-auto .swiper-slide img {
        max-height: 320px;
    }
}
