.notas_blog .list_posts {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	margin-top: 4rem;
	flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
	.notas_blog .list_posts {
		flex-direction: column;
		margin-top: 0;
	}
}

.notas_blog .list_posts .post {
	width: 31%;
	background: linear-gradient(
		208deg,
		rgba(68, 174, 227, 0.1) -1.18%,
		rgba(144, 183, 17, 0.1) 111.7%
	);
}
.notas_blog .list_posts .post.margin_bottom {
	margin-bottom: 4rem;
}

@media screen and (max-width: 1024px) {
	.notas_blog .list_posts .post {
		width: 100%;
		margin-top: 2rem;
	}
	.notas_blog .list_posts .post.margin_bottom {
		margin-bottom: 2rem;
	}
}

.notas_blog .list_posts .post .info_post {
	padding: 1rem;
}
.notas_blog .list_posts .post .info_post .header {
	height: 300px;
	position: relative;
}
@media screen and (max-width: 1024px) {
	.notas_blog .list_posts .post .info_post .header {
		height: 200px;
	}
}

.notas_blog .list_posts .post .info_post .header figure {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.notas_blog .list_posts .post .info_post .header figure,
.notas_blog .list_posts .post .info_post .header figure img {
	width: 100%;
	height: 100%;
}
.notas_blog .list_posts .post .info_post .header figure img {
	object-fit: cover;
}
.notas_blog .list_posts .post .info_post .header .ticket {
	position: absolute;
	background-image: url("../images/blog/blog_ticket.svg");
	background-position: 100% 50%;
	background-repeat: no-repeat;
	padding: 0.5rem 1.5rem 0.2rem 1rem;
	bottom: 1.5rem;
	left: 0;
	z-index: 2;
}
@media screen and (max-width: 1024px) {
	.notas_blog .list_posts .post .info_post .header .ticket {
		padding: 0.5rem 1.2rem 0.2rem 0.5rem;
		font-size: 0.8rem;
		line-height: 0.8rem;
	}
}
.notas_blog .list_posts .post .info_post .header .share {
	position: absolute;
	width: 30px;
	height: 30px;
	top: 1rem;
	right: 1rem;
	z-index: 2;
}

.notas_blog .list_posts .post .info_post .txt {
	padding: 0 1rem;
}
.notas_blog .list_posts .post .info_post .txt .titulo {
	/* padding: 2rem 0 1rem 0; */
	padding: 1rem 0 1rem 0;
	border-bottom: 1px solid var(--color-verde);
}
@media screen and (max-width: 1024px) {
	.notas_blog .list_posts .post .info_post .txt .titulo {
		padding: 1rem 0 1rem 0;
	}
}

.notas_blog .list_posts .post .info_post .txt .titulo h3 {
	font-size: 1.25rem;
	line-height: 1.5rem;
}
.notas_blog .list_posts .post .info_post .txt .info_post {
	display: flex;
	align-items: center;
	padding: 1rem 0 1rem 0;
}
.notas_blog .list_posts .post .info_post .txt .info_post .img {
	width: 62px;
	height: 62px;
	margin-right: 1rem;
}
@media screen and (max-width: 1024px) {
	.notas_blog .list_posts .post .info_post .txt .info_post .img {
		width: 48px;
		height: 48px;
		display: none;
	}
}
.notas_blog .list_posts .post .info_post .txt .info_post .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/*
.notas_blog .list_posts .post .info_post .txt .info_post .info {
	background-color: goldenrod;
}
*/
.notas_blog .list_posts .post .info_post .txt .info_post .autor .nombre {
	font-weight: bold;
}
.notas_blog .list_posts .post .info_post .txt .info_post .autor .fecha {
	font-style: italic;
}
.notas_blog .list_posts .post .info_post .txt .fecha {
	font-style: italic;
	font-size: 0.9rem;
	color: var(--color-greus);
}

.content_blog p,
.content_blog ul {
	margin-top: 2rem;
}
.content_blog ul li {
	margin-bottom: 1rem;
}
.content_blog .center {
	text-align: center;
}
@media screen and (max-width: 1024px) {
	.content_blog img {
		width: 100%;
		max-width: 100%;
	}
}
.content_blog a,
.content_blog a b,
.content_blog a strong {
	color: var(--color-azul);
}
