.wessel-product-slider {
    padding: 64px 0 72px;
    background: #f5f7fb;
    }

.site .inside-article .wessel-product-slider.alignfull { margin-left: unset !important;
    margin-right: unset !important;

}

.wessel-product-slider__inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Track / Wrapper */
.wps-track-wrapper {
    overflow: hidden;
    margin-bottom: 24px;
}

.wps-track {
    display: flex;
    gap: 24px;
    transition: transform 0.35s ease;
}

/* Slide-Karte */
.wps-slide {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
}

@media (max-width: 1024px) {
    .wps-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 700px) {
    .wps-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.wps-card {
    position: relative;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Externer Link oben rechts */
.wps-card__external {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #bfd635;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #001945;
    text-decoration: none;
    font-size: 16px;
    z-index: 2;
}

.wps-card__external-icon {
    display: inline-block;
}

/* Bild */
.wps-card__image img {
    width: 100%;
    display: block;
}

/* Inhalt */
.wps-card__content {
    padding: 18px 22px 8px;
}

.wps-card__title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px;
    color: #001945;
}

.wps-card__subtitle {
    font-size: 15px;
    margin: 0 0 8px;
    color: #5a667e;
}

/* Shop-Banner unten */
.wps-card__shop {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    background: #001945;
    color: #ffffff;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
}

/* Hover */
.wps-card__shop:hover,
.wps-card__shop:focus {
    background-color: #c6db2f; /* Wesselgrün */
    color: #001945;            /* Wessel Dunkelblau */
}

/* Controls */
.wps-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

/* Pfeile */
.wps-nav {
    padding-top: 5px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    font-size: 23px;
    border: none;
    background: #001945;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.wps-nav--prev {
    background: #001945;
}

.wps-nav--next {
    background: #001945;
}

.wps-nav:hover {
    background: #bfd635;
    color: #001945;
    transform: translateY(-1px);
}

/* Dots */
.wps-dots {
    display: inline-flex;
    gap: 8px;
}

.wps-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: none;
    background: #c4cad5;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.wps-dot.is-active {
    background: #001945;
    transform: scale(1.2);
}

/* wps-card als <a>-Tag: Link-Styles zurücksetzen */
a.wps-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.wps-card:hover .wps-card__external {
    background: #001945;
    color: #ffffff;
}