.post-carousel-3 {
    padding: 10px 0;
    box-shadow: var(--main_soft_shadow);
    border-radius: 5px;
    display: flex;
    background-color: #fff;
}

.post-carousel-3 .owl-item h3 {
    border: none;
    margin: 14px 0;
    min-height: auto;
}

.post-carousel-3 .info_box {
    width: 25%;
    padding: 10px 0;
    position: relative;
}

.post-carousel-3 .item-details {
    padding: 15px;
}

.post-carousel-3 .info_box .title {
    padding: 0 20px;
    font-size: 2rem;
}

.post-carousel-3 .info_box .description {
    position: relative;
    padding: 0 20px 10px;
    margin-top: 10px;
}

.post-carousel-3 .info_box .description::before {
    content: '';
    display: block;
    border-right: 5px solid orange;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.post-carousel-3 .slide_box {
    width: 73%;
}

.post-carousel-3 .slide_box.full-box {
    width: 100%;
}

.post-carousel-3 .slide_box .owl-carousel {
    padding: 30px 0;
}

.post-carousel-3 .slide_box .owl-carousel .owl-next,
.post-carousel-3 .slide_box .owl-carousel .owl-prev {
    cursor: pointer;
}

.post-carousel-3 .slide_box .owl-item {
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #f0f0f0;
}

.post-carousel-3 .slide_box .owl-item:hover {
    box-shadow: none;
}

.post-carousel-3 .owl-nav,
.post-carousel-3 .owl-dots {
    display: none;
}

.post-carousel-3 .owl-dots {
    width: 100%;
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.post-carousel-3 .owl-dots .owl-dot {
    display: inline-block;
    width: 15px;
    height: 15px;
    border: 1px solid #2289FF;
    border-radius: 50px;
    margin: 4px;
    background-color: transparent;
}

.post-carousel-3 .owl-dots .owl-dot.active {
    background-color: #2289FF;
}

.post-carousel-3 .post-metas {
    text-align: center;
    font-size: 15px;
    color: #7e7e7e;
    margin-bottom: 10px;
}

.post-carousel-3 .post-metas i {
    margin: 0 5px;
}

.post-carousel-3 .post-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 15px;
}

.post-carousel-3 .post-btns .post-author img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
}

.post-carousel-3 .post-btns .post-author {
    display: flex;
    align-items: center;
    gap: 7px;
}

.post-carousel-3 .post-btns .read-more-btn {
    color: #2289FF;
}

.post-carousel-3 .item-details .post-excerpt p {
    padding: 0;
}

@media screen and (max-width: 767px) {
    .post-carousel-3 {
        flex-direction: column;
    }

    .post-carousel-3 .info_box,
    .post-carousel-3 .slide_box {
        width: 100%;
    }
}

@media only screen and (min-width:768px) and (max-width: 1000px) {
    .post-carousel-3 .info_box {
        width: 32%;
    }

    .post-carousel-3 .slide_box {
        width: 68%;
    }
}