.ws-post-list-item {
	text-align: center;
}

.ws-post-list-item__image {
	width: 100%;
	aspect-ratio: 16/10;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #edf1f2;
	overflow: hidden;
	margin-bottom: 20px;
}

.ws-post-list-item__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ws-post-list-item img {
	transform: scale(1);
	transition: transform 0.4s;
}

.ws-post-list-item:hover img {
	transform: scale(1.05);
}

.ws-post-list-item__image i {
	font-size: 40px;
}

.ws-post-list-item__title-link h3.ws-post-list-item__title,
.ws-post-list-item__title-link h2.ws-post-list-item__title {
	color: var(--hs-black);
	font-weight: bold;
	font-size: 24px;
	transition: all 0.3s ease;
}

.ws-post-list-item__title-link:hover h3.ws-post-list-item__title,
.ws-post-list-item__title-link:hover h2.ws-post-list-item__title {
	color: var(--hs-blue);
}

.ws-post-list-item__date {
	margin-bottom: 10px;
	font-weight: 500;
	color: var(--hs-blue);
}

.ws-post-list-item__text {
	text-align: justify;
}

@media (max-width: 767px) {
	.ws-post-list-item__title-link h2.ws-post-list-item__title {
		font-size: 20px;
	}
	.ws-post-list-item__text {
		font-size: 14px;
	}
}
