.rs-1481-container {
    position: relative;
    padding-bottom: 60px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.rs-1481-container.is-continuous {
    padding-bottom: 20px;
}

.rs-1481-swiper {
    overflow: hidden;
    padding: 20px 0;
}

.rs-1481-slide {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Remove background, let it blend */
}

.rs-1481-stars {
    margin-bottom: 15px;
}

.rs-1481-star {
    font-size: 18px;
    margin: 0 2px;
}

.rs-1481-content {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    flex-grow: 1;
}

.rs-1481-author {
    font-weight: bold;
    font-size: 14px;
}

.rs-1481-navigation {
    position: absolute;
    bottom: 0;
    right: max(20px, calc(50vw - 600px)); /* Keep nav within container bounds roughly */
    display: flex;
    gap: 15px;
}

.rs-1481-button-prev,
.rs-1481-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e5e5e5;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.rs-1481-button-prev:hover,
.rs-1481-button-next:hover {
    background-color: #d5d5d5;
}