.hc-blog-item-alt {
	display: flex;
	flex-wrap: wrap;
	column-gap: 40px;
	margin-bottom: 50px;
	background-color: white;
}

.hc-blog-item-alt--image {
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 20px;
	padding-bottom: 60%;
	position: relative;
}
.hc-blog-item-alt--image_wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.hc-blog-item-alt--image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: center;
}

.hc-blog-item-alt--content {
	flex: 0 0 100%;
	max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hc-blog-item-alt--date {
	display: flex;
	align-items: center;
	gap: 10px;
}
.hc-blog-item-alt--date svg {
	width:16px;
}
.hc-blog-item-alt--date span {
	margin-top: 4px;
	font-family: var(--pillar-font-reg);
	font-size: 14px;
	font-weight:300;
}
.hc-blog-item-alt--title {
	font-family: var(--pillar-font-bold);
	font-size: 28px!important;
	line-height: 34px!important;
	margin-top: 10px;
	margin-bottom: 5px!important;
}
.hc-blog-item-alt--excerpt {
	font-weight: 300;
	line-height: 1.4em;
}
.hc-blog-item-alt--link {
	margin-top: 15px;
}
.hc-blog-item-alt--link a {
	display: inline-flex;
	gap: 5px;
	align-items: center;
	font-family: var(--pillar-font-bold);
	font-size: 16px;
}
.hc-blog-item-alt--link a svg {
	transition: transform 0.3s ease-in-out;
}
.hc-blog-item-alt--link a:hover svg {
	transform: translateX(5px);
}
