.blog.wrap_latest_news {
    margin-bottom:0
}
.blog.wrap_latest_news > div {
    margin-bottom: 4rem
}
/**/
/**
 * Last Posts Block Component Styles
 *
 * Displays recent blog posts in a responsive grid layout
 * with section header and action button
 */

/* Component wrapper */
.ws-last-posts-block-wrap {

}

/* Posts grid */
.ws-last-posts-block-posts {
}

.ws-last-posts-block-post {
	margin-bottom: 3rem;
}

/* Post card */
.ws-last-posts-block-card {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.ws-last-posts-block-image-container {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1.6;
    border-radius: 1rem;
    background: var(--border);
	margin-bottom: 1.25rem;
}

.ws-last-posts-block-image-container img {
	position: absolute;
	top:0; left: 0;
	width: 100%;
	height: 100%;
    display: block;
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;
}

.ws-last-posts-block-post:hover img {
	transform: scale(1.03);
}

/* Post content */
.ws-last-posts-block-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.ws-last-posts-block-date {
	font-size: 0.875rem;
	line-height: 1.5;
	font-weight: 600;
	color: var(--akzent-red);
	margin-bottom: 0.5rem;
}

.ws-last-posts-block-post-title {
	color: var(--heading);
	margin: 0!important;
}

/**/
.blog.wrap_latest_news + div > .pagination {
    margin-bottom: 0;
}
@media only screen and (min-width: 768px) {

}
@media only screen and (max-width: 991px) {
    .ws-last-posts-block-post {
    	margin-bottom: 2.5rem;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
}
@media only screen and (min-width: 992px) {
}

@media only screen and (max-width: 767px) {
    .ws-last-posts-block-post {
    	margin-bottom: 2rem;
    }

}
@media (min-width: 1200px) {
}
