.content-wrapper {
	margin: 0 auto;
	max-width: 1080px;
	display: flex;
	flex-flow: row wrap;
	justify-content: start;
	padding: 6.5rem 0 5rem;
}

.news-card {
	border: 0px solid aqua;
	margin: 0;
	position: relative;
	overflow: hidden;
	border-radius: 0;
	flex: 1;
	min-width: 290px;
	box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
}


@media (max-width: 900px) {
	.news-card {
    min-width: 240px;
	}
}

@media (min-width: 900px) {
	.news-card {
		height: auto;
    min-width: 290px;
	}
  
  #section-numero-uno .news-card:nth-child(1),
  #section-numero-uno .news-card:nth-child(3) {
    height: calc(100%);
  }
}

.news-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.7) 80%);
	z-index: 0;
}

.news-card__card-link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	/*     background: rgba(255,0,0,.5); */
}

.news-card__image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: transform 300ms ease 0ms;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: relative;
	z-index: -1;
}

.news-card__text-wrapper {
	position: absolute;
	bottom: 0rem;
	padding: 0.1rem;
	color: white;
  width: 100%;
	/*     background-color: rgba(0, 0, 0, 0.4); */
	transition: background-color 1.5s ease;
}

.news-card__title {
  transition: color 1s ease;
  font-size: 3.6rem;
  margin: 2rem auto;
  width: 100%;
  display: block;
  text-align: center;
  text-shadow: 0.08em 0.08em 0em rgba(0,0,0,0.4);
}

.news-card__post-date {
	font-size: 0.7rem;
	margin-bottom: 0.5rem;
	color: #ccc;
}

.news-card__details-wrapper {
	max-height: 0;
	opacity: 0;
	transition: max-height 1.5s ease, opacity 1s ease;
}

@media (min-width: 900px) {
	.news-card:hover .news-card__details-wrapper {
		max-height: 20rem;
		opacity: 1;
	}
	.news-card:hover .news-card__text-wrapper {
		/* background-color: rgba(0, 0, 0, 0.6); */
    background: transparent;
	}
	.news-card:hover .news-card__title {
		/* color: yellow; */
    opacity: .7;
    transition: all .4s ease-in-out;
	}
	.news-card:hover .news-card__image {
		transform: scaleX(1.1) scaleY(1.1) !important;
		z-index: -1;
	}
}

.news-card__excerpt {
	font-weight: 300;
}

.news-card__read-more {
	background: black;
	color: #bbb;
	display: block;
	padding: 0.4rem 0.6rem;
	border-radius: 0.3rem;
	margin-top: 1rem;
	border: 1px solid #444;
	font-size: 0.8rem;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	text-decoration: none;
	width: 7rem;
	margin-left: auto;
	position: relative;
	z-index: 5;
}

.news-card__read-more i {
	position: relative;
	left: 0.2rem;
	color: #888;
	transition: left 0.5s ease, color 0.6s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.news-card__read-more:hover i {
	left: 0.5rem;
	color: yellow;
}
