.rabbit-header {
	--rabbit-header-primary: rgb(var(--white-rabbit--preset--color-primary, 55 107 251) / 1);
	--rabbit-header-primary-soft: rgb(var(--white-rabbit--preset--color-primary, 55 107 251) / .1);
	--rabbit-header-border: #e6ecf0;
	--rabbit-header-muted: #f5f8fa;
	position: relative;
	z-index: 50;
	isolation: isolate;
	color: #41525f;
}

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

.rabbit-header-search-lock {
	overflow: hidden;
}

.rabbit-header__search-backdrop {
	position: fixed;
	z-index: 1;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: rgb(35 46 54 / .46);
	opacity: 0;
	pointer-events: none;
	transition: opacity 180ms ease;
}

.rabbit-header.is-search-open .rabbit-header__search-backdrop {
	opacity: 1;
	pointer-events: auto;
}

.rabbit-header__search-layer {
	min-width: 0;
}

.rabbit-header.is-search-open .rabbit-header__search-layer {
	z-index: 2;
}

.rabbit-header__bar {
	position: relative;
	min-height: 60px;
	padding-block: 10px;
}

.rabbit-header__brand {
	display: flex;
	align-items: center;
}

.rabbit-header__brand img {
	width: auto;
	height: 40px;
	max-height: 40px;
	object-fit: contain;
}

.rabbit-header__actions {
	position: relative;
}

.rabbit-header__navigation,
.rabbit-header__menu {
	min-width: 0;
}

.rabbit-header__navigation {
	position: relative;
}

.rabbit-header__menu,
.rabbit-header__submenu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.rabbit-header__menu {
	display: flex;
	align-items: center;
	gap: 3px;
}

.rabbit-header__menu li {
	--rabbit-menu-item-accent: var(--rabbit-header-primary);
	margin: 0;
	font-weight: 400;
	list-style: none;
}

.rabbit-header__menu > li,
.rabbit-header__submenu > li {
	position: relative;
	display: flex;
	min-width: 0;
	align-items: center;
}

.rabbit-header__menu a {
	display: inline-flex;
	min-width: 0;
	min-height: 36px;
	align-items: center;
	padding: 8px 11px;
	border-radius: 6px;
	color: #566977;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 20px;
	text-decoration: none;
	transition: background-color 150ms ease, color 150ms ease;
}

.rabbit-header__menu a:hover,
.rabbit-header__menu a:focus-visible,
.rabbit-header__menu .current-menu-item > a,
.rabbit-header__menu .current-menu-parent > a {
	background: var(--rabbit-header-muted);
	color: #232e36;
	outline: none;
}

.rabbit-header__submenu-toggle {
	display: inline-grid;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	place-items: center;
	margin-right: 4px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: currentColor;
	cursor: pointer;
}

.rabbit-header__submenu-toggle:hover,
.rabbit-header__submenu-toggle:focus-visible {
	background: rgb(255 255 255 / .18);
	outline: none;
}

.rabbit-header__submenu-toggle:focus-visible {
	box-shadow: 0 0 0 2px var(--rabbit-header-primary);
}

.rabbit-header__submenu-toggle svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 160ms ease;
}

.rabbit-header__menu li.is-submenu-open > .rabbit-header__submenu-toggle svg {
	transform: rotate(180deg);
}

.rabbit-header__submenu {
	position: absolute;
	z-index: 5;
	top: calc(100% + 7px);
	left: 0;
	width: 244px;
	padding: 7px;
	border: 1px solid var(--rabbit-header-border);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 42px rgb(35 46 54 / .14);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-6px);
	transform-origin: top center;
	transition: opacity 160ms ease, transform 190ms cubic-bezier(.2, .75, .3, 1), visibility 160ms ease;
}

.rabbit-header__submenu::before {
	position: absolute;
	top: -8px;
	right: 0;
	left: 0;
	height: 8px;
	content: '';
}

.rabbit-header__menu > li.aligns-right > .rabbit-header__submenu {
	right: 0;
	left: auto;
}

.rabbit-header__submenu .rabbit-header__submenu {
	top: -8px;
	left: calc(100% + 7px);
}

.rabbit-header__submenu li.opens-left > .rabbit-header__submenu {
	right: calc(100% + 7px);
	left: auto;
}

.rabbit-header__submenu > li {
	min-height: 38px;
	border-radius: 6px;
	color: #566977;
}

.rabbit-header__submenu > li:hover,
.rabbit-header__submenu > li:focus-within,
.rabbit-header__submenu > li.current-menu-item,
.rabbit-header__submenu > li.current-menu-ancestor {
	background: var(--rabbit-header-muted);
	color: var(--rabbit-menu-item-accent);
}

.rabbit-header__submenu a {
	width: 100%;
	min-height: 38px;
	flex: 1;
	padding: 8px 9px;
	border-radius: 6px;
	background: transparent;
	color: inherit;
	font-size: 13px;
	font-weight: 400;
}

.rabbit-header__submenu a:hover,
.rabbit-header__submenu a:focus-visible,
.rabbit-header__submenu .current-menu-item > a {
	background: transparent;
	color: inherit;
}

.rabbit-header__submenu .rabbit-header__submenu-toggle svg {
	transform: rotate(-90deg);
}

.rabbit-header__submenu li.is-submenu-open > .rabbit-header__submenu-toggle svg {
	transform: rotate(90deg);
}

.rabbit-header[data-menu-animation="none"] .rabbit-header__submenu {
	transition: none;
	transform: none;
}

.rabbit-header[data-menu-animation="fade"] .rabbit-header__submenu {
	transform: none;
}

.rabbit-header__menu li.is-submenu-open > .rabbit-header__submenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(0);
}

.rabbit-header__compact-navigation,
.rabbit-header__editorial-navigation {
	overflow: visible;
}

.rabbit-header__compact-navigation {
	--rabbit-header-underline-offset: -11px;
}

.rabbit-header__editorial-navigation {
	--rabbit-header-underline-offset: -7px;
}

.rabbit-header__compact-navigation {
	flex: 1 1 auto;
	margin-left: 12px;
	margin-right: auto;
}

.rabbit-header__compact-navigation .rabbit-header__menu {
	justify-content: flex-start;
}

.rabbit-header__compact-navigation .rabbit-header__menu,
.rabbit-header__editorial-navigation .rabbit-header__menu {
	max-width: 100%;
}

.rabbit-header__compact-navigation.has-overflow > .rabbit-header__menu,
.rabbit-header__editorial-navigation.has-overflow > .rabbit-header__menu {
	overflow: hidden;
}

.rabbit-header__compact-navigation > .rabbit-header__menu > li,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li {
	color: #566977;
	transition: color 150ms ease;
}

.rabbit-header__compact-navigation > .rabbit-header__menu > li::after,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li::after {
	position: absolute;
	right: 0;
	bottom: var(--rabbit-header-underline-offset, 0);
	left: 0;
	height: 2px;
	background: var(--rabbit-menu-item-accent);
	content: '';
	pointer-events: none;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 180ms cubic-bezier(.2, .75, .3, 1);
}

.rabbit-header__compact-navigation > .rabbit-header__menu > li:hover,
.rabbit-header__compact-navigation > .rabbit-header__menu > li:focus-within,
.rabbit-header__compact-navigation > .rabbit-header__menu > li.current-menu-item,
.rabbit-header__compact-navigation > .rabbit-header__menu > li.current-menu-parent,
.rabbit-header__compact-navigation > .rabbit-header__menu > li.current-menu-ancestor,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li:hover,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li:focus-within,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li.current-menu-item,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li.current-menu-parent,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li.current-menu-ancestor {
	background: transparent;
	color: var(--rabbit-menu-item-accent);
}

.rabbit-header__compact-navigation > .rabbit-header__menu > li:hover::after,
.rabbit-header__compact-navigation > .rabbit-header__menu > li:focus-within::after,
.rabbit-header__compact-navigation > .rabbit-header__menu > li.current-menu-item::after,
.rabbit-header__compact-navigation > .rabbit-header__menu > li.current-menu-parent::after,
.rabbit-header__compact-navigation > .rabbit-header__menu > li.current-menu-ancestor::after,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li:hover::after,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li:focus-within::after,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li.current-menu-item::after,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li.current-menu-parent::after,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li.current-menu-ancestor::after {
	transform: scaleX(1);
}

.rabbit-header__compact-navigation > .rabbit-header__menu > li > a,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li > a {
	min-height: 34px;
	padding: 7px 13px;
	border-radius: 0;
	background: transparent;
	color: inherit;
	font-size: 14px;
	font-weight: 400;
	white-space: nowrap;
}

.rabbit-header__compact-navigation > .rabbit-header__menu > li > a:hover,
.rabbit-header__compact-navigation > .rabbit-header__menu > li > a:focus-visible,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li > a:hover,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li > a:focus-visible {
	background: transparent;
	color: inherit;
}

.rabbit-header__compact-navigation > .rabbit-header__menu > li.menu-item-has-children > a,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li.menu-item-has-children > a {
	padding-right: 2px;
}

.rabbit-header__compact-navigation > .rabbit-header__menu > li > .rabbit-header__submenu-toggle,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li > .rabbit-header__submenu-toggle {
	width: 24px;
	flex-basis: 24px;
	margin-left: -2px;
	margin-right: 5px;
	background: transparent;
}

.rabbit-header__compact-navigation > .rabbit-header__menu > li > .rabbit-header__submenu-toggle svg,
.rabbit-header__editorial-navigation > .rabbit-header__menu > li > .rabbit-header__submenu-toggle svg {
	width: 20px;
	height: 20px;
}

.rabbit-header__overflow-item[hidden] {
	display: none !important;
}

.rabbit-header__mobile-nav-toggle,
.rabbit-header__more-button,
.rabbit-header__search-trigger {
	display: inline-flex;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #6d808f;
	cursor: pointer;
	transition: background-color 150ms ease, color 150ms ease;
}

.rabbit-header__mobile-nav-toggle:hover,
.rabbit-header__mobile-nav-toggle:focus-visible,
.rabbit-header__more-button:hover,
.rabbit-header__more-button:focus-visible,
.rabbit-header__search-trigger:hover,
.rabbit-header__search-trigger:focus-visible {
	background: var(--rabbit-header-muted);
	color: #232e36;
	outline: none;
}

.rabbit-header__mobile-nav-toggle svg,
.rabbit-header__more-button svg,
.rabbit-header__search-trigger svg,
.rabbit-header__core-search-icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.rabbit-header__mobile-nav-toggle,
.rabbit-header--compact .rabbit-header__mobile-nav-toggle {
	display: none;
}

.rabbit-header__core-search,
.rabbit-header [data-header-search] {
	width: min(100%, 720px);
	max-width: 720px;
	margin-inline: auto;
}

.rabbit-header-search-input,
.rabbit-header__core-search input[type="search"] {
	height: 40px;
	border: 0;
	border-radius: 12px;
	box-shadow: none;
	font-weight: 400;
}

.rabbit-header-search-input:focus,
.rabbit-header__core-search input[type="search"]:focus {
	border: 0;
	box-shadow: 0 0 0 2px var(--rabbit-header-primary);
	outline: none;
}

.rabbit-header__core-search-icon {
	position: absolute;
	right: 16px;
	display: inline-flex;
	color: #99abb8;
	pointer-events: none;
}

.rabbit-header__core-search-close {
	position: absolute;
	right: 12px;
	display: none;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #6d808f;
	cursor: pointer;
}

.rabbit-header__core-search-close svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
}

.rabbit-header.is-search-open .rabbit-header__core-search-close {
	display: inline-flex;
}

.rabbit-header.is-search-open .rabbit-header__core-search-icon {
	display: none;
}

.rabbit-header__blog-navigation {
	display: flex;
	justify-content: flex-end;
}

.rabbit-header__editorial-row {
	position: relative;
	width: 100%;
	border-top: 1px solid var(--rabbit-header-border);
	border-bottom: 1px solid var(--rabbit-header-border);
	background: #fff;
}

.rabbit-header__editorial-inner {
	width: 100%;
	max-width: 1536px;
	margin-inline: auto;
	padding-inline: 20px;
}

.rabbit-header__editorial-navigation .rabbit-header__menu {
	width: max-content;
	min-width: 100%;
	min-height: 48px;
	gap: 4px;
	padding-block: 6px;
}

.rabbit-header--editorial .rabbit-header__bar {
	min-height: 64px;
	gap: 20px;
	padding-block: 10px;
}

.rabbit-header--editorial .rabbit-header__brand {
	width: auto;
	min-width: min(200px, 22vw);
}

.rabbit-header--editorial .rabbit-header__actions {
	gap: 3px;
}

.rabbit-header--compact .rabbit-header__bar {
	min-height: 56px;
	gap: 8px;
	padding-block: 8px;
	border-bottom: 1px solid var(--rabbit-header-border);
}

.rabbit-header--compact .rabbit-header__brand {
	width: auto;
	min-width: max-content;
}

.rabbit-header--compact .rabbit-header__actions {
	gap: 2px;
}

.rabbit-header--compact [data-header-search],
.rabbit-header--compact [data-header-core-search] {
	display: none;
}

.rabbit-header--compact .rabbit-header__priority-action {
	display: none;
}

.rabbit-header--compact.is-search-open .rabbit-header__brand,
.rabbit-header--compact.is-search-open .rabbit-header__compact-navigation,
.rabbit-header--compact.is-search-open .rabbit-header__actions,
.rabbit-header--compact.is-search-open .rabbit-header__mobile-nav-toggle {
	display: none !important;
}

.rabbit-header--compact.is-search-open [data-header-search],
.rabbit-header--compact.is-search-open [data-header-core-search] {
	display: flex !important;
	width: calc(100% - 32px);
	max-width: none;
	flex: 1 1 auto;
	margin-inline: 16px;
}

.rabbit-header__more-menu,
.rabbit-header__mobile-navigation {
	position: absolute;
	z-index: 5;
	padding: 7px;
	border: 1px solid var(--rabbit-header-border);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 14px 38px rgb(35 46 54 / .14);
}

.rabbit-header__more-menu {
	top: calc(100% + 7px);
	right: 0;
	min-width: 232px;
}

.rabbit-header__more-menu[hidden],
.rabbit-header__mobile-navigation[hidden],
[data-rabbit-notification-indicator][hidden] {
	display: none !important;
}

.rabbit-header__more-menu a {
	display: flex;
	min-height: 40px;
	align-items: center;
	gap: 10px;
	padding: 5px 8px;
	border-radius: 6px;
	color: #566977;
	font-size: 13px;
	font-weight: 400;
	text-decoration: none;
	transition: background-color 150ms ease, color 150ms ease;
}

.rabbit-header__more-menu a:hover,
.rabbit-header__more-menu a:focus-visible,
.rabbit-header__more-menu a.is-current {
	background: var(--rabbit-header-muted);
	color: #232e36;
	outline: none;
}

.rabbit-header__more-menu a.is-current {
	color: var(--rabbit-header-primary);
}

.rabbit-header__more-icon {
	display: grid;
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	place-items: center;
	border-radius: 6px;
	background: var(--rabbit-header-muted);
	color: #6d808f;
}

.rabbit-header__more-icon svg,
.rabbit-header__more-icon img {
	width: 18px;
	height: 18px;
}

.rabbit-header__more-icon svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.rabbit-header__more-icon img {
	object-fit: contain;
}

.rabbit-header__mobile-navigation {
	top: calc(100% + 6px);
	right: 8px;
	left: 8px;
}

.rabbit-header__mobile-navigation .rabbit-header__menu {
	display: grid;
	gap: 2px;
}

.rabbit-header__mobile-navigation .rabbit-header__menu > li {
	flex-wrap: wrap;
	border-radius: 7px;
}

.rabbit-header__mobile-navigation .rabbit-header__menu > li:hover,
.rabbit-header__mobile-navigation .rabbit-header__menu > li:focus-within,
.rabbit-header__mobile-navigation .rabbit-header__menu > li.current-menu-item,
.rabbit-header__mobile-navigation .rabbit-header__menu > li.current-menu-ancestor {
	background: var(--rabbit-header-primary-soft);
	color: var(--rabbit-header-primary);
}

.rabbit-header__mobile-navigation .rabbit-header__menu a {
	width: auto;
	min-height: 40px;
	flex: 1;
	padding: 8px 10px;
	background: transparent;
	font-size: 13px;
	font-weight: 400;
}

@media (min-width: 782px) {
	/* Docked workspaces consume the full width left by their navigation rail. */
	.rabbit-header--layout1 .rabbit-header__bar,
	.rabbit-header--layout1 .rabbit-header__editorial-inner {
		max-width: none;
		margin-inline: 0;
	}

	.rabbit-header--editorial.rabbit-header--layout1,
	.rabbit-header--editorial.rabbit-header--layout1 .rabbit-header__bar {
		border-top-right-radius: 8px;
	}

	.rabbit-header--editorial.rabbit-header--layout1,
	.rabbit-header--editorial.rabbit-header--layout1 .rabbit-header__editorial-row {
		border-bottom-right-radius: 8px;
	}

	.rabbit-header--editorial.rabbit-header--layout2 .rabbit-header__bar {
		border-top-left-radius: 12px;
		border-top-right-radius: 12px;
	}

	.rabbit-header--editorial.rabbit-header--layout2 .rabbit-header__editorial-row {
		border-bottom-right-radius: 12px;
		border-bottom-left-radius: 12px;
	}

	.rabbit-header__menu li:hover > .rabbit-header__submenu,
	.rabbit-header__menu li:focus-within > .rabbit-header__submenu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translate(0);
	}

	.rabbit-header:not(.rabbit-header--compact) .rabbit-header__search-trigger {
		display: none;
	}

	.rabbit-header--compact .rabbit-header__mobile-navigation {
		display: none !important;
	}
}

@media (max-width: 1249px) {
	.rabbit-header--editorial .rabbit-header__editorial-inner {
		padding-inline: 16px;
	}

	.rabbit-header--editorial .rabbit-header__brand {
		min-width: max-content;
	}

}

@media (max-width: 781px) {
	.rabbit-header__bar,
	.rabbit-header--editorial .rabbit-header__bar,
	.rabbit-header--compact .rabbit-header__bar {
		min-height: 60px;
		gap: 6px;
		padding: 8px 10px;
	}

	.rabbit-header__brand,
	.rabbit-header__actions,
	.rabbit-header--editorial .rabbit-header__brand,
	.rabbit-header--editorial .rabbit-header__actions,
	.rabbit-header--compact .rabbit-header__brand,
	.rabbit-header--compact .rabbit-header__actions {
		padding-inline: 0;
	}

	.rabbit-header__brand,
	.rabbit-header--editorial .rabbit-header__brand,
	.rabbit-header--compact .rabbit-header__brand {
		min-width: 0;
		flex: 1 1 auto;
		overflow: hidden;
	}

	.rabbit-header__brand img {
		max-width: 100%;
	}

	.rabbit-header__actions,
	.rabbit-header--editorial .rabbit-header__actions,
	.rabbit-header--compact .rabbit-header__actions {
		min-width: 0;
		flex: 0 0 auto;
	}

	.rabbit-header [data-header-search],
	.rabbit-header [data-header-core-search] {
		display: none;
	}

	.rabbit-header.is-search-open .hide-on-search-click {
		display: none !important;
	}

	.rabbit-header.is-search-open [data-header-search],
	.rabbit-header.is-search-open [data-header-core-search] {
		display: flex !important;
		width: calc(100% - 12px);
		max-width: none;
		flex: 1 1 auto;
		margin-inline: 6px;
	}

	.rabbit-header__compact-navigation {
		display: none;
	}

	.rabbit-header--compact .rabbit-header__mobile-nav-toggle {
		display: inline-flex;
		order: 2;
	}

	.rabbit-header--compact .rabbit-header__brand {
		order: 1;
	}

	.rabbit-header--compact .rabbit-header__actions {
		order: 3;
	}

	.rabbit-header--compact .rabbit-header__more-button {
		display: none;
	}

	.rabbit-header__editorial-inner {
		padding-inline: 6px;
	}

	.rabbit-header__editorial-navigation .rabbit-header__menu {
		width: 100%;
		max-width: 100%;
		min-height: 44px;
		overflow-x: auto;
		overflow-y: hidden;
		overscroll-behavior-inline: contain;
		scrollbar-width: none;
	}

	.rabbit-header__editorial-navigation.has-overflow > .rabbit-header__menu {
		overflow: hidden;
	}

	.rabbit-header__editorial-navigation .rabbit-header__menu::-webkit-scrollbar {
		display: none;
	}

	.rabbit-header__editorial-navigation > .rabbit-header__menu > li {
		flex: none;
	}

	.rabbit-header__editorial-navigation > .rabbit-header__menu > li > .rabbit-header__submenu {
		position: fixed;
		top: var(--rabbit-header-submenu-top, 108px);
		right: 6px;
		left: 6px;
		width: auto;
		max-height: min(64dvh, 480px);
		overflow-x: hidden;
		overflow-y: auto;
		overscroll-behavior: contain;
	}

	.rabbit-header__editorial-navigation .rabbit-header__submenu .rabbit-header__submenu,
	.rabbit-header__mobile-navigation .rabbit-header__submenu {
		position: static;
		display: none;
		width: 100%;
		margin: 3px 0 5px 8px;
		padding: 4px;
		border: 0;
		border-radius: 6px;
		background: var(--rabbit-header-muted);
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
		transition: none;
	}

	.rabbit-header__editorial-navigation .rabbit-header__submenu li.is-submenu-open > .rabbit-header__submenu,
	.rabbit-header__mobile-navigation li.is-submenu-open > .rabbit-header__submenu {
		display: block;
	}

	.rabbit-header__editorial-navigation .rabbit-header__submenu li,
	.rabbit-header__mobile-navigation .rabbit-header__submenu li {
		flex-wrap: wrap;
	}

	.rabbit-header__editorial-navigation .rabbit-header__submenu .rabbit-header__submenu-toggle svg,
	.rabbit-header__mobile-navigation .rabbit-header__submenu-toggle svg {
		transform: rotate(0);
	}

	.rabbit-header__editorial-navigation .rabbit-header__submenu li.is-submenu-open > .rabbit-header__submenu-toggle svg,
	.rabbit-header__mobile-navigation li.is-submenu-open > .rabbit-header__submenu-toggle svg {
		transform: rotate(180deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.rabbit-header__search-backdrop,
	.rabbit-header__menu a,
	.rabbit-header__compact-navigation > .rabbit-header__menu > li::after,
	.rabbit-header__editorial-navigation > .rabbit-header__menu > li::after,
	.rabbit-header__submenu,
	.rabbit-header__submenu-toggle svg,
	.rabbit-header__more-menu a {
		transition: none;
	}
}
