.rss-slideshow {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.rss-slideshow .slide {
    text-align: center;
    padding: 5px;
}

.rss-slideshow .slide img {
    max-width: 100%;
    height: auto;
}

.rss-slideshow h3 {
    margin: 5px 0;
    font-size: 16px;
}

/* Style for the bottom-right clickable title link */
.rss-slideshow-widget-title {
    position: relative;
    bottom: 5px;
    right: 10px;
    padding: 0;
    border-radius: 5px;
    z-index: 10;
    text-align: center;
}

.rss-slideshow-widget-title a {
    color: #15cd72;
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
}

.rss-slideshow-widget-title a:hover {
    text-decoration: underline;
}

.rss-slide {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.rss-discount-sticker {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff0000;
    opacity: .7;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: 900;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 5;
}

.rss-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4;
}

@supports not (aspect-ratio: 3/4) {
    .rss-slide img {
        min-height: 200px;
    }
}

.rss-slide-title {
    padding: 5px;
    text-align: center;
    font-weight: 500;
}

/* Critical: Force Slick to clip hidden slides within the sidebar */
.rss-slideshow .slick-list {
    overflow: hidden !important;
    width: 100% !important;
}

.rss-slideshow .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.rss-slideshow .slick-slide {
    height: auto;
    float: left;
    min-height: 1px;
}