.cywoc-divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.ltrslide {
    margin-top: 70px;
    direction: ltr;
}

.container.ltrslide {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 70px;
    direction: ltr;
}

.main-page-stories {
    width: auto; /* یا تنظیم عرض دلخواه در صورت نیاز */
}

/* تنظیمات برای موبایل */
@media (max-width: 768px) {
    .container.ltrslide {
        flex-direction: column; /* در صورت نیاز به تغییر چینش برای موبایل */
        align-items: center;
        padding: 0 10px; /* مثال برای تنظیم padding در موبایل */
    }

    .main-page-stories {
        width: 100%; /* مثال برای تنظیم عرض کامل در موبایل */
    }
}
.post-single-gallery .owl-carousel .owl-item {
    /* this code fucked me for 4 hours */
    display: flex;
    justify-content: center;
}

.owl-carousel .item {
    height: 150px;
    width: 150px;;
    border-radius: 50%; /* دایره‌ای کردن تصاویر */
    overflow: hidden;
    border: 2px solid #ee5060; /* اضافه کردن حاشیه طلایی */
    background-color: #ffffff !important;
    /*padding: 30px;*/
    /*border-radius: 30px !important;*/
    /*margin-bottom: 60px;*/
    display: block;
    position: relative;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
}

.carousel-wrap {
    margin-top: 100px;
    text-align: center;
}


.owl-nav > button {
    margin-top: -26px;
    position: absolute;
    top: 50%;
    color: #cdcbcd;
    z-index: 120;
}

.owl-nav i {
    font-size: 52px;
}

.owl-nav .owl-prev {
    left: 30px;
    /*margin-right: 30px;*/
}

.owl-nav .owl-next {
    right: 30px;
    /*margin-left: 30px;*/
}

.owl-item .item {
    position: relative;
    z-index: 100;
    height: 200px;
    width: 200px;

    border-radius: 50%;
    border: 2px solid #ee5060;
    background-color: #ffffff !important;
    -webkit-box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    box-shadow: 0px 5px 20px 0px rgba(69, 67, 96, 0.1);
    overflow: hidden;
    margin: 0 15px; /* فاصله منطقی بین آیتم‌ها */
}

.owl-carousel .owl-item {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
}

.owl-item .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .carousel-wrap {
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }
}