.rp-slider { position: relative; overflow: hidden; }
.rp-slider__track { display: flex; transition: transform 0.5s ease; will-change: transform; }
.rp-slider__item {
    flex: 0 0 calc(100% / 3);
    padding: 0 10px;
    box-sizing: border-box;
}
h3.rp-slider__title {
    font-size: 24px;
    margin: 20px 0 10px;
}
.rp-slider__image {
    display: flex;
    align-items: center;
    max-height: 245px;
    overflow: hidden;
    border-radius: 12px;
}
.rp-slider__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}
.rp-slider__arrows { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
.rp-slider__prev, .rp-slider__next {
    cursor: pointer;
    background: none;
    border: 1.5px solid #ADB5BD;
    font-size: 2rem;
    padding: 2px 16px 8px;
    line-height: 1;
    color: #ADB5BD;
    font-weight: 400;
    border-radius: 2px;
    font-family: "Plus Jakarta Sans", sans-serif;
}