/**
 * ContactBanner Component Styles
 * Converted from ContactBanner.module.scss for WordPress
 */

.contactBannerSection {
	width: 100%;
	position: relative;
	background-color: var(--lightBlue, #A3DBE8);
	overflow: hidden;
}

.contactBannerSection::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, var(--lightBlue, #A3DBE8) 30%, rgba(0, 0, 0, 0) 70%);
}

.contactBannerContainer {
	display: flex;
	min-height: 500px;
	position: relative;
}

@media (max-width: 1024px) {
	.contactBannerContainer {
		flex-direction: column;
		min-height: auto;
	}
}

/* Left Section - Text and CTA */
.leftSection {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 540px;
	position: relative;
	z-index: 1;
}

.leftSection .heading {
	color: var(--darkBlue, #002C5F);
	font-family: var(--font-bold, 'Raleway-Bold', sans-serif);
	font-weight: 700;
}

.leftSection .description {
	color: var(--darkBlue, #002C5F);
	font-family: var(--font-medium, 'Raleway-Medium', sans-serif);
	font-size: 16px;
	line-height: 1.6;
	font-weight: 500;
}

.imageWrapper {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.bannerImage {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 1024px) {
	.imageWrapper {
		min-height: 400px;
	}
}

@media (max-width: 700px) {

	.leftSection .description {
		font-size: 14px;
		margin-bottom: 50px;
	}
}