/* wy_foto_rondell — Vollbild-Fotoslider */

.wy-rondell-header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    pointer-events: none;
}

.wy-rondell-header .wy-overline {
    color: var(--wy-color-white);
}

.wy-rondell-header .wy-h2 {
    color: var(--wy-color-white);
}

.wy-foto-rondell {
    /* Aus Astra-Container rausbrechen */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    width: 100vw;
    overflow: hidden;
    background: #0a0a0a;
    /* Seitenverhältnis: 16:9 Desktop, quadratisch Mobile */
    aspect-ratio: 16 / 7;
}

@media (max-width: 768px) {
    .wy-foto-rondell {
        aspect-ratio: 4 / 3;
    }
}

/* Track */
.wy-rondell-track {
    display: flex;
    width: 100vw !important; /* muss exakt dem Rondell entsprechen, nicht dem Astra-Container */
    max-width: 100vw !important;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Slides */
.wy-rondell-slide {
    min-width: 100vw;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    flex-shrink: 0;
}

.wy-rondell-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--wy-rondell-position, center);
    display: block;
}

/* Prev / Next Buttons */
.wy-rondell-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    padding: 0.5rem 0.9rem;
    border-radius: 50%;
    transition: background 0.2s;
    z-index: 10;
}

.wy-rondell-btn:hover {
    background: rgba(0, 0, 0, 0.65);
}

.wy-rondell-prev { left: 1rem; }
.wy-rondell-next { right: 1rem; }

@media (max-width: 768px) {
    .wy-rondell-btn {
        font-size: 1.5rem;
        padding: 0.35rem 0.7rem;
    }
    .wy-rondell-prev { left: 0.5rem; }
    .wy-rondell-next { right: 0.5rem; }
}

/* Dots */
.wy-rondell-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0;
    z-index: 10;
}

.wy-rondell-dot {
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.wy-rondell-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transition: background 0.2s, transform 0.2s;
}

.wy-rondell-dot.active::after {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.3);
}

/* Credit */
.wy-rondell-credit {
    position: absolute;
    bottom: 2.5rem; /* above dots */
    right: 1rem;
    margin: 0;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    z-index: 10;
}

.wy-rondell-credit a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.wy-rondell-credit a:hover {
    color: #fff;
}
