/* Schieber4 — Dark Icon Cards mit Dots */

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

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

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

/* ── Icon Box ───────────────────────────────────────────── */
.s1-icon-box {
    width: 140px;
    height: 140px;
    background-color: #3a3d3f !important;
    box-shadow: 5px 7px 18px rgba(0,0,0,0.50) !important;
    border: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
    padding: 10px 8px 12px;
    text-decoration: none !important;
    cursor: default;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

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

.s1-icon-box img {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64%;
    height: 52%;
    object-fit: contain;
    display: block;
}

.s1-icon-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffffff !important;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.3;
    display: block;
    position: relative;
    z-index: 1;
}

/* ── Center (größer, hervorgehoben) ─────────────────────── */
.s1-center .s1-icon-box {
    width: 190px !important;
    height: 190px !important;
    box-shadow: 6px 9px 24px rgba(0,0,0,0.60) !important;
}

/* ── Dots unter dem mittleren Icon ──────────────────────── */
.s1-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.s1-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #999;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.s1-dot.s1-dot-active {
    background-color: #A91B1B;
}

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

.s1-icon-wrap .s1-icon-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    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%);
}
