.zc-20c00154-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* Default height overridden by elementor controls if set */
    height: 500px;
}

.zc-20c00154-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    text-decoration: none; /* In case it becomes a link */
    color: inherit;
}

.zc-20c00154-slide.is-active {
    opacity: 1;
    z-index: 2;
}

.zc-20c00154-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    /* Transition slightly longer than standard autoplay speed to ensure smooth zoom */
    transition: transform 7s linear;
    z-index: -1;
}

.zc-20c00154-slide.is-active .zc-20c00154-bg {
    transform: scale(1.15);
}

.zc-20c00154-images {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 100%;
    gap: 20px;
}

.zc-20c00154-img-box {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.zc-20c00154-img-box img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
}

/* Arrows */
.zc-20c00154-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.3);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.zc-20c00154-arrow:hover {
    background: rgba(0,0,0,0.6);
}

.zc-20c00154-arrow svg {
    width: 40px;
    height: 40px;
    fill: #fff;
    transition: fill 0.3s ease;
}

.zc-20c00154-arrow-prev {
    left: 20px;
}

.zc-20c00154-arrow-next {
    right: 20px;
}