/**
 * ISS site header — brand · primary nav · utilities.
 *
 * Loaded site-wide (see inc/header-nav.php). The7's masthead is switched off,
 * so nothing here is an override: every selector is namespaced `.iss-hdr` /
 * `.iss-drw` and the properties are declared explicitly so the parent theme's
 * broad `#page a`, `ul`, `button` rules can't leak in.
 *
 * Layout is a three-track grid — brand (auto) · nav (1fr, centered) ·
 * utilities (auto) — so the nav stays optically centered no matter how wide the
 * logo or the CTA gets, which is what the previous single-flex-row header
 * couldn't do.
 *
 * Panel anchoring: nav items are full bar height, so `top: 100%` on a panel
 * lands exactly on the bar's bottom edge and keeps doing so when the bar
 * shrinks on scroll. Simple dropdowns anchor to their item (position:relative);
 * mega panels anchor to the bar (item goes position:static) so they can span
 * the full viewport.
 */

/*
 * Bar height lives on both the header and its flow spacer so the two can never
 * disagree. The header is `position: fixed`, not sticky: The7 sets
 * `overflow: hidden` on #page, which silently disables sticky for every
 * descendant. Fixed doesn't care about ancestor overflow (no ancestor
 * establishes a containing block — #page and body both have transform: none),
 * and .iss-hdr-spacer holds the space the bar no longer occupies in flow.
 *
 * ONE bar height at every width, and one logo height with it — no per-breakpoint
 * ladder. That structure came in on 2026-09-13 and is kept; only the numbers
 * below have been re-derived for new artwork.
 *
 * The history, because the number has moved three times in three days. The bar was 84px
 * until 2026-09-12, when the new artwork landed: a stacked lock-up whose tagline
 * is 5% of its height where the old horizontal logo's was 17%, so keeping
 * "Streamlining the way your business performs business" legible costs roughly
 * 2.3x the logo height and the bar went to 128px to pay for it. On 2026-09-13
 * Danny asked for it back: at 128px the bar was 14% of a 900px viewport, and a
 * 40px hover pill centred in it left 44px of dead space under every nav label
 * before its dropdown could start. That pass bought the bar down to 104px by
 * accepting a 4.15px tagline — the phone's size, site-wide.
 *
 * 80px, and this one stopped being a trade. On 2026-09-14 Glenn sent a cut with
 * the tagline set BESIDE the mark rather than under it (3.87:1, near the old
 * 450x94 logo's proportions). A stacked lock-up gives 5.06% of its height to the
 * tagline; this one gives 8.79%. Same readable tagline, far less logo height.
 *
 * So the bar gets shorter AND the tagline gets bigger, which every previous pass
 * had to choose between: 104px -> 80px, while the tagline goes 4.15px -> 4.92px
 * of x-height. It is now shorter than the 84px this site ran before any of the
 * new artwork landed, and the tagline is larger than the 4.15px Danny accepted
 * on 2026-09-13 to get the bar down from 128px.
 *
 * The one-height-everywhere structure from that pass is kept deliberately —
 * there is still a single bar height and a single logo height at every width.
 * What is new is that the constraint changed: this cut is WIDE (217px against
 * the stacked cut's 163px), so the binding limit on a phone is now horizontal,
 * not vertical. 56px is the largest lock-up that still clears a 320px viewport
 * beside the burger. See .iss-hdr__logo.
 *
 * Everything that has to clear the bar reads this token; the only value that
 * needs hand-updating alongside it is `html`'s scroll-padding-top.
 */
.iss-hdr,
.iss-hdr-spacer {
	--iss-hdr-h: 80px;
}

.iss-hdr-spacer {
	height: var(--iss-hdr-h);
}

/*
 * In-page jumps must clear the fixed bar (70px once condensed) instead of
 * landing underneath it. Replaces the per-section scroll-margin-top that was
 * added as a workaround for The7's Phantom Menu, which no longer renders.
 *
 * This is the one number that does NOT read --iss-hdr-h: it is declared on
 * `html`, which is not inside either element that carries the token. It has now
 * moved four times with the bar -- 80px, 120px, 102px, 78px -- because an anchor
 * lands while the bar is CONDENSED, so it tracks the is-stuck height (70px, plus
 * its 1px border and a little air), not the resting one. If the bar changes
 * again, change this too or every in-page anchor lands under it.
 */
html {
	scroll-padding-top: 78px;
}

/*
 * Tokens, declared on BOTH roots.
 *
 * `.iss-drw` is a sibling of `.iss-hdr`, not a descendant, so tokens declared
 * only on the header are simply undefined inside the drawer — and a
 * `color: var(--undefined)` is invalid at computed-value time, which means the
 * declaration is dropped and the property *inherits* instead. In the drawer that
 * meant The7's link colour: every autocomplete row rendered in red. (The older
 * `.iss-drw` rules sidestepped this by hard-coding hex values.)
 */
.iss-hdr,
.iss-drw,
.iss-hdr-scrim {
	--iss-hdr-ink: #0b1b2b;
	--iss-hdr-link: #35485f;
	--iss-hdr-muted: #6b7c92;
	--iss-hdr-blue: #0d6fbb;
	--iss-hdr-blue-dark: #0b5f9f;
	--iss-hdr-line: #e4edf6;
	--iss-hdr-tint: rgba(12, 115, 201, .07);
	--iss-hdr-max: 1320px;
	--iss-hdr-shadow: 0 1px 0 rgba(15, 23, 42, .04);
	/*
	 * Every panel this is applied to hangs off the bar at `top: 100%` — the mega,
	 * the search sheet, and (since 2026-09-13) the simple dropdown. So it is not a
	 * float shadow and must not behave like one. It was
	 * `0 4px 12px rgba(…,.05), 0 22px 48px rgba(…,.11)`, which painted a grey wash
	 * across the bar the panel is attached to: measured off the mega at 1440px,
	 * the last 12px of bar above the seam graded 251 -> 245 instead of holding
	 * flat white.
	 *
	 * A shadow's top extent above its own box is `blur/2 + spread - offsetY`. The
	 * old pair put BOTH layers at exactly +2px (6-4 and 24-22) — the wash read
	 * much deeper than 2px only because a blur falls off gradually rather than
	 * stopping at that edge, which is why this was worth measuring in pixels and
	 * not just reading off the declaration.
	 *
	 * The negative spreads are the fix: -14px against 16px/32px gives -14, -26px
	 * against 28px/56px gives -26. Both land INSIDE the box, so there is no edge
	 * above the panel for a tail to fall off from. Same visual weight below, where
	 * the shadow is actually doing its job.
	 */
	--iss-hdr-panel-shadow:
		0 16px 32px -14px rgba(19, 40, 58, .22),
		0 28px 56px -26px rgba(19, 40, 58, .20);
	--iss-hdr-radius: 16px;
	--iss-hdr-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
	--iss-hdr-mono: "SF Mono", ui-monospace, "JetBrains Mono", Menlo, Consolas, monospace;
	--iss-hdr-ease: cubic-bezier(.2, .7, .2, 1);
}

.iss-hdr {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	font-family: var(--iss-hdr-font);
	-webkit-font-smoothing: antialiased;
}

/* Don't cover the WP admin bar for logged-in editors. */
body.admin-bar .iss-hdr {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .iss-hdr {
		top: 46px;
	}
}

.iss-hdr *,
.iss-drw * {
	box-sizing: border-box;
}

.iss-hdr__bar {
	position: relative;
	background: rgba(255, 255, 255, .88);
	-webkit-backdrop-filter: saturate(1.6) blur(14px);
	backdrop-filter: saturate(1.6) blur(14px);
	border-bottom: 1px solid rgba(215, 226, 238, .85);
	box-shadow: var(--iss-hdr-shadow);
	transition: box-shadow .3s var(--iss-hdr-ease), background .3s var(--iss-hdr-ease);
}

/*
 * 70px condensed, and THE LOGO DOES NOT MOVE — the bar tightens around it from
 * 12px of padding to 7px. That arrangement came in on 2026-09-13 and is kept.
 *
 * Every version before that shrank the logo on scroll (52->44, then 106->88)
 * because the bar had height to spare and the logo was the thing filling it.
 * Holding the logo instead is the better half to keep: ONE lock-up size serves
 * the bar, the condensed bar and the drawer, the tagline renders at one size in
 * every state rather than two, and a brand mark that stays put while the bar
 * contracts around it reads as the bar settling rather than the logo flinching.
 * The condense is 10px of height plus the background going opaque and the shadow
 * arriving, which was always where most of that signal came from.
 */
.iss-hdr.is-stuck {
	--iss-hdr-h: 70px;
}

.iss-hdr.is-stuck .iss-hdr__bar {
	background: rgba(255, 255, 255, .95);
	box-shadow: 0 1px 0 rgba(15, 23, 42, .05), 0 10px 30px rgba(19, 40, 58, .08);
}

.iss-hdr__inner {
	width: min(var(--iss-hdr-max), calc(100% - 48px));
	margin-inline: auto;
	height: var(--iss-hdr-h);
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: stretch;
	gap: 24px;
	transition: height .3s var(--iss-hdr-ease);
}

/* ---------------------------------------------------------------- brand --- */

.iss-hdr__brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	border-radius: 10px;
}

/*
 * The header logo is the RIGHT-SIDE cut — mark + "GROUP" with the tagline set
 * beside it on two italic lines, 720×186 (see ISS_LOGO_HEADER). The footer keeps
 * the stacked cut; they are different shapes for differently-shaped boxes, and
 * inc/header-nav.php explains why.
 *
 * Sized by height, so this number is really a TAGLINE size: the tagline is the
 * smallest type in the artwork, so it sets the floor and everything else follows.
 *
 *    56px -> 4.92px x-height, 217px wide -- rest, condensed, drawer, EVERY width.
 *
 * One value, no ladder — the 2026-09-13 structure, kept. What changed on
 * 2026-09-14 is which constraint picks the value.
 *
 * It used to be HEIGHT. The stacked cut gave 5.06% of its height to the tagline,
 * so a readable tagline meant a tall logo in a tall bar, and every pass traded
 * one against the other: 106px for desktop parity, then 82px for a 104px bar at
 * the cost of a 23%-shorter tagline. This cut gives 8.79%. At 56px its tagline
 * is LARGER than the 82px stacked one managed (4.92px against 4.15px) in a bar
 * 24px shorter. That trade is simply gone.
 *
 * It is now WIDTH, which has never been the constraint on this header before and
 * is worth stating plainly because it inverts an old note in this file. At 56px
 * the lock-up is 217px — near the old 450x94 logo's 220px, and 54px wider than
 * the stacked cut at 82px. The binding case is a 320px phone: the inner is 292px
 * there, the burger takes 42px and the grid gap 24px, leaving 226px. 56px fits
 * with 9px to spare; 58px leaves 1px and 62px overflows by 14px.
 *
 * So if this lock-up is ever made taller, check a 320px viewport before a
 * 1512px one — the desktop has 881px of slack in the nav track and the phone has
 * none.
 */
.iss-hdr__logo {
	display: block;
	height: 56px;
	width: auto;
	max-width: none;
	transition: height .3s var(--iss-hdr-ease);
}

/* Deliberately the same 56px: the bar condenses, the lock-up holds. The
   transition on .iss-hdr__logo above is now inert and stays only so that
   reinstating a condensed size is a one-line change. */
.iss-hdr.is-stuck .iss-hdr__logo {
	height: 56px;
}

/* ------------------------------------------------------------------ nav --- */

.iss-hdr__nav {
	display: flex;
	justify-content: center;
	min-width: 0;
}

.iss-hdr__menu {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.iss-hdr__item {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.iss-hdr__item.is-dropdown {
	position: relative;
}

.iss-hdr__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 100%;
	padding: 0 13px;
	color: var(--iss-hdr-link);
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -.005em;
	text-decoration: none;
	white-space: nowrap;
	border-radius: 11px;
	transition: color .18s var(--iss-hdr-ease);
}

/*
 * Hover/open surface: a fixed-height pill centred inside the full-height link.
 * It lives on the link (not the <li>) because mega items must stay
 * position:static for their panel to span the bar — so the <li> can't be the
 * pill's containing block. For items with a chevron the pill extends right to
 * cover the disclosure button, so label + chevron read as one target.
 */
.iss-hdr__link::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 40px;
	border-radius: 11px;
	background: transparent;
	transition: background .18s var(--iss-hdr-ease);
	pointer-events: none;
}

.iss-hdr__item.has-panel .iss-hdr__link::before {
	right: -24px;
}

.iss-hdr__item:hover .iss-hdr__link::before,
.iss-hdr__item.is-open .iss-hdr__link::before {
	background: var(--iss-hdr-tint);
}

.iss-hdr__item.has-panel .iss-hdr__link {
	padding-right: 5px;
}

.iss-hdr__link:hover,
.iss-hdr__item.is-open .iss-hdr__link,
.iss-hdr__item.is-current > .iss-hdr__link {
	color: var(--iss-hdr-blue);
}

.iss-hdr__item.is-current > .iss-hdr__link {
	font-weight: 650;
}

.iss-hdr__label {
	position: relative;
	z-index: 1; /* above the hover pill */
}

/* Current-page marker: a short rule that sits on the bar's bottom edge. */
.iss-hdr__item.is-current > .iss-hdr__link .iss-hdr__label::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -9px;
	height: 2px;
	border-radius: 2px;
	background: var(--iss-hdr-blue);
	opacity: .9;
}

.iss-hdr__disclose {
	position: relative;
	z-index: 1; /* above the link's hover pill, which extends over it */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 11px 0 3px;
	margin: 0;
	border: 0;
	background: none;
	color: var(--iss-hdr-muted);
	cursor: pointer;
	border-radius: 11px;
	-webkit-appearance: none;
	appearance: none;
}

.iss-hdr__item:hover .iss-hdr__disclose,
.iss-hdr__item.is-open .iss-hdr__disclose {
	color: var(--iss-hdr-blue);
}

.iss-hdr__chev {
	width: 10px;
	height: 7px;
	display: block;
	transition: transform .22s var(--iss-hdr-ease);
}

.iss-hdr__item.is-open .iss-hdr__chev {
	transform: rotate(180deg);
}

/* --------------------------------------------------------------- panels --- */

.iss-hdr__panel {
	position: absolute;
	top: 100%;
	z-index: 20;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	pointer-events: none;
	transition: opacity .2s var(--iss-hdr-ease), transform .24s var(--iss-hdr-ease), visibility .2s;
}

.iss-hdr__item.is-open > .iss-hdr__panel {
	opacity: 1;
	visibility: visible;
	transform: none;
	pointer-events: auto;
}

/*
 * Simple dropdown — HANGS OFF THE BAR, it does not float under it.
 *
 * This used to carry `margin-top: 10px` and a full 16px radius, which made it
 * the odd one out: the mega panel four rules down has always sat flush on the
 * bar's edge, so the same menu had two different physics depending on which
 * item you hovered. Danny called it on 2026-09-13 off /customers/ — "floating
 * over the page with a gap".
 *
 * Three things make it read as part of the bar rather than a card dropped on
 * the hero, and all three matter:
 *
 * 1. NO margin. `top: 100%` on a full-bar-height item already lands on the
 *    bar's bottom edge (see the file docblock), so the 10px was pure offset.
 *    The panel's own 1px top border now falls on the same row as the bar's
 *    `border-bottom`, continuing that hairline instead of hanging below it —
 *    which is exactly the trick the mega panel uses.
 * 2. SQUARE top corners. A box with four round corners is a card, wherever you
 *    put it. Rounding only what is not attached to something is what makes it
 *    read as drawn out of the bar.
 * 3. A shadow with no upward bleed — which is now what --iss-hdr-panel-shadow
 *    IS. Every panel that token reaches hangs off the bar, so it was retuned
 *    in place rather than overridden here; see the note on its declaration.
 */
.iss-hdr__item.is-dropdown > .iss-hdr__panel {
	left: 0;
	right: auto;
	min-width: 274px;
	max-width: 360px;
	padding: 10px;
	background: #fff;
	border: 1px solid var(--iss-hdr-line);
	border-radius: 0 0 var(--iss-hdr-radius) var(--iss-hdr-radius);
	box-shadow: var(--iss-hdr-panel-shadow);
}

/* Right-most items would push a left-aligned panel off-screen; iss-header.js
   measures on open and flips these to the item's right edge. */
.iss-hdr__item.is-dropdown.is-flipped > .iss-hdr__panel {
	left: auto;
	right: 0;
}

.iss-hdr__sub {
	display: grid;
	gap: 1px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.iss-hdr__sub-item {
	margin: 0;
	padding: 0;
	list-style: none;
}

.iss-hdr__sub-link {
	display: block;
	padding: 10px 12px;
	border-radius: 11px;
	text-decoration: none;
	transition: background .16s var(--iss-hdr-ease);
}

.iss-hdr__sub-link:hover {
	background: #f4f9fd;
}

.iss-hdr__sub-title {
	display: block;
	color: var(--iss-hdr-ink);
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -.01em;
}

.iss-hdr__sub-link:hover .iss-hdr__sub-title {
	color: var(--iss-hdr-blue);
}

.iss-hdr__sub-desc {
	display: block;
	margin-top: 3px;
	color: var(--iss-hdr-muted);
	font-size: 12.5px;
	font-weight: 400;
	line-height: 1.45;
}

.iss-hdr__sub-item.is-current > .iss-hdr__sub-link .iss-hdr__sub-title {
	color: var(--iss-hdr-blue);
}

/* `iss-mega-cta` is a panel-footer treatment in either panel type, so the class
   behaves the same wherever ISS puts it. */
.iss-hdr__sub-item.iss-mega-cta {
	margin-top: 6px;
	padding-top: 8px;
	border-top: 1px solid var(--iss-hdr-line);
}

.iss-hdr__sub-item.iss-mega-cta .iss-hdr__sub-title::after {
	content: " →";
	color: var(--iss-hdr-blue);
}

.iss-hdr__sub--nested {
	margin: 2px 0 4px 12px;
	padding-left: 10px;
	border-left: 1px solid var(--iss-hdr-line);
}

/* Mega panel — spans the bar, so the item itself must not be the anchor. */
.iss-hdr__item.is-mega {
	position: static;
}

.iss-hdr__item.is-mega > .iss-hdr__panel {
	left: 0;
	right: 0;
	background: #fff;
	border-top: 1px solid var(--iss-hdr-line);
	border-bottom: 1px solid var(--iss-hdr-line);
	box-shadow: var(--iss-hdr-panel-shadow);
}

.iss-hdr__mega {
	width: min(var(--iss-hdr-max), calc(100% - 48px));
	margin-inline: auto;
	padding: 32px 0 30px;
}

.iss-hdr__mega-cols {
	display: grid;
	gap: 26px 36px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.iss-hdr__mega--grouped .iss-hdr__mega-cols {
	grid-template-columns: repeat(auto-fit, minmax(196px, 1fr));
}

.iss-hdr__mega--cards .iss-hdr__mega-cols {
	grid-template-columns: repeat(auto-fit, minmax(236px, 1fr));
	gap: 10px 14px;
}

.iss-hdr__col {
	margin: 0;
	padding: 0;
	list-style: none;
	min-width: 0;
	/* Tracks spread evenly across the panel, but a column's contents stay a
	   readable measure instead of stretching its heading rule to 400px. */
	max-width: 290px;
}

.iss-hdr__col-head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--iss-hdr-line);
	text-decoration: none;
}

.iss-hdr__col-head::before {
	content: "";
	width: 14px;
	height: 1.5px;
	flex: none;
	background: var(--iss-hdr-blue);
	opacity: .65;
}

.iss-hdr__col-title {
	font-family: var(--iss-hdr-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--iss-hdr-muted);
	transition: color .16s var(--iss-hdr-ease);
}

a.iss-hdr__col-head:hover .iss-hdr__col-title {
	color: var(--iss-hdr-blue);
}

.iss-hdr__mega-list {
	display: grid;
	gap: 2px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.iss-hdr__mega-item {
	margin: 0;
	padding: 0;
	list-style: none;
	min-width: 0;
}

.iss-hdr__mega-link {
	display: block;
	padding: 9px 11px;
	border-radius: 12px;
	text-decoration: none;
	border: 1px solid transparent;
	transition: background .16s var(--iss-hdr-ease), border-color .16s var(--iss-hdr-ease), transform .2s var(--iss-hdr-ease);
}

.iss-hdr__mega-link:hover {
	background: #f4f9fd;
}

/* Cards get a resting surface — without one, five evenly-spaced links across a
   1320px panel read as a loose list rather than a product menu. */
.iss-hdr__mega--cards .iss-hdr__mega-link {
	padding: 14px 15px;
	background: #f8fbfd;
	border-color: #eaf1f8;
}

.iss-hdr__mega--cards .iss-hdr__mega-link:hover {
	background: #fff;
	border-color: #c9e0f2;
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(19, 40, 58, .07);
}

.iss-hdr__mega-title {
	display: block;
	color: var(--iss-hdr-ink);
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -.012em;
	transition: color .16s var(--iss-hdr-ease);
}

.iss-hdr__mega-link:hover .iss-hdr__mega-title,
.iss-hdr__mega-item.is-current .iss-hdr__mega-title {
	color: var(--iss-hdr-blue);
}

.iss-hdr__mega-desc {
	display: block;
	margin-top: 3px;
	color: var(--iss-hdr-muted);
	font-size: 12.5px;
	font-weight: 400;
	line-height: 1.45;
}

/* A menu item classed `iss-mega-cta` becomes the panel's footer band. */
.iss-hdr__mega-item.iss-mega-cta {
	grid-column: 1 / -1;
	margin-top: 8px;
	padding-top: 18px;
	border-top: 1px solid var(--iss-hdr-line);
}

.iss-hdr__mega-item.iss-mega-cta .iss-hdr__mega-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: linear-gradient(180deg, #f7fbfe, #f1f7fc);
	border-color: #dceaf6;
}

.iss-hdr__mega-item.iss-mega-cta .iss-hdr__mega-title::after {
	content: " →";
	color: var(--iss-hdr-blue);
}

/* ------------------------------------------------------------ utilities --- */

.iss-hdr__utils {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

.iss-hdr__search-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	margin: 0;
	color: var(--iss-hdr-link);
	background: transparent;
	border: 1px solid transparent;
	border-radius: 12px;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: background .18s var(--iss-hdr-ease), color .18s var(--iss-hdr-ease), border-color .18s var(--iss-hdr-ease);
}

.iss-hdr__search-btn:hover {
	color: var(--iss-hdr-blue);
	background: var(--iss-hdr-tint);
}

.iss-hdr__search-btn[aria-expanded="true"] {
	color: var(--iss-hdr-blue);
	background: var(--iss-hdr-tint);
	border-color: #dceaf6;
}

.iss-hdr__search-btn svg {
	width: 19px;
	height: 19px;
	display: block;
}

/* Specificity has to beat `.iss-hdr__search-btn svg { display: block }` above. */
.iss-hdr__search-btn .iss-hdr__icon-close,
.iss-hdr__search-btn[aria-expanded="true"] .iss-hdr__icon-search {
	display: none;
}

.iss-hdr__search-btn[aria-expanded="true"] .iss-hdr__icon-close {
	display: block;
}

/*
 * The header CTA is the Book a Demo button, so it wears the same red as every
 * other demo button on the site (`.iss-btn-demo`, css/iss-global.css). It also
 * has a job the in-page buttons don't: the header sits on white, over white
 * page grounds, next to eight blue nav links and a blue logo — a blue pill
 * there disappeared into its own chrome. Red is the only thing in the palette
 * that separates the one action from the navigation around it.
 *
 * The colour is on `.iss-hdr__cta` itself rather than scoped to the demo URL:
 * this is the header's single CTA slot, and whatever ISS puts in it (via the
 * `iss-cta` menu class) is by definition the site's primary action.
 */
.iss-hdr__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 42px;
	padding: 0 20px;
	color: #fff;
	background: linear-gradient(135deg, #ed3342, #c2202e);
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 650;
	line-height: 1;
	letter-spacing: -.005em;
	white-space: nowrap;
	text-decoration: none;
	box-shadow: 0 6px 16px rgba(237, 51, 66, .24);
	transition: transform .2s var(--iss-hdr-ease), box-shadow .2s var(--iss-hdr-ease), background .2s var(--iss-hdr-ease);
}

.iss-hdr__cta:hover {
	color: #fff;
	background: linear-gradient(135deg, #e12836, #a91a26);
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(237, 51, 66, .3);
}

.iss-hdr__burger {
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	margin: 0;
	color: var(--iss-hdr-ink);
	background: transparent;
	border: 1px solid var(--iss-hdr-line);
	border-radius: 12px;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.iss-hdr__burger-lines {
	display: grid;
	gap: 5px;
	width: 18px;
}

.iss-hdr__burger-lines span {
	display: block;
	height: 1.8px;
	border-radius: 2px;
	background: currentColor;
}

/* --------------------------------------------------------------- search --- */

/*
 * The parent theme styles bare `input[type="search"]` (see the7-css/custom.css:
 * border-style/-width from --the7-form-* plus `margin-bottom: 10px`), which at
 * 0,0,1,1 out-specifies a lone class selector. That's what used to paint a
 * second bordered box inside the search pill and knock the text off-centre.
 * Qualifying with the scope beats it at 0,0,2,1 without an `!important`.
 */
.iss-hdr input[type="search"],
.iss-hdr input[type="text"],
.iss-drw input[type="search"],
.iss-drw input[type="text"] {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
}

/* Dim the page so the sheet reads as a mode. The bar itself stays above the
   scrim and goes fully opaque, so the nav never looks greyed out. */
.iss-hdr-scrim {
	position: fixed;
	inset: 0;
	z-index: 999;
	background: rgba(9, 21, 34, .38);
	opacity: 0;
	transition: opacity .24s var(--iss-hdr-ease);
	cursor: pointer;
	-webkit-backdrop-filter: blur(1.5px);
	backdrop-filter: blur(1.5px);
}

.iss-hdr-scrim[hidden] {
	display: none;
}

.iss-hdr-scrim.is-open {
	opacity: 1;
}

.iss-hdr.is-searching .iss-hdr__bar {
	background: #fff;
	box-shadow: none;
	border-bottom-color: transparent;
}

.iss-hdr__search {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 15;
	background: #fff;
	border-bottom: 1px solid var(--iss-hdr-line);
	box-shadow: var(--iss-hdr-panel-shadow);
	padding: 0 0 14px;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity .2s var(--iss-hdr-ease), transform .26s var(--iss-hdr-ease);
}

.iss-hdr__search.is-open {
	opacity: 1;
	transform: none;
}

.iss-hdr__search[hidden] {
	display: none;
}

.iss-hdr__search-inner {
	width: min(var(--iss-hdr-max), calc(100% - 48px));
	margin-inline: auto;
}

/*
 * No box around the field: the sheet is the container. A hairline under the row
 * is all the structure a 22px input needs, and it means opening the sheet can't
 * look like a lit-up form control.
 */
.iss-hdr__search-form {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 4px 0 0;
	margin: 0;
	border-bottom: 1px solid var(--iss-hdr-line);
	transition: border-color .18s var(--iss-hdr-ease);
}

.iss-hdr__search-form:focus-within {
	border-bottom-color: #bcd9ef;
}

.iss-hdr__search-icon {
	width: 21px;
	height: 21px;
	flex: none;
	color: var(--iss-hdr-muted);
	transition: color .18s var(--iss-hdr-ease);
}

.iss-hdr__search-form:focus-within .iss-hdr__search-icon {
	color: var(--iss-hdr-blue);
}

.iss-hdr .iss-hdr__search-field {
	flex: 1 1 auto;
	min-width: 0;
	height: 66px;
	color: var(--iss-hdr-ink);
	outline: none;
	font-family: inherit;
	font-size: 22px;
	font-weight: 550;
	letter-spacing: -.018em;
}

.iss-hdr__search-field::placeholder {
	color: #9dabbc;
	font-weight: 400;
	letter-spacing: -.01em;
}

/* Native affordances duplicate our own clear button and spinner. */
.iss-hdr__search-field::-webkit-search-cancel-button,
.iss-hdr__search-field::-webkit-search-decoration,
.iss-hdr__search-field::-ms-clear {
	display: none;
	-webkit-appearance: none;
	appearance: none;
}

.iss-hdr__search-spinner {
	flex: none;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(12, 115, 201, .22);
	border-top-color: var(--iss-hdr-blue);
	border-radius: 50%;
	animation: iss-hdr-spin .6s linear infinite;
}

.iss-hdr__search-spinner[hidden] {
	display: none;
}

@keyframes iss-hdr-spin {
	to { transform: rotate(360deg); }
}

.iss-hdr__search-clear {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	margin: 0;
	color: var(--iss-hdr-muted);
	background: #f1f5f9;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: background .16s var(--iss-hdr-ease), color .16s var(--iss-hdr-ease);
}

.iss-hdr__search-clear[hidden] {
	display: none;
}

.iss-hdr__search-clear:hover {
	color: var(--iss-hdr-ink);
	background: #e3eaf2;
}

.iss-hdr__search-clear svg {
	width: 14px;
	height: 14px;
	display: block;
}

/* Keyboard affordances, in the mono voice the mega panels already use. */
.iss-hdr__search-hints {
	flex: none;
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: var(--iss-hdr-mono);
	font-size: 10.5px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #9dabbc;
	white-space: nowrap;
}

.iss-hdr__search-hints kbd {
	display: inline-block;
	padding: 3px 6px;
	background: #f5f8fb;
	border: 1px solid var(--iss-hdr-line);
	border-bottom-width: 2px;
	border-radius: 5px;
	font: inherit;
	color: var(--iss-hdr-link);
}

.iss-hdr__search-hints span {
	margin-right: 4px;
}

/* ----------------------------------------------------- autocomplete rows -- */

.iss-hdr__search-list {
	display: grid;
	gap: 2px;
	padding: 10px 0 0;
	/* Six rows clear a laptop viewport; anything shorter scrolls the list
	   instead of pushing the sheet past the fold. */
	max-height: calc(100vh - var(--iss-hdr-h) - 130px);
	overflow-y: auto;
	overscroll-behavior: contain;
}

.iss-hdr__search-list[hidden] {
	display: none;
}

.iss-hdr__search-group {
	display: block;
	padding: 12px 12px 6px;
	font-family: var(--iss-hdr-mono);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--iss-hdr-muted);
}

.iss-hdr__result {
	display: flex;
	align-items: center;
	gap: 14px;
	/*
	 * Required, not defensive. The row is a grid item, whose automatic minimum
	 * size is its min-content width — and a `nowrap` title's min-content is the
	 * whole untruncated string. Without this the row refuses to shrink and the
	 * ellipsis never engages: in the mobile drawer a 1012px row sat in a 319px
	 * container. Desktop had the same bug, hidden only by having 1320px to spare.
	 */
	min-width: 0;
	padding: 10px 12px;
	border: 1px solid transparent;
	border-radius: 12px;
	text-decoration: none;
	cursor: pointer;
	transition: background .14s var(--iss-hdr-ease), border-color .14s var(--iss-hdr-ease);
}

/* One highlight state for hover and for arrow-key selection, so the pointer
   and the keyboard never disagree about which row is active. */
.iss-hdr__result:hover,
.iss-hdr__result.is-active {
	background: #f4f9fd;
	border-color: #e2eef8;
}

.iss-hdr__result-media {
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	overflow: hidden;
	background: linear-gradient(180deg, #f5f9fc, #eef4fa);
	border: 1px solid #e8eff6;
	border-radius: 10px;
}

.iss-hdr__result-media img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

/* Fallback tile: without one, rows with and without a featured image would sit
   on different left edges and the list would lose its column. */
.iss-hdr__result-media svg {
	width: 20px;
	height: 20px;
	color: #9dbcd8;
}

.iss-hdr__result-body {
	flex: 1 1 auto;
	min-width: 0;
}

.iss-hdr__result-title {
	display: block;
	color: var(--iss-hdr-ink);
	font-size: 14.5px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -.012em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color .14s var(--iss-hdr-ease);
}

.iss-hdr__result:hover .iss-hdr__result-title,
.iss-hdr__result.is-active .iss-hdr__result-title {
	color: var(--iss-hdr-blue);
}

.iss-hdr__result-title mark {
	padding: 0;
	color: inherit;
	background: rgba(12, 115, 201, .13);
	border-radius: 3px;
	box-shadow: 0 0 0 1.5px rgba(12, 115, 201, .13);
}

.iss-hdr__result-meta {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-top: 4px;
	min-width: 0;
}

.iss-hdr__result-type {
	flex: none;
	font-family: var(--iss-hdr-mono);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--iss-hdr-blue);
	opacity: .8;
}

.iss-hdr__result-excerpt {
	flex: 1 1 auto;
	min-width: 0;
	color: var(--iss-hdr-muted);
	font-size: 12.5px;
	line-height: 1.45;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.iss-hdr__result-arrow {
	flex: none;
	width: 16px;
	height: 16px;
	color: var(--iss-hdr-blue);
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity .16s var(--iss-hdr-ease), transform .16s var(--iss-hdr-ease);
}

.iss-hdr__result:hover .iss-hdr__result-arrow,
.iss-hdr__result.is-active .iss-hdr__result-arrow {
	opacity: 1;
	transform: none;
}

/* Footer row — reachable by arrow keys like any other option. */
.iss-hdr__result--all {
	margin-top: 6px;
	padding: 13px 12px;
	background: linear-gradient(180deg, #f7fbfe, #f1f7fc);
	border-color: #dceaf6;
}

.iss-hdr__result--all .iss-hdr__result-title {
	color: var(--iss-hdr-blue);
	font-size: 13.5px;
}

.iss-hdr__search-note {
	margin: 0;
	padding: 22px 12px 10px;
	color: var(--iss-hdr-muted);
	font-size: 13.5px;
	line-height: 1.5;
}

.iss-hdr__search-note[hidden] {
	display: none;
}

.iss-hdr__search-note strong {
	color: var(--iss-hdr-ink);
	font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
	.iss-hdr__search,
	.iss-hdr-scrim,
	.iss-hdr__result,
	.iss-hdr__result-arrow {
		transition: none;
	}

	.iss-hdr__search {
		transform: none;
	}

	.iss-hdr__search-spinner {
		animation-duration: 1.6s;
	}
}

/* ------------------------------------------------------------ focus ring -- */

.iss-hdr a:focus-visible,
.iss-hdr button:focus-visible,
.iss-drw a:focus-visible,
.iss-drw button:focus-visible {
	outline: 3px solid rgba(12, 115, 201, .3);
	outline-offset: 2px;
	border-radius: 10px;
}

/*
 * The search field is focused programmatically the instant the sheet opens, so
 * a ring here would be a permanent "highlighted" resting state rather than a
 * navigation cue. The caret plus the hairline under the row carry it; the
 * drawer's field keeps a ring because it is reached by Tab, not by autofocus.
 */
.iss-hdr__search-field:focus,
.iss-hdr__search-field:focus-visible {
	outline: none;
	box-shadow: none;
}

.iss-drw__search:focus-within {
	border-color: #b9d7ee;
	box-shadow: 0 0 0 4px rgba(12, 115, 201, .1);
}

/* ---------------------------------------------------------- mobile drawer - */

.iss-drw {
	position: fixed;
	inset: 0;
	z-index: 1100;
	font-family: var(--iss-hdr-font, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif);
}

.iss-drw[hidden] {
	display: none;
}

.iss-drw__scrim {
	position: absolute;
	inset: 0;
	background: rgba(9, 20, 33, .5);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	opacity: 0;
	transition: opacity .28s cubic-bezier(.2, .7, .2, 1);
}

.iss-drw__sheet {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(430px, 90vw);
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 18px 22px 30px;
	background: #fff;
	overflow-y: auto;
	overscroll-behavior: contain;
	box-shadow: -24px 0 60px rgba(19, 40, 58, .18);
	transform: translateX(100%);
	transition: transform .32s cubic-bezier(.2, .7, .2, 1);
}

.iss-drw.is-open .iss-drw__scrim {
	opacity: 1;
}

.iss-drw.is-open .iss-drw__sheet {
	transform: none;
}

.iss-drw__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

/*
 * The brand link is a flex item next to a fixed 42px close button; `flex: none`
 * keeps the mark at its intended size and lets the sheet's own padding absorb
 * the difference. This was load-bearing against the old 220px-wide horizontal
 * lock-up, which shrank into a clipped tagline on narrow phones. The compact
 * cut is 78px here, so there is no longer anything to squeeze — the rule stays
 * because the close button is still fixed-width and shrinking a logo to fit a
 * button is never the right trade.
 */
.iss-drw__brand {
	flex: none;
	line-height: 0;
}

/* 56px matches the bar's own logo height, so the drawer opens onto the same
   lock-up at the same size the bar behind it is showing. The tagline lands at a
   4.92px x-height, against 4.21px for the outgoing logo at 36px. */
.iss-drw__logo {
	display: block;
	height: 56px;
	width: auto;
	max-width: none;
}

.iss-drw__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	color: #35485f;
	background: #f5f8fb;
	border: 1px solid #e4edf6;
	border-radius: 12px;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.iss-drw__close svg {
	width: 18px;
	height: 18px;
	display: block;
}

.iss-drw__search-wrap {
	display: grid;
	gap: 4px;
}

.iss-drw__search {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 10px 0 16px;
	background: #f7fafc;
	border: 1px solid #e4edf6;
	border-radius: 14px;
}

.iss-drw__search > svg {
	width: 18px;
	height: 18px;
	flex: none;
	color: #6b7c92;
}

.iss-drw__search input {
	flex: 1 1 auto;
	min-width: 0;
	height: 50px;
	padding: 0;
	color: #0b1b2b;
	background: transparent;
	border: 0;
	outline: none;
	box-shadow: none;
	font-family: inherit;
	/* 16px minimum, or iOS Safari zooms the viewport on focus. */
	font-size: 16px;
	-webkit-appearance: none;
	appearance: none;
}

.iss-drw__search input::-webkit-search-cancel-button,
.iss-drw__search input::-webkit-search-decoration {
	display: none;
	-webkit-appearance: none;
	appearance: none;
}

/* Suggestions inside the sheet: the drawer already scrolls, so the list grows
   in flow rather than overlaying the menu below it. */
.iss-drw__results {
	display: grid;
	gap: 2px;
	max-height: 46vh;
	overflow-y: auto;
	/* Explicit, so it can't pair with `visible` and compute to `auto` — that
	   gave the list a horizontal scrollbar of its own. */
	overflow-x: hidden;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	margin: 2px -6px 0;
	padding: 2px 6px;
	/* Fades the last row out instead of slicing it in half, so the cut reads as
	   "more below" rather than as a broken layout. */
	-webkit-mask-image: linear-gradient(180deg, #000 calc(100% - 28px), transparent);
	mask-image: linear-gradient(180deg, #000 calc(100% - 28px), transparent);
}

.iss-drw__results[hidden] {
	display: none;
}

.iss-drw__results .iss-hdr__search-group {
	padding: 6px 12px 4px;
}

.iss-drw__results .iss-hdr__result-media {
	width: 44px;
	height: 44px;
}

.iss-drw__results .iss-hdr__result-arrow {
	display: none;
}

.iss-drw__search-wrap .iss-hdr__search-note {
	padding: 10px 12px 4px;
	font-size: 13px;
}

.iss-drw__menu,
.iss-drw__sub {
	margin: 0;
	padding: 0;
	list-style: none;
}

.iss-drw__item {
	margin: 0;
	padding: 0;
	list-style: none;
}

.iss-drw__item.depth-0 + .iss-drw__item.depth-0 {
	border-top: 1px solid #eef3f8;
}

.iss-drw__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
}

.iss-drw__link {
	flex: 1 1 auto;
	display: block;
	padding: 15px 2px;
	color: #0b1b2b;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: -.015em;
	text-decoration: none;
}

.iss-drw__item.is-current > .iss-drw__row > .iss-drw__link {
	color: #0d6fbb;
}

.iss-drw__toggle {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	color: #6b7c92;
	background: transparent;
	border: 0;
	border-radius: 10px;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.iss-drw__toggle .iss-hdr__chev {
	width: 12px;
	height: 8px;
	transition: transform .22s cubic-bezier(.2, .7, .2, 1);
}

.iss-drw__toggle[aria-expanded="true"] {
	color: #0d6fbb;
}

.iss-drw__toggle[aria-expanded="true"] .iss-hdr__chev {
	transform: rotate(180deg);
}

.iss-drw__panel[hidden] {
	display: none;
}

.iss-drw__sub {
	padding: 0 0 12px 4px;
	display: grid;
	gap: 0;
}

.iss-drw__sub .iss-drw__link {
	padding: 10px 12px;
	color: #4b5b70;
	font-size: 14.5px;
	font-weight: 500;
	border-radius: 10px;
}

.iss-drw__sub .iss-drw__link:hover {
	background: #f4f9fd;
	color: #0d6fbb;
}

.iss-drw__sub .iss-drw__sub {
	padding-left: 14px;
	margin-left: 10px;
	border-left: 1px solid #eef3f8;
}

.iss-drw__ctas {
	display: grid;
	gap: 10px;
	margin-top: auto;
	padding-top: 8px;
}

.iss-drw__cta {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	padding: 0 22px;
	border-radius: 999px;
	font-size: 15.5px;
	font-weight: 650;
	text-decoration: none;
	border: 1px solid transparent;
}

/* Same call as `.iss-hdr__cta` above — the drawer's primary CTA is the same
   Book a Demo button, at the one size where the desktop header hides it. */
.iss-drw__cta.is-primary {
	color: #fff;
	background: linear-gradient(135deg, #ed3342, #c2202e);
	box-shadow: 0 8px 20px rgba(237, 51, 66, .26);
}

.iss-drw__cta.is-secondary {
	color: #0b1b2b;
	background: #fff;
	border-color: #d3e0ec;
}

/* Scroll lock while the drawer is open. */
body.iss-drw-open {
	overflow: hidden;
}

/* -------------------------------------------------------------- responsive */

/* Tighten the nav before dropping it, so the breakpoint isn't premature. */
@media (max-width: 1240px) {
	.iss-hdr__inner {
		width: calc(100% - 36px);
		gap: 14px;
	}

	.iss-hdr__link {
		padding: 0 10px;
		font-size: 14px;
	}

	.iss-hdr__disclose {
		padding: 0 8px 0 2px;
	}

	.iss-hdr__item.has-panel .iss-hdr__link::before {
		right: -20px; /* matches the tighter chevron button */
	}
}

/*
 * No height override here any more. This block used to carry 120px/97px and a
 * 106px condensed state; since 2026-09-13 there is ONE bar and logo height at
 * every width (80px/56px), so a tablet inherits it and there is one fewer place
 * for the ladder to drift. What's left is genuinely tablet-only: the nav goes
 * behind the burger.
 */
@media (max-width: 1080px) {
	.iss-hdr__inner {
		grid-template-columns: auto 1fr;
	}

	.iss-hdr__nav,
	.iss-hdr__search-btn {
		display: none;
	}

	.iss-hdr__burger {
		display: inline-flex;
	}
}

@media (max-width: 600px) {
	.iss-hdr__inner {
		width: calc(100% - 28px);
	}

	.iss-hdr__cta {
		display: none;
	}

	/*
	 * The phone sets no height of its own — 80px/56px is the base at every width.
	 * What is still phone-only is that the bar does NOT condense on scroll, and it
	 * never did (the old rule pinned both states to 36px): the scroll-shrink is a
	 * desktop affordance, and taking 10px off an 80px bar on an 844px screen buys
	 * back little.
	 */
	.iss-hdr.is-stuck {
		--iss-hdr-h: 80px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.iss-hdr *,
	.iss-drw * {
		transition-duration: .01ms !important;
	}

	.iss-hdr__cta:hover,
	.iss-hdr__mega--cards .iss-hdr__mega-link:hover {
		transform: none;
	}
}
