.wa-1522-wrapper {
	padding: 80px 20px;
	width: 100%;
}

.wa-1522-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

@media (min-width: 992px) {
	.wa-1522-grid {
		grid-template-columns: 1fr 1.2fr;
		gap: 80px;
		align-items: center;
	}
}

.wa-1522-stack-reverse {
	display: flex;
	flex-direction: column-reverse;
}

@media (min-width: 992px) {
	.wa-1522-stack-reverse {
		display: grid;
	}
}

.wa-1522-col {
	display: flex;
	flex-direction: column;
}

.wa-1522-eyebrow {
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
}

.wa-1522-eyebrow::before {
	content: '';
	display: inline-block;
	width: 30px;
	height: 2px;
	background-color: #F39A2E;
	margin-right: 12px;
}

.wa-1522-heading {
	font-size: 2.25rem;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.wa-1522-heading {
		font-size: 2.75rem;
	}
}

.wa-1522-intro {
	font-size: 1.125rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-weight: 500;
}

.wa-1522-supporting {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	opacity: 0.9;
}

.wa-1522-note {
	font-size: 0.875rem;
	font-style: italic;
	display: flex;
	align-items: center;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid rgba(0,0,0,0.05);
}

.wa-1522-note::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #F39A2E;
	margin-right: 10px;
}

.wa-1522-cards-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (min-width: 600px) {
	.wa-1522-cards-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.wa-1522-card {
	background-color: #ffffff;
	padding: 30px 25px;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.03);
	transition: transform 0.3s ease;
	height: 100%;
}

.wa-1522-card:hover {
	transform: translateY(-5px);
}

.wa-1522-card h4 {
	font-size: 1.125rem;
	margin-top: 0;
	margin-bottom: 12px;
	font-weight: 600;
}

.wa-1522-card p {
	font-size: 0.9rem;
	line-height: 1.5;
	margin: 0;
	opacity: 0.85;
}

.wa-1522-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	border-radius: 12px;
}