.blog_listing_container {
	max-width: 1200px;
	margin-inline: auto !important;
}
.post_item__banner {
	display: flex;
	flex-direction: column;
	position: relative;
	height: -webkit-fill-available;
}
.post_item__banner__date {
	position: absolute;
	bottom: 0;
	width: 100%;
	margin: auto;
	color: #fff;
	padding-left: 10%;
	padding-bottom: 1rem;
	padding-top: 100px;
	background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.post_item__description {
	display: flex;
	padding: 3rem 10%;
	align-items: center;
	/*
	height: -webkit-fill-available;
	*/
}
.post_item__description a:hover {
	cursor: pointer;
	text-decoration: underline #0B1655;
}
.post_item__description a.txt_red:hover {
	cursor: pointer;
	text-decoration: underline #e00a1c;
}
.post_item__banner img {
	object-fit: cover;
	object-position: center;
	height: 100%;
	width: auto;
	min-height: 240px;
}

.post_item_1 {
	width: 100%;
	min-height: 500px;
	margin-top: 7rem;
}
.post_item_1 .post_item__description {
	padding: 2rem 18%;
}

{##################### MIDDLE SECTION #####################}

.middle_post_section {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 3rem;
	margin: 3rem 0;
	justify-items: stretch;
}
.middle_post_section article {
	display: flex;
	flex-direction: column;
}

{########################## BOTTOM SECTION ##############################}
.bottom_post_section {
	display: grid;
	grid-template-columns: repeat(3, minmax(280px, 1fr));
	min-height: 350px;
	gap: 3rem;
	margin: 3rem 0;
	justify-items: stretch;
}
.bottom_post_section article.post_item_5 {
	grid-column: 1/3;
	display: flex;
	flex-direction: column;
}
.bottom_post_section .blog_subscribe {
	padding: 2rem 4rem;
}
.bottom_post_section .blog_subscribe form label {
	font-size: 15px;
}

{####################### RESPONSIVE ############################}

@media (max-width: 1024px) {
	.middle_post_section {
		grid-template-columns: repeat(2, minmax(300px, 1fr));
	}
	article.post_item_2 {
		grid-column: 1;
	}
	article.post_item_3 {
		grid-column: 2;
	}
	article.post_item_4 {
		grid-column: 1 / 3;
	}

	.bottom_post_section {
		grid-template-columns: repeat(1, minmax(280px, 1fr));
		gap: 3rem 0;
	}
}
@media (max-width: 768px) {

	.middle_post_section {
		grid-template-columns: repeat(1, minmax(300px, 1fr));
	}
	article.post_item_2, article.post_item_3, article.post_item_4 {
		grid-column: 1;
	}

	.bottom_post_section article.post_item_5 {
		width: 100%;
	}
	.bottom_post_section .blog_subscribe {
		width: 100%;
		margin-top: 3rem;
	}
}

@media (max-width: 425px) {
	.post_item_1 {
		height: 60vh;
		min-height: 400px;
	}
	.post_item_1 .post_item__banner {
		height: 60%;
	}
	.post_item_1 .post_item__description {
		height: 40%;
		padding: 1rem;
	}
	.middle_post_section article {
		min-height: 350px;
	} 

	.bottom_post_section {
		gap: 0;
	}
	.blog_subscribe h2 {
		font-size: 35px!important;
	}
}