#main-layout #contact-people-module {
	/* min-height: 35dvh; */
	min-height: 75dvh;
	padding-top: calc(var(--section-y-gap) * 2);
	padding-bottom: calc(var(--section-y-gap) * 2);
	position: relative;
	overflow: hidden;
	display: flex;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--brand-color);
	background-image: url(../images/areas-of-practice-detail-bkg.jpg);
}
#contact-people-module .container {
	height: max-content;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: start;
	gap: 2.5rem;
	align-self: center;
}
#contact-people-module h2 {
	color: #fff;
}
#contact-people-module .links {
	display: flex;
	flex-direction: column;
	row-gap: 1.3rem;
}
#contact-people-module .links a {
	/* font-size: 22px; */
	font-size: clamp(1.25rem, 1.8vw, 1.3rem);
	color: #fffefe;
	font-weight: 600;
}



@media (max-width: 560px) {
	#contact-people-module .container {
		flex-direction: column;
		align-items: start;
	}
}