.content-wrapper {
	margin: 0 auto 2em;
	max-width: 1200px;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	padding: 0.5rem;
}

.news-card {
	border: 0px solid aqua;
	margin: 0.5rem;
	position: relative;
	height: 20rem;
	overflow: hidden;
	border-radius: 0 1.9rem;
	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 (min-width: 900px) {
	.news-card {
		height: 25rem;
	}
}

.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) 50%, 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 0.3s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: relative;
	z-index: -1;
}

.news-card__text-wrapper {
	position: absolute;
	bottom: 0rem;
	padding: 1rem;
	color: white;
	/*     background-color: rgba(0, 0, 0, 0.4); */
	transition: background-color 1.5s ease;
}

.news-card__title {
	transition: color 1s ease;
	margin-bottom: 0.5rem;
	color: white;
	font-size: 1.3em;
	font-weight: 500;
}

.news-card__post-date {
	font-size: 0.9rem;
	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);
	}
	.news-card:hover .news-card__title {
		color: #f56a6a;
	}
	.news-card:hover .news-card__image {
		transform: scale(1.2);
		z-index: -1;
	}
}

.news-card__excerpt {
	font-weight: 300;
}

.news-card__read-more {
	background: black;
	color: #bbb !important;
	display: block;
	padding: 0.4rem 0.6rem;
	border-radius: 0.3rem;
	margin-top: 1rem;
	border: 1px solid #444;
	font-size: 1.2rem;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	text-decoration: none;
	width: 9rem;
	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: #f56a6a;
}

/* Boton ver mas */
.home .btn-acceder {
	padding: 10px 25px;
	color: #800101;
}
.home .btn-acceder {
	display: inline-block;
	/*padding: 6px 12px;*/
	margin-bottom: 0;
	margin: 8px;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	background: white;
	color: none !important;
	border: 1px solid transparent;
	/*border-radius: 50px;*/
	box-shadow: 0 2px 5px 0 rgb(60, 59, 59), 0 2px 10px 0 rgba(0, 0, 0, 0.09);
	transition: 0.4s;
	opacity: 1;
}
.home .btn-acceder:hover {
	transform: scale(1.1);
	transition: 0.4s;
	opacity: 0.8;
	background: white;
}
.home #discover-uaeh .btn-acceder a:link,
.home #discover-uaeh .btn-acceder a:visited {
	text-decoration: none;
	color: #791710;
	font-weight: bold;
}
.home #discover-uaeh .titulo-discover {
	text-align: center;
	color: white;
	font-weight: bolder;
	margin-top: 70px;
	font-size: 2em;
}
.home #discover-uaeh .titulo-discover span {
	font-size: 0.7em;
	font-weight: normal;
}
.home #discover-uaeh .titulo-discover small {
	color: #ffffff;
}
@media (min-width: 412px) {
	.home #discover-uaeh .titulo-discover {
		margin-top: 70px;
	}
}
