.post-carousel-6 .box-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.post-carousel-6 .post-thumbnail-wrap {
    position: relative;
    overflow: hidden;
    display: flex;
    width: 100%;
    justify-content: center;
}

.post-carousel-6 .box-heading .box-title {
    font-size: 21px;
}

.post-carousel-6 .box-heading .box-buttons a {
    display: flex;
    align-items: center;
    font-size: 21px;
    gap: 10px;
}

.post-carousel-6 .box-heading .box-buttons a svg {
    width: 21px;
}

.post-carousel-6.is-ltr .box-heading .box-buttons a svg {
    transform: rotateY(180deg);
}

.post-carousel-6 .post-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: ease .12s;
}

.post-carousel-6 .post-item:hover img {
    transform: scale(1.2);
}

.post-carousel-6 .post-item .post-title {
    margin-top: 17px;
}

.post-carousel-6 .post-item .post-title h3 {
    font-size: 21px;
    font-weight: 300;
    margin: 0;
}

.post-carousel-6 .post-item .post-details-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 20px;
    transform:translateY(30px);
    transition: ease .2s;
    opacity: 0;
}

.post-carousel-6 .post-item:hover .post-details-wrap {
    transform: translateY(0px);
    opacity: 1;
}

.post-carousel-6 .post-item .post-details {
    background-color: #00000094;
    backdrop-filter: blur(12px);
    padding: 20px;
    color: #fff;
    font-size: 13px;
    border-radius: 20px;
}

.post-carousel-6 .post-item .post-details .post-votes {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px;
    background-color: #4FAB5B45;
    color: #4FAB5B;
    font-size: 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}