/* Partnerslider Wrapper – Pfeile links/rechts neben dem Slider */
.nht-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}


.nht-slider-wrapper .nht-slider {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    scroll-behavior: smooth;
    display: flex;
    gap: 20px;
         list-style: none;
}

/* Jede Slide: exakt 1/5 der Containerbreite (bei 4 Lücken à 20 px) */
.nht-slider-wrapper .nht-slider > li {
    flex: 0 0 calc((100% - 4 * 20px) / 5);
    display: flex;
    align-items: center;
    justify-content: center;

  
}

.nht-slider-wrapper .nht-slider > li img {
    max-width: 100%;
    height: auto;
    max-height: 115px;
    object-fit: contain;
}

.nht-slider-prev,
.nht-slider-next {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #c0392b;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s;
    border-radius: 50%;
}

.nht-slider-prev:hover,
.nht-slider-next:hover {
    background: #a93226;
}

.nht-slider-prev:focus-visible,
.nht-slider-next:focus-visible {
    outline: 3px solid #c0392b;
    outline-offset: 3px;
}

.nht-slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

.nht-slider-play-pause {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #c0392b;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 0.65rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s;
}

.nht-slider-play-pause:hover {
    background: #a93226;
}

.nht-slider-play-pause:focus-visible {
    outline: 3px solid #c0392b;
    outline-offset: 3px;
}
