.blog-posts {
    --grid-column-count: 4;
    --grid-layout-gap: 24px;
    --grid-item-min-width: 200px;
    --gap-count: calc(var(--grid-column-count) - 1);
    --total-gap-width: calc(var(--gap-count) * var(--grid-layout-gap));
    --grid-item-max-width: calc((100% - var(--total-gap-width)) / var(--grid-column-count));
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(max(var(--grid-item-min-width), var(--grid-item-max-width)), 1fr));
    grid-gap: var(--grid-layout-gap);
}

.blog-posts .owl-stage {
	display: flex;
}

.blog-post {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 18px;
}

.blog-posts .owl-item {
	padding: 5px 0;
}

.blog-post .post-picture {
    border-radius: 18px;
    overflow: hidden;
}

.blog-post .post-picture a {
    display: block;
    aspect-ratio: 100/67;
    background: #eee;
}

.blog-post .post-picture img {
    display: block;
    width: 100%;
    height: 100%;
    }

.blog-post .post-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    padding: 16px;
    margin: -78px 16px 0;
    background: #fff;
    position: relative;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.25);
}

.blog-post  .post-heading a {
    color: #202E1C;
    font-size: 13px;
    font-weight: 700;
    padding: 0 0 12px;
}

.blog-post .post-description {
    color: #373A36;
    text-align: justify;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 16px;
    /*  */
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-post .post-links {
    display: flex;
    align-items: center;
    margin-block-start: auto;
}

.blog-post .post-date {
    color: rgba(111, 117, 120, 0.90);
    font-size: 10px;
}

.blog-post .post-date::before {
	content: '\e90f';
	display: inline-block;
	font: 900 13px pacific;
	vertical-align: -1px;
	margin-inline-end: 8px;
}

.blog-posts .read-more {
    color: #27401F;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.34);
    font-size: 12px;
    font-weight: 500;
    margin-inline-start: auto;
}

.blog-posts .read-more:after {
	content: '\e902';
	display: inline-block;
	vertical-align: -1px;
	font: 900 7px pacific;
	text-shadow: none;
}