.ceec-post-grid-wrap {
	width: 100%;
}

.ceec-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	width: 100%;
}

.ceec-post-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
	min-width: 0;
}

.ceec-post-grid-wrap .ceec-post-image {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
}

.ceec-post-grid-wrap .ceec-post-image:focus,
.ceec-post-grid-wrap .ceec-post-image:focus-visible,
.ceec-post-grid-wrap .ceec-post-image:hover,
.ceec-post-grid-wrap .ceec-post-image:active {
	text-decoration: none;
	color: inherit;
	box-shadow: none;
	outline: none;
}

.ceec-post-grid-wrap .ceec-post-image__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	transition: transform .8s ease-in-out;
}

.ceec-post-card:hover .ceec-post-image__img {
	transform: scale(1.1);
}

.ceec-post-content {
	padding: 28px;
}

.ceec-post-content__title {
	margin: 0 0 12px;
	font-weight: 500;
	line-height: 28px;
}

.ceec-post-grid-wrap .ceec-post-content__title a {
	color: var(--e-global-color-text, #36332E);
	text-decoration: none;
	font-size: 22px;
	font-weight: 500;
	line-height: 28px;
	transition: color .3s ease;
}

.ceec-post-grid-wrap .ceec-post-card:hover .ceec-post-content__title a,
.ceec-post-grid-wrap .ceec-post-content__title a:hover,
.ceec-post-grid-wrap .ceec-post-content__title a:focus,
.ceec-post-grid-wrap .ceec-post-content__title a:focus-visible {
	color: var(--e-global-color-secondary, #C8923D);
	text-decoration: none;
}

.ceec-post-content__excerpt {
	margin: 0;
	color: var(--e-global-color-text, #36332E);
	line-height: 1.6;
	font-size: 16px;
}

@media (max-width: 1024px) {
	.ceec-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.ceec-post-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.ceec-post-content {
		padding: 22px;
	}

	.ceec-post-content__excerpt {
		font-size: 16px;
	}
}
