.simple-circular-gallery-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
    background: transparent;
    border-radius: 16px;
}

.simple-circular-gallery-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
    will-change: transform;
}

.simple-circular-gallery-item {
    flex-shrink: 0;
    width: 400px;
    height: 400px;
    margin: 0 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.simple-circular-gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.simple-circular-gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0;
}

.simple-circular-gallery-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-align: center;
    padding: 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Deskripsi dihapus - hanya title */

/* Scroll indicators */
.simple-circular-gallery-scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.simple-circular-gallery-scroll-indicator:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.simple-circular-gallery-scroll-indicator.left {
    left: 10px;
}

.simple-circular-gallery-scroll-indicator.right {
    right: 10px;
}

.simple-circular-gallery-scroll-indicator svg {
    width: 20px;
    height: 20px;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .simple-circular-gallery-container {
        height: 400px;
    }

    .simple-circular-gallery-item {
        width: 300px;
        height: 300px;
        margin: 0 15px;
    }

    .simple-circular-gallery-item img {
        height: 200px;
    }

    .simple-circular-gallery-item h3 {
        font-size: 18px;
    }
}
