/* ==========================================================================
   PINHOLEIR HERO - REFINED DESKTOP DESIGN
   ========================================================================== */

.ph-hero {
	--hero-blue: #075cf4;
	--hero-blue-dark: #064fd5;
	--hero-navy: #082c63;
	--hero-text: #17396b;

	position: relative;
	width: 100%;
	padding-bottom: 82px;
	background: #ffffff;
	overflow: hidden;
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */

.ph-hero__slider {
	position: relative;

	width: 100%;
	height: 690px;

	overflow: hidden;

	background:
		linear-gradient(
			90deg,
			#91b1e5 0%,
			#a9c1e7 17%,
			#c5d5ec 30%,
			#e0e9f6 42%,
			#f2f6fb 52%,
			#f7f9fc 67%,
			#e6effa 100%
		);
}

.ph-hero__slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.ph-hero__slide {
	position: absolute;
	inset: 0;

	visibility: hidden;
	opacity: 0;

	transition:
		opacity 0.75s ease,
		visibility 0.75s ease;
}

.ph-hero__slide.is-active {
	z-index: 2;

	visibility: visible;
	opacity: 1;
}

/* ==========================================================================
   BACKGROUND
   ========================================================================== */

.ph-hero__background {
	position: absolute;
	inset: 0;
	z-index: 0;

	overflow: hidden;

	pointer-events: none;
}

/*
 * Larger white illumination in the centre.
 * This is important to get closer to your reference.
 */

.ph-hero__glow {
	position: absolute;

	top: -210px;
	left: 21%;

	width: 74%;
	height: 1050px;

	background:
		radial-gradient(
			ellipse at center,
			rgba(255, 255, 255, 1) 0%,
			rgba(255, 255, 255, 0.93) 26%,
			rgba(255, 255, 255, 0.66) 43%,
			rgba(255, 255, 255, 0.24) 61%,
			rgba(255, 255, 255, 0) 77%
		);
}

/* ==========================================================================
   DOT PATTERN
   ========================================================================== */

.ph-hero__dots {
	position: absolute;

	top: 7px;
	left: 42%;

	width: 120px;
	height: 122px;

	opacity: 0.4;

	background-image:
		radial-gradient(
			circle,
			rgba(255, 255, 255, 0.95) 1.15px,
			transparent 1.4px
		);

	background-size: 13px 13px;

	-webkit-mask-image:
		linear-gradient(
			to bottom,
			#000 0%,
			rgba(0, 0, 0, 0.55) 55%,
			transparent 100%
		);

	mask-image:
		linear-gradient(
			to bottom,
			#000 0%,
			rgba(0, 0, 0, 0.55) 55%,
			transparent 100%
		);
}

/* ==========================================================================
   RINGS
   ========================================================================== */

.ph-hero__rings {
	position: absolute;

	top: -330px;
	right: -50px;

	width: 900px;
	height: 900px;

	border: 2px solid rgba(255, 255, 255, 0.48);
	border-radius: 50%;
}

.ph-hero__rings::before,
.ph-hero__rings::after,
.ph-hero__rings span {
	position: absolute;

	border: 2px solid rgba(255, 255, 255, 0.39);
	border-radius: 50%;

	content: "";
}

.ph-hero__rings::before {
	inset: 58px;
}

.ph-hero__rings::after {
	inset: 118px;
}

.ph-hero__rings span:nth-child(1) {
	inset: 178px;
	opacity: 0.66;
}

.ph-hero__rings span:nth-child(2) {
	inset: 238px;
	opacity: 0.47;
}

.ph-hero__rings span:nth-child(3) {
	inset: 298px;
	opacity: 0.3;
}

/* ==========================================================================
   LOWER BLUE CURVE
   ========================================================================== */

.ph-hero__bottom-wave {
	position: absolute;

	right: -110px;
	bottom: -175px;

	width: 73%;
	height: 315px;

	border-radius: 62% 0 0 0;

	background:
		linear-gradient(
			145deg,
			rgba(65, 125, 205, 0) 3%,
			rgba(61, 118, 199, 0.18) 29%,
			rgba(52, 106, 190, 0.68) 65%,
			#376fc4 100%
		);

	transform: rotate(-2deg);
}

.ph-hero__bottom-wave::before,
.ph-hero__bottom-wave::after {
	position: absolute;

	width: 120%;
	height: 100%;

	border-radius: 60% 0 0;

	content: "";
}

.ph-hero__bottom-wave::before {
	top: -14px;
	left: -85px;

	border-top: 2px solid rgba(255, 255, 255, 0.68);

	transform: rotate(4deg);
}

.ph-hero__bottom-wave::after {
	top: 7px;
	left: -65px;

	border-top: 1px solid rgba(255, 255, 255, 0.5);

	transform: rotate(7deg);
}

/* ==========================================================================
   MAIN WRAPPER
   ========================================================================== */

.ph-hero__container {
	position: relative;
	z-index: 5;

	width: 100%;
	height: 100%;
}

/* ==========================================================================
   LEFT CONTENT
   ========================================================================== */

.ph-hero__content {
	position: absolute;

	/*
	 * Main adjustment because your header overlays the hero.
	 */
	top: 150px;
	left: 7.5%;

	z-index: 15;

	width: 550px;
	max-width: 39%;
}

/* ==========================================================================
   EYEBROW
   ========================================================================== */

.ph-hero__eyebrow {
	display: inline-flex;
	align-items: center;

	gap: 7px;

	min-height: 34px;

	margin: 0 0 19px;
	padding: 5px 13px 5px 8px;

	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: 999px;

	background: rgba(255, 255, 255, 0.92);

	box-shadow:
		0 5px 16px rgba(28, 64, 123, 0.07);

	color: var(--hero-blue);

	font-size: 11px;
	font-weight: 800;
	line-height: 1;

	text-transform: uppercase;

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.ph-hero__eyebrow:hover {
	box-shadow:
		0 9px 22px rgba(28, 64, 123, 0.13);

	transform: translateY(-2px);
}

.ph-hero__eyebrow-icon {
	display: grid;

	width: 22px;
	height: 22px;

	flex: 0 0 22px;

	place-items: center;
}

.ph-hero__eyebrow-icon svg {
	width: 21px;
	height: 21px;
}

/* ==========================================================================
   TITLE
   ========================================================================== */

.ph-hero__title {
	max-width: 540px;

	margin: 0;

	color: var(--hero-navy);

	/*
	 * Your current heading is too large.
	 */
	font-size: clamp(42px, 3.15vw, 54px);
	font-weight: 750;
	line-height: 1.045;

	letter-spacing: -2.4px;
}

.ph-hero__title span,
.ph-hero__title strong {
	display: block;
}

.ph-hero__title strong {
	margin-top: 4px;

	color: var(--hero-blue);

	font: inherit;
}

/* ==========================================================================
   DESCRIPTION
   ========================================================================== */

.ph-hero__description {
	max-width: 510px;

	margin: 18px 0 0;

	color: var(--hero-text);

	font-size: 14.5px;
	font-weight: 500;
	line-height: 1.55;
}

/* ==========================================================================
   BENEFITS
   ========================================================================== */

.ph-hero__benefits {
	display: flex;
	align-items: center;

	width: 565px;

	margin-top: 27px;
}

.ph-hero__benefit {
	position: relative;

	display: flex;
	align-items: center;

	gap: 8px;

	padding: 0 14px;

	color: #0b316d;

	font-size: 11px;
	font-weight: 700;
	line-height: 1.5;

	white-space: nowrap;
}

.ph-hero__benefit:first-child {
	padding-left: 0;
}

.ph-hero__benefit:not(:last-child)::after {
	position: absolute;

	top: 6px;
	right: 0;

	width: 1px;
	height: 33px;

	background: rgba(15, 60, 125, 0.18);

	content: "";
}

.ph-hero__benefit-icon {
	display: grid;

	width: 42px;
	height: 42px;

	flex: 0 0 42px;

	place-items: center;

	border: 1px solid rgba(14, 78, 169, 0.12);
	border-radius: 50%;

	background: rgba(239, 246, 255, 0.7);

	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.35s ease,
		background-color 0.35s ease;
}

.ph-hero__benefit-icon svg {
	width: 35px;
	height: 35px;

	fill: none;
	stroke: #174589;

	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ph-hero__benefit:hover .ph-hero__benefit-icon {
	background: #ffffff;

	box-shadow:
		0 8px 20px rgba(7, 73, 178, 0.12);

	transform:
		translateY(-3px)
		scale(1.055);
}

/* ==========================================================================
   CTA ROW
   ========================================================================== */

.ph-hero__actions {
	display: flex;
	align-items: center;

	gap: 22px;

	margin-top: 33px;
}

/* ==========================================================================
   PRIMARY BUTTON
   ========================================================================== */

.ph-hero__primary {
	position: relative;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	gap: 10px;

	min-height: 49px;

	padding: 12px 25px;

	border: 1px solid var(--hero-blue);
	border-radius: 999px;

	background: var(--hero-blue);

	box-shadow:
		0 10px 23px rgba(7, 92, 244, 0.17);

	color: #ffffff;

	font-size: 12px;
	font-weight: 800;

	text-transform: uppercase;

	overflow: hidden;

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		background-color 0.3s ease;
}

.ph-hero__primary::before {
	position: absolute;

	top: -80%;
	left: -55%;

	width: 38%;
	height: 260%;

	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(255, 255, 255, 0.34),
			transparent
		);

	content: "";

	transform: rotate(22deg);

	transition: left 0.65s ease;
}

.ph-hero__primary span,
.ph-hero__primary svg {
	position: relative;
	z-index: 2;
}

.ph-hero__primary svg {
	width: 15px;
	height: 15px;

	fill: none;
	stroke: currentColor;

	stroke-width: 1.8;

	transition: transform 0.3s ease;
}

.ph-hero__primary:hover {
	background: var(--hero-blue-dark);

	box-shadow:
		0 15px 32px rgba(7, 92, 244, 0.25);

	color: #ffffff;

	transform: translateY(-3px);
}

.ph-hero__primary:hover::before {
	left: 130%;
}

.ph-hero__primary:hover svg {
	transform: translate(3px, -3px);
}

/* ==========================================================================
   VIDEO CTA
   ========================================================================== */

.ph-hero__video {
	display: flex;
	align-items: center;

	gap: 10px;

	color: var(--hero-text);
}

.ph-hero__play {
	display: grid;

	width: 48px;
	height: 48px;

	flex: 0 0 48px;

	place-items: center;

	border: 1.3px solid #17427f;
	border-radius: 50%;

	transition:
		background-color 0.3s ease,
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.ph-hero__play svg {
	width: 20px;
	height: 20px;

	fill: #123c76;

	transition: fill 0.3s ease;
}

.ph-hero__video-copy {
	display: flex;
	flex-direction: column;

	gap: 2px;
}

.ph-hero__video-copy strong {
	color: var(--hero-blue);

	font-size: 13px;
	font-weight: 800;

	text-transform: uppercase;
}

.ph-hero__video-copy small {
	color: #3b5378;

	font-size: 11.5px;
	font-weight: 600;
}

.ph-hero__video:hover .ph-hero__play {
	background: var(--hero-blue);

	box-shadow:
		0 9px 21px rgba(7, 92, 244, 0.2);

	transform: scale(1.06);
}

.ph-hero__video:hover .ph-hero__play svg {
	fill: #ffffff;
}

/* ==========================================================================
   RIGHT IMAGE
   ========================================================================== */

/*
 * This is the biggest correction.

 * Previous:
 * left:37% = too much image.

 * New:
 * image begins later and has a much wider blending zone.
 */

.ph-hero__visual {
	position: absolute;

	top: 0;
	right: 0;
	bottom: 0;
	left: 42%;

	z-index: 3;

	overflow: hidden;

	pointer-events: none;
}

.ph-hero__visual::before {
	display: none !important;
}

/*
 * Do NOT make the photo fill aggressively.
 */

.ph-hero__image {
	position: absolute;

	top: 0;
	right: 0;

	width: 100%;
	height: 100%;

	max-width: none;

	object-fit: cover;

	/*
	 * Move image slightly right.
	 * Prevents uterus becoming enormous in centre.
	 */
	object-position: 58% center;

	-webkit-mask-image:
		linear-gradient(
			90deg,
			transparent 0%,
			rgba(0, 0, 0, 0.02) 5%,
			rgba(0, 0, 0, 0.08) 10%,
			rgba(0, 0, 0, 0.2) 15%,
			rgba(0, 0, 0, 0.42) 20%,
			rgba(0, 0, 0, 0.67) 26%,
			rgba(0, 0, 0, 0.87) 32%,
			#000 39%,
			#000 100%
		);

	mask-image:
		linear-gradient(
			90deg,
			transparent 0%,
			rgba(0, 0, 0, 0.02) 5%,
			rgba(0, 0, 0, 0.08) 10%,
			rgba(0, 0, 0, 0.2) 15%,
			rgba(0, 0, 0, 0.42) 20%,
			rgba(0, 0, 0, 0.67) 26%,
			rgba(0, 0, 0, 0.87) 32%,
			#000 39%,
			#000 100%
		);

	/*
	 * Remove aggressive initial scaling.
	 */
	transform: scale(1);

	transition:
		transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}

/*
 * Large haze across centre like reference.
 */

.ph-hero__slide::after {
	position: absolute;

	top: 0;
	bottom: 0;
	left: 32%;

	z-index: 4;

	width: 29%;

	background:
		radial-gradient(
			ellipse at center,
			rgba(247, 249, 253, 0.78) 0%,
			rgba(247, 249, 253, 0.48) 35%,
			rgba(247, 249, 253, 0.2) 57%,
			rgba(247, 249, 253, 0) 78%
		);

	content: "";

	pointer-events: none;
}

/* ==========================================================================
   IMAGE ANIMATION
   ========================================================================== */

.ph-hero__slide.is-active .ph-hero__image {
	animation: phImageReveal 1.1s ease both;
}

@keyframes phImageReveal {

	from {
		opacity: 0.8;

		transform:
			translateX(22px)
			scale(1.025);
	}

	to {
		opacity: 1;

		transform:
			translateX(0)
			scale(1);
	}
}

/*
 * Very subtle hover.
 * Previous zoom was too aggressive.
 */

.ph-hero__slider:hover
.ph-hero__slide.is-active
.ph-hero__image {
	transform: scale(1.012);
}

/* ==========================================================================
   ARROWS
   ========================================================================== */

.ph-hero__arrow {
	position: absolute;

	top: 51%;
	z-index: 40;

	display: grid;

	width: 54px;
	height: 54px;

	padding: 0;

	place-items: center;

	border: 0;
	border-radius: 50%;

	background: #09396f;

	box-shadow:
		0 8px 22px rgba(7, 39, 92, 0.17);

	color: #ffffff;

	cursor: pointer;

	transform: translateY(-50%);

	transition:
		background-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.ph-hero__arrow svg {
	width: 26px;
	height: 26px;

	fill: none;
	stroke: currentColor;

	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ph-hero__arrow--prev {
	left: 27px;
}

.ph-hero__arrow--next {
	right: 26px;
}

.ph-hero__arrow:hover {
	background: var(--hero-blue);

	box-shadow:
		0 12px 27px rgba(7, 92, 244, 0.27);

	transform:
		translateY(-50%)
		scale(1.06);
}

/* ==========================================================================
   DOTS
   ========================================================================== */

.ph-hero__pagination {
	position: absolute;

	left: 50%;
	bottom: 51px;

	z-index: 41;

	display: flex;
	align-items: center;

	gap: 9px;

	transform: translateX(-50%);
}

.ph-hero__dot {
	width: 10px;
	height: 7px;

	padding: 0;

	border: 0;
	border-radius: 999px;

	background: #a8b8cf;

	cursor: pointer;

	transition:
		width 0.25s ease,
		background-color 0.25s ease;
}

.ph-hero__dot.is-active {
	width: 13px;

	background: var(--hero-blue);
}

/* ==========================================================================
   FLOATING STATS PANEL
   ========================================================================== */

.ph-hero__stats-wrap {
	position: absolute;

	right: 0;
	bottom: 0;
	left: 0;

	z-index: 50;

	padding-inline: 7.5%;
}

.ph-hero__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);

	width: 100%;
	max-width: 1190px;
	height: 118px;

	margin-inline: auto;

	overflow: hidden;

	border: 1px solid rgba(19, 61, 124, 0.1);
	border-radius: 22px;

	background: #ffffff;

	box-shadow:
		0 17px 38px rgba(25, 53, 101, 0.09),
		0 2px 7px rgba(25, 53, 101, 0.035);
}

.ph-hero__stat {
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	gap: 17px;

	padding: 18px 26px;

	background: transparent;

	color: var(--hero-blue);
}

/*
 * Keep only the thin vertical separator.
 */

.ph-hero__stat:not(:last-child)::after {
	position: absolute;

	top: 34px;
	right: 0;

	width: 1px;
	height: 49px;

	background: #d9e0eb;

	content: "";
}

.ph-hero__stat-icon {
	display: grid;

	width: 50px;
	height: 50px;

	flex: 0 0 50px;

	place-items: center;

	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.35s ease;
}

.ph-hero__stat-icon svg {
	width: 49px;
	height: 49px;

	fill: none;
	stroke: var(--hero-blue);

	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ph-hero__stat > div {
	display: flex;
	flex-direction: column;

	gap: 3px;

	color: var(--hero-blue);

	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;

	transition: transform 0.3s ease;
}

.ph-hero__stat strong {
	font-size: 25px;
	font-weight: 800;
	line-height: 1;
}

/*
 * NO CARD / SQUARE ON HOVER.
 */

.ph-hero__stat:hover {
	background: transparent;
}

.ph-hero__stat:hover .ph-hero__stat-icon {
	transform:
		translateY(-3px)
		scale(1.06);

	filter:
		drop-shadow(
			0 6px 8px rgba(7, 92, 244, 0.14)
		);
}

.ph-hero__stat:hover > div {
	transform: translateY(-2px);
}

/* ==========================================================================
   CONTENT ENTRANCE
   ========================================================================== */

.ph-hero__slide .ph-hero__eyebrow,
.ph-hero__slide .ph-hero__title,
.ph-hero__slide .ph-hero__description,
.ph-hero__slide .ph-hero__benefits,
.ph-hero__slide .ph-hero__actions {
	opacity: 0;

	transform: translateY(18px);
}

.ph-hero__slide.is-active .ph-hero__eyebrow {
	animation: phContentIn 0.55s 0.08s forwards;
}

.ph-hero__slide.is-active .ph-hero__title {
	animation: phContentIn 0.65s 0.15s forwards;
}

.ph-hero__slide.is-active .ph-hero__description {
	animation: phContentIn 0.65s 0.22s forwards;
}

.ph-hero__slide.is-active .ph-hero__benefits {
	animation: phContentIn 0.65s 0.29s forwards;
}

.ph-hero__slide.is-active .ph-hero__actions {
	animation: phContentIn 0.65s 0.36s forwards;
}

@keyframes phContentIn {

	to {
		opacity: 1;

		transform: translateY(0);
	}
}

/* ==========================================================================
   LAPTOP
   ========================================================================== */

@media (max-width: 1300px) {

	.ph-hero__content {
		top: 142px;
		left: 6.5%;

		width: 500px;
		max-width: 42%;
	}

	.ph-hero__title {
		font-size: 46px;
	}

	.ph-hero__benefits {
		width: 550px;
	}

	.ph-hero__benefit {
		padding-inline: 11px;

		font-size: 10.5px;
	}

	.ph-hero__visual {
		left: 41%;
	}
}

/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 1024px) {

	.ph-hero {
		padding-bottom: 105px;
	}

	.ph-hero__slider {
		height: 720px;
	}

	.ph-hero__content {
		top: 130px;
		left: 6%;

		width: 54%;
		max-width: 54%;
	}

	.ph-hero__title {
		font-size: 40px;
	}

	.ph-hero__description {
		font-size: 14px;
	}

	.ph-hero__benefits {
		display: grid;
		grid-template-columns: repeat(2, max-content);

		gap: 13px 18px;

		width: auto;
	}

	.ph-hero__benefit {
		padding: 0;
	}

	.ph-hero__benefit::after {
		display: none;
	}

	.ph-hero__actions {
		flex-direction: column;
		align-items: flex-start;

		gap: 13px;
	}

	.ph-hero__visual {
		left: 44%;
	}

	.ph-hero__stats {
		grid-template-columns: repeat(2, 1fr);

		height: 190px;
	}

	.ph-hero__stat:nth-child(2)::after {
		display: none;
	}

	.ph-hero__stat:nth-child(1),
	.ph-hero__stat:nth-child(2) {
		border-bottom: 1px solid #e0e6ef;
	}
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 767px) {

	.ph-hero {
		padding-bottom: 165px;
	}

	.ph-hero__slider {
		height: 880px;
	}

	.ph-hero__content {
		top: 118px;
		left: 20px;

		width: calc(100% - 40px);
		max-width: none;
	}

	.ph-hero__eyebrow {
		font-size: 9.5px;
	}

	.ph-hero__title {
		max-width: 390px;

		font-size: clamp(36px, 10vw, 46px);

		letter-spacing: -1.8px;
	}

	.ph-hero__description {
		max-width: 390px;

		font-size: 13.5px;
	}

	.ph-hero__benefits {
		grid-template-columns: repeat(2, 1fr);

		width: 100%;
		max-width: 390px;
	}

	.ph-hero__benefit {
		font-size: 10px;

		white-space: normal;
	}

	.ph-hero__actions {
		margin-top: 24px;
	}

	.ph-hero__visual {
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;

		height: 375px;
	}

	.ph-hero__image {
		object-position: center center;

		-webkit-mask-image:
			linear-gradient(
				180deg,
				transparent 0%,
				rgba(0, 0, 0, 0.18) 14%,
				rgba(0, 0, 0, 0.7) 26%,
				#000 37%,
				#000 100%
			);

		mask-image:
			linear-gradient(
				180deg,
				transparent 0%,
				rgba(0, 0, 0, 0.18) 14%,
				rgba(0, 0, 0, 0.7) 26%,
				#000 37%,
				#000 100%
			);
	}

	.ph-hero__slide::after {
		display: none;
	}

	.ph-hero__arrow {
		top: auto;
		bottom: 35px;

		width: 44px;
		height: 44px;

		transform: none;
	}

	.ph-hero__arrow--prev {
		left: 18px;
	}

	.ph-hero__arrow--next {
		right: 18px;
	}

	.ph-hero__pagination {
		bottom: 51px;
	}

	.ph-hero__stats-wrap {
		padding-inline: 14px;
	}

	.ph-hero__stats {
		grid-template-columns: repeat(2, 1fr);

		height: 245px;

		border-radius: 19px;
	}

	.ph-hero__stat {
		gap: 8px;

		padding: 12px 8px;
	}

	.ph-hero__stat-icon {
		width: 38px;
		height: 38px;
		flex-basis: 38px;
	}

	.ph-hero__stat-icon svg {
		width: 38px;
		height: 38px;
	}

	.ph-hero__stat > div {
		font-size: 10px;
	}

	.ph-hero__stat strong {
		font-size: 20px;
	}
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

.ph-hero a:focus-visible,
.ph-hero button:focus-visible {
	outline: 3px solid rgba(7, 92, 244, 0.38);
	outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {

	.ph-hero *,
	.ph-hero *::before,
	.ph-hero *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.ph-hero__image {
		transform: none !important;
	}
}