/* Wrapper */
.oa-1353-wrapper {
	width: 100%;
	overflow: hidden;
}

/* Container & Layout */
.oa-1353-container {
	display: flex;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.oa-1353-content-col,
.oa-1353-image-col {
	flex: 1;
	min-width: 0;
}

/* Content Elements */
.oa-1353-eyebrow {
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
	font-weight: 500;
}

.oa-1353-heading {
	margin-top: 0;
	margin-bottom: 25px;
}

.oa-1353-desc {
	margin-bottom: 30px;
	line-height: 1.6;
}

/* List */
.oa-1353-list {
	list-style: none;
	padding: 0;
	margin: 0 0 40px 0;
}

.oa-1353-list-item {
	position: relative;
	padding-left: 20px;
	margin-bottom: 12px;
	line-height: 1.5;
}

.oa-1353-list-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
}

/* Buttons */
.oa-1353-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.oa-1353-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border-radius: 4px;
	text-decoration: none !important;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 1px solid transparent;
}

.oa-1353-btn-secondary {
	background-color: transparent;
}

/* Image */
.oa-1353-image-wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
}

.oa-1353-image-wrapper img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

/* Responsive */
@media (max-width: 767px) {
	.oa-1353-container {
		flex-direction: column !important; /* Force stacking on mobile */
		gap: 40px !important; /* Override desktop gap */
	}
	
	.oa-1353-actions {
		flex-direction: column;
		width: 100%;
	}
	
	.oa-1353-btn {
		width: 100%;
		text-align: center;
	}
}