.map-graphic {
	color: var(--gray-dark);
	padding: 0 19px;
	margin-bottom: 40px;
}

.map-graphic .content-section {
	background-color: #f3f0f1;
	padding: 25px 23px 17px 24px;
	display: flex;
	flex-direction: column;
	margin: 0 1px
}

.map-graphic .title {
	font-family: var(--font-display);
	font-weight: var(--font-weight-medium);
	font-size: 25px;
	line-height: calc(6/5);
	font-style: italic;
	margin-bottom: 4px;
}

.map-graphic .description {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	position: relative;
	padding-bottom: 26px;
}

.map-graphic .description:after {
	content: '';
	background-image: url(/includes/public/assets/shared/wave-line-yellow.svg);
	height: 12px;
	width: 67px;
	position: absolute;
	left: 0;
	bottom: 0;
	background-repeat: no-repeat;
}

.map-graphic .default-button {
	align-self: flex-end;
	margin-top: 7px;
}

.map-graphic .map-cont {
	position: relative;
	height: 0px;
	width: 100%;
	padding-bottom: calc(100% * 150 / 161);
	margin-bottom: 15px;
}

.map-graphic .map-cont:before {
	content: '';
	background-image: url(/includes/public/assets/shared/florida-sm.svg);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-repeat: no-repeat;
	pointer-events: none;
}

@media (min-width: 40em) {
	.map-graphic {
		display: grid;
		grid-template-columns: 2fr 2fr;
		margin: 0 auto;
		margin-bottom: 40px;
		max-width: 1383px;
		padding-right: calc(19px + 50 * (100vw - 640px) / (1024 - 640));
	}

	.map-graphic > * {
		grid-row: 1;
	}

	.map-graphic .content-section {
		align-self: center;
		max-width: 406px;
		justify-self: end;
		margin-top: 45px;
		margin-right: -20px;
	}

	.map-graphic .title {
		font-size: 18px;
	}

	.map-graphic .description {
		line-height: 1.2;
	}

	.map-graphic .map-cont {
		padding-bottom: calc(100% * 10 / 13);
		grid-column: 2;
		margin-bottom: 0;
		align-self: center
	}
	
	.map-graphic .map-cont:before {
		background-image: url(/includes/public/assets/shared/florida.svg);
	}
}

@media (min-width: 64em) {
	.map-graphic {
		margin-bottom: 72px;
		padding-right: min(calc(19px + 85 * (100vw - 1024px) / 416), 104px);
		grid-template-columns: 2fr 3fr;
	}

	.map-graphic .title {
		font-size: 40px;
		line-height: calc(9/8);
		margin-bottom: 9px;
	}

	.map-graphic .description {
		font-size: 21px;
		line-height: calc(10/7);
		padding-bottom: 34px;
	}

	.map-graphic .description:after {
		width: 83px;
	}

	.map-graphic .map-cont {
		align-self: unset
	}

	.map-graphic .content-section {
		padding: 30px 43px 13px 36px;
		max-width: 466px;
		margin-right: -50px;
		margin-top: 60px;
	}

	.map-graphic .default-button {
		margin-top: 12px;
	}
	
}

@media (min-width: 90em) {
	.map-graphic .content-section {
		padding: 60px 73px 33px 66px;
	}
}