/*
 * Component styles.
 *
 * Everything in template-parts/sections and template-parts/cards. base.css
 * owns the layout primitives, header, footer and the shared card shell; this
 * file owns the individual components built on top of them.
 */

/* ---------- Shared bits ---------- */

.wpx-figure {
	margin: 0;
}

.wpx-figure__link {
	display: block;
}

.wpx-figure__caption {
	margin-top: var(--sp-3);
	color: var(--c-muted);
	font-size: var(--fs-sm);
	line-height: var(--lh-body);
}

.wpx-card__meta {
	margin: 0;
	color: var(--c-muted);
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
}

.wpx-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-3);
	margin: var(--sp-4) 0 0;
}

/* ---------- Cards: media ---------- */

.wpx-card--media .wpx-card__media {
	aspect-ratio: var(--wpx-card-ratio, 4 / 3);
}

.wpx-card--media .wpx-card__body {
	display: flex;
	flex-direction: column;
	gap: var(--sp-2);
	padding-top: var(--sp-4);
}

/*
 * The hover image sits on top of the base image and fades in. The Elementor
 * original faded the whole container to opacity 0 on hover, which flashed the
 * page background between the two states.
 */
.wpx-card__image--hover {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity var(--dur) var(--ease);
}

.wpx-card__link:hover .wpx-card__image--hover,
.wpx-card__link:focus-visible .wpx-card__image--hover {
	opacity: 1;
}

/* ---------- Cards: featured film ---------- */

.wpx-card--film .wpx-card__media {
	aspect-ratio: 16 / 10;
	background: var(--c-nav);
}

.wpx-card--film .wpx-card__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgb(0 0 0 / 72%) 0%, rgb(0 0 0 / 0%) 55%);
	transition: background-color var(--dur) var(--ease);
}

.wpx-card--film .wpx-card__link:hover .wpx-card__shade,
.wpx-card--film .wpx-card__link:focus-visible .wpx-card__shade {
	background:
		linear-gradient(to top, rgb(0 0 0 / 55%) 0%, rgb(0 0 0 / 0%) 50%),
		rgb(108 120 69 / 55%);
}

.wpx-card--film .wpx-card__caption {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	padding: var(--sp-4) var(--sp-5);
	color: var(--c-white);
}

.wpx-card--film .wpx-card__play {
	display: inline-grid;
	flex: 0 0 auto;
	place-items: center;
	color: var(--c-white);
}

.wpx-card--film .wpx-card__title {
	margin: 0;
	font-size: var(--fs-h3);
	line-height: var(--lh-heading);
}

.wpx-card--film .wpx-card__excerpt {
	margin: var(--sp-4) 0 0;
	color: var(--c-muted);
	font-size: var(--fs-sm);
	line-height: var(--lh-body);
}

.wpx-card--film .wpx-card__link:hover .wpx-card__image,
.wpx-card--film .wpx-card__link:focus-visible .wpx-card__image {
	transform: scale(1.03);
}

/* River-mark watercolor from live home Films section (attachment 62831). */
.wpx-featured-films {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	/* background-image: var(--wpx-section-bg); */
	background-position: -2% 96%;
	background-repeat: no-repeat;
	background-size: 47% auto;
}

@media (width < 48rem) {
	.wpx-featured-films {
		background-position: 100% 70%;
		background-size: 70% auto;
	}
}

/* ---------- Cards: news ---------- */

.wpx-card--news .wpx-card__link {
	display: grid;
	gap: var(--sp-3);
}

.wpx-card--news .wpx-card__meta {
	font-size: calc(var(--fs-xs) * 1.25);
}

.wpx-card--news .wpx-card__media {
	order: -1;
	aspect-ratio: 3 / 2;
}

.wpx-card__terms {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2);
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--c-muted);
	font-size: var(--fs-xs);
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
}

.wpx-card__cta {
	color: var(--c-link);
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

/* ---------- Cards: team ---------- */

.wpx-card--team {
	text-align: center;
}

.wpx-card--team .wpx-card__media {
	aspect-ratio: 1;
	border-radius: var(--radius-pill);
	overflow: hidden;
}

.wpx-card--team .wpx-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-2);
	padding-top: var(--sp-4);
}

.wpx-card__role {
	margin: 0;
	color: var(--c-muted);
	font-size: var(--fs-sm);
}

.wpx-card__bio-question {
	margin-top: var(--sp-5);
	padding-top: var(--sp-5);
	border-top: 1px solid var(--c-rule);
	font-style: italic;
}

/* Our Team: statement + members share one light river band. */
.wpx-team-band {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	color: var(--c-text);
	background-color: var(--c-white);
}

.wpx-team-band::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--wpx-section-bg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.5;
	content: '';
	pointer-events: none;
}

.wpx-team-band__intro {
	position: relative;
	z-index: 1;
	max-width: 48rem;
	margin-bottom: var(--sp-8);
}

.wpx-team-band__title {
	margin: 0 0 var(--sp-5);
	font-size: clamp(1.65rem, 2.4vw, 2.35rem);
	line-height: var(--lh-tight);
}

.wpx-team-band__text {
	max-width: 42rem;
}

.wpx-team-band__text p:last-child {
	margin-bottom: 0;
}

.wpx-team-band__grid {
	position: relative;
	z-index: 1;
}

.wpx-team-band__grid .wpx-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--sp-7) var(--gutter);
}

.wpx-team-band__grid .wpx-card--team {
	flex: 0 0 calc((100% - var(--gutter)) / 2);
	width: calc((100% - var(--gutter)) / 2);
	max-width: calc((100% - var(--gutter)) / 2);
	box-sizing: border-box;
}

@media (width >= 48rem) {
	.wpx-team-band__grid .wpx-card--team {
		flex-basis: calc((100% - (2 * var(--gutter))) / 3);
		width: calc((100% - (2 * var(--gutter))) / 3);
		max-width: calc((100% - (2 * var(--gutter))) / 3);
	}
}

@media (width >= 64rem) {
	.wpx-team-band__grid .wpx-card--team {
		flex-basis: calc((100% - (3 * var(--gutter))) / 4);
		width: calc((100% - (3 * var(--gutter))) / 4);
		max-width: calc((100% - (3 * var(--gutter))) / 4);
	}
}

/* ---------- Cards: screening ---------- */

.wpx-card--screening {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: var(--sp-5);
	align-items: start;
	padding: var(--sp-5) 0;
	border-top: 1px solid var(--c-rule);
}

.wpx-card--screening:last-child {
	border-bottom: 1px solid var(--c-rule);
}

.wpx-card__date {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-2);
	min-width: 4.5rem;
	color: var(--c-primary);
}

.wpx-card__icon {
	width: 1.5rem;
	height: 1.5rem;
}

.wpx-card__day {
	display: block;
	font-family: var(--font-display);
	font-size: var(--fs-h2);
	line-height: var(--lh-tight);
}

.wpx-card__month {
	display: block;
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
}

.wpx-card--screening .wpx-card__body {
	display: flex;
	flex-direction: column;
	gap: var(--sp-2);
}

/* ---------- Statement ---------- */

.wpx-statement__inner {
	max-width: var(--w-prose);
}

.wpx-statement.is-center .wpx-statement__inner {
	margin-inline: auto;
	text-align: center;
}

.wpx-statement__title {
	margin: var(--sp-3) 0 var(--sp-5);
}

.wpx-statement__actions {
	margin-top: var(--sp-6);
}

/* ---------- Card grid ---------- */

.wpx-card-grid__header {
	margin-bottom: var(--sp-7);
}

.wpx-card-grid--landscape {
	color: var(--c-white);
	background-color: var(--wpx-landscape-bg, var(--c-secondary));
}

.wpx-card-grid--landscape .wpx-card-grid__header .wpx-eyebrow {
	margin-bottom: var(--sp-3);
	color: rgb(255 255 255 / 0.78);
	font-family: var(--font-body);
	font-size: var(--fs-sm);
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}

.wpx-card-grid--landscape .wpx-card-grid__header :is(h1, h2, h3) {
	margin: 0;
	color: inherit;
	font-size: clamp(2rem, 1.35rem + 2.2vw, 3rem);
	font-weight: 600;
}

.wpx-card-grid--landscape .wpx-card--media .wpx-eyebrow,
.wpx-card-grid--landscape .wpx-card__title {
	color: inherit;
}

.wpx-gallery-carousel--landscape {
	padding-block-start: 0;
	color: var(--c-white);
	background-color: var(--wpx-landscape-bg, var(--c-secondary));
}

.wpx-gallery-carousel--landscape .wpx-carousel {
	max-width: var(--w-wide);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.wpx-gallery-carousel--landscape .wpx-carousel__track {
	gap: 0;
	padding-inline: 0;
	scroll-padding-inline: 0;
}

.wpx-gallery-carousel--landscape .wpx-carousel__slide,
.wpx-gallery-carousel--landscape .wpx-carousel__slide--image {
	flex: 0 0 100%;
	width: 100%;
	max-width: 100%;
}

.wpx-gallery-carousel--landscape .wpx-figure {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.wpx-gallery-carousel--landscape .wpx-figure,
.wpx-gallery-carousel--landscape .wpx-figure__link,
.wpx-gallery-carousel--landscape img {
	display: block;
	width: 100%;
	height: 100%;
}

.wpx-gallery-carousel--landscape img {
	object-fit: cover;
}

.wpx-gallery-carousel--landscape .wpx-carousel__nav {
	border-color: rgb(255 255 255 / 45%);
	color: inherit;
}

.wpx-gallery-carousel--landscape .wpx-carousel__nav:hover:not([disabled]) {
	border-color: rgb(255 255 255 / 70%);
	background: rgb(255 255 255 / 12%);
	color: inherit;
}

.wpx-gallery-carousel--landscape .wpx-figure__caption {
	color: rgb(255 255 255 / 0.78);
}

.wpx-card-grid__intro {
	max-width: 46rem;
	margin: var(--sp-3) 0 0;
	color: var(--c-muted);
	font-size: var(--fs-body);
	line-height: var(--lh-body);
}

.wpx-card-grid__actions {
	margin-top: var(--sp-7);
	text-align: center;
}

.wpx-featured-films .wpx-card-grid__actions {
	text-align: start;
}

.wpx-card-grid .page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2);
	justify-content: center;
	margin: var(--sp-7) 0 0;
	padding: 0;
	list-style: none;
}

.wpx-card-grid .page-numbers a,
.wpx-card-grid .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	min-height: 2.5rem;
	padding-inline: var(--sp-2);
	border: 1px solid var(--c-rule);
	text-decoration: none;
}

.wpx-card-grid .page-numbers .current {
	border-color: var(--c-secondary);
	background: var(--c-secondary);
	color: var(--c-white);
}

/* ---------- Carousel ---------- */

.wpx-carousel__header {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-4);
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: var(--sp-6);
}

.wpx-carousel__header > :first-child {
	margin: 0;
}

.wpx-carousel__controls {
	display: flex;
	gap: var(--sp-2);
}

.wpx-carousel__nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid var(--c-rule);
	border-radius: var(--radius-pill);
	background: none;
	color: inherit;
	cursor: pointer;
	transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}

.wpx-carousel__nav:hover:not([disabled]) {
	border-color: var(--c-secondary);
	background: var(--c-secondary);
	color: var(--c-white);
}

.wpx-carousel__nav[disabled] {
	opacity: 0.35;
	cursor: default;
}

.wpx-carousel__track {
	display: flex;
	gap: var(--gutter);
	margin: 0;
	padding: 0 var(--gutter);
	list-style: none;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: var(--gutter);
	scrollbar-width: none;
	overscroll-behavior-x: contain;
}

.wpx-carousel__track::-webkit-scrollbar {
	display: none;
}

.wpx-carousel__slide {
	flex: 0 0 min(80vw, 22rem);
	scroll-snap-align: start;
}

.wpx-carousel__slide--image {
	flex-basis: min(90vw, 48rem);
}

.wpx-gallery-carousel .wpx-carousel__slide--image .wpx-figure__link,
.wpx-gallery-carousel .wpx-carousel__slide--image img {
	display: block;
	width: 100%;
	height: auto;
}

/* Film singles: Watch The Film + gallery share the post’s brown band. */
.single-film .wpx-video-section--film,
.single-film .wpx-gallery-carousel--film {
	color: var(--wpx-post-on-2, var(--c-white));
	background: var(--wpx-post-2, var(--c-pine));
}

/* Resources band (film + corridor): post palette brown. */
.wpx-card-grid--film-resources {
	color: var(--wpx-post-on-2, var(--c-white));
	background: var(--wpx-post-2, var(--c-pine));
}

.wpx-card-grid--film-resources :is(h1, h2, h3, h4, .wpx-card__title, .wpx-card__meta, .wpx-card__cta, .wpx-card__link) {
	color: inherit;
}

.wpx-card-grid--film-resources .wpx-card-grid__header :is(h1, h2, h3, h4) {
	font-weight: 400;
}

.single-film .wpx-video-section--film {
	padding-bottom: 0;
}

.single-film .wpx-gallery-carousel--film {
	/* One token owns the space above the slides; 40px into Resources. */
	padding-block: var(--sp-8) 40px;
}

.single-film .wpx-card-grid--film-resources {
	padding-top: 0;
}

.single-film .wpx-card-grid--film-resources .wpx-card-grid__header {
	margin-top: 0;
}

.single-film .wpx-video-section--film .wpx-video-section__title {
	margin: 0 0 var(--sp-5);
	color: inherit;
	font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem);
	font-weight: 400;
}

.wpx-gallery-carousel--film .wpx-carousel {
	container-type: inline-size;
}

.wpx-gallery-carousel--film .wpx-carousel__track {
	--wpx-film-gallery-pad: var(--gutter);
	align-items: flex-start;
	gap: 0.625rem;
	padding-inline: var(--wpx-film-gallery-pad);
	scroll-padding-inline: var(--wpx-film-gallery-pad);
}

@media (width >= 64rem) {
	.wpx-gallery-carousel--film .wpx-carousel__track {
		--wpx-film-gallery-pad: max(var(--gutter), calc((100vw - var(--w-wide)) / 2 + var(--gutter)));
	}
}

.wpx-gallery-carousel--film .wpx-carousel__slide,
.wpx-gallery-carousel--film .wpx-carousel__slide--image {
	flex: 0 0 calc(100cqw - (2 * var(--wpx-film-gallery-pad)));
	height: auto;
	align-self: flex-start;
}

@container (width >= 48rem) {
	.wpx-gallery-carousel--film .wpx-carousel__slide,
	.wpx-gallery-carousel--film .wpx-carousel__slide--image {
		flex-basis: calc((100cqw - (2 * var(--wpx-film-gallery-pad)) - 1.25rem) / 3);
	}
}

.wpx-gallery-carousel--film .wpx-figure {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}

.wpx-gallery-carousel--film .wpx-figure__link {
	display: block;
	width: 100%;
	aspect-ratio: 2 / 1;
	overflow: hidden;
}

.wpx-gallery-carousel--film img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wpx-gallery-carousel--film .wpx-figure__caption {
	color: var(--c-white);
}

@media (width >= 64rem) {
	.wpx-carousel__track {
		padding-inline: max(var(--gutter), calc((100vw - var(--w-wide)) / 2 + var(--gutter)));
	}
}

.wpx-carousel__actions {
	margin-top: var(--sp-7);
	text-align: center;
}

.wpx-gallery-carousel--feature {
	padding-block-end: 0;
}

.wpx-gallery-carousel--feature .wpx-carousel {
	position: relative;
}

.wpx-gallery-carousel--feature .wpx-carousel__track {
	gap: 0;
	padding-inline: 0;
	scroll-padding-inline: 0;
}

.wpx-gallery-carousel--feature .wpx-carousel__slide,
.wpx-gallery-carousel--feature .wpx-carousel__slide--image {
	flex: 0 0 100%;
	width: 100%;
}

.wpx-gallery-carousel--feature .wpx-figure,
.wpx-gallery-carousel--feature .wpx-figure__link,
.wpx-gallery-carousel--feature img {
	display: block;
	width: 100%;
}

.wpx-gallery-carousel--feature img {
	aspect-ratio: 16 / 9;
	height: auto;
	max-height: min(70vh, 40rem);
	object-fit: cover;
}

.wpx-carousel__controls--overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-inline: var(--sp-4);
	pointer-events: none;
}

.wpx-carousel__controls--overlay .wpx-carousel__nav {
	pointer-events: auto;
	border-color: rgb(255 255 255 / 45%);
	background: rgb(0 0 0 / 28%);
	color: var(--c-white);
}

.wpx-carousel__controls--overlay .wpx-carousel__nav:hover:not([disabled]) {
	border-color: rgb(255 255 255 / 70%);
	background: rgb(0 0 0 / 45%);
	color: var(--c-white);
}

.wpx-carousel__controls--overlay .wpx-carousel__nav[disabled] {
	opacity: 0;
}

/* ---------- Media and text ---------- */

.wpx-media-text.has-bg {
	background: var(--wpx-media-text-bg);
	color: var(--wpx-media-text-fg, inherit);
}

.wpx-media-text.has-bg-image {
	position: relative;
	isolation: isolate;
	color: var(--c-white);
	background-color: #0b1a1c;
	background-image: var(--wpx-media-text-image);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.wpx-media-text.has-bg-image::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(90deg, rgb(8 18 20 / 78%) 0%, rgb(8 18 20 / 52%) 48%, rgb(8 18 20 / 35%) 100%);
	pointer-events: none;
}

.wpx-media-text.has-bg-image > .wpx-container {
	position: relative;
	z-index: 1;
}

.wpx-media-text.has-pattern {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	color: var(--c-text);
	background-color: var(--c-white);
}

.wpx-media-text.has-pattern::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--wpx-media-text-pattern);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.5;
	content: '';
	pointer-events: none;
}

.wpx-media-text.has-pattern > .wpx-container {
	position: relative;
	z-index: 1;
}

.wpx-media-text--vision-intro .wpx-media-text__body > :is(h1, h2, h3) {
	max-width: 18ch;
	font-size: clamp(1.75rem, 2.6vw, 2.5rem);
	line-height: var(--lh-tight);
}

.wpx-media-text--vision-intro .wpx-prose {
	max-width: 36rem;
}

.wpx-media-text--vision-intro .wpx-media-text__media img {
	display: block;
	width: 100%;
	height: auto;
}

.wpx-vision-story {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	color: var(--c-text);
	background-color: var(--c-white);
}

.wpx-vision-story::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--wpx-vision-story-pattern);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.28;
	content: '';
	pointer-events: none;
}

.wpx-vision-story > .wpx-container {
	position: relative;
	z-index: 1;
}

.wpx-vision-story__grid {
	display: grid;
	gap: var(--sp-7);
}

.wpx-vision-story__title {
	margin: 0 0 140px;
	font-size: 38px;
	font-weight: 400;
	line-height: var(--lh-tight);
}

.wpx-vision-story__lead p,
.wpx-vision-story__body {
	margin: 0;
	font-weight: 300;
	line-height: var(--lh-body);
}

.wpx-vision-story__body p {
	margin: 0 0 var(--sp-5);
	font-weight: 300;
}

.wpx-vision-story__body p:last-child {
	margin-bottom: 0;
}

.wpx-vision-story__body a {
	font-weight: 500;
	color: inherit;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
}

@media (width >= 56rem) {
	.wpx-vision-story__grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--sp-8);
		align-items: start;
	}
}

.wpx-vision-panel {
	position: relative;
	display: flex;
	align-items: center;
	isolation: isolate;
	overflow: hidden;
	min-height: 32rem;
	padding-block: var(--sp-9);
	color: var(--c-white);
	background: #1a2224;
}

.wpx-vision-panel__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	background: #1a2224;
}

.wpx-vision-panel__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgb(8 12 14 / 78%) 0%, rgb(8 12 14 / 52%) 42%, rgb(8 12 14 / 18%) 72%, rgb(8 12 14 / 8%) 100%);
	pointer-events: none;
}

.wpx-vision-panel__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.wpx-vision-panel > .wpx-container {
	position: relative;
	z-index: 1;
	width: 100%;
}

.wpx-vision-panel__content {
	max-width: min(36rem, 100%);
}

.wpx-vision-panel .wpx-eyebrow {
	color: rgb(255 255 255 / 82%);
}

.wpx-vision-panel__title {
	margin: var(--sp-3) 0 0;
	font-size: clamp(2rem, 1.4rem + 2vw, 2.75rem);
	font-weight: 400;
	line-height: var(--lh-tight);
}

.wpx-vision-panel__text {
	margin: var(--sp-6) 0 0;
	color: rgb(255 255 255 / 90%);
	font-weight: 300;
	line-height: var(--lh-body);
}

.wpx-vision-panel__actions {
	margin: var(--sp-6) 0 0;
}

.wpx-vision-panel__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	color: var(--c-white);
	font-family: var(--font-display);
	font-size: var(--fs-xs);
	font-weight: 500;
	letter-spacing: var(--tracking-wide);
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
}

.wpx-vision-panel__cta:hover,
.wpx-vision-panel__cta:focus-visible {
	color: var(--c-white);
	opacity: 0.82;
}

.wpx-vision-panel__cta-arrow {
	transition: transform var(--dur) var(--ease);
}

.wpx-vision-panel__cta:hover .wpx-vision-panel__cta-arrow {
	transform: translateX(0.2em);
}

@media (width >= 64rem) {
	.wpx-vision-panel {
		min-height: 100vh;
		min-height: 100svh;
		padding-block: var(--sp-10);
	}

	.wpx-vision-panel__content {
		max-width: min(40rem, 44%);
	}

	.wpx-vision-panel__text {
		margin-top: 140px;
	}
}

.wpx-media-text.is-on-dark .wpx-eyebrow,
.wpx-media-text.is-on-dark .wpx-prose {
	color: rgb(255 255 255 / 86%);
}

.wpx-media-text.is-on-dark .wpx-prose a {
	color: var(--c-lt-green);
}

.wpx-lockup {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	margin-bottom: var(--sp-4);
}

.wpx-lockup__wildpath {
	width: auto;
	height: 1.75rem;
}

.wpx-lockup__ng {
	width: auto;
	height: 2.5rem;
}

.wpx-lockup__x {
	color: rgb(255 255 255 / 55%);
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1;
}

.wpx-media-text__grid {
	display: grid;
	gap: var(--gutter);
	align-items: center;
}

.wpx-media-text__body > * + * {
	margin-top: var(--sp-4);
}

.wpx-media-text__body > :first-child {
	margin-top: 0;
}

.wpx-media-text__body > :is(h1, h2, h3, h4, h5, h6) {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: var(--lh-heading);
}

.wpx-media-text__media img {
	width: 100%;
	height: auto;
}

.wpx-media-text__actions {
	margin-top: var(--sp-5);
}

.wpx-media-text__more {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	font-family: var(--font-body);
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: var(--tracking-wide);
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--c-text);
}

.wpx-media-text__more:hover,
.wpx-media-text__more:focus-visible {
	color: var(--c-pine);
}

.wpx-media-text__more-arrow {
	transition: transform var(--dur) var(--ease);
}

.wpx-media-text__more:hover .wpx-media-text__more-arrow {
	transform: translateX(0.2em);
}

.wpx-media-text--photo .wpx-media-text__body {
	justify-self: start;
	box-sizing: border-box;
	width: min(calc(40rem - 100px), 100%);
	max-width: min(calc(40rem - 100px), 100%);
	padding: var(--sp-6) var(--sp-7);
	background: var(--c-white);
}

.wpx-media-text--photo .wpx-media-text__body > :is(h1, h2, h3) {
	font-size: var(--fs-h1);
}

.wpx-media-text--photo.has-bg-image {
	min-height: clamp(28rem, 52vw, 40rem);
	color: var(--c-text);
	background-color: #f4f8fb;
	background-position: calc(100% + 80px) center;
	background-size: 115%;
}

.wpx-media-text--photo.has-bg-image::before {
	display: none;
}

.wpx-media-text--photo.has-bg-image .wpx-media-text__grid {
	min-height: inherit;
	align-items: center;
}

@media (width >= 56rem) {
	.wpx-media-text.has-media .wpx-media-text__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.wpx-media-text.is-media-right .wpx-media-text__media {
		order: 2;
	}
}

/* Without media there is no second column to balance against. */
.wpx-media-text:not(.has-media):not(.wpx-media-text--photo) .wpx-media-text__body {
	max-width: var(--w-prose);
}

.wpx-media-text--film-map .wpx-media-text__body {
	display: flex;
	align-items: center;
}

.wpx-media-text--film-map .wpx-prose {
	max-width: 34rem;
	font-weight: 300;
	line-height: 1.55;
}

.wpx-media-text--film-map .wpx-video--file {
	border: 1px solid rgb(120 160 200 / 55%);
}

.wpx-media-text--film-map .wpx-video__element {
	object-fit: contain;
	background: #0b0f12;
}

/* ---------- Crosslink strip ---------- */

.wpx-crosslink__heading {
	margin-bottom: var(--sp-6);
}

.wpx-crosslink__grid {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--c-rule);
}

.wpx-crosslink__item {
	position: relative;
	padding: var(--sp-6) 0;
	border-bottom: 1px solid var(--c-rule);
}

.wpx-crosslink__title {
	margin: 0;
}

.wpx-crosslink__title a {
	text-decoration: none;
}

/* Stretch the link across the panel so the whole cell is the target. */
.wpx-crosslink__title a::after {
	content: '';
	position: absolute;
	inset: 0;
}

.wpx-crosslink__text {
	margin: var(--sp-3) 0 0;
	max-width: var(--w-prose);
	color: var(--c-muted);
}

.wpx-crosslink__arrow {
	position: absolute;
	top: var(--sp-6);
	right: 0;
	transition: transform var(--dur) var(--ease);
}

.wpx-crosslink__item:hover .wpx-crosslink__arrow {
	transform: translateX(var(--sp-2));
}

@media (width >= 56rem) {
	.wpx-crosslink__grid {
		grid-template-columns: repeat(3, 1fr);
		column-gap: var(--gutter);
	}
}

/* ---------- Logo wall ---------- */

.wpx-logo-wall__title {
	margin: 0 0 var(--sp-6);
	font-family: var(--font-display);
	font-weight: 400;
	text-align: center;
}

.wpx-logo-wall.has-intro .wpx-logo-wall__title {
	margin: 0;
	text-align: start;
	font-size: var(--fs-h1);
	line-height: var(--lh-heading);
}

.wpx-logo-wall__header {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--sp-4) var(--sp-6);
	margin-bottom: var(--sp-5);
}

.wpx-logo-wall__more {
	display: inline-flex;
	align-items: center;
	gap: 0.4em;
	margin-left: auto;
	font-family: var(--font-body);
	font-size: calc(var(--fs-xs) * 1.5);
	font-weight: 500;
	letter-spacing: var(--tracking-wide);
	line-height: 1.2;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--c-text);
	white-space: nowrap;
}

.wpx-logo-wall__more:hover,
.wpx-logo-wall__more:focus-visible {
	color: var(--c-pine);
}

.wpx-logo-wall__more-arrow {
	transition: transform var(--dur) var(--ease);
}

.wpx-logo-wall__more:hover .wpx-logo-wall__more-arrow {
	transform: translateX(0.2em);
}

.wpx-logo-wall__text {
	max-width: 42rem;
	margin: 0 0 var(--sp-9);
	font-size: var(--fs-body);
	line-height: var(--lh-body);
	color: var(--c-text);
}

@media (width >= 56rem) {
	.wpx-logo-wall__text {
		max-width: min(36rem, 52%);
	}
}

.wpx-logo-wall__text p {
	margin: 0;
}

.wpx-logo-wall__text p + p {
	margin-top: var(--sp-4);
}

.wpx-logo-wall__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
	gap: var(--sp-6) var(--sp-7);
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wpx-logo-wall.has-intro .wpx-logo-wall__grid {
	grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr));
	gap: var(--sp-7) var(--sp-8);
}

@media (width >= 48rem) {
	.wpx-logo-wall.has-intro .wpx-logo-wall__grid {
		grid-template-columns: repeat(var(--wpx-logo-count, 5), minmax(0, 1fr));
	}
}

.wpx-logo-wall__item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.wpx-logo-wall__item img {
	width: 100%;
	height: auto;
	max-height: 4.5rem;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.72;
	transition: filter var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.wpx-logo-wall.has-intro .wpx-logo-wall__item img {
	max-height: 3.75rem;
	filter: none;
	opacity: 1;
}

.wpx-logo-wall__item:hover img {
	filter: none;
	opacity: 1;
}

.wpx-logo-wall__actions {
	margin-top: var(--sp-7);
	text-align: center;
}

/* ---------- Stat grid ---------- */

.wpx-stat-grid {
	position: relative;
	overflow: hidden;
}

.wpx-stat-grid.has-media,
.wpx-stat-grid.has-tint {
	color: var(--c-white);
}

.wpx-stat-grid__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.wpx-stat-grid__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wpx-stat-grid__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgb(37 42 45 / 62%);
}

.wpx-stat-grid.has-tint .wpx-stat-grid__media::after {
	background: color-mix(in srgb, var(--wpx-stat-tint, #3d4423) 88%, transparent);
}

.wpx-stat-grid.has-tint:not(.has-media) {
	background: var(--wpx-stat-tint, var(--c-nav));
}

.wpx-stat-grid__inner {
	position: relative;
	z-index: 1;
}

.wpx-stat-grid.has-intro .wpx-stat-grid__inner {
	display: grid;
	gap: var(--sp-7);
	align-items: center;
}

@media (width >= 56rem) {
	.wpx-stat-grid.has-intro .wpx-stat-grid__inner {
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
		gap: var(--sp-8) var(--gutter);
	}
}

.wpx-stat-grid__intro .wpx-prose {
	max-width: none;
	color: var(--c-white);
}

.wpx-stat-grid__intro .wpx-prose a {
	color: var(--c-sunrise);
}

.wpx-stat-grid__intro .wpx-prose strong {
	font-weight: 700;
}

.wpx-stat-grid__title {
	margin: 0 0 var(--sp-5);
	font-family: var(--font-display);
	font-size: var(--fs-h1);
	font-weight: 400;
	line-height: var(--lh-heading);
}

.wpx-stat-grid:not(.has-intro) .wpx-stat-grid__title {
	margin-bottom: var(--sp-7);
	text-align: center;
}

.wpx-stat-grid__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--sp-7) var(--gutter);
	margin: 0;
}

.wpx-stat-grid:not(.has-intro) .wpx-stat-grid__list {
	grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}

.wpx-stat {
	text-align: start;
}

.wpx-stat-grid:not(.has-intro) .wpx-stat {
	text-align: center;
}

.wpx-stat__value {
	font-family: var(--font-display);
	font-size: var(--fs-hero);
	font-weight: 400;
	line-height: var(--lh-tight);
	letter-spacing: var(--tracking-tight);
}

.wpx-stat-grid.has-media .wpx-stat__value,
.wpx-stat-grid.has-tint .wpx-stat__value {
	color: var(--c-sunrise);
	text-shadow: 0 1px 8px rgb(0 0 0 / 35%);
}

.wpx-stat__label {
	display: flex;
	flex-direction: column;
	gap: var(--sp-1);
	margin: var(--sp-3) 0 0;
}

.wpx-stat-grid.has-intro .wpx-stat__label {
	display: block;
	font-size: var(--fs-sm);
	line-height: var(--lh-body);
	text-shadow: 0 1px 8px rgb(0 0 0 / 35%);
}

.wpx-stat-grid.has-intro .wpx-stat__label strong {
	font-weight: 400;
}

.wpx-stat-grid.has-intro .wpx-stat__label span {
	display: inline;
	color: inherit;
	font-size: inherit;
}

.wpx-stat-grid.has-intro .wpx-stat__label strong + span::before {
	content: ' ';
}

.wpx-stat__label span {
	color: var(--c-muted);
	font-size: var(--fs-sm);
}

.wpx-stat-grid.has-media .wpx-stat__label,
.wpx-stat-grid.has-tint .wpx-stat__label {
	color: var(--c-white);
}

.wpx-stat-grid.has-media .wpx-stat__label span,
.wpx-stat-grid.has-tint .wpx-stat__label span {
	color: rgb(255 255 255 / 92%);
}

.wpx-stat-grid.has-intro.has-media .wpx-stat__label span,
.wpx-stat-grid.has-intro.has-tint .wpx-stat__label span {
	color: inherit;
}

.wpx-stat-grid__actions {
	margin-top: var(--sp-6);
}

/* ---------- Video ---------- */

.wpx-video {
	position: relative;
	aspect-ratio: 16 / 9;
	background: var(--c-night);
	overflow: hidden;
}

.wpx-video img,
.wpx-video__frame {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: cover;
}

.wpx-video__play {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	width: 100%;
	padding: 0;
	border: 0;
	background: rgb(0 0 0 / 20%);
	color: var(--c-white);
	cursor: pointer;
	transition: background var(--dur) var(--ease);
}

.wpx-video__play:hover,
.wpx-video__play:focus-visible {
	background: rgb(0 0 0 / 40%);
}

.wpx-video__icon {
	width: 4.5rem;
	height: auto;
	fill: rgb(0 0 0 / 60%);
	transition: fill var(--dur) var(--ease);
}

.wpx-video__play:hover .wpx-video__icon,
.wpx-video__play:focus-visible .wpx-video__icon {
	fill: var(--c-primary);
}

.wpx-video.is-playing .wpx-video__play {
	display: none;
}

/* ---------- Accordion ---------- */

.wpx-accordion__item {
	border-bottom: 1px solid var(--c-rule);
}

.wpx-accordion__summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sp-4);
	padding: var(--sp-5) 0;
	font-family: var(--font-display);
	font-size: var(--fs-h3);
	cursor: pointer;
	list-style: none;
}

.wpx-accordion__summary::-webkit-details-marker {
	display: none;
}

.wpx-accordion__marker {
	position: relative;
	flex: 0 0 auto;
	width: 1rem;
	height: 1rem;
}

.wpx-accordion__marker::before,
.wpx-accordion__marker::after {
	content: '';
	position: absolute;
	inset: 50% 0 auto;
	height: 1px;
	background: currentcolor;
	transition: transform var(--dur) var(--ease);
}

.wpx-accordion__marker::after {
	transform: rotate(90deg);
}

.wpx-accordion__item[open] .wpx-accordion__marker::after {
	transform: rotate(0deg);
}

.wpx-accordion__panel {
	padding-bottom: var(--sp-5);
}

.wpx-accordion--partners .wpx-accordion__summary {
	font-size: clamp(1.75rem, 3vw, 2.75rem);
	font-weight: 300;
	letter-spacing: -0.02em;
	color: var(--c-pine);
}

.wpx-accordion--partners .wpx-accordion__summary em {
	font-size: 0.45em;
	font-style: italic;
	font-weight: 400;
	letter-spacing: 0;
	vertical-align: middle;
}

.wpx-accordion--partners .wpx-accordion__panel .wpx-section {
	padding-block: 0;
}

.wpx-accordion--partners .wpx-accordion__panel .wpx-container,
.wpx-accordion--partners .wpx-accordion__panel .wpx-container--wide {
	max-width: none;
	width: 100%;
	padding-inline: 0;
}

.wpx-accordion--partners .wpx-accordion__panel {
	padding-bottom: var(--sp-4);
}

.wpx-logo-wall--partners .wpx-logo-wall__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--sp-4) var(--sp-5);
}

@media (width >= 48rem) {
	.wpx-logo-wall--partners .wpx-logo-wall__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: var(--sp-5) var(--sp-6);
	}
}

.wpx-logo-wall--partners .wpx-logo-wall__item img {
	max-height: 3.25rem;
	filter: none;
	opacity: 1;
}

.wpx-contributors {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-3);
	max-width: 42rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (width >= 48rem) {
	.wpx-contributors {
		grid-template-columns: 1fr 1fr;
		column-gap: var(--sp-8);
		row-gap: var(--sp-3);
	}
}

.wpx-contributors__item {
	margin: 0;
	line-height: 1.45;
}

/* ---------- Tabs ---------- */

.wpx-tabs__list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2);
	margin-bottom: var(--sp-6);
	border-bottom: 1px solid var(--c-rule);
}

.wpx-tabs__tab {
	padding: var(--sp-3) var(--sp-4);
	border: 0;
	border-bottom: 2px solid transparent;
	background: none;
	color: var(--c-muted);
	font-family: var(--font-display);
	font-size: var(--fs-body);
	cursor: pointer;
}

.wpx-tabs__tab[aria-selected='true'] {
	border-bottom-color: var(--c-primary);
	color: var(--c-body-text);
}

.wpx-tabs--filter .wpx-tabs__list {
	gap: var(--sp-5);
	margin-bottom: var(--sp-5);
	border-bottom: 0;
}

.wpx-tabs--filter .wpx-tabs__tab {
	padding: 0 0 0.2em;
	border: 0;
	border-bottom: 2px solid transparent;
	border-radius: 0;
	color: var(--c-text);
	font-size: var(--fs-sm);
	font-weight: 600;
}

.wpx-tabs--filter .wpx-tabs__tab:hover,
.wpx-tabs--filter .wpx-tabs__tab:focus-visible {
	color: var(--c-pine);
}

.wpx-tabs--filter .wpx-tabs__tab[aria-selected='true'] {
	border-bottom-color: var(--c-text);
	color: var(--c-text);
	font-weight: 700;
}

.wpx-tabs--filter .wpx-tabs__tab[aria-selected='true']:hover,
.wpx-tabs--filter .wpx-tabs__tab[aria-selected='true']:focus-visible {
	color: var(--c-text);
}

/*
 * Panels are stacked until ui.js takes over, and separated by a rule so the
 * un-enhanced version still reads as distinct sections.
 */
.wpx-tabs__panel + .wpx-tabs__panel {
	margin-top: var(--sp-6);
	padding-top: var(--sp-6);
	border-top: 1px solid var(--c-rule);
}

.wpx-tabs.is-enhanced .wpx-tabs__panel + .wpx-tabs__panel {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

/* ---------- Map ---------- */

.wpx-map {
	height: var(--wpx-map-height, 32rem);
	background: var(--c-lt-blue);
}

.wpx-map__fallback {
	margin: var(--sp-5) 0 0;
	padding-left: var(--sp-5);
}

.wpx-map-section__header {
	margin-bottom: var(--sp-6);
	max-width: var(--w-prose);
}

.wpx-map-section__actions {
	margin-top: var(--sp-6);
}

.wpx-map-section--split {
	color: var(--c-white);
	background: var(--wpx-map-section-bg, #736f53);
}

.wpx-map-section--split .wpx-map-section__grid {
	display: grid;
	gap: var(--sp-7);
	align-items: center;
}

.wpx-map-section--split .wpx-map-section__copy .wpx-prose {
	max-width: none;
	color: inherit;
}

.wpx-map-section--split .wpx-map-section__copy .wpx-prose p {
	margin: 0;
	font-weight: 400;
	line-height: var(--lh-body);
}

.wpx-map-section--split .wpx-map-section__copy .wpx-prose p + p {
	margin-top: var(--sp-5);
}

.wpx-map-section--split .wpx-map-section__media {
	position: relative;
	min-width: 0;
}

.wpx-map-section--split .wpx-map {
	border: 1px solid rgb(255 255 255 / 28%);
}

.wpx-map-section--split .wpx-map__fallback {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

@media (width >= 56rem) {
	.wpx-map-section--split .wpx-map-section__grid {
		grid-template-columns: 1fr 1fr;
		column-gap: clamp(2rem, 5vw, 5rem);
	}
}

/* ---------- Photo guide ---------- */

.wpx-photo-guide__list {
	display: grid;
	gap: var(--sp-8) var(--gutter);
	margin: var(--sp-7) 0 0;
	padding: 0;
	list-style: none;
	counter-reset: wpx-step;
}

.wpx-photo-guide__step {
	display: grid;
	gap: var(--sp-4);
}

.wpx-photo-guide__list.is-numbered .wpx-photo-guide__title::before {
	counter-increment: wpx-step;
	content: counter(wpx-step, decimal-leading-zero) '. ';
	color: var(--c-primary);
	font-family: var(--font-mono);
	font-size: var(--fs-sm);
}

.wpx-photo-guide__heading {
	margin: 0;
}

.wpx-photo-guide__title {
	margin: 0;
}

@media (width >= 40rem) {
	.wpx-photo-guide__list.is-cols-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (width >= 56rem) {
	.wpx-photo-guide__list {
		grid-template-columns: repeat(2, 1fr);
	}

	.wpx-photo-guide__list.is-cols-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ---------- Gradient hero ---------- */

.wpx-hero--gradient {
	min-height: min(70vh, 40rem);
	color: var(--c-white);
}

.wpx-hero--gradient .wpx-eyebrow {
	color: rgb(255 255 255 / 78%);
}

/* The ACF gradient is the only scrim here, so drop the generic hero one. */
.wpx-hero--gradient .wpx-hero__media::after {
	display: none;
}

/*
 * Over an image the gradient has to stay translucent at the top or it hides the
 * photograph; with no image behind it, it is the background.
 */
/*
 * The gradient itself is bottom-weighted, so on a bright image the eyebrow and
 * title at the top sit on nothing. The second layer backs the text column.
 */
.wpx-hero--gradient .wpx-hero__fade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(
			var(--wpx-grad-angle, 180deg),
			rgb(var(--wpx-grad-from-rgb, 54 70 53) / 0%),
			rgb(var(--wpx-grad-to-rgb, 54 70 53) / 88%)
		),
		linear-gradient(90deg, rgb(0 0 0 / 55%) 0%, rgb(0 0 0 / 0%) 60%);
}

.wpx-page--stormwater .wpx-hero--gradient.has-media,
.wpx-page--ocklawaha .wpx-hero--gradient.has-media {
	min-height: 85svh;
	padding-block: var(--sp-10) var(--sp-8);
}

/*
 * FWC Progress: production Elementor container is min-height 100vh with a
 * cover video. Header stays in flow (solid --c-nav), so the hero fills the
 * remaining viewport rather than tucking under the bar.
 */
.wpx-page--fwc .wpx-hero--gradient.has-media {
	min-height: calc(100svh - 4.5rem);
	padding-block: var(--sp-10) var(--sp-8);
	overflow: hidden;
}

.wpx-page--fwc .wpx-hero--gradient .wpx-hero__body {
	max-width: var(--w-wide);
}

.wpx-page--fwc .wpx-hero--gradient .wpx-hero__title {
	font-weight: 400;
}

.wpx-page--stormwater .wpx-hero--gradient .wpx-hero__body,
.wpx-page--ocklawaha .wpx-hero--gradient .wpx-hero__body {
	max-width: var(--w-wide);
}

.wpx-page--stormwater .wpx-hero--gradient .wpx-hero__fade,
.wpx-page--ocklawaha .wpx-hero--gradient .wpx-hero__fade {
	background:
		linear-gradient(
			180deg,
			rgb(var(--wpx-grad-from-rgb, 31 47 58) / 0%) 35%,
			rgb(var(--wpx-grad-to-rgb, 31 47 58) / 100%) 100%
		),
		linear-gradient(90deg, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 0%) 58%);
}

.wpx-page--stormwater .wpx-hero--gradient .wpx-hero__title,
.wpx-page--ocklawaha .wpx-hero--gradient .wpx-hero__title {
	font-weight: 400;
}

.wpx-page--stormwater .wpx-hero--gradient .wpx-hero__subtitle {
	max-width: 40rem;
	margin-top: var(--sp-4);
	color: rgb(255 255 255 / 92%);
	font-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.1rem);
	font-weight: 300;
	line-height: 1.55;
}

.wpx-hero__callout {
	max-width: min(40rem, 100%);
	margin: var(--sp-5) 0 0;
	padding: 0.15em 0 0.15em 0.65rem;
	border-left: 1px solid rgb(255 255 255 / 90%);
	color: rgb(255 255 255 / 96%);
	font-size: var(--fs-sm);
	font-weight: 400;
	line-height: 1.45;
}

/*
 * Corridor singles: production Elementor hero is 100vh with a radial multiply
 * wash from bottom-left and the formed-date callout under the synopsis.
 */
.single-corridor-project .wpx-hero--gradient.has-media {
	min-height: 100svh;
	padding-block: var(--sp-10) var(--sp-8);
	overflow: hidden;
	background: var(--wpx-post-2, var(--c-nav));
}

.single-corridor-project .wpx-hero--gradient .wpx-hero__media {
	/* Opaque fallback so any decode gap is night, not the hero olive. */
	background: var(--c-night);
}

.single-corridor-project .wpx-hero--gradient .wpx-hero__image {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-corridor-project .wpx-hero--gradient .wpx-hero__media::before {
	position: absolute;
	inset: 0;
	z-index: 2;
	background-image: radial-gradient(at bottom left, rgb(5 5 5 / 66%) 15%, rgb(35 40 42 / 1%) 56%);
	mix-blend-mode: multiply;
	opacity: 0.83;
	pointer-events: none;
	content: '';
}

.single-corridor-project .wpx-hero--gradient .wpx-hero__fade {
	z-index: 3;
	background:
		linear-gradient(
			180deg,
			rgb(var(--wpx-grad-from-rgb, 134 143 116) / 0%) 45%,
			rgb(var(--wpx-grad-to-rgb, 54 70 53) / 55%) 100%
		),
		radial-gradient(
			120% 90% at 0% 100%,
			rgb(var(--wpx-grad-to-rgb, 54 70 53) / 45%) 0%,
			rgb(var(--wpx-grad-to-rgb, 54 70 53) / 0%) 62%
		);
}

.single-corridor-project .wpx-hero--gradient .wpx-hero__body {
	z-index: 4;
	/* Same horizontal inset as the meta-band’s wide container below. */
	max-width: var(--w-wide);
}

.single-corridor-project .wpx-hero--gradient .wpx-hero__title {
	max-width: 16ch;
	font-weight: 400;
}

.single-corridor-project .wpx-hero--gradient .wpx-hero__subtitle {
	max-width: 42rem;
	font-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.05rem);
	line-height: 1.55;
	font-weight: 300;
}

.wpx-hero--gradient:not(.has-media) {
	background: linear-gradient(
		var(--wpx-grad-angle, 180deg),
		var(--wpx-grad-from, #364635),
		var(--wpx-grad-to, #364635)
	);
	color: var(--wpx-grad-on-colour, #ffffff);
}

.wpx-hero--gradient:not(.has-media) .wpx-eyebrow {
	color: inherit;
	opacity: 0.78;
}

/*
 * Native files: min-width/min-height cover so the element box cannot collapse
 * to the file's intrinsic ratio when the first frame decodes.
 *
 * Iframes: Vimeo contain-fits and also rewrites the iframe to 16:9 on play.
 * The cover wrapper is a scaled-up copy of the media box (same aspect); the
 * iframe is locked to 100% of it. Scale is large enough that 16:9 files fill
 * wide page heroes and cinematic files fill tall corridor heroes.
 */
video.wpx-hero__video,
video.wpx-hero-slider__video,
video.wpx-vision-panel__video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	border: 0;
	object-fit: cover;
	object-position: center;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.wpx-hero__video-cover {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 250%;
	height: 250%;
	overflow: hidden;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.wpx-hero__video-cover iframe {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	min-width: 100% !important;
	min-height: 100% !important;
	border: 0;
	transform: none !important;
	pointer-events: none;
}

.wpx-hero__logo {
	margin-bottom: var(--sp-5);
}

.wpx-hero__logo img {
	width: auto;
	max-height: 6rem;
}

/* ---------- Hero video slider ---------- */

.wpx-hero--slider {
	position: relative;
	min-height: min(90svh, 48rem);
	color: var(--c-white);
	overflow: hidden;
}

.wpx-hero-slider__track {
	position: absolute;
	inset: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wpx-hero-slider__slide {
	position: absolute;
	inset: 0;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--dur-slow) var(--ease), visibility var(--dur-slow);
}

.wpx-hero-slider__slide.is-active {
	opacity: 1;
	visibility: visible;
}

.wpx-hero-slider__poster {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wpx-hero-slider__video {
	z-index: 0;
}

.wpx-hero-slider__overlay {
	position: absolute;
	inset: auto 0 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: var(--sp-2);
	padding: var(--sp-8) var(--inset);
	background: linear-gradient(transparent, rgb(0 0 0 / 72%));
	color: inherit;
	text-decoration: none;
}

.wpx-hero-slider__content {
	position: absolute;
	left: var(--inset);
	right: var(--inset);
	top: 50%;
	z-index: 2;
	transform: translateY(-50%);
	pointer-events: none;
}

.wpx-hero-slider__intro {
	width: min(58rem, 100%);
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 1.25rem + 3.2vw, 4.125rem);
	font-weight: 400;
	line-height: 1.15;
	letter-spacing: var(--tracking-tight);
	color: var(--c-white);
	text-wrap: pretty;
}

.wpx-hero-slider__highlight {
	color: var(--c-lt-gold);
}

.wpx-hero--slider-intro .wpx-hero-slider__overlay {
	inset: auto var(--gutter) calc(var(--sp-8) + 2.75rem) auto;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55em;
	max-width: min(32rem, calc(100% - 2 * var(--gutter)));
	padding: 0;
	background: none;
	font-family: var(--font-body);
	font-size: calc(var(--fs-xs) * 1.5);
	font-weight: 500;
	letter-spacing: var(--tracking-wide);
	line-height: 1;
	text-transform: uppercase;
}

.wpx-hero--slider-intro .wpx-hero-slider__label {
	display: inline-flex;
	align-items: center;
	font-family: inherit;
	font-weight: 400;
	line-height: 1;
}

.wpx-hero--slider-intro .wpx-hero-slider__label::after {
	content: '|';
	margin-left: 0.55em;
	opacity: 0.7;
}

.wpx-hero--slider-intro .wpx-hero-slider__title {
	display: inline-flex;
	align-items: center;
	max-width: none;
	font-family: inherit;
	font-size: inherit;
	font-weight: 700;
	line-height: 1;
	letter-spacing: inherit;
}

.wpx-hero--slider-intro .wpx-hero-slider__arrow {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.wpx-hero--slider-intro .wpx-hero-slider__overlay:hover,
.wpx-hero--slider-intro .wpx-hero-slider__overlay:focus-visible {
	color: var(--c-sunrise);
}

.wpx-hero-slider__label {
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
}

.wpx-hero-slider__title {
	max-width: 24ch;
	font-family: var(--font-display);
	font-size: var(--fs-h1);
	line-height: var(--lh-heading);
}

.wpx-hero-slider__arrow {
	transition: transform var(--dur) var(--ease);
}

.wpx-hero-slider__overlay:hover .wpx-hero-slider__arrow {
	transform: translateX(var(--sp-2));
}

.wpx-hero-slider__pagination {
	position: absolute;
	left: 50%;
	bottom: var(--sp-6);
	z-index: 3;
	display: flex;
	justify-content: center;
	gap: var(--sp-2);
	transform: translateX(-50%);
}

.wpx-hero-slider__dot {
	position: relative;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.wpx-hero-slider__dot::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 3px;
	transform: translateY(-50%);
	background: rgb(255 255 255 / 40%);
	transition: background var(--dur) var(--ease);
}

.wpx-hero-slider__dot[aria-selected='true']::after {
	background: var(--c-white);
}

/* ---------- Dialog ---------- */

.wpx-dialog {
	width: min(48rem, calc(100vw - 2 * var(--gutter)));
	max-height: 85svh;
	padding: 0;
	border: 0;
	background: var(--c-body-bg);
	color: var(--c-body-text);
	box-shadow: var(--shadow-2);
}

.wpx-dialog::backdrop {
	background: rgb(30 34 36 / 70%);
}

.wpx-dialog__inner {
	position: relative;
	padding: var(--sp-7);
}

.wpx-dialog--team {
	text-align: center;
}

.wpx-dialog--team .wpx-dialog__media {
	margin: 0 auto var(--sp-5);
	max-width: 14rem;
}

.wpx-dialog--team .wpx-dialog__image {
	display: block;
	width: 100%;
	height: auto;
}

.wpx-dialog--team .wpx-eyebrow {
	margin-top: var(--sp-2);
}

.wpx-dialog--team .wpx-prose {
	margin-top: var(--sp-5);
	text-align: center;
}

.wpx-dialog__close,
.wpx-lightbox__close {
	position: absolute;
	top: var(--sp-3);
	right: var(--sp-3);
	width: 2.75rem;
	height: 2.75rem;
	border: 0;
	background: none;
	color: inherit;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
}

/* ---------- Post palette ---------- */

/*
 * Films and corridors carry a two-colour pair on <body>. The old theme tinted
 * the footer by targeting `.elementor-element-38885d5` from a wp_head style
 * block, which would have broken the moment that element was rebuilt.
 */
.has-post-palette .wpx-footer {
	background-color: color-mix(in srgb, rgb(var(--wpx-post-2-rgb)) 55%, #2a3326);
}

.has-post-palette .wpx-footer__heading {
	color: var(--c-white);
}

.has-post-palette .wpx-meta-band.is-tinted {
	background: var(--wpx-post-2, var(--c-secondary));
	color: var(--wpx-post-on-2, var(--c-white));
}

.has-post-palette .wpx-meta-band.is-tinted :is(h1, h2, h3, h4, a, dt, dd) {
	color: inherit;
}

.single-corridor-project .wpx-statement--corridor-brand {
	color: var(--wpx-post-on-2, var(--c-white));
	background: var(--wpx-post-2, var(--c-secondary));
}

/* ---------- Film hero ---------- */
/*
 * Mirrors production Elementor film singles (template 62966):
 * column 100vh, growing copy column (11% top / 60% right), logo max 293px,
 * footer row (laurels | watch) with 1/1/4/1 % padding, olive bottom fade +
 * left multiply wash.
 */

.wpx-hero--film {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: stretch;
	min-height: 100svh;
	padding: 0;
	color: var(--c-white);
	overflow: hidden;
	background: var(--wpx-grad-from, var(--c-primary));
}

.wpx-hero--film .wpx-eyebrow,
.wpx-hero--film .wpx-hero__credits {
	color: rgb(255 255 255 / 92%);
}

/*
 * A film hero already carries its own gradient; the generic hero scrim on top
 * of it doubles the darkening.
 */
.wpx-hero--film .wpx-hero__media {
	background: transparent;
}

/* Elementor background overlay: radial multiply from center-left. */
.wpx-hero--film .wpx-hero__media::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image: radial-gradient(at center left, rgb(5 5 5 / 79%) 3%, rgb(0 0 0 / 37%) 62%);
	mix-blend-mode: multiply;
	filter: brightness(0.98) contrast(0.86);
	pointer-events: none;
	content: '';
}

.wpx-hero--film .wpx-hero__image {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*
 * Match production `[film_hero_fade]`: brand wash at the bottom, left
 * readability gradient, light multiply veil.
 */
.wpx-hero--film .wpx-hero__fade {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(180deg, rgb(0 0 0 / 0%) 80%, var(--wpx-grad-from, #868f74) 101%),
		linear-gradient(90deg, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 0%) 50%),
		linear-gradient(180deg, rgb(0 0 0 / 15%) 0%, rgb(0 0 0 / 15%) 100%);
	background-blend-mode: normal, normal, multiply;
	pointer-events: none;
}

.wpx-hero--film .wpx-hero__body {
	position: relative;
	z-index: 3;
	display: flex;
	flex: 1 0 auto;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0.85rem;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 11% 60% 0 var(--inset);
	text-align: left;
}

.wpx-hero--film .wpx-hero__logo {
	/* Elementor image widget: margin-top 20% of content width. */
	margin: 20% 0 0;
}

.wpx-hero--film .wpx-hero__logo img {
	display: block;
	width: auto;
	max-width: min(100%, 293px);
	max-height: none;
	height: auto;
	object-fit: contain;
}

.wpx-hero--film .wpx-hero__synopsis {
	margin: 0;
	max-width: 34rem;
	font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
	font-weight: 300;
	line-height: 1.55;
	color: var(--c-white);
}

.wpx-hero--film .wpx-hero__synopsis p {
	margin: 0;
}

.wpx-hero--film .wpx-hero__credits {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 1.75rem;
	align-items: center;
	margin: 0.35rem 0 0;
	font-family: var(--font-sans);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.075em;
	line-height: 1.2;
	text-transform: uppercase;
	color: rgb(255 255 255 / 80%);
}

.wpx-hero--film .wpx-hero__credit {
	display: inline-block;
}

.wpx-hero--film .wpx-hero__credit a {
	color: inherit;
	text-decoration: none;
}

.wpx-hero--film .wpx-hero__footer {
	position: relative;
	z-index: 3;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	margin: 0;
	padding: 1% var(--inset) 4%;
}

.wpx-hero--film .wpx-watch__list {
	justify-content: flex-end;
	margin: 0;
	gap: 2.5rem;
}

.wpx-hero--film .wpx-watch__card {
	min-width: 7.5rem;
	max-width: 6.25rem;
	padding: 0.625rem;
	gap: 0;
}

.wpx-hero--film .wpx-watch__card:hover,
.wpx-hero--film .wpx-watch__card:focus-visible {
	background: rgb(255 255 255 / 10%);
	backdrop-filter: blur(5px);
	opacity: 1;
}

.wpx-hero--film .wpx-watch__logo {
	width: auto;
	height: 1.875rem;
	max-width: 3.125rem;
	margin-bottom: 0.75rem;
	/* Keep platform brand colour (YouTube red) — do not flatten to white. */
	filter: none;
}

.wpx-hero--film .wpx-watch__eyebrow {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.125em;
	line-height: 1.2;
	text-transform: uppercase;
}

.wpx-hero--film .wpx-watch__label {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: 1.2;
	text-transform: uppercase;
}

.wpx-hero--film .wpx-hero__laurels {
	justify-content: flex-start;
	margin: 0;
	flex: 0 1 45%;
	max-width: 45.5%;
	gap: 0.5rem;
}

.wpx-hero--film .wpx-hero__laurels img {
	max-height: 4.5rem;
	width: auto;
}

.wpx-hero--film .wpx-hero__laurels-spacer {
	flex: 0 1 45%;
}

@media (width <= 48rem) {
	.wpx-hero--film .wpx-hero__body {
		padding: 35% 9% 1% var(--inset);
	}

	.wpx-hero--film .wpx-hero__logo {
		margin-top: 0;
	}

	.wpx-hero--film .wpx-hero__logo img {
		max-width: min(100%, 205px);
	}

	.wpx-hero--film .wpx-hero__footer {
		padding: 0 var(--inset) 4%;
	}

	.wpx-hero--film .wpx-hero__laurels {
		flex: 1 1 100%;
		max-width: 100%;
	}
}

.wpx-hero__logo img {
	width: auto;
	max-width: min(100%, 26rem);
	max-height: 9rem;
	object-fit: contain;
}

.wpx-hero__synopsis {
	margin: 0;
}

.wpx-hero__credits {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-2);
	align-items: center;
	margin: 0;
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
}

.wpx-hero__credits a {
	color: inherit;
}

.wpx-hero__laurels {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-4);
	align-items: center;
	margin: var(--sp-7) 0 0;
	padding: 0;
	list-style: none;
}

.wpx-hero__laurels img {
	width: auto;
	max-height: 4.5rem;
	object-fit: contain;
}

/* ---------- Watch links ---------- */

.wpx-watch__list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-6);
	margin: var(--sp-3) 0 0;
	padding: 0;
	list-style: none;
}

.wpx-watch__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sp-1);
	min-width: 7rem;
	padding: var(--sp-3);
	color: inherit;
	text-align: center;
	text-decoration: none;
	transition: background var(--dur) var(--ease);
}

.wpx-watch__card:hover,
.wpx-watch__card:focus-visible {
	background: rgb(255 255 255 / 10%);
	backdrop-filter: blur(5px);
}

/*
 * The platform logos are supplied in their brand colours, several of them dark
 * navy or black, which disappear against the hero. Flattening them to white
 * keeps the row legible and consistent.
 */
.wpx-watch__logo {
	width: auto;
	height: 1.875rem;
	max-width: 9rem;
	margin-bottom: var(--sp-2);
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.wpx-watch__eyebrow,
.wpx-watch__label {
	font-size: var(--fs-xs);
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
}

.wpx-watch__label {
	font-weight: 600;
}

/* ---------- Metadata band ---------- */

.wpx-meta-band__intro {
	max-width: var(--w-prose);
	margin-bottom: var(--sp-8);
}

.wpx-meta-band__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
	gap: var(--sp-7) var(--gutter);
	margin: 0;
}

@media (width >= 48rem) {
	.wpx-meta-band__item.is-wide {
		grid-column: span 2;
	}
}

.wpx-meta-band__item dt {
	margin-bottom: var(--sp-2);
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
	opacity: 0.7;
}

.wpx-meta-band__item dd {
	margin: 0;
	line-height: var(--lh-body);
}

.wpx-meta-band__item dd p:first-child {
	margin-top: 0;
}

.wpx-meta-band__links {
	display: flex;
	flex-direction: column;
	gap: var(--sp-2);
	margin: 0;
	padding: 0;
	list-style: none;
}

.wpx-meta-band__links a {
	color: inherit;
	text-decoration: none;
}

.wpx-meta-band__links a:hover,
.wpx-meta-band__links a:focus-visible {
	opacity: 0.65;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

/* ---------- Film overview ---------- */
/*
 * Post-hero band on film singles: ACF film_alternative_color →
 * film_alternative_color_2 gradient, dark meta panel, goal/outcome splits,
 * yellow outcome stats.
 */

.wpx-film-overview {
	color: var(--wpx-post-on-1, var(--c-white));
	background: linear-gradient(
		180deg,
		var(--wpx-post-1, var(--c-nav)) 0%,
		var(--wpx-post-2, var(--c-pine)) 100%
	);
}

/* Corridor: same layout, page palette (Project Color 1 → 2). */
.wpx-film-overview--corridor {
	color: var(--wpx-post-on-2, var(--c-white));
	background: linear-gradient(
		180deg,
		var(--wpx-post-1, var(--c-nav)) 0%,
		var(--wpx-post-2, var(--c-secondary)) 100%
	);
}

.wpx-film-overview__meta-item.is-wide {
	grid-column: 1 / -1;
}

.wpx-film-overview__meta-item.is-wide dd {
	font-weight: 300;
	line-height: 1.5;
}

.wpx-film-overview__meta-item.is-wide dd p {
	margin: 0 0 0.5em;
}

.wpx-film-overview__meta-item.is-wide dd p:last-child {
	margin-bottom: 0;
}

.wpx-film-overview__top {
	display: grid;
	gap: var(--sp-7);
	align-items: start;
	padding-bottom: var(--sp-8);
	border-bottom: 1px solid rgb(255 255 255 / 22%);
}

@media (width >= 64rem) {
	.wpx-film-overview__top {
		grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.9fr);
		gap: var(--sp-8) var(--sp-7);
	}
}

.wpx-film-overview__title,
.wpx-film-overview__heading {
	margin: 0 0 var(--sp-4);
	color: inherit;
	font-size: clamp(1.75rem, 1.2rem + 1.4vw, 2.5rem);
	font-weight: 400;
	line-height: 1.15;
}

.wpx-film-overview__prose {
	max-width: 42rem;
	font-size: var(--fs-body);
	font-weight: 300;
	line-height: var(--lh-body);
}

.wpx-film-overview__prose p {
	margin: 0 0 1em;
}

.wpx-film-overview__prose p:last-child {
	margin-bottom: 0;
}

.wpx-film-overview__prose a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.wpx-film-overview__meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--sp-5) var(--sp-5);
	margin: 0;
	padding: var(--sp-5) var(--sp-6);
	background: rgb(37 42 45 / 72%);
}

.wpx-film-overview__meta-item dt {
	margin: 0 0 0.35rem;
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	font-weight: 500;
	letter-spacing: var(--tracking-wide);
	line-height: 1.3;
	text-transform: uppercase;
	opacity: 0.72;
}

.wpx-film-overview__meta-item dd {
	margin: 0;
	font-size: var(--fs-sm);
	font-weight: 400;
	line-height: 1.4;
}

.wpx-film-overview__links {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wpx-film-overview__links a {
	color: inherit;
	text-decoration: none;
}

.wpx-film-overview__links a:hover,
.wpx-film-overview__links a:focus-visible {
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.wpx-film-overview__awards {
	padding-block: var(--sp-7);
	border-bottom: 1px solid rgb(255 255 255 / 22%);
}

.wpx-film-overview__eyebrow {
	margin: 0 0 var(--sp-3);
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	font-weight: 500;
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
	opacity: 0.72;
}

.wpx-film-overview__awards .wpx-film-overview__prose {
	max-width: 36rem;
}

.wpx-film-overview__awards .wpx-film-overview__prose p {
	margin: 0 0 0.4em;
}

.wpx-film-overview__award-list {
	max-width: 40rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: var(--fs-body);
	font-weight: 300;
	line-height: 1.55;
}

.wpx-film-overview__award-list li + li {
	margin-top: 0.35em;
}

.wpx-film-overview__split {
	display: grid;
	gap: var(--sp-4);
	padding-block: var(--sp-8);
	border-bottom: 1px solid rgb(255 255 255 / 22%);
}

@media (width >= 56rem) {
	.wpx-film-overview__split {
		grid-template-columns: minmax(12rem, 0.35fr) minmax(0, 1fr);
		gap: var(--sp-6) var(--sp-7);
		align-items: start;
	}
}

.wpx-film-overview__outcome {
	padding-top: 0;
}

.wpx-film-overview__outcome > .wpx-film-overview__split {
	border-bottom: 0;
	padding-bottom: var(--sp-6);
}

.wpx-film-overview__stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--sp-6);
	margin: 0;
	padding-top: var(--sp-2);
	padding-bottom: var(--sp-2);
}

@media (width >= 48rem) {
	.wpx-film-overview__stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: var(--sp-6) var(--sp-5);
	}
}

.wpx-film-overview__stat {
	text-align: center;
}

.wpx-film-overview__stat dt {
	margin: 0 0 0.4rem;
	color: var(--c-sunrise);
	font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.02em;
}

.wpx-film-overview__stat dd {
	margin: 0;
	font-size: var(--fs-sm);
	font-weight: 300;
	line-height: 1.35;
	color: rgb(255 255 255 / 92%);
}

/*
 * Heading-less outcome facts: promote the text into the gold/bold treatment
 * used by the numeric headings.
 */
.wpx-film-overview__stat.is-text-only {
	display: flex;
	align-items: center;
	justify-content: center;
}

.wpx-film-overview__stat.is-text-only dt {
	margin: 0;
	font-size: clamp(1.05rem, 0.95rem + 0.45vw, 1.35rem);
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0;
}

/* ---------- Statement banner variant ---------- */

.wpx-statement.has-media {
	position: relative;
	color: var(--c-white);
}

.wpx-statement--films-intro.has-media,
.wpx-statement--photo-intro.has-media {
	isolation: isolate;
	overflow: hidden;
	color: var(--c-text);
	background-color: var(--c-white);
}

.wpx-statement--films-intro .wpx-statement__media,
.wpx-statement--photo-intro .wpx-statement__media {
	z-index: 0;
}

.wpx-statement--films-intro .wpx-statement__media img {
	opacity: 0.55;
}

.wpx-statement--films-intro .wpx-statement__media::after {
	background: linear-gradient(180deg, rgb(255 255 255 / 52%) 0%, rgb(255 255 255 / 44%) 100%);
}

.wpx-statement--photo-intro .wpx-statement__media img {
	opacity: 0.5;
}

.wpx-statement--photo-intro .wpx-statement__media::after {
	background: none;
}

.wpx-statement--films-intro > .wpx-container,
.wpx-statement--photo-intro > .wpx-container {
	position: relative;
	z-index: 1;
}

.wpx-statement--films-intro .wpx-statement__inner,
.wpx-statement--photo-intro .wpx-statement__inner {
	display: grid;
	gap: var(--sp-7);
	max-width: none;
}

.wpx-statement--films-intro .wpx-statement__title,
.wpx-statement--photo-intro .wpx-statement__title {
	margin: 0;
	font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.625rem);
	font-weight: 300;
	line-height: 1.2;
}

.wpx-statement--films-intro .wpx-statement__text,
.wpx-statement--photo-intro .wpx-statement__text {
	margin: 0;
	font-size: var(--fs-body);
	font-weight: 300;
	line-height: var(--lh-body);
}

.wpx-statement--films-intro .wpx-statement__text p,
.wpx-statement--photo-intro .wpx-statement__text p {
	margin: 0 0 var(--sp-5);
	font-weight: 300;
}

.wpx-statement--films-intro .wpx-statement__text p:last-child,
.wpx-statement--photo-intro .wpx-statement__text p:last-child {
	margin-bottom: 0;
}

@media (width >= 56rem) {
	.wpx-statement--films-intro .wpx-statement__inner,
	.wpx-statement--photo-intro .wpx-statement__inner {
		grid-template-columns: 1fr 1fr;
		gap: var(--sp-8);
		align-items: start;
	}
}

.wpx-statement__media {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
}

.wpx-statement__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wpx-statement__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgb(30 34 36 / 58%);
}

.wpx-statement--video-band {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	min-height: 28rem;
}

.wpx-statement--video-band .wpx-statement__inner {
	max-width: min(72rem, 92%);
}

.wpx-statement--video-band .wpx-statement__title {
	margin: 0;
	font-size: 38px;
	font-weight: 400;
	line-height: var(--lh-snug, 1.35);
}

@media (width >= 64rem) {
	.wpx-statement--video-band {
		min-height: 750px;
	}
}

.wpx-statement--video-only {
	overflow: hidden;
	min-height: 76vh;
}

.wpx-statement--video-only .wpx-statement__media {
	z-index: 0;
}

.wpx-statement--video-only .wpx-statement__media::after {
	content: none;
}

.wpx-statement--connected {
	color: var(--c-white);
	background: radial-gradient(at top center, #26353d 0%, var(--c-night) 66%);
	min-height: 50vh;
}

.wpx-statement--connected > .wpx-container {
	max-width: var(--w-wide);
}

.wpx-statement--connected .wpx-statement__inner {
	display: grid;
	gap: var(--sp-7);
	max-width: none;
}

.wpx-statement--connected .wpx-statement__title {
	margin: 0;
	color: inherit;
	font-size: clamp(1.75rem, 1.2rem + 1.5vw, 2.375rem);
	font-weight: 300;
	line-height: 1.2;
}

.wpx-statement--connected .wpx-statement__text,
.wpx-statement--connected .wpx-statement__text p,
.wpx-statement--connected .wpx-statement__text strong {
	color: inherit;
}

.wpx-statement--connected .wpx-statement__text {
	margin: 0;
	font-size: var(--fs-body);
	font-weight: 300;
	line-height: var(--lh-body);
}

.wpx-statement--connected .wpx-statement__text p {
	margin: 0 0 var(--sp-5);
	font-weight: 300;
}

.wpx-statement--connected .wpx-statement__text p:last-child {
	margin-bottom: 0;
}

.wpx-statement--connected .wpx-statement__text strong {
	font-weight: 700;
}

@media (width >= 56rem) {
	.wpx-statement--connected .wpx-statement__inner {
		grid-template-columns: 1fr 1fr;
		gap: var(--sp-8);
		align-items: start;
	}
}

.wpx-statement--project-band {
	display: block;
	color: var(--c-white);
}

.wpx-statement--project-band .wpx-statement__media {
	z-index: 0;
}

.wpx-statement--project-band .wpx-statement__media::after {
	background: rgb(8 16 22 / 42%);
}

.wpx-statement--project-band > .wpx-container {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	max-width: var(--w-wide);
	min-height: 28rem;
}

.wpx-statement--project-band .wpx-statement__inner {
	max-width: 36rem;
	margin-inline: 0;
	text-align: left;
}

@media (width >= 64rem) {
	.wpx-statement--project-band > .wpx-container {
		min-height: 750px;
	}
}

.wpx-statement--project-band .wpx-eyebrow {
	color: rgb(255 255 255 / 78%);
}

.wpx-statement--project-band .wpx-statement__title {
	margin: var(--sp-3) 0 var(--sp-5);
	font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.75rem);
	font-weight: 400;
	line-height: 1.2;
}

.wpx-statement--project-band .wpx-statement__text,
.wpx-statement--project-band .wpx-statement__text p {
	color: rgb(255 255 255 / 92%);
	font-weight: 300;
}

.wpx-page--photography .wpx-card-grid {
	padding-bottom: var(--sp-6);
}

.wpx-page--photography .wpx-statement--photo-intro {
	padding-top: var(--sp-6);
}

.wpx-page--photography .wpx-card--tile .wpx-card__media {
	aspect-ratio: 3 / 4;
}

.wpx-page--landscapes .wpx-hero--standard.has-media,
.wpx-page--films .wpx-hero--standard.has-media {
	align-items: end;
	min-height: calc(100svh - 4.5rem);
	padding-top: var(--sp-8);
	padding-bottom: clamp(2.5rem, 5vh, 4rem);
}

.wpx-page--landscapes .wpx-hero--standard.has-media .wpx-hero__media::after,
.wpx-page--films .wpx-hero--standard.has-media .wpx-hero__media::after {
	background: linear-gradient(to top, rgb(0 0 0 / 32%) 0%, rgb(0 0 0 / 0%) 42%);
}

.wpx-page--landscapes .wpx-hero__body,
.wpx-page--films .wpx-hero__body {
	max-width: var(--w-wide);
	text-align: left;
}

.wpx-page--landscapes .wpx-hero__title,
.wpx-page--films .wpx-hero__title {
	max-width: 28ch;
	margin: 0;
	font-weight: 300;
	line-height: var(--lh-tight);
}

.wpx-page--films .wpx-hero__title {
	max-width: 20ch;
}

.wpx-page--landscapes .wpx-statement--photo-intro > .wpx-container,
.wpx-page--films .wpx-statement--films-intro > .wpx-container {
	max-width: var(--w-wide);
}

.wpx-gallery-carousel--films {
	padding: 0;
}

.wpx-gallery-carousel--films .wpx-carousel__slide,
.wpx-gallery-carousel--films .wpx-figure,
.wpx-gallery-carousel--films .wpx-figure__link,
.wpx-gallery-carousel--films img {
	height: 90vh;
}

.wpx-gallery-carousel--films.wpx-gallery-carousel--feature img {
	aspect-ratio: auto;
	width: 100%;
	max-height: none;
	object-fit: cover;
}

/* ---------- Related strip ---------- */

.wpx-related__title {
	margin-bottom: var(--sp-7);
	text-align: center;
}

.wpx-related .wpx-card--tile .wpx-card__media {
	aspect-ratio: 4 / 5;
}

/* Film singles / corridor “More Resources”: dark film carousel band. */
.wpx-card-carousel--films-related {
	color: var(--c-white);
	background: var(--c-nav);
}

.has-post-palette .wpx-card-carousel--films-related {
	color: var(--wpx-post-on-2, var(--c-white));
	background: var(--wpx-post-2, var(--c-nav));
}

/* Corridor Watch + gallery: Project Color 2 band. */
.single-corridor-project .wpx-video-section,
.single-corridor-project .wpx-gallery-carousel {
	color: var(--wpx-post-on-2, var(--c-white));
	background: var(--wpx-post-2, var(--c-pine));
}

.single-corridor-project .wpx-video-section :is(h1, h2, h3, h4),
.single-corridor-project .wpx-gallery-carousel :is(h1, h2, h3, h4) {
	color: inherit;
}

.single-corridor-project .wpx-gallery-carousel {
	padding-top: 0;
	padding-bottom: 40px;
}

.single-corridor-project .wpx-card-grid--film-resources {
	padding-top: 0;
}

.wpx-card-carousel--films-related .wpx-card-carousel__title {
	margin: 0;
	color: inherit;
	font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2rem);
	font-weight: 400;
}

.wpx-card-carousel--films-related .wpx-carousel__nav {
	border-color: rgb(255 255 255 / 35%);
	color: var(--c-white);
}

.wpx-card-carousel--films-related .wpx-carousel__nav:hover:not([disabled]) {
	border-color: var(--c-white);
	background: rgb(255 255 255 / 12%);
	color: var(--c-white);
}

.wpx-card-carousel--films-related .wpx-carousel {
	container-type: inline-size;
}

.wpx-card-carousel--films-related .wpx-carousel__track {
	--wpx-films-related-pad: var(--gutter);
	gap: var(--gutter);
	padding-inline: var(--wpx-films-related-pad);
	scroll-padding-inline: var(--wpx-films-related-pad);
}

@media (width >= 64rem) {
	.wpx-card-carousel--films-related .wpx-carousel__track {
		--wpx-films-related-pad: max(var(--gutter), calc((100vw - var(--w-wide)) / 2 + var(--gutter)));
	}
}

.wpx-card-carousel--films-related .wpx-carousel__slide {
	flex: 0 0 calc(100cqw - (2 * var(--wpx-films-related-pad)));
}

@container (width >= 48rem) {
	.wpx-card-carousel--films-related .wpx-carousel__slide {
		flex-basis: calc((100cqw - (2 * var(--wpx-films-related-pad)) - (2 * var(--gutter))) / 3);
	}
}

.wpx-card-carousel--films-related .wpx-card--tile-films .wpx-card__media {
	aspect-ratio: 16 / 10;
	min-height: 0;
	background: rgb(0 0 0 / 35%);
}

.wpx-card-carousel--films-related .wpx-card--tile-films .wpx-card__caption,
.wpx-card-carousel--films-related .wpx-card--tile-films .wpx-card__play,
.wpx-card-carousel--films-related .wpx-card--tile-films .wpx-card__title {
	color: var(--c-white);
}

.wpx-card-carousel--films-related .wpx-card--tile-films .wpx-card__title {
	font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
	font-weight: 500;
}

.wpx-card-carousel--films-related.wpx-card-carousel--photos-related {
	color: var(--wpx-photo-stories-fg, var(--c-white));
	background: var(--wpx-photo-stories-bg, var(--c-nav));
}

.has-post-palette .wpx-card-carousel--films-related.wpx-card-carousel--photos-related {
	color: var(--wpx-photo-stories-fg, var(--wpx-post-on-1, var(--c-white)));
	background: var(--wpx-photo-stories-bg, var(--wpx-post-1, var(--c-nav)));
}

.wpx-card-carousel--photos-related .wpx-carousel__nav {
	border-color: color-mix(in srgb, currentColor 35%, transparent);
	color: inherit;
}

.wpx-card-carousel--photos-related .wpx-carousel__nav:hover:not([disabled]) {
	border-color: currentColor;
	background: rgb(255 255 255 / 12%);
	color: inherit;
}

.wpx-page--pop-photo ~ .wpx-card-carousel--films-related.wpx-card-carousel--photos-related,
.has-post-palette .wpx-page--pop-photo ~ .wpx-card-carousel--films-related.wpx-card-carousel--photos-related {
	color: var(--c-white);
	background: var(--c-pine);
}

/* ---------- Self-hosted video ---------- */

.wpx-video__element {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------- Component scratch page ---------- */

.wpx-scratch__label {
	margin: var(--sp-9) 0 0;
	padding-bottom: var(--sp-2);
	border-bottom: 1px dashed var(--c-rule);
	color: var(--c-muted);
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
}

/* ---------- Lightbox ---------- */

.wpx-lightbox {
	width: 100vw;
	max-width: 100vw;
	height: 100svh;
	max-height: 100svh;
	padding: 0;
	border: 0;
	background: rgb(20 22 24 / 96%);
	color: var(--c-white);
}

.wpx-lightbox[open] {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: var(--sp-4);
	padding: var(--sp-6);
}

.wpx-lightbox::backdrop {
	background: rgb(20 22 24 / 96%);
}

.wpx-lightbox__figure {
	display: flex;
	flex-direction: column;
	gap: var(--sp-4);
	align-items: center;
	margin: 0;
	min-width: 0;
}

.wpx-lightbox__image {
	max-width: 100%;
	max-height: 80svh;
	object-fit: contain;
}

.wpx-lightbox__caption {
	color: rgb(255 255 255 / 72%);
	font-size: var(--fs-sm);
	text-align: center;
}

.wpx-lightbox__nav {
	width: 3rem;
	height: 3rem;
	border: 1px solid rgb(255 255 255 / 30%);
	border-radius: var(--radius-pill);
	background: none;
	color: inherit;
	cursor: pointer;
}

.wpx-lightbox__nav:hover {
	background: rgb(255 255 255 / 12%);
}

/* ---------- Toolkit ---------- */

.single-toolkit.has-post-palette {
	background: var(--wpx-post-1, var(--c-nav));
	color: var(--c-white);
}

.single-toolkit .wpx-toolkit,
.single-toolkit .wpx-toolkit__body {
	background: var(--wpx-post-1, var(--c-nav));
	color: var(--c-white);
}

.single-toolkit .wpx-toolkit :is(h1, h2, h3, h4, h5, h6, p, li, strong, em, figcaption) {
	color: var(--c-white);
}

.single-toolkit .wpx-toolkit p.wpx-toolkit__badge {
	color: var(--c-text);
}

.single-toolkit .wpx-toolkit .wpx-prose a {
	color: var(--c-white);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.single-toolkit .wpx-toolkit .wpx-prose a:hover,
.single-toolkit .wpx-toolkit .wpx-prose a:focus-visible {
	color: var(--c-white);
}

.single-toolkit .wpx-button--ghost {
	border-color: rgb(255 255 255 / 40%);
	color: var(--c-white);
}

.single-toolkit .wpx-button--ghost:hover,
.single-toolkit .wpx-button--ghost:focus-visible {
	border-color: var(--c-white);
	background: rgb(255 255 255 / 12%);
	color: var(--c-white);
}

.wpx-toolkit__title {
	margin: 0 0 var(--sp-4);
	font-size: var(--fs-h1);
	font-weight: 400;
	color: var(--c-white);
}

.wpx-toolkit__badge {
	display: inline-block;
	margin: 0 0 var(--sp-3);
	padding: var(--sp-2) var(--sp-3);
	background: rgb(255 255 255 / 88%);
	color: var(--c-text);
	font-size: var(--fs-sm);
	font-weight: 600;
}

.wpx-toolkit__date {
	margin: 0 0 var(--sp-6);
	font-size: var(--fs-sm);
	color: var(--c-white);
	opacity: 0.9;
}

.wpx-toolkit__body {
	padding-block: var(--sp-8) var(--sp-10);
	background: var(--wpx-post-1, var(--c-nav));
	color: var(--c-white);
}

.wpx-toolkit__rail {
	display: flex;
	flex-direction: column;
	gap: var(--sp-6);
}

.wpx-toolkit__layout {
	display: grid;
	gap: var(--sp-8);
}

@media (width >= 64rem) {
	.wpx-toolkit__layout {
		grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
		align-items: start;
		gap: var(--sp-10);
	}
}

.wpx-toolkit-overview,
.wpx-toolkit-overview__intro h2,
.wpx-toolkit-section,
.wpx-toolkit__credits {
	scroll-margin-top: calc(4.5rem + var(--sp-4));
}

.wpx-toolkit-toc {
	margin: 0;
	padding: var(--sp-4);
	border: 1px solid rgb(255 255 255 / 28%);
	color: inherit;
}

@media (width >= 64rem) {
	.wpx-toolkit-toc {
		position: sticky;
		top: calc(4.5rem + var(--sp-4));
	}
}

.wpx-toolkit-toc__title {
	margin: 0 0 var(--sp-4);
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	font-weight: 500;
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
}

.wpx-toolkit-toc__list {
	display: grid;
	gap: var(--sp-2);
	margin: 0;
	padding: 0;
	list-style: none;
}

.wpx-toolkit-toc__list a {
	color: inherit;
	text-decoration: none;
	opacity: 0.85;
}

.wpx-toolkit-toc__list a:hover,
.wpx-toolkit-toc__list a:focus-visible,
.wpx-toolkit-toc__list a[aria-current='true'] {
	color: var(--c-white);
	opacity: 1;
	text-decoration: underline;
}

.wpx-toolkit-overview > * + * {
	margin-top: var(--sp-6);
}

.wpx-toolkit-overview__heading {
	margin: 0;
	font-size: var(--fs-h3);
	font-weight: 400;
}

.wpx-toolkit-overview__intro {
	max-width: var(--w-prose);
}

.wpx-toolkit-overview__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-3);
}

.wpx-toolkit-section {
	padding-block: var(--sp-8);
	border-top: 1px solid rgb(255 255 255 / 18%);
}

.wpx-toolkit-section__banner {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 16rem;
	margin-bottom: var(--sp-6);
	overflow: hidden;
	background: var(--c-night);
}

.wpx-toolkit-section__banner-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wpx-toolkit-section__banner::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgb(0 0 0 / 35%);
}

.wpx-toolkit-section__banner .wpx-toolkit-section__title {
	position: relative;
	z-index: 1;
	max-width: 20ch;
	margin: 0;
	padding: var(--sp-5);
	color: var(--c-white);
	font-weight: 300;
	text-align: center;
	text-shadow: 0 2px 12px rgb(0 0 0 / 45%);
}

.wpx-toolkit-section__grid {
	display: grid;
	gap: var(--gutter);
}

@media (width >= 56rem) {
	.wpx-toolkit-section.is-split .wpx-toolkit-section__grid {
		grid-template-columns: 1.4fr 1fr;
		align-items: start;
	}
}

.wpx-toolkit-section__actions {
	display: flex;
	flex-direction: column;
	gap: var(--sp-3);
	margin-top: var(--sp-5);
}

.wpx-toolkit__credits,
.wpx-toolkit__disclaimer {
	margin-top: var(--sp-8);
	padding-top: var(--sp-6);
	border-top: 1px solid rgb(255 255 255 / 18%);
}

.wpx-toolkit__disclaimer {
	opacity: 0.85;
}

/* ---------- Mosaic gallery ---------- */

.wpx-mosaic__list {
	margin: 0;
	padding: 0;
	list-style: none;
	column-count: 2;
	column-gap: var(--sp-3);
}

.wpx-mosaic--3 .wpx-mosaic__list {
	column-count: 3;
}

.wpx-mosaic__item {
	break-inside: avoid;
	margin-bottom: var(--sp-3);
}

.wpx-mosaic__link {
	display: block;
}

.wpx-mosaic__link img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}

.wpx-mosaic__caption {
	margin-top: var(--sp-3);
	color: inherit;
	font-size: var(--fs-sm);
	opacity: 0.72;
}

@media (width < 40rem) {
	.wpx-mosaic__list,
	.wpx-mosaic--3 .wpx-mosaic__list {
		column-count: 1;
	}
}

/* ---------- News single ---------- */

.wpx-news__related {
	margin-top: var(--sp-8);
}

.wpx-news__related-list {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-4);
	margin: var(--sp-5) 0 0;
	padding: 0;
	list-style: none;
}

.wpx-news__related-card {
	display: flex;
	flex-direction: column;
	gap: var(--sp-2);
	align-items: flex-start;
	min-width: 14rem;
	padding: var(--sp-5);
	border: 1px solid var(--c-rule);
	color: inherit;
	text-decoration: none;
	transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.wpx-news__related-card:hover,
.wpx-news__related-card:focus-visible {
	border-color: var(--c-primary);
	background: var(--c-primary);
	color: var(--c-white);
}

.wpx-news__related-title {
	font-weight: 600;
}

.wpx-news__nav {
	display: grid;
	gap: var(--sp-5);
	margin-top: var(--sp-8);
	padding-top: var(--sp-6);
	border-top: 1px solid var(--c-rule);
}

@media (width >= 48rem) {
	.wpx-news__nav {
		grid-template-columns: 1fr 1fr;
	}

	.wpx-news__nav-link.is-next {
		text-align: right;
	}
}

.wpx-news__nav-link {
	display: grid;
	gap: var(--sp-2);
	color: inherit;
	text-decoration: none;
}

.wpx-news__nav-link span {
	font-family: var(--font-mono);
	font-size: var(--fs-xs);
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
	color: var(--c-muted);
}

/* ---------- Team single ---------- */

.wpx-hero--team-single {
	min-height: min(88svh, 48rem);
	color: var(--c-white);
}

.wpx-hero--team-single .wpx-hero__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	gap: var(--sp-3);
	min-height: inherit;
	padding-block: var(--sp-9) var(--sp-7);
	text-align: left;
}

.wpx-team-single__role {
	margin: 0 0 var(--sp-5);
	color: var(--c-muted);
}

.wpx-team-single__question {
	margin-top: var(--sp-6);
	padding-top: var(--sp-5);
	border-top: 1px solid var(--c-rule);
	font-style: italic;
}

/* ---------- Screening single ---------- */

.wpx-screening__meta {
	margin: 0 0 var(--sp-4);
	font-family: var(--font-mono);
	font-size: var(--fs-sm);
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
	color: var(--c-muted);
}

.wpx-screening__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-3);
	margin: var(--sp-6) 0 0;
}

.wpx-screening__back {
	margin: var(--sp-6) 0 0;
}

.wpx-screening__back a {
	font-family: var(--font-mono);
	font-size: var(--fs-sm);
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

/* ---------- Job posting ---------- */

.wpx-job__block + .wpx-job__block {
	margin-top: var(--sp-7);
}

/* ---------- Careers ---------- */

.wpx-careers {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	color: var(--c-text);
	background-color: var(--c-white);
}

.wpx-careers.has-bg::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--wpx-careers-bg);
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.28;
	content: '';
	pointer-events: none;
}

.wpx-careers > .wpx-container {
	position: relative;
	z-index: 1;
}

.wpx-careers__grid {
	display: grid;
	gap: var(--sp-8);
	align-items: start;
}

.wpx-careers__title {
	margin: 0 0 var(--sp-4);
	color: rgb(30 34 36 / 42%);
	font-size: var(--fs-h1);
	font-weight: 400;
	line-height: var(--lh-tight);
}

.wpx-careers__intro p,
.wpx-careers__empty {
	margin: 0;
	max-width: 36rem;
	line-height: var(--lh-body);
}

.wpx-careers__empty {
	font-style: italic;
}

.wpx-careers__empty a {
	color: var(--c-gold);
	font-weight: 600;
	font-style: italic;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
}

.wpx-careers__empty a:hover,
.wpx-careers__empty a:focus-visible {
	color: var(--c-accent);
}

.wpx-careers__jobs {
	margin: 0;
	padding: 0;
	list-style: none;
}

.wpx-careers__jobs li + li {
	margin-top: var(--sp-3);
}

@media (width >= 56rem) {
	.wpx-careers__grid {
		grid-template-columns: 1fr 1fr;
		column-gap: clamp(2.5rem, 6vw, 6rem);
	}
}

/* ---------- Storymap band ---------- */

.wpx-storymap-band {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	color: var(--c-white);
	background-color: var(--wpx-storymap-bg, #364635);
}

.wpx-storymap-band.has-mark::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--wpx-storymap-mark);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.5;
	mix-blend-mode: multiply;
	content: '';
	pointer-events: none;
}

.wpx-storymap-band > .wpx-container {
	position: relative;
	z-index: 1;
}

.wpx-storymap-band__grid {
	display: grid;
	gap: var(--sp-7);
	align-items: center;
}

.wpx-storymap-band__copy {
	max-width: 36rem;
}

.wpx-storymap-band__copy p {
	margin: 0 0 var(--sp-5);
	font-weight: 400;
	line-height: var(--lh-body);
}

.wpx-storymap-band__copy p:last-child {
	margin-bottom: 0;
}

.wpx-storymap-band__copy a {
	color: inherit;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.wpx-storymap-card {
	position: relative;
	display: grid;
	isolation: isolate;
	overflow: hidden;
	min-height: 22rem;
	color: var(--c-white);
	text-decoration: none;
}

.wpx-storymap-card__image {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wpx-storymap-card::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgb(8 18 12 / 38%);
	content: '';
	pointer-events: none;
}

.wpx-storymap-card__body {
	position: relative;
	z-index: 2;
	display: grid;
	align-content: center;
	justify-items: center;
	gap: var(--sp-3);
	padding: var(--sp-7) var(--sp-5);
	text-align: center;
}

.wpx-storymap-card__title {
	margin: 0;
	max-width: 14ch;
	font-size: clamp(1.75rem, 1.2rem + 1.6vw, 2.5rem);
	font-weight: 500;
	line-height: var(--lh-tight);
	color: inherit;
}

.wpx-storymap-card__subtitle {
	margin: 0;
	max-width: 22ch;
	font-size: var(--fs-sm);
	line-height: var(--lh-heading);
}

.wpx-storymap-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	margin-top: var(--sp-3);
	font-size: var(--fs-xs);
	font-weight: 600;
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
}

.wpx-storymap-card__arrow {
	transition: transform var(--dur) var(--ease);
}

.wpx-storymap-card:hover .wpx-storymap-card__arrow,
.wpx-storymap-card:focus-visible .wpx-storymap-card__arrow {
	transform: translateX(0.2em);
}

@media (width >= 56rem) {
	.wpx-storymap-band__grid {
		grid-template-columns: 1fr 1fr;
		column-gap: var(--sp-8);
	}

	.wpx-storymap-card {
		min-height: 26rem;
	}
}

/* ---------- Stormwater band ---------- */

.wpx-stormwater-band {
	color: var(--c-white);
	background-color: var(--wpx-landscape-bg, var(--c-dk-blue));
}

.wpx-stormwater-band__intro {
	max-width: var(--w-content);
	margin-bottom: var(--sp-8);
	font-weight: 400;
	line-height: var(--lh-body);
}

.wpx-stormwater-band__intro p {
	margin: 0;
}

.wpx-stormwater-band__intro p + p {
	margin-top: var(--sp-5);
}

.wpx-stormwater-band__toolkits {
	display: grid;
	gap: var(--sp-7);
	align-items: center;
}

.wpx-stormwater-band__copy h2 {
	margin: 0 0 var(--sp-4);
	color: inherit;
	font-size: clamp(2rem, 1.35rem + 2.2vw, 3rem);
	font-weight: 500;
}

.wpx-stormwater-band__copy p {
	margin: 0;
	max-width: 36rem;
	font-size: var(--fs-body);
	line-height: var(--lh-body);
}

.wpx-stormwater-band__cards .wpx-card__link,
.wpx-stormwater-band__cards .wpx-card__title,
.wpx-stormwater-band__cards .wpx-eyebrow {
	color: inherit;
}

@media (width >= 56rem) {
	.wpx-stormwater-band__toolkits {
		grid-template-columns: 1fr 1fr;
		column-gap: var(--sp-8);
	}
}

.wpx-gallery-carousel--stormwater {
	padding-block-start: 0;
	color: var(--c-white);
	background-color: var(--wpx-landscape-bg, var(--c-dk-blue));
}

.wpx-gallery-carousel--stormwater .wpx-carousel__nav {
	border-color: rgb(255 255 255 / 45%);
	color: inherit;
}

.wpx-gallery-carousel--stormwater .wpx-carousel__nav:hover:not([disabled]) {
	border-color: rgb(255 255 255 / 70%);
	background: rgb(255 255 255 / 12%);
	color: inherit;
}

.wpx-gallery-carousel--stormwater .wpx-figure__caption {
	color: rgb(255 255 255 / 0.78);
}

/* ---------- Ocklawaha band ---------- */

.wpx-page--ocklawaha .wpx-media-text--ocklawaha {
	color: var(--c-white);
	background-color: var(--wpx-landscape-bg, var(--c-dk-blue));
}

.wpx-page--ocklawaha .wpx-media-text--ocklawaha + .wpx-media-text--ocklawaha {
	padding-block-start: 0;
}

.wpx-media-text--ocklawaha .wpx-prose {
	max-width: none;
	color: rgb(255 255 255 / 0.92);
	font-weight: 400;
	line-height: var(--lh-body);
}

.wpx-media-text--ocklawaha .wpx-prose p {
	margin: 0;
}

.wpx-media-text--ocklawaha .wpx-prose p + p {
	margin-top: var(--sp-5);
}

.wpx-media-text--ocklawaha .wpx-media-text__media img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	object-fit: cover;
}

@media (width >= 56rem) {
	.wpx-media-text--ocklawaha-wide.has-media .wpx-media-text__grid {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.65fr);
	}
}

.wpx-page--ocklawaha .wpx-gallery-carousel--landscape {
	padding-block: 0;
	margin: 0;
	background-color: var(--wpx-landscape-bg, var(--c-dk-blue));
}

.wpx-page--ocklawaha .wpx-gallery-carousel--landscape + .wpx-card-grid--ocklawaha {
	margin-top: 0;
	padding-top: 60px;
}

.wpx-card-grid--ocklawaha {
	color: var(--c-white);
	background-color: var(--wpx-landscape-bg, var(--c-dk-blue));
}

.wpx-card-grid--ocklawaha .wpx-card-grid__header .wpx-eyebrow {
	margin-bottom: var(--sp-3);
	color: rgb(255 255 255 / 0.78);
	font-family: var(--font-body);
	font-size: var(--fs-sm);
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}

.wpx-card-grid--ocklawaha .wpx-card-grid__header :is(h1, h2, h3) {
	margin: 0;
	color: inherit;
	font-size: clamp(2rem, 1.35rem + 2.2vw, 3rem);
	font-weight: 600;
}

.wpx-card-grid--ocklawaha .wpx-card__link,
.wpx-card-grid--ocklawaha .wpx-card__title {
	color: inherit;
}

.wpx-card-grid--ocklawaha .wpx-card__meta,
.wpx-card-grid--ocklawaha .wpx-card__terms {
	color: rgb(255 255 255 / 0.7);
}

/* ---------- Screening band ---------- */

.wpx-screening-band {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	color: var(--c-text);
	background-color: var(--c-white);
}

.wpx-screening-band::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--wpx-section-bg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.28;
	content: '';
	pointer-events: none;
}

.wpx-screening-band > * {
	position: relative;
	z-index: 1;
}

.wpx-screening-band .wpx-form--screening {
	padding-top: var(--sp-6);
}

/* ---------- Forms / Instagram ---------- */

.wpx-form-placeholder__notice {
	margin: var(--sp-4) 0;
	color: var(--c-muted);
}

.wpx-form h2 {
	margin: 0 0 var(--sp-5);
}

.wpx-form .wpx-lead {
	margin: 0 0 var(--sp-5);
	max-width: 36rem;
}

.wpx-form__body {
	max-width: 36rem;
}

.wpx-form--screening .wpx-form__body {
	max-width: 48rem;
}

.wpx-form .fluentform,
.wpx-form .frm-fluent-form,
.wpx-form fieldset {
	width: 100%;
	min-inline-size: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.wpx-form .ff-el-group {
	display: grid;
	gap: var(--sp-1);
	width: 100%;
	margin: 0 0 var(--sp-3);
}

.wpx-form .ff-el-input--label,
.wpx-form .ff-el-input--content,
.wpx-form .ff-el-group.ff-el-form-top .ff-el-input--label,
.wpx-form .ff-el-group.ff-el-form-top .ff-el-input--content {
	float: none;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.wpx-form .ff-el-input--label label {
	margin: 0;
	font-family: var(--font-body);
	font-weight: 500;
	color: var(--c-text);
}

.wpx-form .ff-el-form-control {
	display: block;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	min-height: 2.75rem;
	padding: 0.65rem 0.9rem;
	border: 1px solid var(--c-rule);
	border-radius: 0;
	background: var(--c-white);
	color: var(--c-text);
	font: inherit;
	line-height: var(--lh-body);
}

.wpx-form .ff-el-form-control:focus {
	border-color: var(--c-secondary);
	outline: 2px solid var(--c-secondary);
	outline-offset: 2px;
}

.wpx-form .ff-custom_html {
	margin: var(--sp-4) 0 0;
}

.wpx-form .ff-custom_html p {
	margin: 0;
}

.wpx-form--screening fieldset {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	column-gap: var(--sp-7);
	align-items: start;
}

.wpx-form--screening .ff-el-group {
	grid-column: 1 / -1;
}

.wpx-form--screening .ff-custom_html {
	grid-column: 1;
	margin-top: var(--sp-4);
}

.wpx-form--screening .ff-el-group:has(.ff-el-form-check) {
	grid-column: 2;
	margin-top: var(--sp-4);
}

@media (width < 40rem) {
	.wpx-form--screening fieldset {
		grid-template-columns: 1fr;
	}

	.wpx-form--screening .ff-custom_html,
	.wpx-form--screening .ff-el-group:has(.ff-el-form-check) {
		grid-column: 1;
	}

	.wpx-form--screening .ff-el-group:has(.ff-el-form-check) {
		margin-top: var(--sp-3);
	}
}

.wpx-form .ff-el-group:has(.ff-el-form-check) > .ff-el-input--label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.wpx-form .ff-el-form-check {
	margin: 0 0 var(--sp-2);
}

.wpx-form .ff-el-form-check:last-child {
	margin-bottom: 0;
}

.wpx-form .ff-el-form-check-label {
	display: flex;
	align-items: flex-start;
	gap: var(--sp-3);
	margin: 0;
	font-weight: 400;
	cursor: pointer;
}

.wpx-form .ff-el-form-check-input {
	flex: 0 0 auto;
	width: 1.1rem;
	height: 1.1rem;
	margin: 0.2rem 0 0;
}

.wpx-form .ff_submit_btn_wrapper {
	margin: var(--sp-4) 0 0;
	text-align: start;
}

.wpx-form .ff-btn-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3rem;
	padding: var(--sp-3) var(--sp-6);
	border: 1px solid var(--c-secondary);
	border-radius: 0;
	background: var(--c-secondary);
	color: var(--c-white);
	font-family: var(--font-display);
	font-size: var(--fs-sm);
	font-weight: 500;
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
	cursor: pointer;
}

.wpx-form .ff-btn-submit:hover,
.wpx-form .ff-btn-submit:focus-visible {
	background: var(--c-primary);
	border-color: var(--c-primary);
	color: var(--c-white);
	opacity: 1;
}

/* ---------- Contact ---------- */

.wpx-contact {
	display: grid;
	background: var(--c-white);
}

.wpx-contact__copy {
	display: grid;
	align-content: start;
	gap: var(--sp-5);
	padding: var(--section-y) var(--gutter);
}

.wpx-contact__title {
	margin: 0;
	max-width: 18ch;
	font-size: var(--fs-h1);
	font-weight: 500;
	line-height: var(--lh-tight);
}

.wpx-contact__intro {
	max-width: 36rem;
}

.wpx-contact__intro p {
	margin: 0 0 var(--sp-4);
}

.wpx-contact__intro p:last-child {
	margin-bottom: 0;
}

.wpx-contact .wpx-form--contact,
.wpx-contact .wpx-form__body {
	max-width: 36rem;
}

.wpx-form--contact .ff-el-input--label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.wpx-form--contact .ff-el-group {
	gap: 0;
	margin: 0 0 var(--sp-4);
}

.wpx-form--contact .ff-el-form-control {
	min-height: 3.25rem;
	padding: 0.9rem 1.25rem;
	border-radius: var(--radius-pill);
}

.wpx-form--contact textarea.ff-el-form-control {
	min-height: 8.5rem;
	padding: 1rem 1.25rem;
	border-radius: 1.5rem;
	resize: vertical;
}

.wpx-form--contact select.ff-el-form-control {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231e2224' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.25rem center;
	background-size: 0.75rem;
	padding-right: 2.75rem;
}

.wpx-form--contact fieldset {
	display: grid;
	grid-template-columns: 1fr;
}

@media (width >= 40rem) {
	.wpx-form--contact fieldset {
		grid-template-columns: 1fr 1fr;
		column-gap: var(--sp-4);
		align-items: start;
	}

	.wpx-form--contact .ff-el-group {
		grid-column: 1 / -1;
	}

	.wpx-form--contact .ff-el-group:has(select) {
		grid-column: 1;
	}

	.wpx-form--contact .ff-el-group:has(textarea) {
		grid-column: 2;
	}
}

.wpx-form--contact .ff_submit_btn_wrapper {
	margin-top: var(--sp-2);
}

.wpx-form--contact .ff-btn-submit::after {
	content: '\2192';
	margin-left: 0.35em;
}

.wpx-contact__rule {
	width: 100%;
	max-width: 36rem;
	height: 1px;
	margin: var(--sp-4) 0 0;
	border: 0;
	background: var(--c-rule);
}

.wpx-contact__follow {
	margin: var(--sp-2) 0 0;
	font-size: var(--fs-xs);
	font-weight: 500;
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
}

.wpx-contact__social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--sp-4);
	margin: 0;
	padding: 0;
	list-style: none;
}

.wpx-contact__social a {
	display: grid;
	place-items: center;
	width: 1.75rem;
	height: 1.75rem;
	color: var(--c-text);
}

.wpx-contact__media {
	min-height: 18rem;
	background: var(--c-lt-beige);
}

.wpx-contact__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (width >= 56rem) {
	.wpx-contact {
		grid-template-columns: 1fr 1fr;
		min-height: 42rem;
	}

	.wpx-contact__copy {
		padding: var(--sp-8) clamp(1.5rem, 4vw, 4rem);
	}

	.wpx-contact__media {
		position: relative;
		min-height: 100%;
	}

	.wpx-contact__image {
		position: absolute;
		inset: 0;
	}
}

.wpx-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sp-4);
	list-style: none;
	margin: var(--sp-4) 0 0;
	padding: 0;
}

.wpx-instagram {
	padding-block: var(--sp-7);
}

.wpx-instagram__title {
	margin: 0 0 var(--sp-5);
}

.wpx-mobile-nav__newsletter {
	margin-top: var(--sp-6);
	padding: 0 var(--sp-5) var(--sp-6);
}

/* ---------- Book page ---------- */

.wpx-page--book .wpx-hero--book.has-media {
	min-height: calc(100svh - 4.5rem);
	overflow: hidden;
	padding-block: var(--sp-10) var(--sp-8);
	color: var(--c-white);
}

.wpx-page--book .wpx-hero--book .wpx-hero__body {
	z-index: 2;
	max-width: var(--w-wide);
}

.wpx-page--book .wpx-hero--book .wpx-eyebrow {
	color: rgb(255 255 255 / 82%);
	font-weight: 400;
}

.wpx-page--book .wpx-hero--book .wpx-hero__title {
	display: grid;
	grid-template-columns: auto auto;
	justify-content: start;
	align-items: end;
	column-gap: 0.7rem;
	max-width: none;
	margin: 0;
	font-weight: 300;
	line-height: 1.05;
}

.wpx-page--book .wpx-hero__title-main {
	grid-column: 1;
	grid-row: 1;
}

.wpx-page--book .wpx-hero__title-aside {
	grid-column: 2;
	grid-row: 1;
	padding-bottom: 0.22em;
	font-size: 0.38em;
	font-weight: 300;
	line-height: 1.2;
	white-space: nowrap;
}

.wpx-page--book .wpx-hero__title-sub {
	grid-column: 1;
	grid-row: 2;
}

.wpx-page--book .wpx-hero--book .wpx-hero__fade {
	z-index: 1;
	background:
		linear-gradient(
			180deg,
			rgb(0 0 0 / 12%) 0%,
			rgb(0 0 0 / 0%) 32%,
			rgb(61 68 35 / 0%) 48%,
			rgb(61 68 35 / 100%) 100%
		),
		linear-gradient(90deg, rgb(0 0 0 / 38%) 0%, rgb(0 0 0 / 0%) 52%);
}

.wpx-book-buy,
.wpx-book-body {
	--c-gold: #eece3f;
	color: var(--c-white);
}

.wpx-book-buy {
	background: linear-gradient(180deg, var(--c-nav) 0%, var(--c-pine) 100%);
}

.wpx-book-buy__grid {
	display: grid;
	gap: var(--sp-8);
	align-items: center;
	padding-bottom: var(--sp-8);
}

@media (width >= 56rem) {
	.wpx-book-buy__grid {
		grid-template-columns: minmax(16rem, 26rem) 1fr;
		column-gap: clamp(2.5rem, 6vw, 6rem);
	}
}

.wpx-book-buy__cover img {
	display: block;
	width: 100%;
	height: auto;
	box-shadow: 0 1.25rem 2.75rem rgb(0 0 0 / 28%);
}

.wpx-book-buy__byline,
.wpx-book-buy__specs {
	margin: var(--sp-4) 0 0;
	color: rgb(255 255 255 / 88%);
	font-size: var(--fs-sm);
	text-align: center;
}

.wpx-book-buy__specs {
	margin-top: var(--sp-2);
}

.wpx-book-buy__blurb {
	max-width: 38rem;
	color: inherit;
	font-size: clamp(1.15rem, 1rem + 0.55vw, 1.45rem);
	font-weight: 400;
	line-height: 1.55;
}

.wpx-book-buy__blurb p {
	margin: 0;
}

.wpx-book-buy__available {
	margin: 0 0 var(--sp-6);
	padding-top: var(--sp-8);
	border-top: 1px solid rgb(255 255 255 / 55%);
	color: rgb(255 255 255 / 78%);
	font-size: var(--fs-sm);
	font-weight: 400;
	text-align: center;
}

.wpx-book-buy__retailers {
	display: grid;
	gap: var(--sp-5) var(--sp-8);
	list-style: none;
	max-width: 44rem;
	margin: 0 auto;
	padding: 0;
}

@media (width >= 40rem) {
	.wpx-book-buy__retailers {
		grid-template-columns: 1fr 1fr;
	}
}

.wpx-book-buy__retailers a {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	min-height: 0;
	padding: 0;
	border: 0;
	color: var(--c-gold);
	text-decoration: none;
}

.wpx-book-buy__retailers a:hover {
	color: var(--c-white);
}

.wpx-book-buy__icon {
	display: block;
	flex-shrink: 0;
	width: 2.35rem;
	height: 2.35rem;
	color: var(--c-white);
	object-fit: contain;
}

.wpx-book-buy__retailers img.wpx-book-buy__icon {
	filter: brightness(0) invert(1);
}

.wpx-book-body {
	padding-top: var(--section-y);
	border-top: 1px solid rgb(255 255 255 / 55%);
	background: var(--c-pine);
}

.wpx-book-body .wpx-prose {
	max-width: var(--w-content);
	color: inherit;
}

.wpx-book-body .wpx-prose a {
	color: var(--c-gold);
}

.wpx-book-body .wpx-prose p {
	margin: 0;
	font-weight: 400;
	line-height: var(--lh-body);
}

.wpx-book-body .wpx-prose p + p {
	margin-top: var(--sp-5);
}

/* ---------- PoP Photography page ---------- */

.wpx-page--pop-photo .wpx-hero--pop {
	min-height: calc(100svh - 4.5rem);
	overflow: hidden;
	padding-block: var(--sp-10) var(--sp-8);
	color: var(--c-white);
	background: #736f53;
}

.wpx-page--pop-photo .wpx-hero--pop-slides {
	position: absolute;
	inset: 0;
	z-index: 0;
	height: 100%;
	padding: 0;
}

.wpx-page--pop-photo .wpx-hero--pop-slides .wpx-carousel,
.wpx-page--pop-photo .wpx-hero--pop-slides .wpx-carousel__track,
.wpx-page--pop-photo .wpx-hero--pop-slides .wpx-carousel__slide,
.wpx-page--pop-photo .wpx-hero--pop-slides .wpx-figure,
.wpx-page--pop-photo .wpx-hero--pop-slides img {
	height: 100%;
}

.wpx-page--pop-photo .wpx-hero--pop-slides img {
	aspect-ratio: auto;
	width: 100%;
	max-height: none;
	object-fit: cover;
}

.wpx-page--pop-photo .wpx-hero--pop .wpx-hero__fade {
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(
			180deg,
			rgb(0 0 0 / 18%) 0%,
			rgb(0 0 0 / 0%) 28%,
			rgb(115 111 83 / 0%) 58%,
			rgb(115 111 83 / 100%) 100%
		),
		linear-gradient(90deg, rgb(0 0 0 / 48%) 0%, rgb(0 0 0 / 0%) 55%);
}

.wpx-page--pop-photo .wpx-hero--pop .wpx-hero__body {
	z-index: 2;
	max-width: var(--w-wide);
}

.wpx-page--pop-photo .wpx-hero--pop .wpx-eyebrow {
	color: rgb(255 255 255 / 82%);
}

.wpx-page--pop-photo .wpx-hero--pop .wpx-hero__title {
	max-width: 22ch;
	margin: 0;
	font-weight: 300;
	line-height: var(--lh-tight);
}

.wpx-page--pop-photo .wpx-hero--pop + .wpx-map-section--split {
	padding-top: var(--sp-4);
}

.wpx-gallery-carousel--pop {
	padding: 0;
	background: #0b0f12;
}

.wpx-gallery-carousel--pop .wpx-carousel__slide,
.wpx-gallery-carousel--pop .wpx-figure,
.wpx-gallery-carousel--pop .wpx-figure__link,
.wpx-gallery-carousel--pop img {
	height: 100vh;
}

.wpx-gallery-carousel--pop.wpx-gallery-carousel--feature img {
	aspect-ratio: auto;
	width: 100%;
	max-height: none;
	object-fit: cover;
}

.wpx-pop-video-band {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	color: var(--c-white);
	background: var(--wpx-pop-band-bg, #736f53);
}

.wpx-pop-video-band.has-mark::before {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--wpx-pop-mark);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0.22;
	content: '';
	pointer-events: none;
}

.wpx-pop-video-band > * {
	position: relative;
	z-index: 1;
}

.wpx-pop-video-band .wpx-section {
	background: transparent;
}

.wpx-pop-video-band__player {
	padding-bottom: 0;
}

.wpx-pop-video-band .wpx-media-text {
	color: inherit;
}

.wpx-pop-video-band .wpx-prose {
	max-width: 36rem;
	color: inherit;
}

.wpx-pop-video-band .wpx-video--file {
	border: 1px solid #000;
}

.wpx-pop-story {
	position: relative;
	display: grid;
	align-items: center;
	isolation: isolate;
	overflow: hidden;
	min-height: max(650px, 76vh);
	color: var(--c-white);
	background: #1a1a14;
}

.wpx-pop-story__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	height: 100%;
	padding: 0;
}

.wpx-pop-story__media .wpx-carousel,
.wpx-pop-story__media .wpx-carousel__track,
.wpx-pop-story__media .wpx-carousel__slide,
.wpx-pop-story__media .wpx-figure,
.wpx-pop-story__media img {
	height: 100%;
}

.wpx-pop-story__media .wpx-figure {
	position: relative;
	overflow: hidden;
	background: #1a1a14;
}

.wpx-pop-story__media .wpx-figure__bleed {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
	object-position: center;
	filter: blur(32px);
	transform: scale(1.12);
	opacity: 0.7;
}

.wpx-pop-story__media img:not(.wpx-figure__bleed) {
	position: relative;
	z-index: 1;
	aspect-ratio: auto;
	width: 100%;
	max-height: none;
	object-fit: contain;
	object-position: center;
}

.wpx-pop-story::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgb(61 68 35 / 88%) 0%, rgb(61 68 35 / 58%) 34%, rgb(61 68 35 / 0%) 62%);
	content: '';
	pointer-events: none;
}

.wpx-pop-story > .wpx-container {
	position: relative;
	z-index: 2;
}

.wpx-pop-story__copy {
	max-width: 36rem;
	color: inherit;
}

.wpx-pop-story__copy p {
	margin: 0;
	font-weight: 400;
	line-height: var(--lh-body);
}

.wpx-pop-story__copy p + p {
	margin-top: var(--sp-5);
}

/* ---------- PoP Photography impact band ---------- */

.wpx-impact-band {
	--c-gold: #eece3f;
	color: var(--c-white);
	background: linear-gradient(180deg, var(--c-nav) 0%, var(--c-pine) 100%);
}

.wpx-impact-band__title {
	margin: 0 0 var(--sp-7);
	font-weight: 400;
}

.wpx-impact-band__row,
.wpx-impact-band__split {
	display: grid;
	gap: var(--sp-6);
	padding-block: var(--sp-7);
	border-top: 1px solid rgb(255 255 255 / 55%);
}

.wpx-impact-band__row:first-of-type {
	border-top: 0;
	padding-top: 0;
}

.wpx-impact-band__media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.wpx-impact-band__body {
	display: grid;
	gap: var(--sp-3);
	align-content: start;
}

.wpx-impact-band__body h3,
.wpx-impact-band__split > h3 {
	margin: 0;
	font-weight: 400;
}

.wpx-impact-band__subtitle,
.wpx-impact-band__body p,
.wpx-impact-band__split .wpx-prose,
.wpx-impact-band__split .wpx-prose p {
	margin: 0;
	color: inherit;
}

.wpx-impact-band__meta {
	font-weight: 700;
}

.wpx-impact-band__actions {
	margin: var(--sp-3) 0 0;
}

.wpx-impact-band__more {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	color: var(--c-gold);
	font-family: var(--font-display);
	font-size: var(--fs-sm);
	font-weight: 600;
	letter-spacing: var(--tracking-wide);
	text-decoration: none;
	text-transform: uppercase;
}

.wpx-impact-band__more:hover,
.wpx-impact-band__more:focus-visible {
	color: var(--c-white);
}

.wpx-impact-band__more-arrow {
	transition: transform var(--dur) var(--ease);
}

.wpx-impact-band__more:hover .wpx-impact-band__more-arrow {
	transform: translateX(0.2em);
}

.wpx-impact-band__news {
	padding-block: var(--sp-7);
	border-top: 1px solid rgb(255 255 255 / 55%);
}

.wpx-impact-band__news > h3 {
	margin: 0 0 var(--sp-6);
	font-size: calc(var(--fs-h3) * 1.4);
	font-weight: 400;
}

.wpx-impact-band__news-item {
	display: grid;
	gap: var(--sp-6);
	align-items: start;
}

.wpx-impact-band__news-copy {
	display: grid;
	gap: var(--sp-4);
	align-content: start;
}

.wpx-impact-band__news-date {
	margin: 0;
	color: var(--c-white);
	font-size: var(--fs-sm);
}

.wpx-impact-band__news-title {
	margin: 0;
	max-width: 12em;
	font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.25rem);
	font-weight: 400;
	line-height: var(--lh-tight);
}

.wpx-impact-band__news-copy .wpx-impact-band__actions {
	margin: 0;
}

.wpx-impact-band__news-media img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid var(--c-white);
	border-radius: 0.5rem;
	object-fit: cover;
}

@media (width >= 56rem) {
	.wpx-impact-band__row {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		gap: var(--sp-8);
		align-items: center;
	}

	.wpx-impact-band__split {
		grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 1fr);
		gap: var(--sp-8);
		align-items: start;
	}

	.wpx-impact-band__news-item {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		gap: var(--sp-8);
	}
}

/* ---------- Donate ---------- */

.wpx-donate {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	color: var(--c-text);
	background-color: var(--c-lt-blue);
}

.wpx-donate.has-bg {
	background-image: var(--wpx-donate-bg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.wpx-donate > .wpx-container {
	position: relative;
	z-index: 1;
}

.wpx-donate__grid {
	display: grid;
	gap: var(--sp-8);
	align-items: start;
}

.wpx-donate__support h2,
.wpx-donate__give h2 {
	margin: 0 0 var(--sp-5);
	font-size: var(--fs-h1);
	font-weight: 500;
	line-height: var(--lh-tight);
}

.wpx-donate .wpx-prose {
	max-width: none;
}

.wpx-donate .wpx-prose p {
	margin: 0;
}

.wpx-donate .wpx-prose p + p {
	margin-top: var(--sp-4);
}

.wpx-donate__carousel {
	margin-top: var(--sp-6);
}

.wpx-donate__carousel .wpx-carousel {
	overflow: hidden;
}

.wpx-donate__carousel .wpx-figure {
	overflow: hidden;
	margin: 0;
}

.wpx-donate__carousel.wpx-gallery-carousel--feature img {
	aspect-ratio: 3 / 2;
	max-height: none;
	width: 100%;
	height: auto;
	object-fit: cover;
	transform-origin: center;
	animation: wpx-ken-burns 8s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
	.wpx-donate__carousel.wpx-gallery-carousel--feature img {
		animation: none;
	}
}

@keyframes wpx-ken-burns {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.08);
	}
}

.wpx-donate__actions {
	margin: var(--sp-6) 0;
}

.wpx-donate .wpx-button--donate {
	min-width: 12.5rem;
	justify-content: center;
	color: var(--c-text);
	letter-spacing: 0;
	text-transform: none;
}

.wpx-donate .wpx-button--donate:hover,
.wpx-donate .wpx-button--donate:focus-visible {
	color: var(--c-text);
}

.wpx-donate__note {
	margin: 0 0 var(--sp-5);
	max-width: 28rem;
}

.wpx-donate__logo {
	margin: 0;
}

.wpx-donate__logo a {
	display: inline-block;
}

.wpx-donate__logo img {
	display: block;
	width: auto;
	height: auto;
	max-width: 11.5rem;
}

@media (width >= 56rem) {
	.wpx-donate__grid {
		grid-template-columns: 1fr 1fr;
		column-gap: var(--sp-8);
	}

	.wpx-donate__give {
		padding-left: var(--sp-8);
		border-left: 1px solid var(--c-rule);
	}
}

/* ---------- Whale Shark Citizen Science ---------- */

.wpx-page--whaleshark {
	color: var(--c-white);
	background-color: var(--wpx-whaleshark-bg, var(--c-dk-blue));
}

.wpx-page--whaleshark .wpx-section {
	padding-block: var(--sp-7);
}

.wpx-page--whaleshark .wpx-button {
	border-color: var(--c-beige);
	background: var(--c-beige);
	color: var(--c-dk-blue);
}

.wpx-page--whaleshark .wpx-button:hover,
.wpx-page--whaleshark .wpx-button:focus-visible {
	border-color: var(--c-white);
	background: var(--c-white);
	color: var(--c-dk-blue);
}

.wpx-page--whaleshark .wpx-prose {
	max-width: none;
	color: rgb(255 255 255 / 0.92);
}

.wpx-page--whaleshark .wpx-prose a {
	color: inherit;
}

.wpx-page--whaleshark .wpx-prose ol,
.wpx-page--whaleshark .wpx-prose ul {
	margin: 0.85em 0 0;
	padding-left: 1.25rem;
}

.wpx-page--whaleshark .wpx-prose li + li {
	margin-top: 0.65em;
}

.wpx-whaleshark-split__grid {
	display: grid;
	gap: var(--sp-6);
}

.wpx-whaleshark-split__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.75rem;
}

.wpx-whaleshark-split__copy .wpx-prose > * + * {
	margin-top: 1.25em;
}

.wpx-whaleshark-split__actions {
	margin: 0;
}

.wpx-whaleshark-split__subhead {
	margin: 0.75rem 0 0;
	color: inherit;
	font-family: var(--font-body);
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.3;
}

.wpx-whaleshark-split__title {
	margin: 0.75rem 0 0;
	color: inherit;
	font-size: var(--fs-h2);
	font-weight: 400;
	line-height: var(--lh-heading);
}

.wpx-whaleshark-split__note {
	margin: 0;
	color: rgb(255 255 255 / 0.82);
}

.wpx-whaleshark-split__media img {
	display: block;
	width: 100%;
	height: auto;
}

.wpx-whaleshark-checks {
	display: grid;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.9375rem;
	line-height: 1.55;
}

.wpx-whaleshark-checks li {
	display: flex;
	gap: 0.55em;
	align-items: flex-start;
}

.wpx-whaleshark-checks li::before {
	content: '\2713';
	flex: none;
	color: inherit;
	font-weight: 500;
	line-height: inherit;
}

.wpx-page--whaleshark .wpx-whaleshark-heading {
	padding-block-end: 0;
}

.wpx-whaleshark-heading h2 {
	margin: 0;
	color: inherit;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1.25;
}

.wpx-page--whaleshark .wpx-whaleshark-region {
	padding-block: var(--sp-5) var(--sp-7);
	padding-inline: 0;
}

.wpx-whaleshark-region img {
	display: block;
	width: 100%;
	height: auto;
}

.wpx-page--whaleshark .wpx-photo-guide--whaleshark .wpx-photo-guide__heading {
	color: rgb(255 255 255 / 0.82);
	font-family: var(--font-body);
	font-size: var(--fs-sm);
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.wpx-page--whaleshark .wpx-photo-guide--whaleshark .wpx-photo-guide__list {
	margin-top: var(--sp-6);
	gap: var(--sp-6) var(--gutter);
}

.wpx-page--whaleshark .wpx-photo-guide--whaleshark .wpx-photo-guide__title {
	color: inherit;
	font-family: var(--font-body);
	font-size: var(--fs-sm);
	font-weight: 400;
	line-height: var(--lh-body);
}

.wpx-page--whaleshark .wpx-photo-guide--whaleshark .wpx-figure img,
.wpx-page--whaleshark .wpx-photo-guide--whaleshark .wpx-video {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.wpx-page--whaleshark .wpx-statement--caution {
	padding-block: var(--sp-8);
}

.wpx-page--whaleshark .wpx-statement--caution .wpx-statement__inner {
	max-width: 52rem;
}

.wpx-page--whaleshark .wpx-statement--caution .wpx-statement__text {
	margin: 0;
	color: inherit;
	font-size: var(--fs-lead);
	font-weight: 400;
	line-height: 1.55;
}

.wpx-media-text--whaleshark .wpx-prose p {
	margin: 0;
}

.wpx-media-text--whaleshark .wpx-prose p + p {
	margin-top: var(--sp-5);
}

.wpx-media-text--whaleshark .wpx-media-text__media img {
	display: block;
	width: 100%;
	height: auto;
}

.wpx-card-grid--whaleshark {
	background-color: var(--wpx-whaleshark-bg, var(--c-dk-blue));
}

.wpx-card-grid--whaleshark .wpx-card-grid__header .wpx-eyebrow {
	margin-bottom: var(--sp-3);
	color: rgb(255 255 255 / 0.78);
	font-family: var(--font-body);
	font-size: var(--fs-sm);
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}

.wpx-card-grid--whaleshark .wpx-card-grid__header :is(h1, h2, h3) {
	margin: 0;
	color: inherit;
	font-size: clamp(2rem, 1.35rem + 2.2vw, 2.625rem);
	font-weight: 300;
}

.wpx-card-grid--whaleshark .wpx-card__link,
.wpx-card-grid--whaleshark .wpx-card__title {
	color: inherit;
}

.wpx-card-grid--whaleshark .wpx-card__meta,
.wpx-card-grid--whaleshark .wpx-card__terms {
	color: rgb(255 255 255 / 0.7);
}

.wpx-logo-wall--whaleshark .wpx-logo-wall__title {
	margin: 0 0 var(--sp-6);
	color: inherit;
	font-family: var(--font-body);
	font-size: 2.625rem;
	font-weight: 500;
	line-height: 1.15;
	text-align: start;
}

.wpx-logo-wall--whaleshark .wpx-logo-wall__grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 3rem) clamp(1.25rem, 4vw, 3.5rem);
	align-items: center;
	justify-items: center;
}

@media (width >= 48rem) {
	.wpx-logo-wall--whaleshark .wpx-logo-wall__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.wpx-logo-wall--whaleshark .wpx-logo-wall__item {
	width: 100%;
	justify-content: center;
}

.wpx-logo-wall--whaleshark .wpx-logo-wall__item img {
	width: auto;
	max-width: min(100%, 16.875rem);
	height: auto;
	max-height: 10.9375rem;
	filter: none;
	opacity: 1;
}

.wpx-logo-wall--whaleshark .wpx-logo-wall__item img[src*='usmblacklogo'] {
	max-width: 14.375rem;
	max-height: 13.125rem;
	mix-blend-mode: screen;
}

@media (width >= 56rem) {
	.wpx-whaleshark-split__grid {
		grid-template-columns: 1fr 1fr;
		column-gap: clamp(2rem, 5vw, 5rem);
		align-items: start;
	}
}
