/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

/* Lethbridge custom home template styles (scoped to avoid affecting Avada). */
.lethbridge-home {
	--lh-primary: #ffffff;
	--lh-secondary: #233889;
	/* Keep legacy variable names so the template styling stays consistent. */
	--lh-green: var(--lh-secondary);
	--lh-navy: var(--lh-secondary);
	--lh-sand: var(--lh-primary);
	--lh-line: rgba(35, 56, 137, 0.14);
	--lh-shadow: 0 14px 40px rgba(35, 56, 137, 0.10);
	--lh-radius: 18px;
	color: var(--lh-secondary);
	/* Avoid accidental horizontal scroll from decorative layers / badges. */
	overflow-x: hidden;
}

.lethbridge-home * {
	box-sizing: border-box;
}

.lh-container {
	max-width: 1280px;
	margin: 0 auto;
	padding-left: max(18px, env(safe-area-inset-left, 0px));
	padding-right: max(18px, env(safe-area-inset-right, 0px));
	padding-top: 0;
	padding-bottom: 0;
}

.lh-hero {
	position: relative;
	padding: 64px 0 40px;
	background:
		linear-gradient(120deg, rgba(35, 56, 137, 0.16), rgba(35, 56, 137, 0) 55%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 1));
	overflow: hidden;
	/* Ensure the background pseudo-element stays behind slide content. */
	z-index: 0;
}

.lh-hero:before {
	content: "";
	position: absolute;
	inset: -120px -120px auto auto;
	width: 420px;
	height: 420px;
	border-radius: 999px;
	background: radial-gradient(circle at 30% 30%, rgba(35, 56, 137, 0.22), rgba(35, 56, 137, 0) 60%);
	pointer-events: none;
	z-index: 0;
}

.lh-hero-slider {
	position: relative;
	z-index: 1;
	touch-action: pan-y pinch-zoom;
}

/* Stacked slides: crossfade + varied entrance on the active slide content */
.lh-hero-slides-viewport {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas: "stack";
}

.lh-hero-slide {
	grid-area: stack;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease, visibility 0.5s ease;
	pointer-events: none;
	z-index: 0;
}

.lh-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

/* Rotate through 5 entrance styles (data-effect set by JS on each change) */
.lh-hero-slider[data-effect="0"] .lh-hero-slide.is-active .lh-hero-grid {
	animation: lhHeroFadeInUp 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lh-hero-slider[data-effect="1"] .lh-hero-slide.is-active .lh-hero-grid {
	animation: lhHeroSlideInFromRight 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lh-hero-slider[data-effect="2"] .lh-hero-slide.is-active .lh-hero-grid {
	animation: lhHeroSlideInFromLeft 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lh-hero-slider[data-effect="3"] .lh-hero-slide.is-active .lh-hero-grid {
	animation: lhHeroZoomIn 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lh-hero-slider[data-effect="4"] .lh-hero-slide.is-active .lh-hero-grid {
	animation: lhHeroBlurIn 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes lhHeroFadeInUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes lhHeroSlideInFromRight {
	from {
		opacity: 0;
		transform: translateX(52px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes lhHeroSlideInFromLeft {
	from {
		opacity: 0;
		transform: translateX(-52px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes lhHeroZoomIn {
	from {
		opacity: 0;
		transform: scale(0.94);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes lhHeroBlurIn {
	from {
		opacity: 0;
		transform: scale(0.98);
		filter: blur(10px);
	}
	to {
		opacity: 1;
		transform: scale(1);
		filter: blur(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.lh-hero-slide {
		transition: opacity 0.2s ease, visibility 0.2s ease;
	}

	.lh-hero-slider .lh-hero-slide.is-active .lh-hero-grid {
		animation: none !important;
	}
}

.lh-hero-pagination {
	margin-top: 20px;
	display: flex;
	gap: 10px;
	align-items: center;
}

.lh-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	border: 1px solid rgba(35, 56, 137, 0.25);
	background: rgba(35, 56, 137, 0.10);
	cursor: pointer;
	padding: 0;
	transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.lh-hero-dot:hover {
	transform: scale(1.15);
}

.lh-hero-dot.is-active {
	background: #233889;
	border-color: rgba(35, 56, 137, 1);
}

.lh-hero-grid {
	display: grid;
	grid-template-columns: 1.35fr 0.65fr;
	gap: 26px;
	align-items: center;
}

.lh-hero-title {
	font-size: clamp(34px, 4.2vw, 52px);
	line-height: 1.05;
	margin: 0;
	letter-spacing: -0.02em;
}

.lh-hero-title-logo {
	display: block;
	width: auto;
	max-width: min(380px, 84%);
	height: clamp(32px, 4.8vw, 50px);
	object-fit: contain;
}

.lh-hero-subtitle {
	margin: 14px 0 0;
	font-weight: 700;
	color: rgba(35, 56, 137, 0.85);
}

.lh-hero-lead {
	margin: 14px 0 0;
	max-width: 60ch;
	line-height: 1.6;
}

.lh-hero-actions {
	margin-top: 22px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.lh-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 999px;
	padding: 12px 18px;
	font-weight: 700;
	transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.lh-button-primary {
	background: var(--lh-green);
	color: #fff;
	box-shadow: 0 10px 24px rgba(35, 56, 137, 0.25);
}

.lh-button-primary:hover,
.lh-button-primary:focus,
.lh-button-primary:active,
.lh-button-primary:visited {
	color: #fff;
}

.lh-button-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 30px rgba(35, 56, 137, 0.28);
}

.lh-hero-badge {
	display: flex;
	justify-content: flex-end;
}

.lh-hero-media {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.lh-hero-product-image {
	width: min(520px, 100%);
	height: auto;
	border-radius: var(--lh-radius);
	border: 1px solid var(--lh-line);
	background: #fff;
	box-shadow: var(--lh-shadow);
}

/* Hero slide 4 — logos in place of title (heading is visually hidden for screen readers) */
.lh-hero-fmcg-head {
	position: relative;
	margin: 0 0 6px;
}

h1.lh-hero-fmcg-sr {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	border: 0;
	white-space: nowrap;
	word-wrap: normal;
}

.lh-hero-fmcg-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: clamp(16px, 3vw, 32px);
	margin: 0;
	min-width: 0;
}

.lh-hero-fmcg-logo {
	display: block;
	flex: 0 1 auto;
	min-width: 0;
	width: auto;
	height: auto;
	max-height: clamp(52px, 7vw, 72px);
	max-width: min(180px, 32vw);
	object-fit: contain;
}

@media (max-width: 520px) {
	.lh-hero-fmcg-logos {
		gap: 12px;
	}

	.lh-hero-fmcg-logo {
		max-height: 44px;
		max-width: min(120px, 34vw);
	}
}

.lh-badge-inner {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(8px);
	border: 1px solid var(--lh-line);
	border-radius: var(--lh-radius);
	padding: 18px 18px;
	box-shadow: var(--lh-shadow);
	min-width: 240px;
}

.lh-badge-kicker {
	color: rgba(35, 56, 137, 0.7);
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	font-size: 12px;
}

.lh-badge-value {
	margin-top: 8px;
	font-weight: 800;
	line-height: 1.25;
}

.lh-section {
	padding: 56px 0;
	background: #fff;
	border-top: 1px solid var(--lh-line);
}

.lh-section:first-of-type {
	border-top: 0;
}

.lh-section-header {
	max-width: 880px;
	margin: 0 auto 26px;
}

.lh-section-title {
	margin: 0;
	font-size: 28px;
	letter-spacing: -0.01em;
}

.lh-section-lead {
	margin: 14px 0 0;
	line-height: 1.7;
	color: rgba(35, 56, 137, 0.8);
}

.lh-two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.lh-card {
	background: var(--lh-sand);
	border: 1px solid var(--lh-line);
	border-radius: var(--lh-radius);
	padding: 22px;
	box-shadow: 0 10px 30px rgba(35, 56, 137, 0.05);
}

.lh-card-accent {
	background: linear-gradient(180deg, rgba(35, 56, 137, 0.13), rgba(255, 255, 255, 1));
}

.lh-card-title {
	margin: 0;
	font-size: 18px;
}

.lh-card-text {
	margin: 12px 0 0;
	line-height: 1.7;
	color: rgba(35, 56, 137, 0.87);
}

.lh-vision {
	position: relative;
	overflow: hidden;
	padding: 72px 0;
	color: #fff;
	border-top: 0;
	background-color: #15245c;
	background-image:
		linear-gradient(155deg, #0f1d4d 0%, #1b2f78 28%, #233889 52%, #1a2668 78%, #121f52 100%),
		radial-gradient(ellipse 90% 70% at 85% 15%, rgba(120, 160, 255, 0.22), transparent 52%),
		radial-gradient(ellipse 70% 55% at 10% 85%, rgba(40, 200, 180, 0.08), transparent 48%),
		conic-gradient(from 210deg at 50% 50%, rgba(255, 255, 255, 0.04) 0deg, transparent 60deg, rgba(255, 255, 255, 0.03) 120deg, transparent 220deg);
	background-blend-mode: normal, screen, normal, soft-light;
}

.lh-vision-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

/* Soft light wash */
.lh-vision-bg::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 100% 45% at 50% -10%, rgba(255, 255, 255, 0.12), transparent 55%),
		radial-gradient(ellipse 55% 40% at 0% 50%, rgba(255, 255, 255, 0.06), transparent 60%);
}

.lh-vision-shape {
	position: absolute;
	display: block;
	pointer-events: none;
}

/* Large gradient orbs */
.lh-vision-shape--orb.lh-vision-shape--1 {
	width: min(480px, 90vw);
	height: min(480px, 90vw);
	top: -18%;
	right: -12%;
	border-radius: 50%;
	background: radial-gradient(
		circle at 35% 35%,
		rgba(255, 255, 255, 0.18) 0%,
		rgba(100, 140, 255, 0.12) 38%,
		rgba(35, 56, 137, 0) 72%
	);
	filter: blur(0.5px);
	opacity: 0.95;
}

.lh-vision-shape--orb.lh-vision-shape--2 {
	width: min(340px, 70vw);
	height: min(340px, 70vw);
	bottom: -22%;
	left: -14%;
	border-radius: 50%;
	background: radial-gradient(
		circle at 60% 55%,
		rgba(60, 220, 200, 0.14) 0%,
		rgba(35, 56, 137, 0.2) 45%,
		rgba(15, 25, 70, 0) 70%
	);
	mix-blend-mode: screen;
	opacity: 0.85;
}

/* Thin ring accent */
.lh-vision-shape--ring.lh-vision-shape--3 {
	width: 200px;
	height: 200px;
	top: 12%;
	right: 8%;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: transparent;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.04),
		inset 0 0 40px rgba(255, 255, 255, 0.04);
	opacity: 0.65;
	transform: rotate(-12deg);
}

/* Rotated rounded square */
.lh-vision-shape--diamond.lh-vision-shape--4 {
	width: 72px;
	height: 72px;
	bottom: 18%;
	right: 18%;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
	transform: rotate(28deg);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
	opacity: 0.55;
}

/* Diagonal mesh overlay */
.lh-vision-shape--mesh {
	inset: 0;
	border-radius: 0;
	opacity: 0.4;
	background-image: repeating-linear-gradient(
		-18deg,
		transparent,
		transparent 3px,
		rgba(255, 255, 255, 0.025) 3px,
		rgba(255, 255, 255, 0.025) 4px
	);
	mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, #000 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 45%, #000 30%, transparent 75%);
}

.lh-vision-panel {
	position: relative;
	z-index: 1;
	max-width: 920px;
	margin: 0 auto;
	padding: 40px 44px 44px;
	border-radius: var(--lh-radius);
	border: 1px solid rgba(255, 255, 255, 0.16);
	background:
		linear-gradient(165deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0.08) 100%);
	backdrop-filter: blur(14px);
	box-shadow:
		0 24px 60px rgba(0, 0, 0, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.18),
		inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.lh-vision-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 20px;
	margin: 0;
}

.lh-vision-title {
	margin: 0;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.88);
}

.lh-vision-rule {
	flex: 1 1 120px;
	height: 1px;
	min-width: 48px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
}

.lh-vision-lead {
	margin: 22px 0 0;
	font-size: clamp(1.125rem, 2.1vw, 1.35rem);
	line-height: 1.65;
	font-weight: 500;
	letter-spacing: -0.01em;
	max-width: 62ch;
	color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 600px) {
	.lh-vision {
		padding: 56px 0;
	}

	.lh-vision-panel {
		padding: 28px 22px 32px;
	}

	.lh-vision-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.lh-vision-rule {
		width: 56px;
		flex: 0 0 auto;
		background: rgba(255, 255, 255, 0.35);
	}

	.lh-vision-shape--ring.lh-vision-shape--3 {
		width: 140px;
		height: 140px;
		top: 8%;
		right: -4%;
		opacity: 0.4;
	}

	.lh-vision-shape--diamond.lh-vision-shape--4 {
		width: 52px;
		height: 52px;
		bottom: 12%;
		right: 10%;
		opacity: 0.4;
	}

	.lh-vision-shape--mesh {
		opacity: 0.28;
	}
}

/* Partnership (home) */
.lh-partnership {
	padding: 56px 0 60px;
	background: #fff;
	border-top: 1px solid var(--lh-line);
	color: var(--lh-secondary);
}

.lh-partnership-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 36px 48px;
	align-items: start;
}

.lh-partnership-brand {
	margin: 0 0 22px;
}

.lh-partnership-name {
	margin: 0;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--lh-secondary);
}

.lh-partnership-tagline {
	margin: 8px 0 0;
	font-size: 0.95rem;
	font-weight: 500;
	color: rgba(35, 56, 137, 0.78);
	line-height: 1.45;
	max-width: 42ch;
}

.lh-partnership-rule {
	display: block;
	margin-top: 14px;
	height: 4px;
	width: min(100%, 200px);
	background: var(--lh-secondary);
	border-radius: 2px;
}

.lh-partnership-intro {
	margin: 0 0 20px;
	line-height: 1.65;
	font-weight: 600;
	color: rgba(35, 56, 137, 0.92);
	max-width: 56ch;
}

.lh-partnership-items {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.lh-partnership-item-title {
	margin: 0;
	font-size: 1rem;
	font-weight: 800;
	color: var(--lh-secondary);
}

.lh-partnership-item-text {
	margin: 8px 0 0;
	line-height: 1.6;
	font-size: 0.95rem;
	color: rgba(35, 56, 137, 0.88);
	max-width: 58ch;
}

.lh-partnership-logos {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 20px;
}

.lh-partnership-logo-img {
	display: block;
	width: auto;
	max-width: min(100%, 160px);
	height: auto;
}

@media (max-width: 900px) {
	.lh-partnership-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.lh-partnership-logos {
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}

	.lh-partnership-logo-img {
		max-width: min(100%, 160px);
		flex: 0 1 auto;
	}
}

@media (max-width: 520px) {
	.lh-partnership-logos {
		flex-direction: column;
		align-items: center;
	}

	.lh-partnership-logo-img {
		max-width: min(100%, 160px);
	}
}

/* —— Products We Provide (home) —— */
.lh-section-products {
	position: relative;
	overflow: hidden;
	padding: 72px 0 68px;
	background: #fff;
	border-top: 1px solid var(--lh-line);
}

.lh-section-products-bg {
	display: none;
}

.lh-section-header--products {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 720px;
	margin: 0 auto 40px;
}

.lh-products-head-accent {
	display: block;
	width: 56px;
	height: 4px;
	margin: 0 auto 18px;
	border-radius: 999px;
	background: linear-gradient(90deg, transparent, var(--lh-secondary), transparent);
	opacity: 0.85;
}

.lh-section-header--products .lh-section-eyebrow {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(35, 56, 137, 0.55);
}

.lh-section-title--products {
	font-size: clamp(1.5rem, 1.35rem + 1vw, 2rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	color: var(--lh-secondary);
}

.lh-section-lead--products {
	margin-top: 16px;
	font-size: 1.0625rem;
	line-height: 1.7;
	color: rgba(35, 56, 137, 0.78);
}

.lh-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	position: relative;
	z-index: 1;
}

.lh-section-products .lh-product {
	display: flex;
	flex-direction: column;
	padding: 0;
	background: #fff;
	border: 1px solid var(--lh-line);
	border-radius: var(--lh-radius);
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(35, 56, 137, 0.06);
	transition:
		transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 220ms ease,
		border-color 220ms ease;
}

.lh-section-products .lh-product:hover {
	transform: translateY(-4px);
	box-shadow:
		0 22px 48px rgba(35, 56, 137, 0.12),
		0 0 0 1px rgba(35, 56, 137, 0.06);
	border-color: rgba(35, 56, 137, 0.12);
}

.lh-product-media {
	position: relative;
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: linear-gradient(160deg, #eef1f8 0%, #ffffff 100%);
}

.lh-product-media::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		transparent 45%,
		rgba(35, 56, 137, 0.12) 100%
	);
	opacity: 0;
	transition: opacity 220ms ease;
}

.lh-section-products .lh-product:hover .lh-product-media::after {
	opacity: 1;
}

.lh-section-products .lh-product-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	border: 0;
	margin: 0;
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lh-section-products .lh-product:hover .lh-product-image {
	transform: scale(1.05);
}

.lh-product-caption {
	padding: 16px 18px 18px;
	border-top: 1px solid var(--lh-line);
	background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 253, 1) 100%);
}

.lh-section-products .lh-product-title {
	margin: 0;
	font-size: 17px;
	font-weight: 900;
	letter-spacing: -0.01em;
	color: var(--lh-secondary);
}

@media (max-width: 980px) {
	.lh-products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}
}

@media (max-width: 520px) {
	.lh-section-products {
		padding: 56px 0 52px;
	}

	.lh-section-header--products {
		margin-bottom: 28px;
	}

	.lh-products-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

.lh-why {
	background: #fff;
}

.lh-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.lh-feature {
	background: #fff;
	border: 1px solid var(--lh-line);
	border-radius: var(--lh-radius);
	padding: 18px 16px;
}

.lh-feature-number {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	display: grid;
	place-items: center;
	background: rgba(35, 56, 137, 0.12);
	color: var(--lh-green);
	font-weight: 900;
	margin-bottom: 12px;
}

.lh-feature-title {
	margin: 0;
	font-size: 16px;
	font-weight: 900;
}

.lh-feature-text {
	margin: 10px 0 0;
	line-height: 1.65;
	color: rgba(35, 56, 137, 0.87);
}

@media (max-width: 980px) {
	.lh-hero-grid {
		grid-template-columns: 1fr;
	}
	.lh-hero-badge {
		justify-content: flex-start;
	}

	.lh-two-col {
		grid-template-columns: 1fr;
	}

	.lh-features {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 520px) {
	.lh-features {
		grid-template-columns: 1fr;
	}

	.lh-hero {
		padding: 48px 0 28px;
	}
}

/* Home: phones and small tablets — touch targets, layout, readable type */
@media (max-width: 767px) {
	.lethbridge-home .lh-hero {
		padding-top: max(40px, env(safe-area-inset-top, 0px));
		padding-bottom: 32px;
	}

	.lethbridge-home .lh-hero-title {
		font-size: clamp(28px, 8vw, 40px);
		word-break: break-word;
	}

	.lethbridge-home .lh-hero-title-logo {
		max-width: 100%;
		height: auto;
		max-height: 48px;
	}

	.lethbridge-home .lh-hero-media {
		justify-content: center;
		margin-top: 8px;
	}

	.lethbridge-home .lh-hero-product-image {
		width: 100%;
		max-width: 360px;
	}

	.lethbridge-home .lh-badge-inner {
		min-width: 0;
		max-width: 100%;
		width: 100%;
	}

	.lethbridge-home .lh-hero-pagination {
		justify-content: center;
		flex-wrap: wrap;
		gap: 8px 4px;
		margin-top: 24px;
		padding-bottom: 4px;
	}

	/* ~44px touch targets; visible dot drawn with ::before */
	.lethbridge-home .lh-hero-dot {
		width: 44px;
		height: 44px;
		border: 0;
		background: transparent;
		border-radius: 999px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		-webkit-tap-highlight-color: transparent;
	}

	.lethbridge-home .lh-hero-dot::before {
		content: "";
		width: 10px;
		height: 10px;
		border-radius: 999px;
		border: 1px solid rgba(35, 56, 137, 0.25);
		background: rgba(35, 56, 137, 0.1);
		transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
	}

	.lethbridge-home .lh-hero-dot:hover::before {
		transform: scale(1.15);
	}

	.lethbridge-home .lh-hero-dot.is-active::before {
		background: #233889;
		border-color: rgba(35, 56, 137, 1);
	}

	.lethbridge-home .lh-hero-dot:hover {
		transform: none;
	}

	.lethbridge-home .lh-hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.lethbridge-home .lh-hero-actions .lh-button {
		width: 100%;
		max-width: 100%;
		min-height: 48px;
		padding: 14px 20px;
		text-align: center;
	}

	.lethbridge-home .lh-section {
		padding: 44px 0;
	}

	.lethbridge-home .lh-section-title {
		font-size: clamp(22px, 6vw, 28px);
	}

	.lethbridge-home .lh-partnership {
		padding: 44px 0 48px;
	}
}

@media (max-width: 380px) {
	.lethbridge-home .lh-hero-fmcg-logo {
		max-height: 40px;
		max-width: min(100px, 30vw);
	}

	.lethbridge-home .lh-section {
		padding: 36px 0;
	}

	.lethbridge-home .lh-card {
		padding: 18px 16px;
	}
}

/* Make the hero background run full-width (edge-to-edge). */
@media (min-width: 1101px) {
	.lethbridge-home .lh-hero {
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}
}

/* Petromin Lubricants subsection pages */
.lethbridge-petromin-page {
	--lh-secondary: #233889;
	--lh-line: rgba(35, 56, 137, 0.14);
	--lh-radius: 18px;
	color: var(--lh-secondary);
}

.lethbridge-petromin-page * {
	box-sizing: border-box;
}

.lh-petromin-hero {
	padding: 48px 0 24px;
	background: #fff;
	border-bottom: 1px solid var(--lh-line);
}

.lh-petromin-title-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 18px;
}

.lh-petromin-logo {
	display: block;
	flex-shrink: 0;
	width: 120px;
	height: 49px;
	object-fit: contain;
	margin: 0;
}

.lh-petromin-title {
	margin: 0;
	flex: 1 1 220px;
	min-width: 0;
	font-size: clamp(28px, 3.2vw, 40px);
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.lh-petromin-body {
	padding: 40px 0 64px;
	background: #fbfbfb;
}

.lh-petromin-image-slot {
	margin: 0 0 28px;
}

.lh-petromin-featured-image {
	display: block;
	width: 100%;
	max-width: 768px;
	height: auto;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: var(--lh-radius);
	border: 1px solid var(--lh-line);
	box-shadow: var(--lh-shadow);
}

.lh-petromin-image-placeholder {
	min-height: 220px;
	display: grid;
	place-items: center;
	padding: 28px 20px;
	border-radius: var(--lh-radius);
	border: 2px dashed rgba(35, 56, 137, 0.28);
	background: rgba(255, 255, 255, 0.85);
}

.lh-petromin-placeholder-text {
	margin: 0;
	max-width: 46ch;
	text-align: center;
	line-height: 1.55;
	color: rgba(35, 56, 137, 0.75);
	font-size: 15px;
}

.lh-petromin-content {
	max-width: 880px;
}

.lh-petromin-content > *:first-child {
	margin-top: 0;
}

/* Petromin Lubricants - all sections (hub page) */
.lethbridge-petromin-all .lh-petromin-all-body .lh-container {
	max-width: 960px;
}

.lh-petromin-all-intro {
	margin: 0 0 36px;
}

.lh-petromin-all-sections {
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.lh-petromin-all-section {
	padding: 0 0 36px;
	border-bottom: 1px solid var(--lh-line);
}

.lh-petromin-all-section:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.lh-petromin-all-section-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 18px;
	margin: 0 0 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(35, 56, 137, 0.1);
}

.lh-petromin-all-section-title {
	margin: 0;
	font-size: clamp(1.15rem, 1rem + 0.6vw, 1.35rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1.25;
	color: var(--lh-secondary);
}

.lh-petromin-all-section-link {
	font-size: 14px;
	font-weight: 800;
	color: #233889;
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 2px solid rgba(35, 56, 137, 0.25);
	padding-bottom: 2px;
}

.lh-petromin-all-section-link:hover {
	border-bottom-color: rgba(35, 56, 137, 0.55);
}

.lh-petromin-all-placeholder {
	min-height: 160px;
}

.lethbridge-petromin-all .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Petromin product cards (hub + subsection templates) */
.lh-petromin-products {
	margin: 0 0 8px;
}

.lh-petromin-products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 22px;
	align-items: stretch;
}

.lh-petromin-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
	border: 1px solid rgba(35, 56, 137, 0.12);
	border-radius: calc(var(--lh-radius) + 2px);
	overflow: hidden;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.9) inset,
		0 14px 36px rgba(35, 56, 137, 0.07);
	transition:
		transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 220ms ease,
		border-color 220ms ease;
}

.lh-petromin-product-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #233889 0%, #3554b8 55%, #233889 100%);
	z-index: 2;
	pointer-events: none;
}

.lh-petromin-product-card:hover {
	transform: translateY(-4px);
	border-color: rgba(35, 56, 137, 0.2);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.95) inset,
		0 22px 48px rgba(35, 56, 137, 0.12),
		0 0 0 1px rgba(35, 56, 137, 0.04);
}

.lh-petromin-product-card-media {
	position: relative;
	aspect-ratio: 1;
	flex: 0 0 auto;
	background:
		radial-gradient(ellipse 90% 70% at 50% 0%, rgba(35, 56, 137, 0.07), transparent 52%),
		linear-gradient(180deg, #f5f7fb 0%, #ffffff 100%);
	display: grid;
	place-items: center;
	overflow: hidden;
}

.lh-petromin-product-card-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(35, 56, 137, 0.06) 100%);
	opacity: 0;
	transition: opacity 220ms ease;
	pointer-events: none;
}

.lh-petromin-product-card:hover .lh-petromin-product-card-media::after {
	opacity: 1;
}

.lh-petromin-product-card-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	padding: 14px 16px;
	transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lh-petromin-product-card:hover .lh-petromin-product-card-img {
	transform: scale(1.05);
}

.lh-petromin-product-card-name {
	flex: 1;
	display: flex;
	align-items: flex-start;
	margin: 0;
	padding: 16px 14px 18px;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: -0.01em;
	color: var(--lh-secondary);
	border-top: 1px solid rgba(35, 56, 137, 0.08);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, #ffffff 100%);
}

@media (max-width: 520px) {
	.lh-petromin-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.lh-petromin-product-card-name {
		font-size: 12px;
		padding: 12px 10px 14px;
	}

	.lh-petromin-product-card-img {
		padding: 10px 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lh-petromin-product-card,
	.lh-petromin-product-card-img,
	.lh-petromin-product-card-media::after {
		transition: none;
	}

	.lh-petromin-product-card:hover {
		transform: none;
	}

	.lh-petromin-product-card:hover .lh-petromin-product-card-img {
		transform: none;
	}
}

/* Glassware page template */
.lethbridge-glassware-page {
	--lh-gw-blue: #233889;
	--lh-gw-blue-deep: #1a2d6e;
	--lh-gw-line: rgba(35, 56, 137, 0.14);
	color: var(--lh-secondary);
}

.lethbridge-glassware-page * {
	box-sizing: border-box;
}

.lethbridge-glassware-page .lh-container {
	max-width: 1120px;
}

.lh-glassware-hero {
	padding: 40px 0 28px;
	background: linear-gradient(180deg, #fff 0%, #f4f6f9 100%);
	border-bottom: 1px solid var(--lh-gw-line);
}

.lh-glassware-hero-inner {
	position: relative;
	display: inline-block;
	max-width: 100%;
}

.lh-glassware-kicker {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(35, 56, 137, 0.55);
}

.lh-glassware-banner-title {
	margin: 0;
	display: inline-block;
	padding: 14px 28px 14px 22px;
	font-size: clamp(26px, 3.2vw, 38px);
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.15;
	color: #fff;
	background: var(--lh-gw-blue);
	clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
	box-shadow: 6px 8px 0 rgba(35, 56, 137, 0.22);
}

.lh-glassware-body {
	padding: 36px 0 64px;
	background: #eceff3;
}

.lh-glassware-intro {
	margin: 0 0 32px;
	max-width: 72ch;
}

.lh-glassware-intro p {
	margin: 0;
	font-size: 16px;
	line-height: 1.65;
	color: rgba(35, 56, 137, 0.88);
}

.lh-glassware-products {
	margin: 0;
}

.lh-glassware-products-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px 20px;
}

.lh-glassware-card {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.lh-glassware-card-visual {
	position: relative;
	padding: 0 4px 14px;
}

.lh-glassware-card-shelf {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 4px;
	height: 28%;
	background: linear-gradient(180deg, var(--lh-gw-blue-deep) 0%, var(--lh-gw-blue) 72%);
	border-radius: 4px 4px 2px 2px;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.35) inset,
		6px 10px 0 rgba(26, 45, 110, 0.45);
	transform: skewX(-2deg);
}

.lh-glassware-card-media {
	position: relative;
	z-index: 1;
	min-height: 200px;
	display: grid;
	place-items: center;
	padding: 12px 8px 28px;
}

.lh-glassware-card-img {
	width: 100%;
	max-height: 240px;
	height: auto;
	object-fit: contain;
	display: block;
	filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
}

.lh-glassware-card-placeholder {
	width: 100%;
	min-height: 180px;
	display: grid;
	place-items: center;
	padding: 16px;
	border-radius: 10px;
	border: 2px dashed rgba(35, 56, 137, 0.28);
	background: rgba(255, 255, 255, 0.65);
}

.lh-glassware-card-placeholder-label {
	font-size: 11px;
	font-weight: 700;
	color: rgba(35, 56, 137, 0.45);
	text-align: center;
	word-break: break-word;
	max-width: 100%;
}

.lh-glassware-card-body {
	padding: 0 2px;
}

.lh-glassware-card-title {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1.25;
	color: var(--lh-secondary);
}

.lh-glassware-card-desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(35, 56, 137, 0.78);
}

@media (max-width: 900px) {
	.lh-glassware-products-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.lh-glassware-products-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.lh-glassware-banner-title {
		clip-path: none;
		width: 100%;
	}
}

/* Food sector page template */
.lethbridge-food-sector-page {
	--lh-fs-blue: #233889;
	--lh-fs-blue-deep: #1a2d6e;
	--lh-fs-line: rgba(35, 56, 137, 0.14);
	color: var(--lh-secondary);
}

.lethbridge-food-sector-page * {
	box-sizing: border-box;
}

.lethbridge-food-sector-page .lh-container {
	max-width: 1120px;
}

.lh-food-sector-hero {
	padding: 40px 0 28px;
	background: linear-gradient(180deg, #fff 0%, #f4f6f9 100%);
	border-bottom: 1px solid var(--lh-fs-line);
}

.lh-food-sector-hero-inner {
	position: relative;
	display: inline-block;
	max-width: 100%;
}

.lh-food-sector-kicker {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(35, 56, 137, 0.55);
}

.lh-food-sector-banner-title {
	margin: 0;
	display: inline-block;
	padding: 14px 28px 14px 22px;
	font-size: clamp(26px, 3.2vw, 38px);
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.15;
	color: #fff;
	background: var(--lh-fs-blue);
	clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
	box-shadow: 6px 8px 0 rgba(35, 56, 137, 0.22);
}

.lh-food-sector-body {
	padding: 36px 0 64px;
	background: #eceff3;
}

.lh-food-sector-intro {
	margin: 0 0 36px;
	max-width: 72ch;
}

.lh-food-sector-intro p {
	margin: 0;
	font-size: 16px;
	line-height: 1.65;
	color: rgba(35, 56, 137, 0.88);
}

.lh-food-brands {
	margin: 0;
}

.lh-food-brands-heading {
	margin: 0 0 22px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(35, 56, 137, 0.55);
}

.lh-food-brands-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px 20px;
}

.lh-food-brand-card {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.lh-food-brand-card-visual {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding: 0 4px 14px;
	gap: 10px;
}

.lh-food-brand-card-shelf {
	position: relative;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 14px;
	margin-top: 2px;
	background: linear-gradient(180deg, var(--lh-fs-blue-deep) 0%, var(--lh-fs-blue) 72%);
	border-radius: 4px 4px 2px 2px;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.35) inset,
		6px 10px 0 rgba(26, 45, 110, 0.45);
	transform: skewX(-2deg);
}

.lh-food-brand-card-media {
	position: relative;
	flex: 1 1 auto;
	min-height: 180px;
	display: grid;
	place-items: center;
	align-content: center;
	padding: 8px 16px 4px;
}

.lh-food-brand-card-img {
	width: 100%;
	max-height: 200px;
	height: auto;
	object-fit: contain;
	display: block;
	filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
}

.lh-food-brand-card-title {
	margin: 0;
	font-size: clamp(15px, 1.5vw, 18px);
	font-weight: 900;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: #fff;
	text-align: center;
	transform: skewX(2deg);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
	.lh-food-brands-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.lh-food-brands-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.lh-food-sector-banner-title {
		clip-path: none;
		width: 100%;
	}
}

/* Strategy page template */
.lethbridge-strategy-page {
	--lh-st-blue: #233889;
	--lh-st-blue-deep: #1a2d6e;
	--lh-st-line: rgba(35, 56, 137, 0.14);
	color: var(--lh-secondary);
}

.lethbridge-strategy-page * {
	box-sizing: border-box;
}

.lethbridge-strategy-page .lh-container {
	max-width: 1120px;
}

.lh-strategy-hero {
	padding: 40px 0 28px;
	background: linear-gradient(180deg, #fff 0%, #f4f6f9 100%);
	border-bottom: 1px solid var(--lh-st-line);
}

.lh-strategy-hero-inner {
	position: relative;
	display: inline-block;
	max-width: 100%;
}

.lh-strategy-kicker {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(35, 56, 137, 0.55);
}

.lh-strategy-banner-title {
	margin: 0;
	display: inline-block;
	padding: 14px 28px 14px 22px;
	font-size: clamp(26px, 3.2vw, 38px);
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.15;
	color: #fff;
	background: var(--lh-st-blue);
	clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
	box-shadow: 6px 8px 0 rgba(35, 56, 137, 0.22);
}

.lh-strategy-body {
	padding: 36px 0 72px;
	background: #eceff3;
}

.lh-strategy-intro {
	margin: 0 0 36px;
	max-width: 72ch;
}

.lh-strategy-intro p {
	margin: 0 0 1em;
	font-size: 16px;
	line-height: 1.65;
	color: rgba(35, 56, 137, 0.88);
}

.lh-strategy-intro p:last-child {
	margin-bottom: 0;
}

.lh-strategy-section {
	position: relative;
	margin: 0;
	padding: 0 0 8px;
}

.lh-strategy-visual {
	display: grid;
	grid-template-columns: 10px minmax(0, 1fr);
	gap: 0 14px;
	align-items: stretch;
}

.lh-strategy-accent-left {
	display: block;
	margin: 28px 0 48px;
	background: linear-gradient(180deg, var(--lh-st-blue-deep) 0%, var(--lh-st-blue) 100%);
	clip-path: polygon(0 0, 100% 0, 55% 100%, 0 100%);
	box-shadow: 3px 6px 0 rgba(26, 45, 110, 0.35);
}

.lh-strategy-panel {
	position: relative;
	z-index: 1;
	padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px) clamp(32px, 4.5vw, 52px) clamp(28px, 3.5vw, 40px);
	background: linear-gradient(145deg, var(--lh-st-blue-deep) 0%, var(--lh-st-blue) 55%, #1e3278 100%);
	color: #fff;
	clip-path: polygon(3.2% 0, 100% 0, 96.2% 100%, 0% 100%);
	box-shadow:
		8px 14px 0 rgba(26, 45, 110, 0.42),
		0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.lh-strategy-points {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: clamp(22px, 3vw, 32px);
}

.lh-strategy-point {
	margin: 0;
	padding: 0 0 0 22px;
	position: relative;
}

.lh-strategy-point::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 7px;
	height: 7px;
	background: #fff;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.lh-strategy-point-title {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.35;
	color: #fff;
}

.lh-strategy-point-desc {
	margin: 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.92);
	max-width: 62ch;
}

.lh-strategy-accent-bottom {
	height: 14px;
	width: min(52%, 440px);
	margin-top: 28px;
	margin-left: auto;
	margin-right: 0;
	background: var(--lh-st-blue);
	box-shadow: 4px 6px 0 rgba(26, 45, 110, 0.28);
}

@media (max-width: 640px) {
	.lh-strategy-visual {
		grid-template-columns: 6px minmax(0, 1fr);
		gap: 0 10px;
	}

	.lh-strategy-accent-left {
		margin: 20px 0 36px;
	}

	.lh-strategy-panel {
		clip-path: polygon(2% 0, 100% 0, 98% 100%, 0% 100%);
		padding: 24px 20px 28px 22px;
	}

	.lh-strategy-banner-title {
		clip-path: none;
		width: 100%;
	}

	.lh-strategy-accent-bottom {
		width: min(72%, 100%);
	}
}

/* About Us page template (extends Strategy tokens) */
.lethbridge-about-page .lh-about-hero-inner-wrap {
	position: relative;
}

.lh-about-hero-grid {
	position: absolute;
	top: 0;
	right: 0;
	width: 86px;
	height: 24px;
	pointer-events: none;
	opacity: 0.92;
	background:
		repeating-linear-gradient(
			90deg,
			var(--lh-st-blue) 0,
			var(--lh-st-blue) 10px,
			transparent 10px,
			transparent 14px
		),
		repeating-linear-gradient(
			90deg,
			var(--lh-st-blue) 0,
			var(--lh-st-blue) 10px,
			transparent 10px,
			transparent 14px
		);
	background-size: 100% 10px;
	background-position: 0 0, 0 14px;
	background-repeat: no-repeat;
}

.lh-about-hero-line {
	height: 2px;
	width: 100%;
	background: linear-gradient(90deg, var(--lh-st-blue) 0%, rgba(35, 56, 137, 0.18) 72%, rgba(35, 56, 137, 0.06) 100%);
}

.lh-about-split {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
	gap: clamp(28px, 4vw, 52px);
	align-items: start;
	margin-bottom: clamp(40px, 5vw, 64px);
}

.lh-about-split-text p {
	margin: 0 0 1.1em;
	font-size: 16px;
	line-height: 1.65;
	color: rgba(35, 56, 137, 0.88);
}

.lh-about-split-text p:last-child {
	margin-bottom: 0;
}

.lh-about-wp-content {
	margin-top: 1.25em;
	padding-top: 1.25em;
	border-top: 1px solid var(--lh-st-line, rgba(35, 56, 137, 0.14));
}

.lh-about-wp-content p {
	margin: 0 0 1em;
	font-size: 16px;
	line-height: 1.65;
	color: rgba(35, 56, 137, 0.88);
}

.lh-about-map-wrap {
	position: relative;
}

.lh-about-map {
	position: relative;
	max-width: 100%;
	aspect-ratio: 1000 / 500;
	background: #e8ecf2;
	box-shadow: 6px 10px 0 rgba(26, 45, 110, 0.12);
	border: 1px solid rgba(35, 56, 137, 0.08);
	overflow: hidden;
}

.lh-about-map-img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.lh-about-vm {
	margin: 0;
	padding: 0 0 8px;
}

.lh-about-vm-heading {
	margin: 0 0 14px;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--lh-st-blue);
}

.lh-about-vm-heading + .lh-about-vm-text {
	margin-top: 0;
}

.lh-about-vm-text {
	margin: 0 0 clamp(28px, 4vw, 40px);
	font-size: 16px;
	line-height: 1.65;
	color: #1a1a1a;
	max-width: 72ch;
}

.lh-about-vm-lead {
	margin: 0 0 18px;
	font-size: 16px;
	line-height: 1.65;
	color: #1a1a1a;
}

.lh-about-mission-list {
	margin: 0;
	padding: 0 0 0 1.1em;
	list-style: disc;
	color: #1a1a1a;
}

.lh-about-mission-item {
	margin: 0 0 clamp(22px, 3vw, 30px);
	padding: 0;
}

.lh-about-mission-item:last-child {
	margin-bottom: 0;
}

.lh-about-mission-title {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.35;
	color: #1a1a1a;
}

.lh-about-mission-desc {
	margin: 0;
	font-size: 15px;
	line-height: 1.65;
	color: #333;
	max-width: 68ch;
}

.lh-about-accent-bottom {
	height: 14px;
	width: min(52%, 440px);
	margin-top: 28px;
	margin-left: auto;
	margin-right: 0;
	background: var(--lh-st-blue);
	box-shadow: 4px 6px 0 rgba(26, 45, 110, 0.28);
}

@media (max-width: 900px) {
	.lh-about-split {
		grid-template-columns: 1fr;
	}

	.lh-about-map-wrap {
		order: 0;
		max-width: 520px;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 640px) {
	.lh-about-hero-grid {
		display: none;
	}
}

/* Contact Us page template */
.lethbridge-contact-page {
	--lh-c-blue: #233889;
	--lh-c-line: rgba(35, 56, 137, 0.14);
	--lh-green: var(--lh-c-blue);
	color: #233889;
}

.lethbridge-contact-page * {
	box-sizing: border-box;
}

.lethbridge-contact-page .lh-container {
	max-width: 1120px;
}

.lh-contact-hero {
	padding: 40px 0 28px;
	background: linear-gradient(180deg, #fff 0%, #f4f6f9 100%);
	border-bottom: 1px solid var(--lh-c-line);
}

.lh-contact-hero-inner {
	position: relative;
	display: inline-block;
	max-width: 100%;
}

.lh-contact-kicker {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(35, 56, 137, 0.55);
}

.lh-contact-banner-title {
	margin: 0;
	display: inline-block;
	padding: 14px 28px 14px 22px;
	font-size: clamp(26px, 3.2vw, 38px);
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.15;
	color: #fff;
	background: var(--lh-c-blue);
	clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%);
	box-shadow: 6px 8px 0 rgba(35, 56, 137, 0.22);
}

.lh-contact-body {
	padding: 40px 0 72px;
	background: #eceff3;
}

.lh-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
	gap: clamp(28px, 4vw, 48px);
	align-items: start;
}

.lh-contact-lead {
	margin: 0 0 22px;
	max-width: 62ch;
	font-size: 16px;
	line-height: 1.65;
	color: rgba(35, 56, 137, 0.88);
}

.lh-contact-honeypot {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.lh-contact-form {
	position: relative;
	margin: 0 0 32px;
	max-width: 640px;
}

.lh-contact-fields {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.lh-contact-field {
	margin: 0;
}

.lh-contact-label {
	display: block;
	margin: 0 0 6px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: rgba(35, 56, 137, 0.85);
}

.lh-contact-required {
	color: #c53030;
	font-weight: 800;
}

.lh-contact-input,
.lh-contact-textarea {
	width: 100%;
	max-width: 100%;
	padding: 12px 14px;
	font-size: 15px;
	line-height: 1.45;
	color: #233889;
	background: #fff;
	border: 1px solid var(--lh-c-line);
	border-radius: 10px;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lh-contact-input:focus,
.lh-contact-textarea:focus {
	outline: none;
	border-color: rgba(35, 56, 137, 0.45);
	box-shadow: 0 0 0 3px rgba(35, 56, 137, 0.12);
}

.lh-contact-textarea {
	min-height: 140px;
	resize: vertical;
}

.lh-contact-notice {
	margin: 0 0 16px;
	padding: 12px 14px;
	font-size: 14px;
	line-height: 1.5;
	border-radius: 10px;
}

.lh-contact-notice--success {
	background: rgba(35, 56, 137, 0.08);
	border: 1px solid rgba(35, 56, 137, 0.2);
	color: #1a2d6e;
}

.lh-contact-notice--error {
	background: rgba(197, 48, 48, 0.08);
	border: 1px solid rgba(197, 48, 48, 0.35);
	color: #9b2c2c;
}

.lh-contact-actions {
	margin: 20px 0 0;
}

.lethbridge-contact-page .lh-contact-submit.lh-button {
	border: none;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
}

.lh-contact-content {
	margin: 0;
}

.lh-contact-content p:first-child {
	margin-top: 0;
}

.lh-contact-aside {
	position: relative;
	padding: clamp(22px, 3vw, 28px);
	background: linear-gradient(145deg, #1a2d6e 0%, var(--lh-c-blue) 55%, #1e3278 100%);
	color: #fff;
	clip-path: polygon(3.2% 0, 100% 0, 96.2% 100%, 0% 100%);
	box-shadow:
		8px 14px 0 rgba(26, 45, 110, 0.35),
		0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.lh-contact-aside-title {
	margin: 0 0 20px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	line-height: 1.35;
	color: #fff;
}

.lh-contact-cards {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.lh-contact-card-title {
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.lh-contact-card-text {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.95);
}

a.lh-contact-link {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.45);
	text-underline-offset: 3px;
}

a.lh-contact-link:hover,
a.lh-contact-link:focus-visible {
	text-decoration-color: rgba(255, 255, 255, 0.9);
}

.lh-contact-region-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.lh-contact-region {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.lh-contact-region:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.lh-contact-region-label {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
	color: #fff;
}

.lh-contact-region-desc {
	font-size: 14px;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 900px) {
	.lh-contact-grid {
		grid-template-columns: 1fr;
	}

	.lh-contact-aside {
		order: -1;
	}
}

@media (max-width: 640px) {
	.lh-contact-banner-title {
		clip-path: none;
		width: 100%;
	}

	.lh-contact-aside {
		clip-path: polygon(2% 0, 100% 0, 98% 100%, 0% 100%);
		padding: 22px 20px 24px 22px;
	}
}