.io-documents-carousel {
    overflow: hidden;
    position: relative;
    aspect-ratio: 2/1.5;
}

.io-documents-carousel .item {
    opacity: 0;
    position: absolute;
    border-right: 1px solid white;
    scroll-snap-align: center;
    text-align: center;
    overflow: hidden;
    width: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 0);
    display: block;
    aspect-ratio: 1/1.4142;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.io-documents-carousel .item h6 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 46px 24px 24px 24px;
    margin: 0;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 46%, rgba(0, 0, 0, 0.0) 100%);

}

.io-documents-carousel .item h6 a {
    color: white;
    text-decoration: none;
}

.io-documents-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
}

.io-documents-carousel .item.active {
    opacity: 1;
    left: 50%;
    transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
    z-index: 6;
    transition: all 0.8s;
}

.io-documents-carousel .item.active:hover {
    transform: translate3d(-50%, -50%, 0) scale3d(1.05, 1.05, 1.05);
}

.io-documents-carousel .item.prev,
.io-documents-carousel .item.next {
    transition-delay: 3000ms;
    opacity: 0.4;
    left: 50%;
    transform: translate3d(-10%, -50%, 0) scale3d(0.8, 0.8, 0.8);
    z-index: 3;
    transition: all 0.8s;
}

.io-documents-carousel .item.prev {
    transform: translate3d(-90%, -50%, 0) scale3d(0.8, 0.8, 0.8);
}

.io-documents-carousel .item.prev:hover {
    transform: translate3d(-90%, -50%, 0) scale3d(0.85, 0.85, 0.85);
}

.io-documents-carousel .item.next {
    transform: translate3d(-10%, -50%, 0) scale3d(0.8, 0.8, 0.8);
}

.io-documents-carousel .item.next:hover {
    transform: translate3d(-10%, -50%, 0) scale3d(0.85, 0.85, 0.85);
}


.io-documents-carousel ::after {
    content: " ";
    clear: both;
}

.io-documents-carousel .ctls {
    position: absolute;
    display: flex;
    left: 0;
    right: 0;
    top: 50%;
}

.io-documents-carousel .ctls button {
    background-color: var(--wp--preset--color--primary);
    border: none;
    color: white;
    border-radius: 40px;
    width: 46px;
    height: 46px;
    line-height: 40px;
}

.io-documents-carousel .ctls button:hover {
    opacity: 0.90;
}

.io-documents-carousel .ctls button:active {
    transform: scale3d(0.96, 0.96, 0.96)
}

.io-documents-carousel .ctls button.next {
    margin-left: auto;
}

.io-documents-list h6 .fresh {
    background-color: #DFE6ED;
    color: var(--wp--preset--color--primary);
    border-radius: 10px;
    padding: 4px 8px;
    font-size: 8pt;
    margin-left: 8px;
    display: inline-block;

}