/* NECU header and footer — used site-wide. Homepage reset stays on .necu-home-page */

body.necu-chrome {
	--purple-900: #3b1e5f;
	--purple-700: #5b2d8e;
	--purple-500: #7b4bb7;
	--mulberry-300: #6f5b9a;
	--purple-200: #c9b3e8;
	--purple-050: #f3edfb;
	--coral-500: #f2635f;
	--coral-600: #d94f4b;
	--blue-500: #2ba9e0;
	--orange-500: #f7941e;
	--ink-900: #1e1b2e;
	--ink-600: #4a4759;
	--ink-300: #d8d5e0;
	--white: #ffffff;
	--shadow: 0 4px 20px rgba(59, 30, 95, 0.08);
	--radius-btn: 6px;
	--radius-card: 8px;
	--radius-panel: 12px;
	--container: 1512px;
	--gutter: 24px;
	--header-max: 1416px;
	--font: "Poppins", "Montserrat", sans-serif;
	--font-legal: "Open Sans", "Poppins", sans-serif;
}

body.necu-home-page {
	margin: 0;
	background: var(--white);
	color: var(--ink-600);
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.6;
}

body.necu-home-page *,
body.necu-home-page *::before,
body.necu-home-page *::after,
body.necu-chrome .necu-header,
body.necu-chrome .necu-header *,
body.necu-chrome .necu-header *::before,
body.necu-chrome .necu-header *::after,
body.necu-chrome .necu-footer,
body.necu-chrome .necu-footer *,
body.necu-chrome .necu-footer *::before,
body.necu-chrome .necu-footer *::after,
body.necu-chrome .necu-drawer,
body.necu-chrome .necu-drawer *,
body.necu-chrome .necu-drawer *::before,
body.necu-chrome .necu-drawer *::after {
	box-sizing: border-box;
}

body.necu-home-page img {
	max-width: 100%;
	height: auto;
}

/* Beat the live theme `header { min-height: 167px }` on inner pages */
body.necu-chrome header.necu-header {
	min-height: 0;
	background: var(--white);
	padding: 0;
	margin: 0;
	float: none;
	position: relative;
	z-index: 50;
}

body.necu-chrome.error404 {
	overflow: auto;
	height: auto;
}

body.necu-chrome.error404 header.necu-header,
body.necu-chrome.error404 footer.necu-footer {
	display: block;
}

.necu-site {
	min-height: 100vh;
}

.necu-container {
	width: min(100% - (var(--gutter) * 2), var(--container));
	margin-inline: auto;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link:focus,
.screen-reader-text:focus {
	clip: auto !important;
	clip-path: none;
	height: auto;
	width: auto;
	margin: 0;
	padding: 12px 18px;
	background: var(--purple-700);
	color: var(--white);
	z-index: 100000;
	top: 8px;
	left: 8px;
}

body.necu-home-page a:focus-visible,
body.necu-home-page button:focus-visible,
body.necu-home-page input:focus-visible,
body.necu-home-page select:focus-visible,
body.necu-home-page summary:focus-visible {
	outline: 3px solid var(--blue-500);
	outline-offset: 2px;
}

.necu-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 14px 32px;
	border-radius: var(--radius-btn);
	border: 2px solid transparent;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.necu-btn--primary {
	background: var(--coral-500);
	color: var(--white);
	border-color: var(--coral-500);
}

.necu-btn--primary:hover,
.necu-btn--primary:focus {
	background: var(--coral-600);
	border-color: var(--coral-600);
	color: var(--white);
	transform: translateY(-1px);
	text-decoration: none;
}

/* Logo — Figma Master Horizontal Logo 188×70 header / 333×120 footer */
.necu-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.necu-logo__img {
	display: block;
	width: 188px;
	height: 70px;
	max-width: 188px;
	max-height: 70px;
	object-fit: contain;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.necu-drawer .necu-logo,
.necu-footer .necu-logo,
.necu-drawer .necu-logo__img,
.necu-footer .necu-logo__img {
	background: transparent;
	border: 0;
	box-shadow: none;
	outline: 0;
}

/* Utility bar — Figma header-top: #6F5B9A, 75px, Poppins Light 14 */
.necu-util {
	--util-bg: #6f5b9a;
	background: var(--util-bg);
	color: var(--white);
	height: 75px;
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
}

.necu-util,
.necu-util a,
.necu-util button,
.necu-util input,
.necu-util span {
	font-family: var(--font);
	font-weight: 300;
	font-synthesis: none;
}

.necu-util__inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 75px;
	padding: 0 16px;
	width: min(100%, var(--header-max));
	max-width: 100%;
	margin-inline: auto;
	box-sizing: border-box;
	min-width: 0;
}

.necu-util__links ul,
.necu-util__contact,
.necu-nav__list,
.necu-footer__list,
.necu-footer__links,
.necu-legal__links,
.necu-social,
.necu-drawer__nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.necu-util__links {
	flex: 1 0 0;
	min-width: 0;
	border-right: 1px solid #fff;
	padding-right: 16px;
}

.necu-util__links ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 424px;
	padding: 12px 24px 12px 0;
	gap: 0;
}

.necu-util a {
	color: var(--white);
	text-decoration: none;
	font-size: 14px;
	font-weight: 300;
	line-height: 20px;
}

.necu-util__links a:hover {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.necu-util__contact {
	display: flex;
	align-items: center;
	height: 75px;
	flex: 0 1 auto;
	min-width: 0;
}

.necu-util__item {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	white-space: nowrap;
	height: 100%;
	padding: 15px 21px 15px 20px;
	border-right: 1px solid #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	line-height: 22px;
	font-size: 14px;
}

.necu-util__icon {
	display: block;
	width: 19px;
	height: 19px;
	flex-shrink: 0;
	object-fit: contain;
}

.necu-util__item--mail .necu-util__icon {
	width: 20px;
	height: 15px;
}

.necu-search {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 100%;
	padding: 0 0 0 28px;
	border: 0;
	border-radius: 0;
	overflow: visible;
	background: transparent;
}

.necu-search__field {
	display: none;
	width: 150px;
	height: 38px;
	border: 2px solid #b198e6;
	border-radius: 4px;
	padding: 0 10px;
	background: transparent;
	color: var(--white);
	font: inherit;
	font-size: 14px;
}

.necu-search.is-open .necu-search__field {
	display: block;
}

.necu-search__field::placeholder {
	color: rgba(255, 255, 255, 0.8);
}

.necu-search__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 38px;
	padding: 16px;
	border: 2px solid #b198e6;
	border-radius: 4px;
	background: transparent;
	color: var(--white);
	cursor: pointer;
	font-family: var(--font);
	font-size: 12px;
	font-weight: 300;
	line-height: 18px;
	white-space: nowrap;
}

.necu-search__btn:hover,
.necu-search__btn:focus {
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
}

.necu-search__icon {
	display: block;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

/* Main nav — Figma head-bottom: 20/15/24 padding, Poppins Bold 16/#2A3D58 */
.necu-nav {
	position: sticky;
	top: 0;
	z-index: 40;
	height: auto;
	background: var(--white);
	transition: box-shadow 0.2s ease;
}

.necu-nav.has-shadow {
	box-shadow: var(--shadow);
}

body.admin-bar .necu-nav {
	top: 32px;
}

.necu-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: auto;
	gap: 24px;
	padding: 20px 16px 15px;
	width: min(100%, var(--header-max));
	margin-inline: auto;
}

.necu-nav__menu {
	margin-left: auto;
}

.necu-nav__list {
	display: flex;
	align-items: center;
	gap: 10px;
}

.necu-nav__item:not(.necu-nav__item--cta) > a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #2a3d58;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: 0;
	min-height: 44px;
	padding: 8px 12px;
}

.necu-nav__item:not(.necu-nav__item--cta) > a:hover {
	color: var(--purple-700);
}

.necu-nav__item.is-current > a::after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 4px;
	height: 3px;
	background: var(--coral-500);
}

.necu-nav__caret {
	display: block;
	width: 22px;
	height: 22px;
	transform: scaleY(-1);
	flex-shrink: 0;
}

.necu-nav__item.has-sub {
	position: relative;
}

.necu-nav__dropdown {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 260px;
	margin: 0;
	padding: 10px 0;
	list-style: none;
	background: var(--white);
	border-radius: 8px;
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	z-index: 20;
}

.necu-nav__item.has-sub:hover .necu-nav__dropdown,
.necu-nav__item.has-sub:focus-within .necu-nav__dropdown {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.necu-nav__dropdown a {
	display: block;
	padding: 10px 18px;
	color: var(--ink-900);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
}

.necu-nav__dropdown a:hover {
	background: var(--purple-050);
	color: var(--purple-700);
}

.necu-nav__cta.necu-btn,
.necu-drawer__cta.necu-btn {
	flex-shrink: 0;
	height: 48px;
	min-height: 48px;
	padding: 16px;
	border-radius: 4px;
	background: #ec5855;
	border-color: #ec5855;
	color: #000;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	box-shadow: none;
}

.necu-nav__cta.necu-btn:hover,
.necu-nav__cta.necu-btn:focus,
.necu-drawer__cta.necu-btn:hover,
.necu-drawer__cta.necu-btn:focus {
	background: var(--coral-600);
	border-color: var(--coral-600);
	color: #000;
	transform: none;
}

.necu-nav__toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.necu-nav__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px auto;
	background: var(--ink-900);
}

/* Mobile drawer */
.necu-drawer {
	position: fixed;
	inset: 0;
	z-index: 60;
	display: flex;
	flex-direction: column;
	padding: 24px;
	background: var(--purple-700);
	color: var(--white);
}

.necu-drawer[hidden] {
	display: none;
}

.necu-drawer__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.necu-drawer__close {
	width: 44px;
	height: 44px;
	border: 0;
	background: transparent;
	color: var(--white);
	font-size: 32px;
	line-height: 1;
	cursor: pointer;
}

.necu-drawer__nav {
	flex: 1;
	margin-top: 32px;
	overflow: auto;
}

.necu-drawer__nav a,
.necu-drawer__parent {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0;
	margin: 0 0 24px;
	border: 0;
	background: none;
	color: var(--white);
	font: inherit;
	font-size: 20px;
	font-weight: 600;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
}

.necu-drawer__sub {
	list-style: none;
	margin: -8px 0 24px;
	padding: 0 0 0 12px;
}

.necu-drawer__sub a {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 16px;
}

.necu-drawer__cta {
	margin-top: auto;
	width: 100%;
}

body.necu-menu-open {
	overflow: hidden;
}

/* Footer — Figma footer 1512×1145, mulberry #6F5B9A */
body.necu-chrome footer.necu-footer,
body.necu-chrome .necu-footer {
	background: var(--mulberry-300);
	background-image: none;
	color: var(--white);
	float: none;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 78px 48px 74px;
}

body.necu-chrome footer.necu-footer,
body.necu-chrome .necu-footer,
body.necu-chrome .necu-footer h3,
body.necu-chrome .necu-footer p,
body.necu-chrome .necu-footer li,
body.necu-chrome .necu-footer a,
body.necu-chrome .necu-footer span,
body.necu-chrome .necu-footer summary,
body.necu-chrome .necu-footer ul,
body.necu-chrome .necu-footer ol {
	font-family: var(--font);
	font-synthesis: none;
	-webkit-font-smoothing: antialiased;
}

body.necu-chrome .necu-footer a {
	color: var(--white);
	text-decoration: none;
}

body.necu-chrome .necu-footer a:hover,
body.necu-chrome .necu-footer .necu-footer__link {
	text-decoration: underline;
	text-underline-offset: 2px;
	text-decoration-thickness: from-font;
}

body.necu-chrome .necu-footer a:focus-visible {
	outline: 3px solid var(--blue-500);
	outline-offset: 2px;
}

body.necu-chrome .necu-footer ul,
body.necu-chrome .necu-footer ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

body.necu-chrome .necu-footer p,
body.necu-chrome .necu-footer li,
body.necu-chrome .necu-footer span,
body.necu-chrome .necu-footer a {
	margin: 0;
	font-family: var(--font);
	font-weight: 300;
	color: var(--white);
	overflow-wrap: break-word;
	word-wrap: break-word;
}

body.necu-chrome .necu-footer .necu-logo--footer {
	width: min(333px, 100%);
	height: auto;
	max-width: 100%;
}

body.necu-chrome .necu-footer .necu-logo--footer .necu-logo__img {
	width: 100%;
	height: auto;
	max-width: 333px;
	max-height: none;
	aspect-ratio: 333 / 120;
	object-fit: contain;
}

.necu-footer__inner {
	width: 100%;
	max-width: var(--header-max);
	margin: 0 auto;
	box-sizing: border-box;
	min-width: 0;
}

.necu-footer__logo {
	padding-bottom: 60px;
}

.necu-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 1.55fr) minmax(0, 1.55fr) minmax(0, 1fr) minmax(0, 1fr);
	column-gap: 22px;
	align-items: start;
	justify-content: space-between;
}

.necu-foot-block {
	min-width: 0;
}

.necu-foot-block > summary {
	display: none;
	list-style: none;
}

.necu-foot-block > summary::-webkit-details-marker {
	display: none;
}

body.necu-chrome .necu-footer h3,
body.necu-chrome .necu-foot-block > summary {
	margin: 0;
	padding: 0 0 15px;
	font-family: var(--font);
	font-size: 24px;
	font-style: normal;
	line-height: 26px;
	font-weight: 500;
	letter-spacing: -1px;
	color: var(--white);
}

.necu-foot-block__section--enquiries {
	padding-top: 25px;
}

.necu-foot-block__section--loans {
	padding-top: 18px;
}

.necu-foot-block__section--carrick {
	padding-top: 24px;
}

.necu-foot-block__section--help {
	padding-top: 30px;
}

.necu-address {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.necu-address__block p,
.necu-branch p {
	font-family: var(--font);
	font-size: 16px;
	line-height: 24px;
	font-weight: 300;
}

.necu-address__name {
	font-weight: 700;
}

.necu-contact-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	padding: 4px 0;
	font-size: 16px;
	line-height: 26px;
}

.necu-contact-row span,
.necu-contact-row a {
	font-family: var(--font);
	font-size: 16px;
	line-height: 26px;
	font-weight: 300;
}

.necu-contact-row__label {
	font-weight: 600;
}

.necu-hours {
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 100%;
	margin: 0;
}

.necu-hours__row {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.necu-hours__day,
.necu-hours__time {
	font-family: var(--font);
	font-weight: 300;
}

.necu-hours__day {
	flex: 0 0 50px;
	width: 50px;
}

.necu-hours__time {
	flex: 1 1 auto;
	min-width: 0;
}

.necu-footer__more {
	padding: 18px 0 4px;
}

body.necu-chrome .necu-footer .necu-footer__link {
	font-family: var(--font);
	font-size: 16px;
	line-height: 26px;
	font-weight: 300;
	text-decoration: underline;
}

.necu-branches {
	display: flex;
	flex-direction: column;
}

.necu-branch + .necu-branch {
	padding-top: 8px;
}

.necu-branch__name {
	padding: 4px 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
}

.necu-branch p + p {
	padding-top: 0;
}

body.necu-chrome .necu-footer .necu-footer__links li {
	position: relative;
	padding: 4px 0 4px 21px;
}

body.necu-chrome .necu-footer .necu-footer__links li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 4px;
	height: 2px;
	background: var(--white);
	transform: translateY(-50%);
}

body.necu-chrome .necu-footer .necu-footer__links a {
	display: inline;
	min-height: 0;
	padding: 0;
	font-weight: 300;
	color: var(--white);
}

.necu-social {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	margin: 0 0 8px;
}

.necu-social a {
	display: inline-flex;
	width: 48px;
	height: 48px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 0;
}

.necu-social svg {
	width: 40px;
	height: 40px;
	display: block;
}

.necu-footer__badges {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.necu-footer__badge {
	display: block;
}

.necu-footer__badge--age {
	width: 157px;
	height: 157px;
	object-fit: contain;
}

.necu-footer__badge--support {
	width: 157px;
	height: 48px;
	object-fit: contain;
}

.necu-legal {
	background: transparent;
	padding: 50px 0 0;
	font-family: var(--font-legal);
}

body.necu-chrome .necu-footer .necu-legal,
body.necu-chrome .necu-footer .necu-legal p,
body.necu-chrome .necu-footer .necu-legal li,
body.necu-chrome .necu-footer .necu-legal a,
body.necu-chrome .necu-footer .necu-legal span {
	font-family: var(--font-legal);
}

body.necu-chrome .necu-footer .necu-legal__links {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 12px 32px;
	padding: 12px 0;
	margin: 0;
}

body.necu-chrome .necu-footer .necu-legal__links li {
	position: relative;
	padding: 0 12px 0 0;
}

body.necu-chrome .necu-footer .necu-legal__links li:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 0;
	right: -16px;
	bottom: 0;
	width: 1px;
	background: var(--white);
}

body.necu-chrome .necu-footer .necu-legal__links a {
	display: inline;
	min-height: 0;
	padding: 0;
	font-family: var(--font-legal);
	font-weight: 300;
	text-underline-offset: 2px;
}

.necu-legal__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px 32px;
	padding-top: 58px;
}

body.necu-chrome .necu-footer .necu-legal__copy {
	margin: 0;
	font-family: var(--font-legal);
	font-size: 16px;
	font-weight: 600;
	line-height: 23px;
	text-align: left;
	color: var(--white);
}

.necu-legal__credit {
	font-family: var(--font-legal);
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	white-space: normal;
	overflow-wrap: break-word;
}

body.necu-chrome .necu-footer .necu-legal__credit a {
	font-family: var(--font-legal);
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
	text-decoration: none;
	border-bottom: 2px solid var(--white);
	padding-bottom: 1px;
}

@media (max-width: 1599px) {
	.necu-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px 28px;
	}

	body.necu-chrome footer.necu-footer,
	body.necu-chrome .necu-footer {
		padding-left: 24px;
		padding-right: 24px;
	}

	.necu-util__links ul {
		max-width: none;
		padding-right: 12px;
		gap: 14px;
		justify-content: flex-start;
	}

	.necu-util__item {
		padding: 15px 10px;
	}

	.necu-util__item--mail:last-of-type {
		display: none;
	}

	.necu-nav__item:not(.necu-nav__item--cta) > a {
		padding: 8px 8px;
		font-size: 15px;
	}
}

@media (max-width: 767px) {
	body.necu-chrome footer.necu-footer,
	body.necu-chrome .necu-footer {
		padding: 40px 16px 48px;
	}

	.necu-footer__logo {
		padding-bottom: 28px;
	}

	body.necu-chrome .necu-footer .necu-logo--footer,
	body.necu-chrome .necu-footer .necu-logo--footer .necu-logo__img {
		width: min(333px, 100%);
		height: auto;
		max-width: 333px;
		max-height: none;
		aspect-ratio: 333 / 120;
	}

	.necu-footer__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.necu-foot-block {
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
		padding: 4px 0;
	}

	.necu-foot-block > summary {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 52px;
		cursor: pointer;
		margin: 0;
		padding: 8px 0;
	}

	.necu-foot-block > summary::after {
		content: "▾";
		font-size: 16px;
	}

	.necu-foot-block > h3:first-of-type {
		display: none;
	}

	.necu-foot-block[open] > summary::after {
		content: "▴";
	}

	.necu-legal {
		padding-top: 32px;
	}

	.necu-legal__meta {
		padding-top: 28px;
	}

	body.necu-chrome .necu-footer .necu-legal__links li:not(:last-child)::after {
		display: none;
	}
}

@media (max-width: 1199px) {
	.necu-util__item:nth-child(n + 3) {
		display: none;
	}

	.necu-header .necu-logo__img {
		width: 160px;
		height: 60px;
	}
}

@media (max-width: 991px) {
	.necu-nav__menu,
	.necu-nav__cta {
		display: none;
	}

	.necu-nav__toggle {
		display: block;
		margin-left: auto;
	}

	.necu-util__links,
	.necu-util__item:nth-child(n + 2) {
		display: none;
	}
}

@media (max-width: 575px) {
	.necu-util__item {
		display: none;
	}

	.necu-search {
		border-left: 0;
		padding-left: 0;
		margin-left: auto;
	}

	.necu-search__btn span {
		display: none;
	}

	.necu-search__btn {
		padding: 0 10px;
	}

	.necu-header .necu-logo__img {
		width: 148px;
		height: 55px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .necu-nav {
		top: 46px;
	}
}

@media (max-width: 767px) {
	body.necu-chrome {
		--gutter: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.necu-btn,
	.necu-nav,
	.necu-nav__dropdown,
	.necu-search__field {
		transition: none !important;
	}
}
