.mgc-wrapper-1528 {
    position: relative;
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
}

.mgc-swiper-container-1528 {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
}

.mgc-slide-1528 {
    background-position: center;
    background-size: cover;
    width: 60%; /* Adjust width of the center slide */
    max-width: 600px;
    transition: opacity 0.3s ease;
    opacity: 0.4; /* Non-active slides are semi-transparent */
}

.mgc-swiper-container-1528 .swiper-slide-active {
    opacity: 1; /* Center slide is fully visible */
}

.mgc-image-wrapper-1528 {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.mgc-image-wrapper-1528 img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3; /* Maintain a nice aspect ratio */
}

/* Navigation Overrides */
.mgc-nav-prev-1528,
.mgc-nav-next-1528 {
    color: #fff;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.mgc-nav-prev-1528:after,
.mgc-nav-next-1528:after {
    font-size: 20px;
}

.mgc-nav-prev-1528:hover,
.mgc-nav-next-1528:hover {
    background: rgba(255, 107, 0, 0.8); /* Orange accent on hover */
}

@media (max-width: 768px) {
    .mgc-slide-1528 {
        width: 80%;
    }
}