.random-image-slideshow {
    --ris-fit: cover;
    --ris-min-height: 165px;
    display: block;
    position: relative;
    align-self: stretch;
    width: 100%;
    height: var(--ris-min-height);
    min-height: var(--ris-min-height);
    overflow: hidden;
    border-radius: 15px;
    background: transparent;
    line-height: 0;
}

.random-image-slideshow--fixed-height {
    height: var(--ris-height) !important;
}

.random-image-slideshow__image {
    display: block;
    position: absolute;
    inset: 0;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    object-fit: var(--ris-fit) !important;
    opacity: 0;
    border-radius: 15px;
    transition: opacity 700ms ease;
}

.random-image-slideshow__image.is-active {
    opacity: 1;
}

.random-image-slideshow-empty {
    padding: 12px;
    border: 1px solid #dcdcde;
    background: #fff;
    color: #1d2327;
}
