#latest_posts {
	text-align: center;
	padding-top: 60px;
	padding-bottom: 60px;
}

#latest_posts h2 {
	font-size: var(--h-1);
}

#latest_posts .pbi-text-separator {
	font-size: var(--txt-l);
}

#latest_posts_list {
	list-style: none;
	margin: 0 0 45px 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 1rem;
	margin-top: 60px;
}

#latest_posts_list li {
	-webkit-box-flex: 1;
	    -ms-flex: 1 1 calc( 25% - 1rem );
	        flex: 1 1 calc( 25% - 1rem );
	max-width: 25%;
}

#latest_posts_list li a {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 3px;
	background-color: #fff;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
            box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
	text-decoration: none;
	height: 100%;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

#latest_posts_list li a:hover {
	-webkit-transform: translateY(4px);
	    -ms-transform: translateY(4px);
	        transform: translateY(4px);
}

#latest_posts_list li img {
    display: block;
    aspect-ratio: 16 / 9;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
}

#latest_posts_list li h3 {
	padding: 0.75rem;
	margin-bottom: 0;
	font-size: var(--txt-m);
	color: var(--contrast-2);
	text-align: left;
	font-weight: normal;
}

#latest_posts .pbi-button {
	position: relative;
	padding-right: 2.5em;
}

#latest_posts .pbi-button:before {
    content: '';
    position: absolute;
    top: 0;
    right: 15px;
    width: 15px;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M21.1 18.7 12 9.6l-9.1 9.1-2.8-2.9L12 3.9l11.9 11.9-2.8 2.9z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

@media (max-width: 1024px) {
	#latest_posts_list li {
		-ms-flex-preferred-size: calc( 33.33% - 1rem );
		    flex-basis: calc( 33.33% - 1rem );
		max-width: 33.33%;
	}
}
@media (max-width: 750px) {
	#latest_posts {
		padding-top: 30px
	}
	#latest_posts_list li {
		-ms-flex-preferred-size: calc( 50% - 1rem );
		    flex-basis: calc( 50% - 1rem );
		max-width: 50%;
	}
	#latest_posts .pbi-text-separator {
		font-size: var(--txt-xl);
	}
	#latest_posts_list li h3 {
		font-size: var(--txt-l);
		padding: 13px;
		line-height: 1.5;
	}
}
@media (max-width: 450px) {
	#latest_posts_list li {
		-ms-flex-preferred-size: 100%;
		    flex-basis: 100%;
		max-width: 100%;
	}
}