/**
 * #.# Our People Module
 *
 * Styles for template-part/modules/our_people_module.php
**/

/* ── Header row ──────────────────────────────────────────── */

.our_people_module {
	padding: 60px 0 40px;
}
	
.opm-section-header {	font-family: var(--header);
	font-size: 58px;
	line-height: 106%;
	color: var(--dark-green);
	letter-spacing: -4%;
	margin: 0;
}

/* ── Slider section ──────────────────────────────────────── */

.our_people_module_slider {
	padding-bottom: 40px;
}

/* ── Left content col ────────────────────────────────────── */

.opm-section-content {
	padding-right: 40px;
}

.opm-section-content p {
	font-family: var(--news);
	font-size: 20px;
	line-height: 23px;
	letter-spacing:-2%;
	color: var(--dark-green);
}

/* ── Slider track ────────────────────────────────────────── */

.people-slider {
	overflow: hidden;
}

.people-track {
	display: flex;
	gap: 16px;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	/* width and item widths set by JS */
}

/* ── Slide items ─────────────────────────────────────────── */

.people-slide {
	flex-shrink: 0;
	display: block;
	text-decoration: none;
	color: inherit;
	/* width set by JS */
}

.people-slide-image {
	overflow: hidden;
	margin-bottom: 14px;
	background-color: var(--light-grey);
	max-height: 370px;
}

.people-slide-image img {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	object-position: top center;
	display: block;
	transition: transform 0.45s ease;
	max-height: 370px;
}

.people-slide-image-placeholder {
	width: 100%;
	aspect-ratio: 3 / 4;
	background-color: var(--light-grey);
}

.people-slide:hover .people-slide-image img {
	transform: scale(1.04);
}

/* ── Slide content ───────────────────────────────────────── */

.people-slide-content {
	padding: 0 4px;
}

.people-slide-name {
	font-family: var(--header);
	font-size: 19px;
	line-height: 22px;
	color: var(--dark-green);
	margin: 0 0 6px;
}

.people-slide-service,
.people-slide-area {
	font-family: var(--news);
	font-size: 13px;
	line-height: 18px;
	color: var(--dark-green);
	margin: 0 0 3px;
}

.people-slide-position {font-family: var(--news);font-weight: 600;color:var(--black)!important}
/* ── View all section ────────────────────────────────────── */

.our_people_module-view-all-section {
	padding-bottom: 60px;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1536px) {

}

@media (max-width: 1366px) {

}

@media (max-width: 1280px) {

}

@media (max-width: 992px) {
	.opm-section-header {
		font-size: 28px;
	}

	.opm-section-content {
		padding-right: 0;
		margin-bottom: 24px;
	}
	.our_people_module .custom-slick-arrows {display:none}
}

@media (max-width: 768px) {
	.our_people_module {
		padding: 40px 0 24px;
	}
}

@media (max-width: 600px) {

}
