/**
 * About Page Styles
 * Mobile-First
 *
 * @package Standfast
 * @since 1.0.0
 */


.who-we-are-section {
	padding: var(--section-padding-mobile) 0;
	margin-bottom: var(--section-padding-mobile);
	background-color: var(--white);
}

h2.who-we-are-section__title {
	font-family: var(--font-heading);
	font-size: 36px;
	line-height: 40px;
	font-weight: 700;
	color: var(--color-primary);
	text-align: center;
	margin-bottom: var(--spacing-md);
}

.who-we-are-section__content {
	flex: 1 0 0;
	color: #4B5563;
	text-align: center;
	font-family: var(--font-family-font-heading, 'Montserrat', sans-serif);
	font-size: 20px; /* text-xl */
	font-style: normal;
	font-weight: 700;
	line-height: 32px; /* leading-8, 160% */
	letter-spacing: 0.1px;
	max-width: 900px;
	margin: 0 auto var(--spacing-xl);
}

.who-we-are-section__content p {
	margin-bottom: 0;
}

.who-we-are-section__features {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-md);
	margin-top: var(--spacing-lg);
	align-items: stretch;
}

.who-we-are-feature {
	background-color: var(--white);
	border-radius: 8px;
	padding: var(--spacing-lg) var(--spacing-md);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
}

.who-we-are-feature__icon {
	margin-bottom: var(--spacing-md);
}

.who-we-are-feature__icon-img {
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.who-we-are-feature__icon-img--experience {
	width: 90px;
	height: 71px;
	flex-shrink: 0;
	aspect-ratio: 90/71;
}

.who-we-are-feature__icon-img--family {
	width: 90px;
	height: 62px;
	flex-shrink: 0;
	aspect-ratio: 45/31;
}

.who-we-are-feature__icon-img--sydney {
	width: 72px;
	height: 82px;
	flex-shrink: 0;
	aspect-ratio: 36/41;
}

.who-we-are-feature__icon-img--insured {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
	aspect-ratio: 1/1;
}

.who-we-are-feature__title {
	font-family: var(--font-heading);
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: var(--spacing-xs);
}

.who-we-are-feature__description {
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.25px;
	color: var(--color-body);
	margin-bottom: 0;
}

.safety-professionalism-section {
	padding: var(--section-padding-mobile) 0;
	background-color: #F6F6F6;
}

.safety-professionalism-section__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-lg);
	align-items: center;
}


.safety-professionalism-section__content {
	width: 100%;
	max-width: 636px;
	justify-self: end;
}

.safety-professionalism-section__image {
	width: 100%;
}

.safety-professionalism-section__img {
	width: 100%;
	max-width: 836px;
	height: auto;
	aspect-ratio: 418/279;
	border-radius: 24px;
	object-fit: cover;
}


h2.safety-professionalism-section__title {
	font-family: var(--font-heading, 'Montserrat', sans-serif);
	font-size: 24px; /* text-2xl equivalent */
	font-style: normal;
	font-weight: 700;
	line-height: 36px; /* leading-9 equivalent, 150% */
	color: #85B041;
	margin-bottom: var(--spacing-xs);
}

.safety-professionalism-section__text {
	margin-bottom: var(--spacing-lg);
}

.safety-professionalism-section__text p {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.5px;
	color: var(--color-body);
	margin-bottom: 0;
}

.safety-professionalism-section__features {
	display: flex;
	flex-direction: column;
	padding: 0; /* No padding on mobile and tablet */
	align-items: center;
	gap: 10px;
	border-radius: 12px; /* rounded-xl equivalent (0.75rem) */
	border: 1px solid var(--border);
	background: var(--background);
}

.safety-feature {
	background-color: var(--white);
	border-radius: 8px;
	padding: var(--spacing-md);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
	align-self: stretch;
	width: 100%;
}

.safety-feature__icon {
	flex-shrink: 0;
}

.safety-feature__icon-img {
	width: 48px;
	height: 48px;
	object-fit: contain;
}

.safety-feature__icon-img--insured {
	width: 42px;
	height: 42px;
	aspect-ratio: 1/1;
}

.safety-feature__icon-img--training,
.safety-feature__icon-img--compliance {
	width: 42px;
	height: 37px;
	aspect-ratio: 42/37;
}

.safety-feature__title {
	color: #4B5563;
	font-family: var(--font-family-font-heading, 'Montserrat', sans-serif);
	font-size: 16px; /* text-base */
	font-style: normal;
	font-weight: 700;
	line-height: 28px; /* leading-7, 175% */
	letter-spacing: 0.1px;
}

.people-behind-section {
	padding: var(--section-padding-mobile) 0;
	margin-bottom: var(--section-padding-mobile);
	background-color: var(--white);
}

h2.people-behind-section__title {
	color: #85B041;
	text-align: center;
	font-family: var(--font-family-font-heading, 'Montserrat', sans-serif);
	font-size: 36px; /* text-4xl */
	font-style: normal;
	font-weight: 700;
	line-height: 40px; /* leading-10, 111.111% */
	margin: 0 auto var(--spacing-sm);
	max-width: 700px;
}

.people-behind-section__content {
	flex: 1 0 0;
	color: #4B5563;
	text-align: center;
	font-family: var(--font-family-font-heading, 'Montserrat', sans-serif);
	font-size: 20px; /* text-xl */
	font-style: normal;
	font-weight: 700;
	line-height: 32px; /* leading-8, 160% */
	letter-spacing: 0.1px;
	max-width: 700px;
	margin: 0 auto var(--spacing-xl);
}

.people-behind-section__content p {
	margin-bottom: 0;
}

.people-behind-section__video {
	width: 100%;
	max-width: 876px;
	height: 584px;
	margin: 0 auto;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	position: relative;
	aspect-ratio: 3/2;
}

.people-behind-section__video-embed-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.people-behind-section__video-embed-wrapper.is-hidden {
	display: none;
}

.people-behind-section__video-embed-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

.people-behind-section__video iframe,
.people-behind-section__video video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

.people-behind-section__video-player {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.people-behind-section__video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.people-behind-section__video-overlay:hover {
	background-color: rgba(0, 0, 0, 0.5);
}

.people-behind-section__video-overlay.is-hidden {
	display: none;
}

.people-behind-section__video-play-btn {
	background: transparent;
	border: none;
	padding: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.people-behind-section__video-play-btn:hover {
	transform: scale(1.1);
}

.people-behind-section__video-play-btn:active {
	transform: scale(0.95);
}

.people-behind-section__play-icon {
	width: 64px;
	height: 64px;
	aspect-ratio: 1/1;
}

.environment-section {
	padding: var(--section-padding-mobile) 0;
	background-color: #2C2829;
}

.environment-section__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-lg);
	align-items: start;
}

.environment-section__left {
	width: 100%;
}

.environment-section__right {
	width: 100%;
}

h2.environment-section__title {
	color: var(--background, var(--white));
	font-family: var(--font-family-font-heading, 'Montserrat', sans-serif);
	font-size: 24px; /* text-2xl equivalent */
	font-style: normal;
	font-weight: 700;
	line-height: 36px; /* leading-9 equivalent, 150% */
	text-align: left;
	margin-bottom: var(--spacing-md);
}

.environment-section__content {
	margin-bottom: var(--spacing-xl);
	align-self: stretch;
}

.environment-section__content p {
	color: #E9E9E9;
	font-family: var(--font-family-font-sans, 'Open Sans', sans-serif);
	font-size: 16px; /* text-base equivalent */
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* leading-7 equivalent, 175% */
	letter-spacing: 0.25px;
	margin-bottom: 0;
}

.environment-section__image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: stretch;
}

.environment-section__img {
	width: 100%;
	height: 100%;
	min-height: 500px;
	border-radius: 24px;
	object-fit: cover;
}

.environment-section__features {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
	margin-top: var(--spacing-lg);
}

.environment-feature {
	display: flex;
	align-items: center;
	gap: 12px;
}

.environment-feature__icon {
	flex-shrink: 0;
	display: flex;
	width: 54px;
	height: 54px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	aspect-ratio: 1/1;
	border-radius: 12px; /* rounded-xl equivalent */
	background: #ADD555;
}

.environment-feature__icon-img {
	width: 32px;
	height: 32px;
	flex-shrink: 0;
	aspect-ratio: 1/1;
	object-fit: contain;
}

.environment-feature__icon-img--respect {
	width: 28px;
	height: 32px;
	aspect-ratio: 7/8;
}

.environment-feature__content {
	flex: 1;
}

.environment-feature__title {
	color: var(--background, var(--white, #ffffff));
	font-family: var(--font-family-font-heading, 'Montserrat', sans-serif);
	font-size: 16px; /* text-base */
	font-style: normal;
	font-weight: 700;
	line-height: 28px; /* leading-7, 175% */
	letter-spacing: 0.1px;
	margin-bottom: var(--spacing-xs);
}

.environment-feature__description {
	color: #E9E9E9;
	font-family: var(--font-family-font-sans, 'Open Sans', sans-serif);
	font-size: 16px; /* text-base */
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* leading-7, 175% */
	letter-spacing: 0.25px;
	margin-bottom: 0;
}

.team-expertise-section {
	padding: var(--section-padding-mobile) 0;
	background-color: #F6F6F6;
}

h2.team-expertise-section__title {
	color: #85B041;
	font-family: var(--font-family-font-heading, 'Montserrat', sans-serif);
	font-size: 36px; /* text-4xl */
	font-style: normal;
	font-weight: 700;
	line-height: 40px; /* leading-10, 111.111% */
	text-align: center;
	margin-bottom: var(--spacing-md);
}

.team-expertise-section__content {
	flex: 1 0 0;
	color: #4B5563;
	text-align: center;
	font-family: var(--font-family-font-heading, 'Montserrat', sans-serif);
	font-size: 20px; /* text-xl */
	font-style: normal;
	font-weight: 700;
	line-height: 32px; /* leading-8, 160% */
	letter-spacing: 0.1px;
	max-width: 700px;
	margin: 0 auto var(--spacing-xl);
}

.team-expertise-section__content p {
	margin-bottom: 0;
}

.team-expertise-section__features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-top: var(--spacing-lg);
	align-items: stretch;
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
}

.team-expertise-feature {
	background-color: var(--white);
	border-radius: 8px;
	padding: var(--spacing-lg) var(--spacing-md);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	max-width: 342px;
	margin: 0 auto;
}

.team-expertise-feature__icon {
	margin-bottom: var(--spacing-md);
}

.team-expertise-feature__icon-img {
	object-fit: contain;
}

.team-expertise-feature__title {
	align-self: stretch;
	color: #85B041;
	text-align: center;
	font-family: var(--font-family-font-heading, 'Montserrat', sans-serif);
	font-size: 20px; /* text-xl equivalent */
	font-style: normal;
	font-weight: 700;
	line-height: 32px; /* leading-8 equivalent, 160% */
	letter-spacing: 0.1px;
	margin-bottom: var(--spacing-xs);
}

.team-expertise-feature__description {
	color: #4B5563;
	text-align: center;
	font-family: var(--font-family-font-sans, 'Open Sans', sans-serif);
	font-size: 16px; /* text-base equivalent */
	font-style: normal;
	font-weight: 400;
	line-height: 28px; /* leading-7 equivalent, 175% */
	letter-spacing: 0.25px;
	align-self: stretch;
	margin-bottom: 0;
}

.content-section {
	padding: var(--section-padding-mobile) 0;
}

.environment-section + .content-section {
	padding: 0 !important;
	margin: 0 !important;
	min-height: 0 !important;
}

.environment-section + .content-section .content-section__inner {
	margin: 0 !important;
	padding: 0 !important;
}

.content-section__inner {
	max-width: 800px;
	margin: 0 auto;
}

.about-cta-section {
	padding: var(--section-padding-mobile) 0;
	background-color: var(--white);
}

.about-cta-section__inner {
	display: flex;
	padding: 32px 24px; /* Mobile: reduced padding */
	flex-direction: column;
	align-items: center;
	gap: 24px; /* gap-6 */
	align-self: stretch;
	border-radius: 24px; /* rounded-3xl */
	background: #FF5D24;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

h2.about-cta-section__title {
	color: var(--background, var(--white, #ffffff));
	text-align: center;
	font-family: var(--font-family-font-heading, 'Montserrat', sans-serif);
	font-size: 36px; /* text-4xl */
	font-style: normal;
	font-weight: 700;
	line-height: 40px; /* leading-10, 111.111% */
	margin: 0;
}

.about-cta-section__description {
	color: var(--background, var(--white, #ffffff));
	text-align: center;
	width: 768px;
	max-width: 100%;
	font-family: var(--font-family-font-heading, 'Montserrat', sans-serif);
	font-size: 20px; /* text-xl */
	font-style: normal;
	font-weight: 700;
	line-height: 32px; /* leading-8, 160% */
	letter-spacing: 0.1px;
	margin: 0;
}

@media (max-width: 767px) {
	.about-cta-section {
		padding-bottom: var(--spacing-sm);
	}

	h2.about-cta-section__title {
		font-size: 24px;
		line-height: 30px;
	}

	.about-cta-section__description {
		font-size: 16px;
		line-height: 24px;
	}

	.people-behind-section__video {
		height: auto;
		aspect-ratio: 16/9;
	}
}

.about-cta-section__buttons {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-md);
	align-items: center;
	justify-content: center;
}

.about-cta-section__button {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px; /* gap-1 */
	border-radius: 8px; /* rounded-md */
	text-decoration: none;
	transition: all 0.3s ease;
	font-family: var(--font-heading, 'Montserrat', sans-serif);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
}

.about-cta-section__button--quote {
	min-width: 80px;
	padding: 16px; /* var(--padding-p-4, 16px) */
	background: var(--background, var(--white, #ffffff));
	color: #FF5D24;
	border: none;
}

.about-cta-section__button--quote:hover,
.about-cta-section__button--quote:focus {
	background-color: rgba(255, 255, 255, 0.9);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-cta-section__button--contact {
	width: 173px;
	min-width: 80px;
	padding: 16px; /* var(--padding-p-4, 16px) */
	background: transparent;
	color: var(--background, var(--white, #ffffff));
	border: 1px solid var(--background, var(--white, #ffffff));
}

.about-cta-section__button--contact:hover,
.about-cta-section__button--contact:focus {
	background-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.about-cta-section__button-icon {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.about-cta-section__button-text {
	display: inline-block;
}

.intro-section {
	padding: var(--intro-padding-mobile) 0;
}

.intro-section__inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.team-section {
	padding: var(--section-padding-mobile) 0;
	background-color: #f9fafb;
}

.team-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-lg);
	margin-top: var(--spacing-lg);
}

.team-member {
	background-color: var(--white);
	border-radius: 8px;
	padding: var(--spacing-md);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.team-member__image {
	width: 100%;
	margin-bottom: var(--spacing-md);
}

.team-member__img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.team-member__name {
	font-family: var(--font-heading);
	font-size: 24px;
	line-height: 36px;
	font-weight: 700;
	margin-bottom: var(--spacing-xs);
}

.team-member__position {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.5px;
	color: var(--color-accent);
	margin-bottom: var(--spacing-sm);
	font-weight: 600;
}

.team-member__bio {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.5px;
	color: var(--color-body);
}

.values-section {
	padding: var(--section-padding-mobile) 0;
}

.values-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-lg);
	margin-top: var(--spacing-lg);
}

.value-item {
	text-align: center;
	padding: var(--spacing-md);
}

.value-item__icon {
	margin-bottom: var(--spacing-md);
}

.value-item__icon-img {
	width: 64px;
	height: 64px;
	object-fit: contain;
	margin: 0 auto;
}

.value-item__title {
	font-family: var(--font-heading);
	font-size: 24px;
	line-height: 36px;
	font-weight: 700;
	margin-bottom: var(--spacing-sm);
}

.value-item__description {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.5px;
	color: var(--color-body);
}

@media (min-width: 768px) {
	.content-section,
	.intro-section,
	.team-section,
	.values-section {
		padding: var(--section-padding-tablet) 0;
	}

	.intro-section {
		padding: var(--intro-padding-tablet) 0;
	}

	.who-we-are-section__features {
		grid-template-columns: repeat(2, 1fr);
	}

	.safety-professionalism-section__inner {
		grid-template-columns: 1fr 1fr;
		gap: var(--spacing-xl);
	}

	.safety-professionalism-section__content {
		justify-self: end;
	}

	.environment-section__inner {
		grid-template-columns: 1fr 1fr;
		gap: var(--spacing-xl);
		align-items: stretch;
	}

	.environment-section__img {
		min-height: 600px;
	}

	.team-expertise-section__features {
		grid-template-columns: repeat(2, 1fr);
		justify-items: center;
		gap: 10px;
	}

	.team-grid,
	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-cta-section__inner {
		padding: 48px 64px; /* Tablet: medium padding */
	}

	.about-cta-section__description {
		width: 100%;
		max-width: 768px;
	}

	.about-cta-section__buttons {
		flex-direction: row;
		gap: var(--spacing-lg);
	}
}

@media (min-width: 1024px) {
	.who-we-are-section,
	.safety-professionalism-section,
	.people-behind-section,
	.environment-section,
	.team-expertise-section,
	.content-section,
	.about-cta-section,
	.team-section,
	.values-section {
		padding: var(--section-padding-desktop) 0;
	}

	.intro-section {
		padding: var(--intro-padding-desktop) 0;
	}

	.who-we-are-section__features {
		grid-template-columns: repeat(4, 1fr);
	}

	.environment-section__img {
		min-height: 500px;
	}

	.team-expertise-section__features {
		grid-template-columns: repeat(3, 1fr);
		justify-items: center;
		gap: 10px;
	}

	.team-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.values-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.about-cta-section__inner {
		padding: 64px 128px;
	}

	.about-cta-section__description {
		width: 768px;
	}

	.about-cta-section__buttons {
		flex-direction: row;
		gap: var(--spacing-lg);
	}

	h2.about-cta-section__title {
		font-size: 42px;
		line-height: 48px;
	}
}

.page-template-page-about .site-footer {
	margin-top: 0;
}

