/* === Gemeinsame Basis für Swiper-Komponenten === */
.swiper-wrapper {
    box-sizing: border-box;
}

.swiper-slide {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 8px;
}

.swiper-slide img {
    max-height: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: zoom-in;
}

/* === Layout-Swiper Styling === */
.swiper-layout {
    width: 300px;
    margin: auto;
    overflow: hidden;
    position: relative;
    background: #f9f9f9;
}

.swiper-layout .swiper-slide img {
    max-width: 100%;
}

.layout-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.layout-swiper-pagination {
    position: relative;
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: #555;
}


/* === Background-Swiper Styling === */
.swiper-background {
    width: 300px;
    margin: auto;
    overflow: hidden;
    position: relative;
    background: #f9f9f9;
}

.swiper-background .swiper-slide img {
    max-width: 100%;
}

.background-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.background-swiper-pagination {
    position: relative;
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: #555;
}
