.isc-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Main Display */
.isc-display {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.isc-display img {
    width: 100%;
    height: 100%;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.isc-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 14px;
    text-align: center;
}

/* Carousel */
.isc-carousel {
    position: relative;
    width: 100%;
}

.isc-carousel .swiper-slide {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.isc-carousel .swiper-slide:hover {
    transform: scale(1.05);
}

.isc-carousel .swiper-slide img {
    width: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}

.isc-carousel .swiper-slide-active img {
    opacity: 1 !important;
}

/* Arrows */
.isc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    line-height: 1;
    user-select: none;
}

.isc-arrow:hover {
    opacity: 0.85;
    transform: translateY(-50%) scale(1.1);
}

.isc-prev { left: 6px; }
.isc-next { right: 6px; }

/* Pagination */
.isc-carousel .swiper-pagination {
    position: relative;
    margin-top: 8px;
}
