@charset "utf-8";

.article-card {
	width: 100%;
	position: relative;
	background-color: var(--white);
	box-shadow: var(--box-shadow);
	padding: 220px 15px 20px 15px;
	font-weight: normal;
	font-size: 14px;
	line-height: 24px;
}

.article-card-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200px;
	overflow: hidden;
}

@media only screen and (min-width: 1024px) {
	.article-card {
		padding-top: 262px;
	}

	.article-card-image {
		height: 240px;
	}
}

.article-card-image img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
	backface-visibility: hidden;
	transition: transform 0.4s ease;
	transform: scale(1);
}

.article-card-image:hover img {
	transform: scale(1.05);
	transition-duration: 1.2s;
}


.article-card .h3-title {
	margin-bottom: 2px;

}

.article-card .h3-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.4s ease;
}

.article-card .h3-title a:hover {
	color: var(--blue);
}

.article-card-info {
	color: var(--gray);
	margin-bottom: 15px;
}

.article-card p+p {
	margin-top: 15px;
}