/* Schieber3 — Nur Bilder, kein Rahmen, kein Schatten */

.s1-wrapper {
    background-color: #e8e8e8;
    padding: 40px 20px;
    box-sizing: border-box;
    width: 100%;
}

.s1-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.s1-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Icon Box — kein Hintergrund, kein Schatten, kein Rahmen ── */
.s1-icon-box {
    width: 140px;
    height: 140px;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0;
    text-decoration: none !important;
    cursor: default;
    position: relative;
    overflow: hidden;
}

a.s1-icon-box {
    cursor: pointer;
}

.s1-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0;
}

.s1-icon-label {
    display: none;
}

/* ── Center (größer) ────────────────────────────────────── */
.s1-center .s1-icon-box {
    width: 170px;
    height: 170px;
}

/* ── Rotation: slide durchlaufen ────────────────────────── */
.s1-icon-wrap {
    position: relative;
    width: 170px;
    height: 170px;
    overflow: hidden;
}

.s1-icon-wrap .s1-icon-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
}

.s1-icon-wrap .s1-icon-box.s1-active {
    transform: translateX(0%);
    pointer-events: auto;
}

.s1-icon-wrap .s1-icon-box.s1-leaving {
    transform: translateX(-100%);
}
