.omidtt-post {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-family: "iransans", Sans, serif;
}

.omidtt-post__image {
    width: 100%;
    display: block;
    object-fit: cover; /* Keeps the image centered */
}

.omidtt__post-title {
    font-weight: bold;
    margin-top: 1rem;
    color: #29543C;
    height: 4rem;
}

.omidtt-post__image-container {
    border-radius: 1rem;
    overflow: hidden;
    width: 100%;
}

.omidtt-post__info {
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 4.5rem;
    flex-direction: row;
    align-items: center;
    padding: 1rem 1rem 1rem 0;
    border-radius: 0 0 1.5rem 1.5rem;
    justify-content: space-between;
    height: 3.5rem;
    background-color: #ededed;
}

.omidtt-post__space {
    height: 4.5rem;
}

.omidtt-post__space-half {
    height: 2.5rem;
    background-color: #ededed;
    width: 80%;
}

.omidtt-post__more {
    position: absolute;
    bottom: 0;
    background-color: unset;
    padding: 1rem 1rem 0 0;
    left: 0;
    border-radius: 0 1.5rem 0 0;
    a {
        display: flex;
        width: 56px;
        height: 56px;
        box-shadow: 0 0 1.5rem 0 rgba(28, 74, 48, 0.16);
        justify-content: center;
        align-items: center;
        border-radius: 1rem 1rem 1rem 1.5rem;
        background-color: rgba(71, 185, 120, 0.8);
    }
}

.omidtt-post__header {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 1rem 1rem 0 1rem;
    padding: 1rem 1rem .25rem 1rem;
    background-color: #ededed;
    position: relative;
}

.omidtt-post__footer {
    display: flex;
    flex-direction: row;
    position: relative;
}

.omidtt-post__date {
    margin-left: 1rem;
    color: #8F99A8;
}

.omidtt-post__category>a {
    color: #8F99A8 !important;
}


.owl-nav {
    position: absolute;
    top: 30%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.owl-nav .nav-btn {
    padding: 10px;
    cursor: pointer;
    border-radius: 50%; /* Optional for round buttons */
}

.prev-slide {
    position: absolute;
    left: -60px; /* Adjust based on the width of the button */
}


.owl-nav .next-slide {
    position: absolute;
    right: -60px; /* Adjust based on the width of the button */
}

@media (max-width: 767px){
	.owl-nav .next-slide{
		right: -35px;
	}
	.prev-slide{
		left: -15px;
	}

}

/*
.nav-btn {
    width: 40px;
    height: 40px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
}

.nav-btn:hover {
    background: #555;
}
*/
