.content-image-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* Two images per row */
	gap: 10px;
}

.content-image-container .content-image:nth-of-type(n + 3),
.content-image-container .content-image:nth-of-type(1):only-child {
	grid-column: 1 / -1; /* Makes the third and beyond images take full width */
}

.content-image {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-height: 680px;
}

.content-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	aspect-ratio: 16 / 9;
}

@media (max-width: 768px) {
	/* Adjust the 600px breakpoint to your needs */
	.content-image-container {
		grid-template-columns: 1fr; /* Single column layout */
		justify-items: center; /* Center the items horizontally */
	}
}

.contact-card-container {
	width: 100%;
	padding-block: 80px;
	border-bottom: 1px solid #dddddd;
}

.contact-card-wrapper {
	/* max-width: var(--content-max-width); */
	margin: 0 auto;
	display: flex;
	/* flex-direction: row; */
	gap: 40px;
	flex-wrap: wrap;
	justify-content: center;
}

.contact-card-img {
	width: 100%;
	max-width: 460px;
	max-height: 456px;
	display: flex;
	align-items: center;
	flex: 1 50%;
}
.contact-card-img img {
	width: 100%;
	height: auto;
}

.contact-card-details-container {
	margin-block: 32px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	text-align: center;
	/* width: 60%; */
	flex: 1 0 50%;
}

.contact-card-heading {
	font-family: Helvetica;
	font-size: 30px;
	font-weight: 700;
	line-height: 36px;
	text-align: center;
	color: #002205;
}

.contact-card-subHeading {
	font-family: Helvetica;
	font-size: 20px;
	font-weight: 400;
	line-height: 30px;
	text-align: center;
	color: #7e8083;
}

.contact-card-address .address-heading,
.contact-card-hours .hours-heading {
	font-family: Helvetica;
	font-size: 16px;
	font-weight: 700;
	line-height: 22px;
	text-align: center;
	color: #002205;
}
.contact-card-address .address,
.contact-card-hours .hours {
	font-family: Helvetica;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	text-align: center;
	color: #002205;
}
.contact-card-contact-container {
	display: flex;
	flex-direction: column;
}

.contact-card-contact {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 5px;
}

.contact-card-contact .contact {
	font-family: Helvetica;
	font-size: 16px;
	font-weight: 400;
	line-height: 22px;
	text-align: center;
	color: #002205;
}
.contact-card-contact .strong {
	font-weight: 700;
}
