.aex-container {
	font-family: 'Roboto', sans-serif;
	padding: 40px 0;
}

.aex-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.aex-image-wrapper img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.aex-header {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.aex-title {
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 20px 0 0;
	color: #54595F;
}

.aex-line {
	height: 1px;
	background-color: #ccc;
	flex-grow: 1;
	max-width: 100px;
}

.aex-subtitle {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: #333;
}

.aex-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #666;
}

@media (max-width: 768px) {
	.aex-grid {
		display: flex;
		flex-direction: column-reverse;
	}
}
