.oe-1349-wrapper {
	width: 100%;
}

.oe-1349-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 40px auto;
}

.oe-1349-eyebrow {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.oe-1349-title {
	font-size: 36px;
	line-height: 1.2;
	margin-bottom: 20px;
}

.oe-1349-intro {
	font-size: 18px;
	line-height: 1.6;
	margin: 0;
}

.oe-1349-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 100%;
}

.oe-1349-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.oe-1349-card-image {
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
}

.oe-1349-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.oe-1349-card-content {
	padding: 30px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.oe-1349-card-title {
	font-size: 24px;
	margin-bottom: 15px;
	margin-top: 0;
}

.oe-1349-card-desc {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 25px;
	flex-grow: 1;
}

.oe-1349-card-cta {
	display: inline-block;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 0.5px;
	transition: opacity 0.3s ease;
}

.oe-1349-card-cta:hover {
	opacity: 0.8;
}

@media (max-width: 1024px) {
	.oe-1349-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.oe-1349-cards-grid {
		grid-template-columns: 1fr;
	}
	
	.oe-1349-title {
		font-size: 28px;
	}
}