/* =====================================================================
 * FirstMission Health — theme stylesheet
 *
 * Every colour, size and family below resolves from a CSS custom property
 * generated in inc/dynamic-css.php out of the Theme Panel settings, so this
 * file never hard-codes a brand value. Sections are numbered to match the
 * order the front page renders them in.
 *
 *  1. Reset and base            9. Process
 *  2. Layout scaffolding       10. Closing call to action
 *  3. Shared pieces            11. Contact details
 *  4. Top bar and header       12. Footer and the sign-up band
 *  5. Band backgrounds         13. Inner pages, blog, forms
 *  6. Hero                     14. Odds and ends
 *  7. Ways we help             15. Responsive
 *  8. Feature panels           16. WPBakery rows
 * ================================================================== */

/* ---------------------------------------------------------------
 * 1. Reset and base
 * ------------------------------------------------------------ */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body {
	margin: 0;
	background: var(--fmh-surface);
	color: var(--fmh-text);
	font-family: var(--fmh-font-body);
	font-size: var(--fmh-font-size);
	font-weight: var(--fmh-body-weight);
	line-height: var(--fmh-line-height);
	-webkit-font-smoothing: antialiased;
	overflow-wrap: break-word;
}

img,
svg,
video,
iframe {
	max-width: 100%;
	height: auto;
}

img {
	display: block;
}

/* Author `display` rules outrank the UA sheet's [hidden] rule, and several
   components below set one — so restate it with authority. */
[hidden] {
	display: none !important;
}

a {
	color: var(--fmh-accent-ink);
	text-decoration: none;
	transition: color var(--fmh-transition) ease;
}

a:hover,
a:focus {
	color: var(--fmh-primary);
}

p {
	margin: 0 0 1.1em;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .5em;
	color: var(--fmh-heading);
	font-family: var(--fmh-font-heading);
	font-weight: var(--fmh-heading-weight);
	line-height: var(--fmh-heading-line);
	letter-spacing: var(--fmh-heading-spacing);
	text-transform: var(--fmh-heading-transform);
}

h1 { font-size: var(--fmh-h1); }
h2 { font-size: var(--fmh-h2); }
h3 { font-size: var(--fmh-h3); }
h4 { font-size: var(--fmh-h4); }
h5 { font-size: calc(var(--fmh-h4) * .86); }
h6 { font-size: calc(var(--fmh-h4) * .76); }

ul, ol {
	padding-left: 1.2em;
}

blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 26px;
	border-left: 4px solid var(--fmh-accent);
	color: var(--fmh-heading);
	font-size: var(--fmh-lead);
}

code, pre, kbd {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: .92em;
}

pre {
	overflow-x: auto;
	padding: 18px 20px;
	background: var(--fmh-surface-alt);
	border-radius: var(--fmh-radius);
}

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.4em;
}

th, td {
	padding: 10px 12px;
	border-bottom: var(--fmh-border-width) solid var(--fmh-border);
	text-align: left;
}

hr {
	height: 0;
	margin: 2.4em 0;
	border: 0;
	border-top: var(--fmh-border-width) solid var(--fmh-border);
}

:focus-visible {
	outline: 3px solid var(--fmh-accent);
	outline-offset: 2px;
}

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

.skip-link:focus {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 999;
	width: auto;
	height: auto;
	clip: auto;
	padding: 12px 20px;
	background: var(--fmh-accent);
	color: #fff;
	font-weight: 700;
}

/* ---------------------------------------------------------------
 * 2. Layout scaffolding
 * ------------------------------------------------------------ */

.fmh-site {
	position: relative;
	overflow-x: clip;
}

body.fmh-layout-boxed .fmh-site {
	max-width: calc(var(--fmh-container) + 120px);
	margin: 0 auto;
	background: var(--fmh-surface);
	box-shadow: 0 0 60px rgba(var(--fmh-shadow-rgb), calc(.14 * var(--fmh-shadow-scale)));
}

.fmh-container {
	width: var(--fmh-content);
	margin-inline: auto;
}

.fmh-container-fluid {
	width: 100%;
	padding-inline: clamp(16px, 3vw, 40px);
}

.fmh-section {
	padding-block: var(--fmh-section-pad);
}

.fmh-section--page-content {
	padding-block: calc(var(--fmh-section-pad) * .8);
}

.fmh-section__intro {
	max-width: var(--fmh-narrow);
	margin: -6px auto 34px;
	text-align: center;
	color: var(--fmh-muted-ink);
	font-size: var(--fmh-lead);
}

.fmh-shell {
	display: grid;
	gap: clamp(28px, 4vw, 56px);
}

.fmh-shell--sidebar {
	grid-template-columns: minmax(0, 1fr) 320px;
}

body.fmh-sidebar-left .fmh-shell--sidebar {
	grid-template-columns: 320px minmax(0, 1fr);
}

body.fmh-sidebar-left .fmh-shell__aside {
	order: -1;
}

.fmh-cols-2 { --fmh-cols: 2; }
.fmh-cols-3 { --fmh-cols: 3; }
.fmh-cols-4 { --fmh-cols: 4; }
.fmh-cols-5 { --fmh-cols: 5; }
.fmh-cols-6 { --fmh-cols: 6; }

/* ---------------------------------------------------------------
 * 3. Shared pieces
 * ------------------------------------------------------------ */

.fmh-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	font-family: var(--fmh-font-accent);
	font-size: var(--fmh-eyebrow);
	font-weight: var(--fmh-accent-weight);
	letter-spacing: var(--fmh-eyebrow-spacing);
	text-transform: uppercase;
	color: var(--fmh-accent-ink);
}

.fmh-eyebrow--light { color: rgba(255, 255, 255, .85); }
.fmh-eyebrow--center { justify-content: center; }

.fmh-heading {
	margin: 0 0 18px;
	font-family: var(--fmh-font-heading);
	font-size: var(--fmh-h2);
	font-weight: var(--fmh-heading-weight);
	line-height: var(--fmh-heading-line);
	letter-spacing: var(--fmh-heading-spacing);
	text-transform: var(--fmh-heading-transform);
	color: var(--fmh-heading);
}

.fmh-heading--center { text-align: center; }
.fmh-heading--light { color: #fff; }
.fmh-heading--sm { font-size: var(--fmh-h3); }

/* The short centred rule the design puts under a section heading. */
.fmh-heading__rule {
	display: block;
	width: 62px;
	height: 2px;
	margin: 0 auto 30px;
	background: var(--fmh-accent);
	opacity: .55;
}

.fmh-heading:not(.fmh-heading--center) + .fmh-heading__rule { margin-inline: 0; }

.fmh-section__intro {
	max-width: var(--fmh-narrow);
	margin: -10px auto 34px;
	text-align: center;
	color: var(--fmh-muted-ink);
	font-size: var(--fmh-lead);
}

.fmh-rule {
	width: 100%;
	height: var(--fmh-border-width);
	margin: 0;
	border: 0;
	background: var(--fmh-border);
}

.fmh-rule--short { width: 62px; height: 2px; background: var(--fmh-accent); }

.fmh-tagline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 8px 0 0;
	font-family: var(--fmh-font-accent);
	font-size: 12px;
	font-weight: var(--fmh-accent-weight);
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--fmh-muted-ink);
}

.fmh-tagline__dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--fmh-accent);
}

.fmh-prose > *:first-child { margin-top: 0; }
.fmh-prose > *:last-child { margin-bottom: 0; }
.fmh-prose--narrow { max-width: var(--fmh-narrow); margin-inline: auto; }

.fmh-inline-icon {
	display: inline-flex;
	vertical-align: -.18em;
	margin-inline: .18em;
}

/* Buttons ----------------------------------------------------- */

.fmh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: var(--fmh-btn-pad-y) var(--fmh-btn-pad-x);
	border: var(--fmh-border-width) solid transparent;
	border-radius: var(--fmh-btn-radius);
	font-family: var(--fmh-font-accent);
	font-size: var(--fmh-btn-size);
	font-weight: var(--fmh-btn-weight);
	letter-spacing: var(--fmh-btn-tracking);
	text-transform: var(--fmh-btn-transform);
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color var(--fmh-transition) ease,
		border-color var(--fmh-transition) ease,
		color var(--fmh-transition) ease,
		transform var(--fmh-transition) ease,
		box-shadow var(--fmh-transition) ease;
}

.fmh-btn:hover { transform: translateY(-1px); }
.fmh-btn:focus-visible { outline: 2px solid var(--fmh-accent); outline-offset: 3px; }
.fmh-btn .fmh-icon { flex: 0 0 auto; }
.fmh-btn--icon-before { flex-direction: row; }
.fmh-btn--lg { padding: calc(var(--fmh-btn-pad-y) * 1.25) calc(var(--fmh-btn-pad-x) * 1.2); font-size: calc(var(--fmh-btn-size) + 1px); }
.fmh-btn--sm { padding: calc(var(--fmh-btn-pad-y) * .7) calc(var(--fmh-btn-pad-x) * .7); font-size: calc(var(--fmh-btn-size) - 1px); }

.fmh-btn--primary {
	background: var(--fmh-primary);
	border-color: var(--fmh-primary);
	color: #fff;
	box-shadow: 0 6px 18px rgba(var(--fmh-shadow-rgb), calc(.14 * var(--fmh-shadow-scale)));
}

.fmh-btn--primary:hover { background: var(--fmh-primary-dark); border-color: var(--fmh-primary-dark); color: #fff; }

.fmh-btn--green {
	background: var(--fmh-green-btn);
	border-color: var(--fmh-green-btn);
	color: #fff;
	box-shadow: 0 6px 18px rgba(var(--fmh-shadow-rgb), calc(.16 * var(--fmh-shadow-scale)));
}

.fmh-btn--green:hover { background: var(--fmh-green-dark); border-color: var(--fmh-green-dark); color: #fff; }

.fmh-btn--accent {
	background: var(--fmh-accent-btn);
	border-color: var(--fmh-accent-btn);
	color: #fff;
}

.fmh-btn--accent:hover { background: var(--fmh-accent-dark); border-color: var(--fmh-accent-dark); color: #fff; }

.fmh-btn--white {
	background: #fff;
	border-color: #fff;
	color: var(--fmh-primary);
}

.fmh-btn--white:hover { background: var(--fmh-tint); border-color: var(--fmh-tint); color: var(--fmh-primary-dark); }

.fmh-btn--outline {
	background: transparent;
	border-color: var(--fmh-primary-line);
	color: var(--fmh-primary);
}

.fmh-btn--outline:hover {
	background: var(--fmh-primary);
	border-color: var(--fmh-primary);
	color: #fff;
}

/* On a dark band the outlined button has to invert. */
.fmh-band--navy .fmh-btn--outline,
.fmh-cta .fmh-btn--outline,
.fmh-hero--overlay .fmh-btn--outline {
	border-color: rgba(255, 255, 255, .55);
	color: #fff;
}

.fmh-band--navy .fmh-btn--outline:hover,
.fmh-cta .fmh-btn--outline:hover,
.fmh-hero--overlay .fmh-btn--outline:hover {
	background: #fff;
	border-color: #fff;
	color: var(--fmh-primary);
}

.fmh-btn--ghost {
	padding-inline: 0;
	background: none;
	border-color: transparent;
	color: var(--fmh-accent-ink);
}

.fmh-btn--ghost:hover { color: var(--fmh-primary); }

.fmh-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.fmh-arrow-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--fmh-font-accent);
	font-size: 15px;
	font-weight: var(--fmh-accent-weight);
	color: var(--fmh-accent-ink);
	text-decoration: none;
}

.fmh-arrow-link .fmh-icon { transition: transform var(--fmh-transition) ease; }
.fmh-arrow-link:hover .fmh-icon { transform: translateX(4px); }

.fmh-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: var(--fmh-btn-radius);
	background: transparent;
	color: inherit;
	cursor: pointer;
	transition: background-color var(--fmh-transition) ease, color var(--fmh-transition) ease;
}

.fmh-icon-btn:hover { background: rgba(var(--fmh-primary-rgb), .07); color: var(--fmh-accent-ink); }

/* Social ------------------------------------------------------ */

.fmh-social {
	display: flex;
	align-items: center;
	gap: 14px;
}

.fmh-social__label {
	font-family: var(--fmh-font-accent);
	font-size: 12px;
	font-weight: var(--fmh-accent-weight);
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: inherit;
	opacity: .8;
}

.fmh-social__list {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fmh-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: inherit;
	text-decoration: none;
	transition: background-color var(--fmh-transition) ease,
		border-color var(--fmh-transition) ease,
		color var(--fmh-transition) ease;
}

.fmh-social--ring .fmh-social__link { border: var(--fmh-border-width) solid currentColor; opacity: .75; }
.fmh-social--ring .fmh-social__link:hover { opacity: 1; background: var(--fmh-accent); border-color: var(--fmh-accent); color: #fff; }

.fmh-social--disc .fmh-social__link { background: rgba(var(--fmh-primary-rgb), .08); color: var(--fmh-primary); }
.fmh-social--disc .fmh-social__link:hover { background: var(--fmh-accent); color: #fff; }

.fmh-social--plain .fmh-social__link { width: auto; height: auto; opacity: .8; }
.fmh-social--plain .fmh-social__link:hover { opacity: 1; color: var(--fmh-accent); }

/* ---------------------------------------------------------------
 * 4. Top bar and header
 * ------------------------------------------------------------ */

.fmh-topbar {
	position: relative;
	z-index: 70;
	background: var(--fmh-topbar-bg);
	color: var(--fmh-topbar-text);
	font-size: 13px;
}

.fmh-topbar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 26px;
	min-height: 42px;
	padding-block: 6px;
}

.fmh-topbar__left,
.fmh-topbar__right {
	display: flex;
	align-items: center;
	gap: 22px;
}

.fmh-topbar__message { margin: 0; }
.fmh-topbar a { color: inherit; }
.fmh-topbar a:hover { color: var(--fmh-accent); }

.fmh-topbar .fmh-menu {
	gap: 18px;
	font-size: 13px;
}

.fmh-topbar .fmh-menu__link { padding-block: 4px; }

.fmh-header {
	position: relative;
	z-index: 60;
	background: var(--fmh-header-bg);
	color: var(--fmh-header-text);
	box-shadow: var(--fmh-header-shadow);
	transition: background-color var(--fmh-transition) ease,
		box-shadow var(--fmh-transition) ease;
}

body.fmh-sticky-header:not(.fmh-transparent-header) .fmh-header {
	position: sticky;
	top: 0;
}

/* A transparent header floats over the banner instead of sitting in flow, so
   nothing shifts when it later becomes fixed. */
body.fmh-transparent-header .fmh-header.is-transparent {
	position: absolute;
	top: var(--fmh-topbar-h, 0px);
	left: 0;
	right: 0;
	background: transparent;
	box-shadow: none;
}

body.fmh-transparent-header .fmh-header.is-stuck {
	position: fixed;
	top: 0;
	background: var(--fmh-header-bg);
	box-shadow: var(--fmh-header-shadow);
	animation: fmh-drop .3s ease;
}

@keyframes fmh-drop {
	from { transform: translateY(-100%); }
	to   { transform: translateY(0); }
}

.fmh-header__inner {
	display: flex;
	align-items: center;
	gap: 0;
	min-height: var(--fmh-header-height);
	transition: min-height var(--fmh-transition) ease;
}

.fmh-header.is-shrunk .fmh-header__inner {
	min-height: calc(var(--fmh-header-height) * .74);
}

.fmh-header__brand { flex: 0 0 auto; }

.fmh-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: auto;
}

/* The brand lockup: logo, hairline, advisory line ------------- */

.fmh-header__brand {
	display: flex;
	align-items: center;
	gap: 18px;
}

.fmh-brand__link {
	display: inline-flex;
	align-items: center;
	color: inherit;
	text-decoration: none;
}

.fmh-logo {
	height: var(--fmh-logo-height);
	width: auto;
	transition: height var(--fmh-transition) ease;
}

.fmh-header.is-shrunk .fmh-logo { height: calc(var(--fmh-logo-height) * .82); }

.fmh-brand__line {
	display: flex;
	align-items: center;
	gap: 18px;
}

.fmh-brand__rule {
	display: block;
	width: var(--fmh-border-width);
	height: 34px;
	background: var(--fmh-border);
}

.fmh-brand__tagline {
	max-width: 15ch;
	font-family: var(--fmh-font-body);
	font-size: 13px;
	line-height: 1.35;
	color: var(--fmh-muted-ink);
}

/* The built-in wordmark --------------------------------------- */

.fmh-wordmark {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: inherit;
}

.fmh-wordmark__mark {
	width: calc(var(--fmh-logo-height) * .82);
	height: calc(var(--fmh-logo-height) * .82);
	flex: 0 0 auto;
}

.fmh-wordmark__mark-a { fill: var(--fmh-accent); }
.fmh-wordmark__mark-b { fill: var(--fmh-green); }

.fmh-wordmark__text {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.fmh-wordmark__name {
	font-family: var(--fmh-font-heading);
	font-size: calc(var(--fmh-logo-height) * .56);
	font-weight: 700;
	letter-spacing: -.4px;
}

.fmh-wordmark__first { color: var(--fmh-primary); }
.fmh-wordmark__last { color: var(--fmh-accent); }

.fmh-wordmark__sub {
	margin-top: 4px;
	font-family: var(--fmh-font-accent);
	font-size: calc(var(--fmh-logo-height) * .2);
	font-weight: var(--fmh-accent-weight);
	letter-spacing: .42em;
	text-transform: uppercase;
	color: var(--fmh-muted-ink);
}

/* Over a photo or a navy bar the mark has to read light. */
.fmh-header.is-transparent .fmh-wordmark__first,
.fmh-header.is-transparent .fmh-wordmark__sub,
.fmh-header.is-transparent .fmh-brand__tagline { color: #fff; }

.fmh-header.is-transparent .fmh-brand__rule { background: rgba(255, 255, 255, .4); }

.fmh-header.is-shrunk .fmh-wordmark { --fmh-logo-height: calc(var(--fmh-logo-height) * .84); }

.fmh-site-title {
	margin: 0;
	font-family: var(--fmh-font-heading);
	font-size: clamp(20px, 2.2vw, 28px);
	font-weight: var(--fmh-heading-weight);
	color: inherit;
	line-height: 1.1;
}

.fmh-header__cta { flex: 0 0 auto; }

/* Navigation -------------------------------------------------- */

/* Menu position: beside the logo (the reference), centred, or against the button.
   min-width:0 lets a long menu wrap inside the bar rather than pushing the
   button off the edge of the window. */
.fmh-nav--primary { margin-left: var(--fmh-header-nav-gap); min-width: 0; }
body.fmh-nav-center .fmh-nav--primary { margin-inline: auto; }
body.fmh-nav-right .fmh-nav--primary { margin-left: auto; margin-right: 28px; padding-left: 32px; }

.fmh-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px var(--fmh-nav-gap);
	margin: 0;
	padding: 0;
	list-style: none;
}

.fmh-menu li { position: relative; }

.fmh-menu__link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 10px 0;
	color: inherit;
	font-family: var(--fmh-font-nav);
	font-size: var(--fmh-nav-size);
	font-weight: var(--fmh-nav-weight);
	letter-spacing: var(--fmh-nav-spacing);
	text-transform: var(--fmh-nav-transform);
	white-space: nowrap;
}

.fmh-nav--primary > .fmh-menu > li > .fmh-menu__link {
	position: relative;
}

.fmh-nav--primary > .fmh-menu > li > .fmh-menu__link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2px;
	height: 2px;
	background: var(--fmh-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--fmh-transition) ease;
}

.fmh-nav--primary > .fmh-menu > li:hover > .fmh-menu__link::after,
.fmh-nav--primary > .fmh-menu > li:focus-within > .fmh-menu__link::after,
.fmh-nav--primary > .fmh-menu > .current-menu-item > .fmh-menu__link::after,
.fmh-nav--primary > .fmh-menu > .current-menu-ancestor > .fmh-menu__link::after,
.fmh-nav--primary > .fmh-menu > .current_page_item > .fmh-menu__link::after {
	transform: scaleX(1);
}

.fmh-nav--primary > .fmh-menu > .current-menu-item > .fmh-menu__link,
.fmh-nav--primary > .fmh-menu > .current_page_item > .fmh-menu__link,
.fmh-menu__link:hover {
	color: var(--fmh-header-hover);
}

.fmh-submenu-toggle {
	display: inline-flex;
	align-items: center;
	padding: 0;
	margin-left: 5px;
	background: none;
	border: 0;
	color: inherit;
	cursor: pointer;
	opacity: .85;
}

.fmh-menu li:hover > .fmh-menu__link .fmh-submenu-toggle,
.fmh-menu li:focus-within > .fmh-menu__link .fmh-submenu-toggle { opacity: 1; }

/* The drawer's toggle is a full-size tap target, so it keeps its own spacing. */
.fmh-menu--mobile .fmh-submenu-toggle { margin-left: 0; opacity: 1; }

.fmh-nav--primary .fmh-has-submenu > .fmh-submenu-toggle {
	pointer-events: none;
}

.fmh-submenu-toggle__icon { transition: transform var(--fmh-transition) ease; }

.fmh-submenu {
	position: absolute;
	top: 100%;
	left: -18px;
	z-index: 20;
	min-width: 232px;
	margin: 0;
	padding: 10px 0;
	list-style: none;
	background: var(--fmh-submenu-bg);
	color: var(--fmh-submenu-text);
	border-top: 3px solid var(--fmh-accent);
	border-radius: 0 0 var(--fmh-radius) var(--fmh-radius);
	box-shadow: 0 18px 40px rgba(var(--fmh-shadow-rgb), calc(.2 * var(--fmh-shadow-scale)));
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity var(--fmh-transition) ease,
		transform var(--fmh-transition) ease,
		visibility var(--fmh-transition) ease;
}

.fmh-submenu .fmh-submenu {
	top: -13px;
	left: 100%;
}

.fmh-menu li:hover > .fmh-submenu,
.fmh-menu li:focus-within > .fmh-submenu,
.fmh-menu li.is-open > .fmh-submenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.fmh-submenu .fmh-menu__link {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 9px 20px;
	color: var(--fmh-submenu-text);
	text-transform: none;
	letter-spacing: 0;
	white-space: normal;
}

.fmh-submenu .fmh-menu__link:hover {
	background: var(--fmh-accent-tint);
	color: var(--fmh-accent-ink);
}

.fmh-search-panel {
	padding: 18px 0;
	background: var(--fmh-primary-dark);
}

/* Header layout variants -------------------------------------- */

.fmh-header--centered .fmh-header__inner {
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	padding-block: 16px;
}

.fmh-header--centered .fmh-header__actions { margin: 0; }
.fmh-header--centered .fmh-nav--primary { margin: 0; }

.fmh-header--stacked .fmh-header__inner {
	flex-wrap: wrap;
	row-gap: 0;
}

.fmh-header--stacked .fmh-nav--primary {
	order: 3;
	flex: 1 0 100%;
	margin: 0;
	border-top: 1px solid rgba(255, 255, 255, .16);
}

.fmh-header--stacked .fmh-nav--primary .fmh-menu {
	justify-content: center;
	padding-block: 4px;
}

.fmh-header--minimal .fmh-nav--primary { display: none; }
.fmh-header--minimal .fmh-burger { display: inline-flex !important; }

/* Mobile menu -------------------------------------------------- */

.fmh-burger { display: none; }

.fmh-mobile-backdrop {
	position: fixed;
	inset: 0;
	z-index: 80;
	background: rgba(var(--fmh-primary-dark-rgb), .58);
}

.fmh-mobile-panel {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 90;
	display: flex;
	flex-direction: column;
	gap: 22px;
	width: min(360px, 88vw);
	height: 100%;
	padding: 22px 26px 34px;
	overflow-y: auto;
	background: var(--fmh-header-bg);
	color: var(--fmh-header-text);
	box-shadow: -20px 0 60px rgba(var(--fmh-shadow-rgb), .3);
	animation: fmh-slide-in .28s ease;
}

.fmh-mobile-panel--fullscreen {
	width: 100%;
	animation: fmh-fade-in .24s ease;
}

.fmh-mobile-panel--push {
	top: auto;
	right: 0;
	left: 0;
	width: 100%;
	height: auto;
	max-height: 80vh;
	animation: fmh-fade-in .24s ease;
}

@keyframes fmh-slide-in {
	from { transform: translateX(100%); }
	to   { transform: translateX(0); }
}

@keyframes fmh-fade-in {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.fmh-mobile-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.fmh-mobile-panel__title {
	font-family: var(--fmh-font-heading);
	font-size: 18px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.fmh-menu--mobile {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}

.fmh-menu--mobile li { width: 100%; }

.fmh-menu--mobile .fmh-menu__link {
	justify-content: space-between;
	width: 100%;
	padding: 13px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	font-size: 16px;
	white-space: normal;
}

.fmh-menu--mobile .fmh-submenu {
	position: static;
	min-width: 0;
	padding: 0 0 6px 16px;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	transform: none;
	display: none;
}

.fmh-menu--mobile li.is-open > .fmh-submenu { display: block; }

.fmh-menu--mobile .fmh-submenu .fmh-menu__link {
	padding: 10px 0;
	color: rgba(255, 255, 255, .82);
	font-size: 15px;
}

.fmh-menu--mobile .fmh-submenu .fmh-menu__link:hover {
	background: none;
	color: var(--fmh-accent);
}

.fmh-menu--mobile .fmh-has-submenu > .fmh-submenu-toggle {
	position: absolute;
	top: 8px;
	right: 0;
	width: 40px;
	height: 40px;
	justify-content: center;
}

.fmh-menu--mobile li.is-open > .fmh-submenu-toggle .fmh-submenu-toggle__icon {
	transform: rotate(180deg);
}

.fmh-mobile-panel__cta .fmh-btn { width: 100%; }

/* ---------------------------------------------------------------
 * 5. Band backgrounds
 * ------------------------------------------------------------ */

.fmh-band--surface { background: var(--fmh-surface); }
.fmh-band--alt { background: var(--fmh-surface-alt); }
.fmh-band--tint { background: var(--fmh-tint); }

.fmh-band--navy {
	background: var(--fmh-primary);
	color: rgba(255, 255, 255, .82);
}

.fmh-band--navy .fmh-heading,
.fmh-band--navy h2,
.fmh-band--navy h3 { color: #fff; }

.fmh-band--navy .fmh-heading__rule { background: #fff; opacity: .4; }

/* ---------------------------------------------------------------
 * 6. Hero
 * ------------------------------------------------------------ */

.fmh-hero {
	position: relative;
	overflow: hidden;
	background: var(--fmh-hero-bg);
	isolation: isolate;
}

.fmh-hero--full { min-height: 100vh; min-height: 100svh; }

.fmh-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
	align-items: center;
	min-height: var(--fmh-hero-height);
	padding-block: clamp(40px, 5vw, 74px);
}

.fmh-hero__copy { max-width: 37rem; padding-right: 24px; }

/* The photo is pinned to the half the copy does not use, and bleeds off the
   window edge — the container only positions the copy. */
.fmh-hero__media {
	position: absolute;
	inset: 0 0 0 50%;
	z-index: 1;
	overflow: hidden;
}

.fmh-hero__photo {
	position: absolute;
	inset: 0;
	display: block;
	background-position: var(--fmh-hero-focus, center center);
	background-size: cover;
	background-repeat: no-repeat;
}

.fmh-hero--zoom .fmh-hero__photo {
	animation: fmh-zoom 22s ease-in-out infinite alternate;
}

@keyframes fmh-zoom {
	from { transform: scale(1); }
	to   { transform: scale(1.08); }
}

/* A soft wash so the copy side melts into the photograph. */
.fmh-hero__wash {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.fmh-hero--fade .fmh-hero__wash {
	background: linear-gradient(90deg, var(--fmh-hero-bg) 0%, rgba(0, 0, 0, 0) 22%);
}

.fmh-hero--reverse .fmh-hero__inner { direction: rtl; }
.fmh-hero--reverse .fmh-hero__copy { direction: ltr; padding: 0 0 0 30px; }
.fmh-hero--reverse .fmh-hero__media { inset: 0 50% 0 0; }
.fmh-hero--reverse.fmh-hero--fade .fmh-hero__wash {
	background: linear-gradient(270deg, var(--fmh-hero-bg) 0%, rgba(0, 0, 0, 0) 22%);
}

/* Copy over a full-width photograph. */
.fmh-hero--overlay .fmh-hero__media { inset: 0; }
.fmh-hero--overlay .fmh-hero__inner { grid-template-columns: minmax(0, 1fr); }
.fmh-hero--overlay .fmh-hero__copy { max-width: 40rem; }
.fmh-hero--overlay .fmh-hero__title,
.fmh-hero--overlay .fmh-hero__note strong { color: #fff; }
.fmh-hero--overlay .fmh-hero__text,
.fmh-hero--overlay .fmh-hero__note { color: rgba(255, 255, 255, .86); }
.fmh-hero--overlay .fmh-hero__line--accent { color: #fff; opacity: .82; }

.fmh-hero--wash-left .fmh-hero__wash {
	background: linear-gradient(90deg,
		rgba(var(--fmh-hero-overlay-rgb), var(--fmh-hero-opacity)) 0%,
		rgba(var(--fmh-hero-overlay-rgb), calc(var(--fmh-hero-opacity) * .25)) 62%,
		rgba(var(--fmh-hero-overlay-rgb), 0) 100%);
}

.fmh-hero--wash-bottom .fmh-hero__wash {
	background: linear-gradient(0deg,
		rgba(var(--fmh-hero-overlay-rgb), var(--fmh-hero-opacity)) 0%,
		rgba(var(--fmh-hero-overlay-rgb), 0) 78%);
}

.fmh-hero--wash-solid .fmh-hero__wash {
	background: rgba(var(--fmh-hero-overlay-rgb), var(--fmh-hero-opacity));
}

.fmh-hero--plain .fmh-hero__inner { grid-template-columns: minmax(0, 1fr); }
.fmh-hero--plain .fmh-hero__copy { max-width: 46rem; padding-right: 0; }

.fmh-hero__title {
	margin: 0;
	font-family: var(--fmh-font-heading);
	font-size: var(--fmh-display);
	font-weight: var(--fmh-heading-weight);
	line-height: var(--fmh-heading-line);
	letter-spacing: var(--fmh-heading-spacing);
	text-transform: var(--fmh-heading-transform);
	color: var(--fmh-heading);
}

.fmh-hero__line { display: block; }
.fmh-hero__line--accent { color: var(--fmh-accent-ink); }

.fmh-hero__rule {
	display: block;
	width: 74px;
	height: 3px;
	margin: 24px 0 0;
	background: var(--fmh-accent);
}

.fmh-hero__text {
	margin-top: 24px;
	font-size: var(--fmh-lead);
	color: var(--fmh-text);
}

.fmh-hero__note {
	margin: 22px 0 0;
	font-size: calc(var(--fmh-font-size) - 1px);
	line-height: 1.6;
	color: var(--fmh-text);
}

.fmh-hero__note strong {
	display: block;
	font-weight: 700;
	color: var(--fmh-heading);
}

.fmh-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

/* The confidentiality card ------------------------------------ */

.fmh-hero__badge {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	max-width: 27rem;
	padding: 18px 22px;
	border-radius: var(--fmh-radius);
	background: var(--fmh-badge-bg);
	color: rgba(255, 255, 255, .84);
	box-shadow: 0 18px 40px rgba(var(--fmh-shadow-rgb), calc(.3 * var(--fmh-shadow-scale)));
}

.fmh-hero__badge--bottom-left,
.fmh-hero__badge--bottom-right {
	position: absolute;
	bottom: clamp(18px, 4vw, 44px);
	z-index: 3;
}

.fmh-hero__badge--bottom-left { left: clamp(16px, 4vw, 40px); }
.fmh-hero__badge--bottom-right { right: clamp(16px, 4vw, 40px); }
.fmh-hero__badge--under { margin-top: 32px; }

.fmh-hero__badge-icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 46px;
	height: 46px;
	border: 2px solid rgba(255, 255, 255, .45);
	border-radius: 50%;
	color: #fff;
}

.fmh-hero__badge-body { display: block; }

.fmh-hero__badge-title {
	display: block;
	margin-bottom: 6px;
	font-family: var(--fmh-font-accent);
	font-size: 12px;
	font-weight: var(--fmh-accent-weight);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #fff;
}

.fmh-hero__badge-text {
	display: block;
	font-size: 13px;
	line-height: 1.55;
}

.fmh-hero__scroll {
	position: absolute;
	bottom: 18px;
	left: 50%;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	margin-left: -20px;
	border-radius: 50%;
	color: var(--fmh-primary);
	background: rgba(255, 255, 255, .8);
	animation: fmh-bob 2.4s ease-in-out infinite;
}

@keyframes fmh-bob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(6px); }
}

.fmh-hero--slider { background: none; }

/* ---------------------------------------------------------------
 * 7. Ways we help
 * ------------------------------------------------------------ */

.fmh-pillars { padding-block: var(--fmh-section-pad); }

.fmh-pillars--card {
	padding-top: 0;
	background: none;
}

.fmh-pillars--card .fmh-pillars__panel {
	position: relative;
	z-index: 4;
	margin-top: calc(var(--fmh-section-pad) * -0.55);
	padding: clamp(34px, 4vw, 56px) clamp(20px, 3vw, 44px);
	border-radius: var(--fmh-radius);
	background: var(--fmh-card);
	box-shadow: 0 22px 60px rgba(var(--fmh-shadow-rgb), calc(.12 * var(--fmh-shadow-scale)));
}

.fmh-pillars__list {
	display: grid;
	grid-template-columns: repeat(var(--fmh-pillar-cols, 5), minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.fmh-cols-3 .fmh-pillars__list { --fmh-pillar-cols: 3; }
.fmh-cols-4 .fmh-pillars__list { --fmh-pillar-cols: 4; }
.fmh-cols-5 .fmh-pillars__list { --fmh-pillar-cols: 5; }
.fmh-cols-6 .fmh-pillars__list { --fmh-pillar-cols: 6; }

.fmh-pillars--ruled .fmh-pillar + .fmh-pillar {
	border-left: var(--fmh-border-width) solid var(--fmh-border);
}

.fmh-pillar__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	height: 100%;
	padding: 6px clamp(12px, 1.6vw, 24px);
	text-align: center;
	text-decoration: none;
	color: inherit;
}

a.fmh-pillar__inner:hover .fmh-pillar__title { color: var(--pillar-color, var(--fmh-accent-ink)); }

.fmh-pillar__icon {
	display: grid;
	place-items: center;
	width: calc(var(--fmh-pillar-icon) * 1.9);
	height: calc(var(--fmh-pillar-icon) * 1.9);
	margin-bottom: 6px;
	border-radius: 50%;
	color: var(--pillar-color, var(--fmh-accent));
	transition: background-color var(--fmh-transition) ease, transform var(--fmh-transition) ease;
}

.fmh-pillars--icons-disc .fmh-pillar__icon { background: var(--fmh-tint); }
.fmh-pillars--icons-ring .fmh-pillar__icon { border: 2px solid currentColor; opacity: .9; }
.fmh-pillars--icons-plain .fmh-pillar__icon { width: auto; height: auto; }

a.fmh-pillar__inner:hover .fmh-pillar__icon { transform: translateY(-3px); }

.fmh-pillar__title {
	font-family: var(--fmh-font-heading);
	font-size: var(--fmh-h3);
	font-weight: var(--fmh-heading-weight);
	color: var(--fmh-heading);
	transition: color var(--fmh-transition) ease;
}

.fmh-pillar__text {
	font-size: calc(var(--fmh-font-size) - 2px);
	line-height: 1.6;
	color: var(--fmh-muted-ink);
}

/* ---------------------------------------------------------------
 * 8. Feature panels
 * ------------------------------------------------------------ */

.fmh-features { padding-block: calc(var(--fmh-section-pad) * .6) var(--fmh-section-pad); }

.fmh-features__grid {
	display: grid;
	grid-template-columns: repeat(var(--fmh-feature-cols, 2), minmax(0, 1fr));
	gap: clamp(18px, 2.2vw, 30px);
}

.fmh-cols-2 .fmh-features__grid { --fmh-feature-cols: 2; }
.fmh-cols-3 .fmh-features__grid { --fmh-feature-cols: 3; }

.fmh-feature {
	display: flex;
	gap: clamp(18px, 2vw, 30px);
	padding: clamp(26px, 3vw, 40px);
	border-radius: var(--fmh-radius);
	background: var(--fmh-surface-alt);
	background: color-mix(in srgb, var(--feature-color, var(--fmh-accent)) 6%, #fff);
}

.fmh-features--icon-top .fmh-feature {
	flex-direction: column;
	align-items: flex-start;
}

.fmh-feature__icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 78px;
	height: 78px;
	border-radius: 50%;
	background: #fff;
	background: color-mix(in srgb, var(--feature-color, var(--fmh-accent)) 16%, #fff);
	color: var(--feature-color, var(--fmh-accent));
}

.fmh-feature__title {
	margin: 0 0 6px;
	font-family: var(--fmh-font-heading);
	font-size: var(--fmh-h3);
	font-weight: var(--fmh-heading-weight);
	line-height: 1.25;
	color: var(--fmh-heading);
}

.fmh-feature__subtitle {
	margin: 0 0 14px;
	font-size: calc(var(--fmh-font-size) - 1px);
	font-weight: 500;
	color: var(--fmh-text);
}

.fmh-feature__text {
	font-size: calc(var(--fmh-font-size) - 1px);
	line-height: 1.7;
	color: var(--fmh-text);
}

.fmh-feature__text p { margin: 0 0 1em; }

.fmh-feature__link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: 18px;
	font-family: var(--fmh-font-accent);
	font-size: 14px;
	font-weight: var(--fmh-accent-weight);
	color: var(--feature-color, var(--fmh-accent-ink));
	text-decoration: none;
}

.fmh-feature__link .fmh-icon { transition: transform var(--fmh-transition) ease; }
.fmh-feature__link:hover .fmh-icon { transform: translateX(4px); }

/* ---------------------------------------------------------------
 * 9. Process
 * ------------------------------------------------------------ */

.fmh-process { padding-block: var(--fmh-section-pad); }

.fmh-process__sub {
	margin: -8px 0 42px;
	text-align: center;
	font-size: calc(var(--fmh-font-size) - 1px);
	color: var(--fmh-muted-ink);
}

.fmh-process .fmh-heading + .fmh-heading__rule { margin-bottom: 14px; }

.fmh-process__list {
	display: grid;
	grid-template-columns: repeat(var(--fmh-step-cols, 5), minmax(0, 1fr));
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: fmh-step;
}

.fmh-cols-3 .fmh-process__list { --fmh-step-cols: 3; }
.fmh-cols-4 .fmh-process__list { --fmh-step-cols: 4; }
.fmh-cols-5 .fmh-process__list { --fmh-step-cols: 5; }
.fmh-cols-6 .fmh-process__list { --fmh-step-cols: 6; }

.fmh-step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 0 clamp(8px, 1.4vw, 20px);
	text-align: center;
}

.fmh-step__number {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--fmh-primary);
	color: #fff;
	font-family: var(--fmh-font-accent);
	font-size: 13px;
	font-weight: 700;
}

.fmh-step__icon {
	display: grid;
	place-items: center;
	width: calc(var(--fmh-step-icon) * 2.1);
	height: calc(var(--fmh-step-icon) * 2.1);
	border-radius: 50%;
	background: var(--fmh-tint);
	color: var(--fmh-accent);
}

.fmh-step__title {
	margin: 4px 0 0;
	font-family: var(--fmh-font-accent);
	font-size: calc(var(--fmh-font-size) - 1px);
	font-weight: 700;
	color: var(--fmh-heading);
}

.fmh-step__text {
	margin: 0;
	font-size: calc(var(--fmh-font-size) - 3px);
	line-height: 1.6;
	color: var(--fmh-muted-ink);
}

/* The chevron sits in the gutter between two steps. */
.fmh-step__link { display: none; }

.fmh-process--linked .fmh-step__link {
	position: absolute;
	top: 46px;
	right: calc(-1 * clamp(8px, 1.4vw, 20px));
	display: block;
	color: var(--fmh-border);
	transform: translateX(50%);
}

.fmh-process--linked .fmh-step:last-child .fmh-step__link { display: none; }
.fmh-process:not(.fmh-process--numbered) .fmh-process--linked .fmh-step__link { top: 26px; }

/* ---------------------------------------------------------------
 * 10. Closing call to action
 * ------------------------------------------------------------ */

.fmh-cta { padding-block: 0 var(--fmh-section-pad); }
.fmh-cta:not(.fmh-cta--inset) > .fmh-container { width: 100%; max-width: none; padding: 0; }

.fmh-cta__panel {
	display: grid;
	grid-template-columns: auto minmax(0, 1.15fr) minmax(0, .95fr) auto;
	align-items: center;
	gap: clamp(20px, 3vw, 44px);
	padding: clamp(28px, 3.4vw, 46px) clamp(24px, 3.4vw, 52px);
	background: var(--fmh-cta-bg);
	color: rgba(255, 255, 255, .82);
}

.fmh-cta--inset .fmh-cta__panel { border-radius: var(--fmh-radius); }

.fmh-cta__icon {
	display: grid;
	place-items: center;
	width: 66px;
	height: 66px;
	border: 2px solid rgba(255, 255, 255, .4);
	border-radius: 50%;
	color: #fff;
}

.fmh-cta__title {
	margin: 0;
	font-family: var(--fmh-font-heading);
	font-size: var(--fmh-h3);
	font-weight: var(--fmh-heading-weight);
	line-height: 1.3;
	color: #fff;
}

.fmh-cta__title span { display: block; text-wrap: balance; }

.fmh-cta__text {
	font-size: calc(var(--fmh-font-size) - 2px);
	line-height: 1.65;
}

.fmh-cta__text p { margin: 0; }
.fmh-cta__action { justify-self: end; }

.fmh-cta--center .fmh-cta__panel {
	grid-template-columns: minmax(0, 1fr);
	justify-items: center;
	text-align: center;
	gap: 18px;
}

.fmh-cta--center .fmh-cta__action { justify-self: center; }

/* ---------------------------------------------------------------
 * 11. Contact details
 * ------------------------------------------------------------ */

.fmh-contact-details {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 16px;
}

.fmh-contact-details__row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.fmh-contact-details__icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--fmh-tint);
	color: var(--fmh-accent);
}

.fmh-contact-details__value { padding-top: 8px; }
.fmh-contact-details a { color: inherit; }

.fmh-contact {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 60px);
	align-items: start;
}

.fmh-contact__aside {
	padding: clamp(24px, 3vw, 36px);
	border-radius: var(--fmh-radius);
	background: var(--fmh-tint);
}

.fmh-contact__nda {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-bottom: 22px;
	font-size: calc(var(--fmh-font-size) - 1px);
	line-height: 1.6;
}

.fmh-contact__nda-icon { color: var(--fmh-accent); flex: 0 0 auto; }
.fmh-contact__note { margin-top: 18px; font-size: 13px; color: var(--fmh-muted-ink); }

/* ---------------------------------------------------------------
 * 12. Footer and the sign-up band
 * ------------------------------------------------------------ */

.fmh-signup-band {
	padding-block: clamp(34px, 4vw, 56px);
	background: var(--fmh-tint);
}

.fmh-signup-band__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(20px, 3vw, 48px);
}

.fmh-signup-band__title {
	margin: 0 0 8px;
	font-family: var(--fmh-font-heading);
	font-size: var(--fmh-h3);
	font-weight: var(--fmh-heading-weight);
	color: var(--fmh-heading);
}

.fmh-signup-band__text {
	font-size: calc(var(--fmh-font-size) - 1px);
	color: var(--fmh-text);
}

.fmh-signup {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.fmh-signup__input {
	flex: 1 1 220px;
	min-width: 0;
	padding: 13px 16px;
	border: var(--fmh-border-width) solid var(--fmh-border);
	border-radius: var(--fmh-btn-radius);
	background: #fff;
	font: inherit;
	color: var(--fmh-text);
}

.fmh-signup__input:focus-visible { outline: 2px solid var(--fmh-accent); outline-offset: 1px; }

.fmh-signup__submit {
	padding: 13px var(--fmh-btn-pad-x);
	border: 0;
	border-radius: var(--fmh-btn-radius);
	background: var(--fmh-primary);
	color: #fff;
	font-family: var(--fmh-font-accent);
	font-size: var(--fmh-btn-size);
	font-weight: var(--fmh-btn-weight);
	letter-spacing: var(--fmh-btn-tracking);
	text-transform: var(--fmh-btn-transform);
	cursor: pointer;
	transition: background-color var(--fmh-transition) ease;
}

.fmh-signup__submit:hover { background: var(--fmh-primary-dark); }
.fmh-signup__gotcha { position: absolute; left: -9999px; }
.fmh-signup__note { margin: 10px 0 0; font-size: 13px; color: var(--fmh-muted-ink); }

.fmh-signup__result:not(:empty) {
	margin-top: 12px;
	font-size: 14px;
	color: var(--fmh-green-ink);
}

.fmh-footer {
	position: relative;
	background: var(--fmh-footer-bg);
	color: var(--fmh-footer-text);
	font-size: calc(var(--fmh-font-size) - 2px);
}

.fmh-footer--ruled { border-top: var(--fmh-border-width) solid var(--fmh-border); }

.fmh-footer--image {
	background-size: cover;
	background-position: center;
}

.fmh-footer__pattern {
	position: absolute;
	inset: 0;
	background: var(--fmh-footer-bg);
	opacity: calc(1 - var(--fmh-pattern-opacity));
}

.fmh-footer > * { position: relative; z-index: 2; }

.fmh-footer__widgets {
	padding-block: clamp(32px, 4vw, 56px);
	border-bottom: var(--fmh-border-width) solid var(--fmh-border);
}

.fmh-footer__widgets .fmh-container {
	display: grid;
	gap: clamp(20px, 3vw, 40px);
}

.fmh-footer__widgets .fmh-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.fmh-footer__widgets .fmh-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.fmh-footer__widgets .fmh-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.fmh-footer__main {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(20px, 3vw, 40px);
	padding-block: clamp(28px, 3.4vw, 44px);
}

.fmh-footer__brand {
	display: flex;
	align-items: center;
	gap: 18px;
}

.fmh-footer__logo-link { display: inline-flex; color: inherit; text-decoration: none; }
.fmh-footer__logo { height: var(--fmh-footer-logo); width: auto; }

.fmh-footer__line {
	display: flex;
	align-items: center;
	gap: 16px;
}

.fmh-footer__tagline {
	max-width: 15ch;
	font-size: 13px;
	line-height: 1.35;
	color: var(--fmh-footer-text);
}

.fmh-wordmark--footer { --fmh-logo-height: var(--fmh-footer-logo); }

.fmh-footer__hq { text-align: center; }
.fmh-footer__hq-line { margin: 0; }

.fmh-footer__hq-motto {
	margin: 6px 0 0;
	font-weight: 700;
	color: var(--fmh-footer-heading);
}

.fmh-footer__meta {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	text-align: right;
}

.fmh-footer__copy { margin: 0; }
.fmh-footer__credit { display: block; }

.fmh-menu--legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fmh-menu--legal li + li::before {
	content: "|";
	margin-right: 18px;
	opacity: .4;
}

.fmh-menu--legal li { display: flex; align-items: center; }
.fmh-footer a { color: inherit; text-decoration: none; }
.fmh-footer a:hover { color: var(--fmh-accent-ink); text-decoration: underline; }

.fmh-footer__bottom {
	border-top: var(--fmh-border-width) solid var(--fmh-border);
	padding-block: 18px;
}

.fmh-footer__disclaimer {
	margin: 0;
	font-size: 12px;
	line-height: 1.6;
	color: var(--fmh-muted-ink);
}

/* A navy footer needs the hairlines and links to invert. */
.fmh-footer--dark,
.fmh-footer--dark .fmh-footer__bottom,
.fmh-footer--dark .fmh-footer__widgets { border-color: rgba(255, 255, 255, .16); }

.fmh-footer--dark .fmh-brand__rule { background: rgba(255, 255, 255, .28); }
.fmh-footer--dark .fmh-wordmark__first,
.fmh-footer--dark .fmh-wordmark__sub { color: #fff; }

/* ---------------------------------------------------------------
 * 12. Inner pages
 * ------------------------------------------------------------ */

.fmh-page-hero {
	position: relative;
	padding-block: clamp(44px, 6vw, 84px);
	background: var(--fmh-primary);
	background-size: cover;
	background-position: center;
	color: #fff;
}

body.fmh-transparent-header .fmh-page-hero {
	padding-top: calc(var(--fmh-header-height) + clamp(30px, 4vw, 60px));
}

.fmh-page-hero__wash {
	position: absolute;
	inset: 0;
}

.fmh-page-hero.has-image .fmh-page-hero__wash {
	background: linear-gradient(
		90deg,
		rgba(var(--fmh-primary-dark-rgb), .92) 0%,
		rgba(var(--fmh-primary-dark-rgb), .62) 100%
	);
}

.fmh-page-hero .fmh-container { position: relative; z-index: 1; }

.fmh-page-hero__title {
	margin: 0;
	color: #fff;
	font-size: var(--fmh-h1);
}

.fmh-page-hero__sub {
	max-width: 46em;
	margin: 12px 0 0;
	color: rgba(255, 255, 255, .84);
	font-size: var(--fmh-lead);
}

.fmh-crumbs { margin-bottom: 14px; font-size: 13px; }

.fmh-crumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: rgba(255, 255, 255, .72);
}

.fmh-crumbs li + li::before {
	content: "/";
	margin-right: 8px;
	opacity: .55;
}

.fmh-crumbs a { color: rgba(255, 255, 255, .88); }
.fmh-crumbs a:hover { color: var(--fmh-accent); }

/* ---------------------------------------------------------------
 * 13. Blog
 * ------------------------------------------------------------ */

.fmh-posts--grid {
	display: grid;
	grid-template-columns: repeat(var(--fmh-cols, 3), minmax(0, 1fr));
	gap: clamp(22px, 2.6vw, 34px);
}

.fmh-posts--list {
	display: flex;
	flex-direction: column;
	gap: clamp(24px, 3vw, 40px);
}

.fmh-cards {
	display: grid;
	grid-template-columns: repeat(var(--fmh-cols, 3), minmax(0, 1fr));
	gap: clamp(22px, 2.6vw, 34px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.fmh-card {
	display: flex;
	flex-direction: column;
	background: var(--fmh-card);
	border: var(--fmh-border-width) solid var(--fmh-border);
	border-radius: var(--fmh-radius);
	overflow: hidden;
	transition: transform var(--fmh-transition) ease, box-shadow var(--fmh-transition) ease;
}

.fmh-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 38px rgba(var(--fmh-shadow-rgb), calc(.12 * var(--fmh-shadow-scale)));
}

.fmh-card__media img,
.fmh-row__media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.fmh-card__body { padding: 22px 24px 26px; }

.fmh-card__title,
.fmh-row__title {
	margin: 0 0 10px;
	font-size: var(--fmh-h4);
	line-height: 1.2;
}

.fmh-card__title a,
.fmh-row__title a { color: inherit; }
.fmh-card__title a:hover,
.fmh-row__title a:hover { color: var(--fmh-accent-ink); }

.fmh-card__excerpt,
.fmh-row__excerpt {
	margin-bottom: 14px;
	font-size: 15px;
}

.fmh-row {
	display: grid;
	grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
	gap: clamp(18px, 2.4vw, 34px);
	align-items: center;
	padding-bottom: clamp(24px, 3vw, 40px);
	border-bottom: var(--fmh-border-width) solid var(--fmh-border);
}

.fmh-row:last-child { border-bottom: 0; padding-bottom: 0; }

.fmh-row__media img { border-radius: var(--fmh-radius); }

.fmh-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
	margin: 0 0 10px;
	font-size: 12.5px;
	letter-spacing: .4px;
	text-transform: uppercase;
	color: var(--fmh-muted-ink);
}

.fmh-meta__cat {
	padding: 4px 10px;
	background: var(--fmh-accent-tint);
	border-radius: var(--fmh-btn-radius);
	color: var(--fmh-accent-ink);
	font-weight: 700;
}

.fmh-meta__comments {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.fmh-pagination {
	margin-top: clamp(30px, 4vw, 52px);
}

.fmh-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.fmh-pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 42px;
	height: 42px;
	padding-inline: 12px;
	border: var(--fmh-border-width) solid var(--fmh-border);
	border-radius: var(--fmh-btn-radius);
	color: var(--fmh-heading);
	font-family: var(--fmh-font-accent);
	font-weight: 600;
}

.fmh-pagination .page-numbers:hover,
.fmh-pagination .page-numbers.current {
	background: var(--fmh-accent);
	border-color: var(--fmh-accent);
	color: #fff;
}

.fmh-single__media { margin: 0 0 28px; }
.fmh-single__media img { width: 100%; border-radius: var(--fmh-radius); }

.fmh-single__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 34px;
	padding-top: 22px;
	border-top: var(--fmh-border-width) solid var(--fmh-border);
}

.fmh-tags { margin: 0; font-size: 14px; }
.fmh-tags a { margin-right: 8px; }

.fmh-share {
	display: flex;
	align-items: center;
	gap: 12px;
}

.fmh-share__label {
	font-family: var(--fmh-font-accent);
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--fmh-muted-ink);
}

.fmh-share ul {
	display: flex;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fmh-share a {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: var(--fmh-border-width) solid var(--fmh-border);
	border-radius: 50%;
	color: var(--fmh-heading);
}

.fmh-share a:hover {
	background: var(--fmh-accent);
	border-color: var(--fmh-accent);
	color: #fff;
}

.fmh-author {
	display: flex;
	gap: 20px;
	margin-top: 34px;
	padding: 26px;
	background: var(--fmh-surface-alt);
	border-radius: var(--fmh-radius);
}

.fmh-author__avatar { border-radius: 50%; }
.fmh-author__name { margin: 0 0 6px; font-size: var(--fmh-h4); }
.fmh-author__bio { margin: 0; font-size: 15px; }

.fmh-post-nav { margin-top: 34px; }

.fmh-post-nav .nav-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.fmh-post-nav a {
	display: block;
	padding: 18px 22px;
	border: var(--fmh-border-width) solid var(--fmh-border);
	border-radius: var(--fmh-radius);
	color: var(--fmh-heading);
	font-family: var(--fmh-font-heading);
}

.fmh-post-nav a:hover { border-color: var(--fmh-accent); }

.fmh-post-nav span {
	display: block;
	margin-bottom: 4px;
	color: var(--fmh-accent-ink);
	font-size: 12px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.fmh-post-nav .nav-next { text-align: right; }

.fmh-related { margin-top: clamp(40px, 5vw, 70px); }

.fmh-none {
	max-width: var(--fmh-narrow);
	padding: clamp(30px, 4vw, 56px);
	background: var(--fmh-surface-alt);
	border-radius: var(--fmh-radius);
	text-align: center;
}

.fmh-none .fmh-searchform { max-width: 420px; margin-inline: auto; }

/* ---------------------------------------------------------------
 * 14. Widgets, forms and comments
 * ------------------------------------------------------------ */

.widget {
	margin-bottom: 34px;
	padding-bottom: 28px;
	border-bottom: var(--fmh-border-width) solid var(--fmh-border);
}

.widget:last-child { margin-bottom: 0; border-bottom: 0; }

.widget-title {
	margin-bottom: 16px;
	font-size: 18px;
	letter-spacing: 1px;
}

.widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.widget li {
	padding: 7px 0;
	border-bottom: 1px solid var(--fmh-border);
}

.widget li:last-child { border-bottom: 0; }

.fmh-searchform {
	display: flex;
	border: var(--fmh-border-width) solid var(--fmh-border);
	border-radius: var(--fmh-btn-radius);
	overflow: hidden;
	background: #fff;
}

.fmh-searchform__input {
	flex: 1;
	min-width: 0;
	padding: 12px 14px;
	border: 0;
	font: inherit;
	font-size: 15px;
	background: transparent;
	color: var(--fmh-heading);
}

.fmh-searchform__input:focus { outline: none; }

.fmh-searchform__submit {
	display: grid;
	place-items: center;
	width: 50px;
	border: 0;
	background: var(--fmh-accent);
	color: #fff;
	cursor: pointer;
}

.fmh-searchform__submit:hover { background: var(--fmh-accent-dark); }

.fmh-search-panel .fmh-searchform { max-width: 620px; margin-inline: auto; }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
select,
textarea {
	width: 100%;
	padding: 12px 14px;
	background: #fff;
	border: var(--fmh-border-width) solid var(--fmh-border);
	border-radius: var(--fmh-btn-radius);
	color: var(--fmh-heading);
	font: inherit;
	font-size: 15px;
}

input:focus,
select:focus,
textarea:focus {
	border-color: var(--fmh-accent);
	outline: none;
	box-shadow: 0 0 0 3px rgba(var(--fmh-accent-rgb), .18);
}

button,
input[type="submit"],
.wp-block-button__link {
	font-family: var(--fmh-font-accent);
}

input[type="submit"],
.comment-form .submit {
	padding: var(--fmh-btn-pad-y) var(--fmh-btn-pad-x);
	background: var(--fmh-accent);
	border: 0;
	border-radius: var(--fmh-btn-radius);
	color: #fff;
	font-size: var(--fmh-btn-size);
	font-weight: var(--fmh-btn-weight);
	letter-spacing: var(--fmh-btn-tracking);
	text-transform: var(--fmh-btn-transform);
	cursor: pointer;
}

.fmh-comments {
	margin-top: clamp(40px, 5vw, 70px);
	padding-top: clamp(30px, 4vw, 50px);
	border-top: var(--fmh-border-width) solid var(--fmh-border);
}

.fmh-comments__title { font-size: var(--fmh-h3); }

.fmh-comments__list,
.fmh-comments__list .children {
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
}

.fmh-comments__list .children { margin: 20px 0 0 clamp(16px, 4vw, 46px); }

.fmh-comments__list .comment-body {
	padding: 20px 22px;
	margin-bottom: 18px;
	background: var(--fmh-surface-alt);
	border-radius: var(--fmh-radius);
}

.fmh-comments__list .comment-author img {
	display: inline-block;
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 10px;
}

/* ---------------------------------------------------------------
 * 15. Odds and ends
 * ------------------------------------------------------------ */

.fmh-404 { text-align: center; }

.fmh-404__inner {
	max-width: var(--fmh-narrow);
	margin-inline: auto;
}

.fmh-404__code {
	margin: 0;
	font-family: var(--fmh-font-heading);
	font-size: clamp(90px, 18vw, 190px);
	font-weight: var(--fmh-heading-weight);
	line-height: .9;
	color: var(--fmh-accent);
	opacity: .22;
}

.fmh-404__title { margin-top: -.2em; }
.fmh-404__search { max-width: 420px; margin: 0 auto 26px; }

.fmh-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 70;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: var(--fmh-btn-radius);
	background: var(--fmh-accent);
	color: #fff;
	cursor: pointer;
	box-shadow: 0 10px 26px rgba(var(--fmh-shadow-rgb), .28);
	transition: opacity var(--fmh-transition) ease, transform var(--fmh-transition) ease;
}

.fmh-to-top:hover { background: var(--fmh-accent-dark); transform: translateY(-2px); }

.fmh-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .6s ease, transform .6s ease;
}

.fmh-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.fmh-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.fmh-hero--zoom .fmh-hero__media,
	.fmh-hero__scroll { animation: none; }
}

.fmh-landing > .alignfull,
.fmh-landing > .wp-block-cover { margin-inline: 0; }

.alignwide { width: min(100%, calc(var(--fmh-container) + 160px)); margin-inline: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.aligncenter { margin-inline: auto; }
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }

/* ---------------------------------------------------------------
 * 16. Responsive
 * ------------------------------------------------------------ */

@media (max-width: 1180px) {
	.fmh-cta__panel { grid-template-columns: auto minmax(0, 1fr); }
	.fmh-cta__text { grid-column: 2; }
	.fmh-cta__action { grid-column: 2; justify-self: start; }
}

/* Between 1024 and 1200 the header has a long menu, a long button and the
   advisory line all competing; the line is the least load-bearing of the three. */
@media (max-width: 1200px) {
	.fmh-brand__line { display: none; }
	.fmh-header__inner { --fmh-nav-gap: 20px; }
	.fmh-header__cta { --fmh-btn-pad-x: 16px; }
}

@media (max-width: 1024px) {
	.fmh-shell--sidebar,
	body.fmh-sidebar-left .fmh-shell--sidebar {
		grid-template-columns: minmax(0, 1fr);
	}

	body.fmh-sidebar-left .fmh-shell__aside { order: 0; }

	.fmh-pillars__list { --fmh-pillar-cols: 3 !important; }

	.fmh-pillars--ruled .fmh-pillar { border-left: 0; }

	.fmh-pillars--ruled .fmh-pillar:not(:nth-child(3n + 1)) {
		border-left: var(--fmh-border-width) solid var(--fmh-border);
	}

	.fmh-pillars--ruled .fmh-pillar:nth-child(n + 4) {
		margin-top: 26px;
		padding-top: 26px;
		border-top: var(--fmh-border-width) solid var(--fmh-border);
	}

	.fmh-process__list { --fmh-step-cols: 3 !important; row-gap: 34px; }
	.fmh-process--linked .fmh-step:nth-child(3n) .fmh-step__link { display: none; }

	.fmh-features__grid { --fmh-feature-cols: 1 !important; }

	.fmh-footer__main { grid-template-columns: minmax(0, 1fr); justify-items: center; text-align: center; }
	.fmh-footer__brand { justify-content: center; }
	.fmh-footer__meta { align-items: center; text-align: center; }
	.fmh-menu--legal { justify-content: center; }
}

@media (max-width: 860px) {
	.fmh-logo,
	.fmh-footer__logo { height: var(--fmh-logo-height-mobile); }
	.fmh-wordmark { --fmh-logo-height: var(--fmh-logo-height-mobile); }

	.fmh-hero__inner {
		grid-template-columns: minmax(0, 1fr);
		padding-block: 0 clamp(28px, 6vw, 48px);
	}

	.fmh-hero__copy {
		max-width: none;
		padding: clamp(28px, 7vw, 52px) 0 0;
	}

	.fmh-hero--reverse .fmh-hero__copy { padding-left: 0; }
	.fmh-hero--reverse .fmh-hero__inner { direction: ltr; }

	/* The photo goes back into the flow above the copy. */
	.fmh-hero__media,
	.fmh-hero--reverse .fmh-hero__media {
		position: relative;
		inset: auto;
		order: -1;
		width: 100vw;
		margin-left: calc(50% - 50vw);
		height: clamp(230px, 46vw, 360px);
	}

	.fmh-hero__photo { background-position: var(--fmh-hero-focus-mobile, center center); }
	.fmh-hero--fade .fmh-hero__wash { background: none; }

	.fmh-hero__badge--bottom-left,
	.fmh-hero__badge--bottom-right {
		position: static;
		max-width: none;
		margin-top: 26px;
	}

	.fmh-pillars--card .fmh-pillars__panel { margin-top: 0; }
	.fmh-pillars__list { --fmh-pillar-cols: 2 !important; }

	.fmh-pillars--ruled .fmh-pillar { border-left: 0 !important; border-top: 0; margin-top: 0; padding-top: 6px; }
	.fmh-pillars--ruled .fmh-pillar:not(:nth-child(2n + 1)) { border-left: var(--fmh-border-width) solid var(--fmh-border) !important; }
	.fmh-pillars--ruled .fmh-pillar:nth-child(n + 3) { margin-top: 22px; padding-top: 22px; border-top: var(--fmh-border-width) solid var(--fmh-border); }

	.fmh-process__list { --fmh-step-cols: 2 !important; }
	.fmh-process--linked .fmh-step__link { display: none !important; }

	.fmh-feature { flex-direction: column; }

	.fmh-cta__panel { grid-template-columns: minmax(0, 1fr); text-align: left; }
	.fmh-cta__text,
	.fmh-cta__action { grid-column: 1; }

	.fmh-signup-band__inner { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 700px) {
	/* The button is long enough to push the bar wider than a phone; the mobile
	   menu repeats it, so the bar keeps the logo and the burger only. */
	.fmh-header__cta { display: none; }
	.fmh-mobile-panel__cta .fmh-btn { width: 100%; }
}

@media (max-width: 560px) {
	.fmh-pillars__list,
	.fmh-process__list { --fmh-pillar-cols: 1 !important; --fmh-step-cols: 1 !important; }

	.fmh-pillars--ruled .fmh-pillar,
	.fmh-pillars--ruled .fmh-pillar:not(:nth-child(2n + 1)) { border-left: 0 !important; }

	.fmh-pillars--ruled .fmh-pillar + .fmh-pillar {
		margin-top: 22px;
		padding-top: 22px;
		border-top: var(--fmh-border-width) solid var(--fmh-border);
	}

	.fmh-hero__actions .fmh-btn { width: 100%; }
	.fmh-contact { grid-template-columns: minmax(0, 1fr); }
}

/* ---------------------------------------------------------------
 * 18. WPBakery rows carrying a FirstMission Health section
 *
 * The sections are already full-bleed and draw their own container, so the
 * builder's row and column chrome has to get out of the way entirely.
 *
 * js_composer's stylesheet is enqueued after this one and its .vc_column-inner
 * gutter has equal specificity, so these overrides are marked important. They
 * are scoped to our own row class, so nothing else in the builder is affected.
 *
 * The class is fmh-vc-row, not fmh-row: that one is already the blog
 * list-item row.
 * ------------------------------------------------------------ */

.fmh-vc-row,
.fmh-vc-row > .vc_column_container,
.fmh-vc-row > .vc_column_container > .vc_column-inner,
.fmh-vc-row .vc_column-inner,
.fmh-vc-row .wpb_wrapper {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	max-width: none !important;
	border: 0;
}

.fmh-vc-row { display: block !important; }

.fmh-vc-row .wpb_content_element { margin-bottom: 0; }

/* WPBakery's own full-width JS sets these inline; our sections need neither. */
.fmh-vc-row[data-vc-full-width] {
	left: auto !important;
	right: auto !important;
}
