#s-noticias {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px 0px;
}

#content-noticias {
	width: 80%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}

.card-noticia {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.card-noticia > img {
	width: 100%;
}

.info-noticia {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	padding: 30px;
}

.info-noticia h3 {
	font-size: 20px;
	color: #000;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.info-noticia p {
	font-size: 15px;
	color: #000;
}
.info-noticia > div {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-top: 30px;
}

.info-noticia > div a {
	border-radius: 30px;
	color: var(--morado);
	font-family: "Montserrat-Bold";
	font-size: 14px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

.info-noticia > div a svg {
	width: 15px;
	fill: var(--morado);
}

#s-noticias {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#content-image-noticias {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	justify-content: center;
	align-items: center;
}

#content-image-noticias a {
	width: 100%;
}

#content-image-noticias img {
	width: 100%;
}

@media screen and (max-width: 1024px) {
	#content-noticias {
		width: 90%;
		grid-template-columns: 1fr;
	}

	#content-image-noticias {
		grid-template-columns: 1fr 1fr;
	}
}
