/* Wrapper & Container */
.wa-1357-wrapper {
	width: 100%;
}

.wa-1357-container {
	max-width: 1200px;
	margin: 0 auto;
}

/* Header */
.wa-1357-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
}

.wa-1357-eyebrow {
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
	font-weight: 500;
}

.wa-1357-heading {
	margin-top: 0;
	margin-bottom: 25px;
}

.wa-1357-intro {
	line-height: 1.6;
}

/* Grid */
.wa-1357-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 60px;
}

/* Cards */
.wa-1357-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-1357-card-icon {
	margin-bottom: 25px;
	font-size: 32px;
	display: inline-flex;
}

.wa-1357-card-icon svg {
	width: 32px;
	height: 32px;
}

.wa-1357-card-title {
	margin-top: 0;
	margin-bottom: 15px;
}

.wa-1357-card-desc {
	margin: 0;
	line-height: 1.6;
}

/* Footer & CTA */
.wa-1357-footer {
	text-align: center;
}

.wa-1357-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 35px;
	border-radius: 4px;
	text-decoration: none !important;
	transition: all 0.3s ease;
	cursor: pointer;
}

/* Responsive */
@media (max-width: 767px) {
	.wa-1357-grid {
		grid-template-columns: 1fr;
	}
	
	.wa-1357-header {
		text-align: left;
		margin-bottom: 40px;
	}
	
	.wa-1357-footer {
		text-align: left;
	}
	
	.wa-1357-cta {
		width: 100%;
		text-align: center;
	}
}