.cs-989afd3f-wrapper {
    position: relative;
    width: 100%;
}
.cs-989afd3f-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 20px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    padding-bottom: 10px;
}
.cs-989afd3f-track::-webkit-scrollbar {
    display: none;
}
.cs-989afd3f-card {
    flex: 0 0 calc(25% - 15px);
    scroll-snap-align: start;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1024px) {
    .cs-989afd3f-card {
        flex: 0 0 calc(50% - 10px);
    }
}
@media (max-width: 767px) {
    .cs-989afd3f-card {
        flex: 0 0 100%;
    }
}
.cs-989afd3f-img-wrap {
    position: relative;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    background: #f0f0f0;
}
.cs-989afd3f-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.cs-989afd3f-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5); /* weißer kreis mit transparenz 50 */
    border: 1px solid #ffffff; /* outlinie 1 px weiß ohne transparenz */
    color: #ffffff; /* zentriertes i in weiß ohne transparenz */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    z-index: 2;
    font-style: normal; /* Force non-italic */
    font-family: inherit; /* Inherit font family or set specifically */
    font-weight: 500; /* Add slight weight for better visibility if desired */
    font-size: 18px; /* Adjust size to fit visually like the icon */
    line-height: 1;
}
.cs-989afd3f-icon:hover {
    transform: scale(1.1);
}
.cs-989afd3f-title {
    text-align: center;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
.cs-989afd3f-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.cs-989afd3f-arrow {
    cursor: pointer;
    transition: opacity 0.3s;
    height: 30px; /* Fixed height by default, adjustable via controls */
    width: auto;
    display: block;
}
.cs-989afd3f-arrow:hover {
    opacity: 0.7;
}
svg.cs-989afd3f-arrow {
    fill: #333;
}