/* Post Layout Styles */
.blog_event_article {
	height: 100%;
	width: 100%; object-fit: cover; display: block;
}

.blog_event {
	position: relative; display: block;
	text-decoration: none; color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	border-radius: 5px;
	padding: 20px;
	background-color: var(--sc-grey-dark);
}

.blog_event .post-image {
	isolation: isolate;
	position: relative;
	aspect-ratio: 370/300;
	display: block;
	width: 100%;
	height: auto;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-size: contain;
	transition: opacity 300ms ease-in-out;
	overflow: hidden;
	flex-shrink: 0;
}

.blog_event .post-image img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	transition: transform 300ms ease-in-out;
}

.blog_event:hover .post-image img {
	transform: scale(1.02);
}

.blog_event .post-content {
	position: relative;
	z-index: 3;
	display: flex;
	align-items: start;
	flex-direction: column;
	gap: 16px; 
	width: 100%; 	
	height: 100%;
	padding: 32px 12px; color: #ffffff;
}

.blog_event .post-content p {
	margin: auto 0px 0px 0px;
	font-size: 16px;
}

.blog_event .post-content .post-title {
	font-size: clamp(20px, 1.87vw, 24px);
	font-family: 'Inter' !important;
	margin: 0;
	line-height: 1.5 !important;
}

.blog_event .post-content .post-date {
	font-size: 16px;
}

.blog_event .post-content .readmore {
	font-weight: 700;
	font-size: 18px;
}

@media screen and (max-width: 992px) {
	
	.blog_event .post-content {
		gap: 24px;
		padding: 24px;
	}
	
}


@media screen and (max-width: 767px) {
	
	.blog_event {
		min-height: unset;
	}
	
	.blog_event .post-content {
		gap: 16px; 
	}
	
}