@charset "utf-8";

/* About Us – main photo */

body.page-aboutus p.photo img {
	display: block;
	width: 100%;
	max-width: 579px;
	height: auto;
	margin: 0 auto;
	padding: 0;
	border: none;
}

/* About Us – Projects hero (peek carousel) */

body.page-aboutus .projects-hero {
	margin: 12px 0 20px;
	background: transparent;
	overflow: visible;
}

body.page-aboutus .projects-hero .hero-visual--peek {
	padding: 0;
	box-sizing: border-box;
}

body.page-aboutus .projects-hero .hero-frame--peek {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 0;
	overflow: visible;
}

body.page-aboutus .projects-hero .hero-track-viewport {
	flex: 1;
	min-width: 0;
	overflow: hidden;
}

body.page-aboutus .projects-hero .hero-track {
	display: flex;
	gap: 14px;
	align-items: center;
	transition: transform var(--hero-fade, 400ms) ease;
	will-change: transform;
}

body.page-aboutus .projects-hero .hero-slide {
	position: relative;
	flex: 0 0 min(72%, 480px);
	align-self: center;
	width: min(72%, 480px);
	height: auto;
	aspect-ratio: 4 / 3;
	min-height: 0;
	border-radius: 10px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.55;
	transform: scale(0.94);
	transition: opacity var(--hero-fade, 400ms) ease, transform var(--hero-fade, 400ms) ease;
	box-shadow: 0 2px 12px rgba(15, 45, 35, 0.1);
}

body.page-aboutus .projects-hero .hero-slide.is-active {
	opacity: 1;
	transform: scale(1);
	box-shadow: 0 8px 24px rgba(15, 45, 35, 0.16);
	z-index: 1;
}

body.page-aboutus .projects-hero--single .hero-slide {
	flex: 0 0 100%;
	max-width: 560px;
	margin: 0 auto;
	aspect-ratio: 4 / 3;
	opacity: 1;
	transform: none;
}

body.page-aboutus .projects-hero-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 12px 14px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
	border-radius: 0 0 10px 10px;
}

body.page-aboutus .projects-hero-title {
	margin: 0;
	font-size: var(--site-font-sm);
	line-height: 1.5;
	color: #fff;
}

body.page-aboutus .projects-hero-title a {
	color: #fff;
	text-decoration: underline;
}

body.page-aboutus .projects-hero-title a:hover {
	color: #e8f5ef;
	text-decoration: none;
}

body.page-aboutus .projects-hero .hero-nav {
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	transform: none;
	flex: 0 0 32px;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	color: #333;
	font-size: var(--site-font-2xl);
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(15, 45, 35, 0.12);
	z-index: 2;
}

body.page-aboutus .projects-hero .hero-nav:hover {
	background: #fff;
	color: #0d6b4d;
}

body.page-aboutus .projects-hero .hero-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 12px 0 0;
	padding: 0;
	list-style: none;
}

body.page-aboutus .projects-hero .hero-dots button {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 1px solid #0d6b4d;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	text-indent: -9999px;
	overflow: hidden;
}

body.page-aboutus .projects-hero .hero-dots button.is-active {
	background: #0d6b4d;
}

body.page-aboutus .projects-hero-empty {
	margin: 0;
	font-size: var(--site-font-sm);
	color: #666;
}

@media screen and (max-width: 767.98px) {
	body.page-aboutus .projects-hero .hero-visual--peek {
		padding: 0;
	}

	body.page-aboutus .projects-hero .hero-frame--peek {
		position: relative;
		display: block;
		gap: 0;
		overflow: visible;
	}

	body.page-aboutus .projects-hero .hero-track-viewport {
		width: 100%;
		overflow: hidden;
	}

	body.page-aboutus .projects-hero .hero-track {
		gap: 0;
	}

	body.page-aboutus .projects-hero .hero-slide {
		flex: 0 0 100%;
		width: 100%;
		max-width: none;
		aspect-ratio: 5 / 4;
		opacity: 0;
		transform: none;
		box-shadow: none;
		border-radius: 8px;
		background-size: cover;
		background-position: center;
	}

	body.page-aboutus .projects-hero .hero-slide.is-active {
		opacity: 1;
		transform: none;
		box-shadow: 0 4px 16px rgba(15, 45, 35, 0.14);
	}

	body.page-aboutus .projects-hero .hero-nav {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		flex: none;
		width: 32px;
		height: 32px;
		font-size: 1.35rem;
		z-index: 3;
	}

	body.page-aboutus .projects-hero .hero-prev {
		left: 2px;
	}

	body.page-aboutus .projects-hero .hero-next {
		right: 2px;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.page-aboutus .projects-hero .hero-track,
	body.page-aboutus .projects-hero .hero-slide {
		transition: none;
	}
}
