.post-card {
	width: 100%;
	display: flex;
	flex-direction: column;
}
.post-card .post-card-image {
	width: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 1.5rem;
	aspect-ratio: 1.46/1;
}
.post-card .post-card-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	transition: all 0.3s ease;
}
.post-card .post-card-body {
	width: 100%;
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	padding-top: 4.5rem;
}
.post-card .post-card-body h3 {
	line-height: 1.267;
	margin-bottom: 2.2rem;
}
.post-card .post-card-body h3 a {
	color: inherit;
	text-decoration: none;
}
.post-card .post-card-body h3 a:hover {
	color: #c39569;
	text-decoration: none;
}
.post-card .post-card-body p:last-child {
	margin-bottom: 0;
}
.post-card .post-card-footer {
	width: 100%;
	margin-top: auto;
	padding-top: 1.9rem;
}
.post-card .post-card-footer .btn-arrow {
	margin-left: -0.7rem;
}
.post-card:hover .post-card-image img {
	transform: scale(1.1);
}
@media (max-width: 991.98px) {
	.post-card {
		margin-bottom: 2.8rem;
	}
	.post-card .post-card-image {
		aspect-ratio: 1.59/1;
	}
	.post-card .post-card-body {
		padding-top: 3.1rem;
	}
	.post-card .post-card-body h3 {
		line-height: 1.273;
		margin-bottom: 1.1rem;
	}
	.post-card .post-card-footer {
		padding-top: 0.9rem;
	}
}

.cards-area {
	position: relative;
	overflow: hidden;
	padding-top: 6.7rem;
	padding-bottom: 12.4rem;
}
.cards-area .post-card {
	margin-bottom: 6.9rem;
}
.cards-area .cards-area-footer {
	text-align: center;
	padding-top: 2.4rem;
}
@media (max-width: 991.98px) {
	.cards-area {
		padding-top: calc(var(--section-padding-y) * 0.5);
		padding-bottom: calc(var(--section-padding-y) * 1.5);
	}
	.cards-area .post-card {
		margin-bottom: 3rem;
	}
	.cards-area .cards-area-footer {
		padding-top: 0.5rem;
	}
}
/*# sourceMappingURL=cards-area.css.map */
