.center {
	transform: scale(1.5);
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.article-card-about {
	width: 400px;
	height: 420px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	font-family: Arial, Helvetica, sans-serif;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	transition: all 300ms;
}

.article-card-about:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.article-card-about img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-card-about .content-about {
	box-sizing: border-box;
	width: 100%;
	position: absolute;
	padding: 30px 20px 20px 20px;
	height: auto;
	bottom: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.article-card-about .date-about,
.article-card-about .title-about {
	margin: 0;
}

.article-card-about .date-about {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 4px;
}

.article-card-about .title-about {
	font-size: 22px;
	color: #fff;
	font-weight: bold;
}
