.elementor-2897 .elementor-element.elementor-element-bcb682e{--display:flex;}/* Start custom CSS for html, class: .elementor-element-ead3aa7 */.exhibitions-section {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #f5f7fa, #e6ecf3);
    border-radius: 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #0e03ca;
    margin-bottom: 10px;
}

.section-desc {
    font-size: 1.2rem;
    color: #0e03ca;
    max-width: 800px;
    margin: 0 auto 40px;
}

.exhibition {
    margin-bottom: 50px;
}

.exhibition-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0E03CA;
}

/* desktop slider */
.desktop-slider {
    display: none;
}

.main-image-box {
    width: 800px;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.main-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease;
}

.thumbnails {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.thumbnails img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnails img:hover {
    transform: scale(1.05);
}

/* mobile gallery */
.mobile-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.mobile-gallery img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.mobile-gallery img:hover {
    transform: scale(1.05);
}

/* responsive */
@media (min-width: 992px) {
    .mobile-gallery {
        display: none;
    }
    .desktop-slider {
        display: block;
    }
}/* End custom CSS */