section.listing_grid {
	overflow: hidden;
	display: flex;
	margin-top: 94px;
	align-items: stretch;
	background-color: #e3e4e4;
}
.desc_uno_container {
	width: 65%;
	max-width: 830px;
	min-height: calc(100svh - 94px);
	padding: 4rem;
	display: grid;
	place-content: center;
	position: relative;
}
section.listing_grid svg {
	position: absolute;
	left: -1px;
	top: 0;
	height: 100%;
	bottom: 0;
}
.img_uno {
	min-width: 35%;
	position: relative;
	width: -webkit-fill-available;
}
.img_uno img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.desc_uno p.blog-post__date {
	margin-top: 0;
}



.read-more {
	font-size: 14px;
	letter-spacing: 1px;
	text-align: center;
	width: 100px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section_topic_posts a, .listing_grid a {
	display: flex;
	width: fit-content;
}








/***************** SUBSCRIPTION *********************/

section.blog_suscribe {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 3rem 0;
}

.blog_suscribe form {
	display: flex;
	align-items: center;
  justify-content: center;
}

.blog_suscribe form label {
	display: none !important;
}

.blog_suscribe form .input {
	margin-left: 1rem;
}

.blog_suscribe .blog_subscribe_title {
 font-weight: bold; 
}

ul.no-list.hs-error-msgs.inputs-list {
	display: none;
}

.blog_suscribe form input {
	padding: 5px;
}

ul.inputs-list {
    display: none;
}

/***************** TAGS *********************/

section.container-filter-tags {
	display: flex;
	justify-content: center;
	margin: 10vh auto;
}

.filter-tags {
	display: flex;
	width: 100%;
	justify-content: space-evenly;
}

a.tag {
	font-size: 15px;
	padding: 0 15px;
	height: 28px;
	display: flex;
	align-items: center;
}


/***************** TOPIC POST *********************/

section.section_topic_posts {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1200px;
	margin: auto;
	padding: 2rem;
}

article.topic_post_item {
	margin: 2rem auto 3rem auto;
	width: calc(50% - 4rem);
}
article.topic_post_item.svg_bg {
	width: 100%;
	display: flex;
	flex-direction: row-reverse;
	margin: 6rem 2rem;
	align-items: stretch;
	max-width: 100%;
	min-height: 80svh;
	overflow: hidden;
}
article.topic_post_item.svg_bg .topic_post_item_description_container {
	padding: 2rem;
}
article.topic_post_item.svg_bg .topic_post_item_image .img_bg {    
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	object-fit: contain;
	width: auto;}

article.topic_post_item.svg_bg .topic_post_item_image {
	min-width: 35%;
	position: relative;
	width: -webkit-fill-available;
}

article.topic_post_item.svg_bg .read-more {
    background-color: red;
    color: white;
  text-decoration: none;
}
article.topic_post_item.svg_bg .read-more:hover {
    background-color: white;
    color: red;
}

.topic_post_item_image img:not(.img_bg) {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
article.topic_post_item.svg_bg .topic_post_item_description_container p.blog-post__date {
	margin-top: 0;
}

{##################}
article.topic_post_item.svg_bg svg {
	position: absolute;
	left: -1px;
	top: 0;
	height: 100%;
	bottom: 0;
}
{##################}


article.topic_post_item.svg_bg .topic_post_item_description_container {
	height: 100%;
	position: relative;
	width: 65%;
	display: grid;
	place-content: center;
	max-width: 830px;
}

.topic_post_item_description h2 {
	margin: 1rem 0;
	font-size: 2.2rem;
	line-height: 2.2rem;
	font-weight: bold;
}


/***************** PAGINATION **********************/

.blog-pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 5rem;
}
.blog-pagination a {
    color: black;
    font-size: 20px;
}
.blog-pagination-center {
    margin: 0 1rem;
}
.blog-pagination-center a {
    padding: 10px;
}
.blog-pagination a.active {
    font-weight: bold;
}


/***************** POPULAR POSTS *********************/

section.popular-posts {
	text-align: center;
	padding-top: 3rem;
	margin-bottom: 1rem;
}

section.popular-posts>p {
	font-size: 25px;
	font-weight: bold;
}

div.popular-posts_container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1200px;
	margin: auto;
	padding: 2rem;
}

aside.popular-posts_post {
	margin: 2rem auto 3rem auto;
	width: calc(50% - 4rem);
}

.popular-posts_info {
	text-align: start;
	padding: 1rem;
}

.popular-posts_info h2 {
	margin: 1rem 0;
	font-weight: bold;
}


@media screen and (max-width: 1024px) {

}
@media (max-width: 900px) {
	.img_uno, article.topic_post_item.svg_bg .topic_post_item_image {
		width: 45%;
	}
	.desc_uno_container, article.topic_post_item.svg_bg .topic_post_item_description_container {
		width: 55%;
	}
}

@media screen and (max-width: 768px) {
	section.blog_suscribe {
		flex-direction: column;
		height: 8rem;
		justify-content: space-evenly;
	} 
	div.popular-posts_container {
		flex-direction: column;
		align-items: center;
	} 

	.popular-posts_info h2 {
		font-size: 1.5rem;
	}
	aside.popular-posts_post, 
	article.topic_post_item {
		margin: 0 auto;
		width: 100%;
	}
}
@media screen and (max-width: 560px) {
	section.listing_grid {
		flex-direction: column-reverse;
	}
	.desc_uno_container, .img_uno {
		width: 100%;
	}
	.desc_uno_container {
		min-height: unset;
	}
	article.topic_post_item.svg_bg {
		flex-direction: column;
		margin: 4rem 0;
	}
	article.topic_post_item.svg_bg .topic_post_item_image, article.topic_post_item.svg_bg .topic_post_item_description_container {
		width: 100%;
	}
	.img_uno, article.topic_post_item.svg_bg .topic_post_item_image {
		margin-left: 20%;
	}
	article.topic_post_item.svg_bg svg {
		height: 101%;
	}
}
@media (max-width: 476px) {
	.filter-tags {
		flex-direction: column;
		align-items: center;
	} 
	a.tag {
		margin: 0.5rem 0;
		min-height: 42px;
	}
	.read-more {
		min-height: 42px;
	}

	article.topic_post_item {
		margin: 2rem;
	}
	.read-more, a.tag {
		height: 40px;
	}

}
@media screen and (max-width: 380px) {

}

