/* -------------------------------------------------------------------------------- */
/*                                Base Color Palette                                */
/* -------------------------------------------------------------------------------- */

:root {
	/* Primary Brand Colours */
	--pri-base:          #40C2CC; /* Teal */
	--pri-dark:          #09263A; /* Deep Blue */
	--pri-tint:          #E4F8FE; /* Light Teal */
	--pri-neutral:       #EAEFF1; /* Light Grey */

	/* Secondary Brand Colours */
	--sec-mid:           #3F90A7; /* Medium Teal */
	--sec-strong:        #006B86; /* Dark Teal */
	--sec-emphasis:      #1377C3; /* Blue */
	--sec-neutral:       #5D7380; /* Dark Grey */

	/* Tertiary/Accent Brand Colours */
	--acc-energetic:     #16FFFB; /* Digital Teal */
	--acc-positive:      #32B77B; /* Green */
	--acc-attention:     #EADF00; /* Yellow */
	--acc-critical:      #E5392C; /* Red */
	--acc-special:       #884F9F; /* Purple */

	/* Absolute Neutrals */
	--abs-black:         #000000;
	--abs-white:         #FFFFFF;

	/* Web-specific semantic tokens (brand-approved extension) */

	/* Primary intensity extension */
	--pri-deep:          #004B5E; /* High-contrast primary for CTA, headers, hover/focus */

	/* Content ink (text/icons) */
	--ink-strong:        #1A1A1A; /* Primary text on light surfaces */
	--ink-base:          #333333; /* Secondary text, subdued UI elements */

	/* Surfaces (backgrounds/borders with subtle emphasis) */
	--surface-accent:    #79D4DB; /* Accent surface for chips, active states, badges */
	--surface-soft:      #B3E7EB; /* Soft section/card backgrounds */
	--surface-muted:     #CCDDDD; /* Muted bg/dividers/borders */
	--surface-attention: #FAD7D5; /* Soft attention surface for alerts, highlights, feedback */


	/* Overlays & shadows */
	--nf-overlay:        rgba(0, 0, 0, 0.50);
	--nf-strong-overlay: rgba(0, 107, 134, 0.9);
	--nf-shadow:         rgba(0, 0, 0, 0.15);

	/* Palette for graphics */
	--chart-01: var(--pri-base);
	--chart-02: var(--sec-emphasis);
	--chart-03: var(--acc-positive);
	--chart-04: var(--acc-special);
	--chart-05: var(--acc-attention);
	--chart-06: var(--acc-critical);
	--chart-07: var(--sec-mid);
	--chart-08: var(--sec-strong);
}

/* -------------------------------------------------------------------------------- */
/*                                   Base / Reset                                   */
/* -------------------------------------------------------------------------------- */

* {
	box-sizing: border-box;
	font-family: "Inter", "Arial", sans-serif;
	padding: 0;
}

html,
body {
	color: var(--abs-black);
	margin: 0;
}

dl,
ol,
ul {
	text-align: left;
}

#corporateNewsLogoContainer,
#corporateLinkBack {
	display: none;
}
/* -------------------------------------------------------------------------------- */
/*                                  Accessibility                                   */
/* -------------------------------------------------------------------------------- */

/* Visually hide until focus */
.skip-link {
	left: -9999px;
	position: absolute;
	top: 0;
}

.skip-link:focus {
	background: var(--abs-white);
	border: 2px solid var(--pri-base);
	border-radius: 6px;
	left: 16px;
	padding: 8px 12px;
	text-decoration: none;
	top: 16px;
	z-index: 9999;
}

/* -------------------------------------------------------------------------------- */
/*                               Layout & Containers                                */
/* -------------------------------------------------------------------------------- */

.nf-container {
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	margin: 0px auto;
	max-width: 1320px;
	padding: 60px 20px;
	width: 100%;
}

section:has(> .nf-container + .nf-sidebar),
section:has(> .nf-sidebar + .nf-container) {
	display: grid;
	grid-template-columns: minmax(0, 1320px) 300px;
	column-gap: 20px;
	margin-inline: auto;
	max-width: 1320px;
}

section:has(> .nf-sidebar) .nf-container {
	justify-content: flex-start;
	gap: 16px;
	margin: 0px;
	max-width: unset;
	width: 100%;
}

.nf-sidebar {
	margin-top: 40px;
	width: 100%;
}

.nf-sidebar .company-logo {
	display: table;
	margin: 0px auto;
}

.nf-sidebar .company-logo img {
	max-height: 100px;
	max-width: 200px;
}

@media (max-width:991px) {
	section:has(> .nf-container + .nf-sidebar),
	section:has(> .nf-sidebar + .nf-container) {
		display: block;
		max-inline-size: none;
	}

	section:has(> .nf-sidebar) .nf-container {
		margin: 0 auto;
		max-width: 1320px;
	}

	.nf-sidebar {
		margin-top: 20px;
		padding: 0px 20px;
		width: 100%;
	}

	.nf-sidebar .nf-tiles {
		grid-template-columns: 1fr;
	}

}

.nf-content {
	flex-direction: column;
}

.left-content {
	align-items: start;
	flex-direction: column;
}

.center-content {
	align-items: center;
	flex-direction: column;
}

.nf-split,
.nf-split-inverse {
	align-items: center;
	column-gap: 32px;
	display: grid !important;
	grid-auto-columns: 1fr 1fr;
	grid-auto-flow: column;
}

.nf-split-inverse {
	direction: rtl;
}

.nf-split-inverse * {
  direction: ltr;
}

.nf-split img,
.nf-split-inverse img {
	display: block;
	margin: 0px auto;
	max-height: 410px;
	max-width: 100%;
}

.nf-split img.nf-img-50,
.nf-split-inverse img.nf-img-50 {
	max-width: 50%;
}

@media (max-width:900px) {
	.nf-split,
	.nf-split-inverse {
		grid-auto-columns: unset;
		grid-auto-flow: row;
		row-gap: 16px;
		text-align: center;
	}

}

.warning-block {
	background-color: var(--acc-attention);
	border-radius: 5px;
	padding: 20px;
}

.warning-block h4 {
	font-size: 18px;
}

/* -------------------------------------------------------------------------------- */
/*                                Section BG Helpers                                */
/* -------------------------------------------------------------------------------- */

.nf-section-chevrons {
	background-color: var(--pri-base);
	background-image: url("/images/bg-cta-chevrons-teal.png");
	background-position: left;
	background-repeat: no-repeat;
	background-size: cover;
}

.nf-section-constellation {
	background-color: var(--pri-base);
	background-image: url("/images/bg-constellation-network.png");
	background-position: left;
	background-repeat: no-repeat;
	background-size: cover;
}

.nf-section-skytint {
	background-color: var(--pri-tint);
}

/* -------------------------------------------------------------------------------- */
/*                                Typography & Links                                */
/* -------------------------------------------------------------------------------- */

.nf-link {
	color: var(--ink-base);
	text-decoration: none;
}

.nf-link:hover {
	color: var(--sec-strong) !important;
}

a,
.nf-link-light {
	color: var(--pri-base);
	text-decoration: none;
}

.nf-text-teal {
	color: var(--sec-strong) !important;
}

.nf-text-brand {
	color: var(--pri-base);
}

.nf-text-white {
	color: var(--abs-white);
}

.text-center {
	text-align: center !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.text-highlight {
	background-color: var(--acc-attention);
}

.nf-icon-white {
	color: var(--abs-white) !important;
	border-color: var(--abs-white) !important;
}

/* Progressive enhancement for engines that support "line-clamp" without prefix */
@supports (line-clamp: 3) {
	display: block;
	line-clamp: 3;
}

/* -------------------------------------------------------------------------------- */
/*                                      Tables                                      */
/* -------------------------------------------------------------------------------- */
/* Wrapper that gives tables a card look with rounded corners, shadow, and full width */
.nf-table-wrap {
	background: var(--abs-white);
	border-radius: 12px;
	box-shadow: 0 2px 10px var(--nf-shadow);
	margin-bottom: 20px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

/* Enables horizontal scrolling when table overflows */
.nf-table-wrap.is-scroll {
	overflow: auto;
}

/* Sticky fade masks that hint horizontal scroll */
.nf-table-wrap.is-scroll::before,
.nf-table-wrap.is-scroll::after {
	content: "";
	height: 100%;
	pointer-events: none;
	position: sticky;
	top: 0;
	width: 16px;
	z-index: 1;
}

/* Left fade mask */
.nf-table-wrap.is-scroll::before {
	background: linear-gradient(to right, var(--abs-white), rgba(255, 255, 255, 0));
	left: 0;
}

/* Right fade mask */
.nf-table-wrap.is-scroll::after {
	background: linear-gradient(to left, var(--abs-white), rgba(255, 255, 255, 0));
	right: 0;
}

/* Base table: spacing reset, color, and typography */
table.nf-table {
	background: var(--abs-white);
	border-collapse: separate;
	border-spacing: 0;
	color: var(--abs-black);
	font-size: 14px;
	line-height: 1.5;
	width: 100%;
}

/* Table caption: subtle, left-aligned label */
table.nf-table > caption {
	color: var(--sec-neutral);
	font-weight: 500;
	padding: 14px 16px;
	text-align: left;
}

/* Sticky header cells with dark background and clear separator */
table.nf-table thead th {
	background: var(--pri-dark);
	border-bottom: 1px solid var(--sec-neutral);
	color: var(--abs-white);
	font-weight: 600;
	padding: 14px 16px;
	position: sticky;
	text-align: left;
	top: 0;
	white-space: nowrap;
	z-index: 2;
}

/* Rounded corner on the first header cell */
table.nf-table thead th:first-child {
	border-top-left-radius: 12px;
}

/* Rounded corner on the last header cell */
table.nf-table thead th:last-child {
	border-top-right-radius: 12px;
}

/* Body cells: light row dividers and top-aligned content */
table.nf-table tbody th,
table.nf-table tbody td {
	background: var(--abs-white);
	border-bottom: 1px solid var(--pri-neutral);
	font-weight: 400;
	padding: 14px 16px;
	vertical-align: top;
}

/* On large screens, add wider horizontal padding */
@media (min-width:992px) {
	/* Wider padding for header and body cells on desktop */
	table.nf-table thead th,
	table.nf-table tbody th,
	table.nf-table tbody td {
		padding-left: 20px;
		padding-right: 20px;
	}

}

/* Zebra striping for better row scanning */
table.nf-table.is-striped tbody tr:nth-child(odd) td,
table.nf-table.is-striped tbody tr:nth-child(odd) th {
	background: var(--pri-neutral);
}

/* Bordered table variant with clipped radius */
table.nf-table.is-bordered {
	border-radius: 12px;
	border: 1px solid var(--pri-neutral);
	overflow: hidden;
}

/* Row hover highlight for interactive tables */
table.nf-table.is-hover tbody tr:hover td,
table.nf-table.is-hover tbody tr:hover th {
	background: var(--pri-tint);
}

/* Selected row state using a subtle brand tint */
table.nf-table tr.is-selected td,
table.nf-table tr.is-selected th {
	background: color-mix(in srgb, var(--pri-base) 12%, var(--abs-white));
}

/* Utility: right-align numeric values */
table.nf-table .is-numeric {
	text-align: right;
}

/* Utility: sticky first column that keeps its background */
table.nf-table .is-sticky-col {
	background: inherit;
	left: 0;
	position: sticky;
	z-index: 1;
}

/* Links in cells use brand color and no underline */
table.nf-table a {
	color: var(--pri-base);
	text-decoration: none;
}

/* Underline links on hover for clarity */
table.nf-table a:hover {
	text-decoration: underline;
}

/* Compact density variant reduces font size */
table.nf-table.is-compact {
	font-size: 13px;
}

/* Compact density: tighter cell padding */
table.nf-table.is-compact thead th,
table.nf-table.is-compact tbody th,
table.nf-table.is-compact tbody td {
	padding: 8px 12px;
}

/* Table footer: subtle background and strong top rule */
table.nf-table tfoot td,
table.nf-table tfoot th {
	background: #FAFCFD;
	border-top: 1px solid var(--sec-neutral);
	color: var(--sec-neutral);
	padding: 14px 16px;
}

/* Remove default outlines for focusable elements inside table */
table.nf-table:where(a, button, [tabindex]) {
	outline: none;
}

/* Accessible focus ring using brand color mix */
table.nf-table:where(a, button, [tabindex]):focus-visible {
	border-radius: 6px;
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--pri-base) 35%, transparent);
}

/* Mobile stacked variant for narrow screens */
@media (max-width:640px) {
	/* Convert table to block layout on small screens */
	table.nf-table.is-stacked {
		display: block;
	}

	/* Hide native header; labels come from data-label */
	table.nf-table.is-stacked thead {
		display: none;
	}

	/* Stack rows and cells vertically at full width */
	table.nf-table.is-stacked tbody,
	table.nf-table.is-stacked tr,
	table.nf-table.is-stacked td,
	table.nf-table.is-stacked th {
		display: block;
		width: 100%;
	}

	/* Visual separator between stacked rows */
	table.nf-table.is-stacked tbody tr {
		border-bottom: 1px solid var(--pri-neutral);
		padding: 8px 0;
	}

	/* Comfortable stacked cell padding */
	table.nf-table.is-stacked tbody td,
	table.nf-table.is-stacked tbody th {
		padding: 10px 16px;
	}

	/* Pseudo-label that mirrors header text via data-label */
	table.nf-table.is-stacked tbody td::before,
	table.nf-table.is-stacked tbody th::before {
		color: var(--sec-neutral);
		content: attr(data-label);
		display: block;
		font-size: 12px;
		font-weight: 600;
		letter-spacing: .02em;
		margin-bottom: 4px;
		text-transform: uppercase;
	}

}

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

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-outline-dark,
.btn-switcher {
	align-content: center;
	border: 0px;
	border-radius: 25px;
	cursor: pointer;
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	height: 48px;
	margin-bottom: 4px;
	padding: 0px 1.35em;
	text-align: center;
	text-decoration: none;
	text-transform: capitalize;
	transition: all 0.2s;
}

.btn-primary {
	background-color: var(--pri-base);
	color: var(--abs-black);
}

.btn-primary:hover {
	background-color: var(--surface-accent);
}

.btn-secondary {
	background-color: var(--pri-dark);
	color: var(--abs-white);
}

.btn-secondary:hover {
	background-color: var(--sec-mid);
}

.btn-outline {
	background-color: transparent;
	border: 2px solid var(--sec-strong);
	color: var(--sec-strong);
}

.btn-outline:hover {
	background-color: var(--surface-soft);
	border: 2px solid var(--sec-mid);
}

.btn-outline-dark {
	background-color: transparent;
	border: 2px solid var(--abs-black);
	color: var(--sec-strong);
}

.btn-outline-dark:hover {
	background-color: var(--pri-tint);
	border: 2px solid var(--abs-black);
	color: var(--sec-strong);
}

.btn-switcher {
	background-color: transparent;
	border: 1px solid var(--abs-black);
	color: var(--abs-black);
}

.btn-switcher:hover {
	background-color: var(--pri-tint);
	border: 1px solid var(--abs-black);
	color: var(--sec-strong);
}

.btn-primary[disabled],
.btn-secondary[disabled],
.btn-outline[disabled],
.btn-outline-dark[disabled],
.btn-switcher[disabled] {
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-sm {
	font-size: 14px;
    height: auto;
    margin-bottom: 4px;
    min-width: auto;
    padding: 0px 10px;
}

/* Fixed, circular floating "Back to Top" button using brand tokens and tight icon/label stack. */
#back-to-top {
	-webkit-appearance: none;
	align-items: center;
	appearance: none;
	background-clip: padding-box;
	background-color: var(--pri-base);
	border-radius: 50%;
	border: 0;
	bottom: calc(16px + env(safe-area-inset-bottom));
	box-shadow: 0 14px 34px var(--nf-shadow), 0 3px 8px var(--nf-shadow);
	color: var(--abs-black);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	font-family: "Inter", Roboto, Arial, Helvetica, Verdana, sans-serif;
	font-size: 14px;
	font-weight: 400;
	gap: 0;
	height: 56px;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1;
	min-width: 0;
	opacity: 0;
	outline: 0;
	padding: 0;
	pointer-events: none;
	position: fixed;
	right: calc(16px + env(safe-area-inset-right));
	text-transform: uppercase;
	transform: translateY(8px);
	transition: opacity 200ms ease, transform 200ms ease, box-shadow 200ms ease, background-color 160ms ease;
	width: 56px;
	z-index: 9999;
}

/* Visible state: enable pointer events and bring the button into place. */
#back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

/* Font Awesome up-chevron icon placed above the label with tight spacing. */
#back-to-top::before {
	content: "\F106";
	display: block;
	font-family: FontAwesome;
	font-size: 30px;
	font-weight: 400;
	line-height: 25px;
}

/* Hover feedback: lighter brand surface and stronger elevation. */
#back-to-top:hover {
	background-color: var(--sec-mid);
	box-shadow: 0 16px 40px var(--nf-shadow), 0 6px 12px var(--nf-shadow);
}

/* Active feedback: subtle press-down translation. */
#back-to-top:active {
	transform: translateY(1px);
}

/* Accessible keyboard focus ring in brand color with offset. */
#back-to-top:focus-visible {
	outline-offset: 2px;
	outline: 2px solid var(--pri-dark);
}

.nf-share {
	min-width: 36px;
}

.nf-share a,
.nf-share button {
	align-items: center;
	background-color: transparent;
	border-radius: 9999px;
	border: 2px solid var(--pri-base);
	color: var(--pri-base);
	display: inline-flex;
	font-size: 14px;
	height: 36px;
	justify-content: center;
	text-decoration: none;
	transition: background .15s ease, color .15s ease, box-shadow .15s ease, border-color .15s ease;
	width: 36px;
	margin: 5px;
}

.nf-share a:hover,
.nf-share button:hover {
	background: var(--pri-base);
	border-color: var(--pri-base);
	color: var(--abs-white);
}

.pager {
	align-items: center;
	display: flex;
	gap: 16px;
	width: 100%;
}

.pager .back {
	margin-right: auto;
}

.pager .next {
	margin-left: auto;
}

@media (max-width:640px) {
	.pager {
		align-items: flex-start;
		flex-direction: column;
	}

	.pager .back,
	.pager .next {
		margin: 0;
	}

}

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

/* Carousel shell */
.nf-carousel {
	-ms-touch-action: pan-y;
	height: 450px;
	overflow: hidden;
	overscroll-behavior-x: contain;
	position: relative;
	touch-action: pan-y;
	user-select: none;
	width: 100%;
}

/* Track */
.nf-carousel .nf-carousel-track {
	display: flex;
	height: 100%;
	transition: transform 0.6s ease-in-out;
	will-change: transform;
}

/* Slide */
.nf-carousel .nf-carousel-track .nf-carousel-slide {
	align-items: center;
	background-position: left;
	background-repeat: no-repeat;
	background-size: cover;
	box-sizing: border-box;
	cursor: grab;
	display: flex;
	flex-shrink: 0;
	flex: 0 0 100%;
	height: 100%;
	justify-content: flex-start;
	padding: 0;
	width: auto;
}

/* Slide container */
.nf-carousel .nf-carousel-track .nf-carousel-slide .nf-container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 20px;
	width: 100%;
}

/* Slide content */
.nf-carousel .nf-carousel-track .nf-carousel-slide .nf-carousel-content {
	max-width: 580px;
	z-index: 1;
}

/* Heading */
.nf-carousel .nf-carousel-track .nf-carousel-slide .nf-carousel-content h1 {
	font-size: 50px;
	font-weight: 700;
	line-height: 50px;
	margin-bottom: 20px;
	text-wrap: balance;
}

/* Paragraph */
.nf-carousel .nf-carousel-track .nf-carousel-slide .nf-carousel-content p {
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 30px;
	text-wrap: balance;
}

/* Indicators container */
.nf-carousel .nf-carousel-indicators-container {
	bottom: 20px;
	position: absolute;
	width: 100%;
	z-index: 2;
}

/* Indicators row */
.nf-carousel .nf-carousel-indicators-container .nf-carousel-indicators {
	display: flex;
	gap: 8px;
	justify-content: center;
}

/* Indicator dash */
.nf-carousel .nf-carousel-indicators-container .nf-carousel-indicators .dash {
	background: var(--pri-tint);
	border-radius: 25%;
	cursor: pointer;
	height: 8px;
	margin: 0px 3px;
	transition: background-color 0.3s ease;
	width: 30px;
}

/* Active indicator dash */
.nf-carousel .nf-carousel-indicators-container .nf-carousel-indicators .dash.active {
	background: var(--pri-base);
}

/* -------------------------------------------------------------------------------- */
/*                                 Tile Components                                  */
/* -------------------------------------------------------------------------------- */

/* --------------- */
/*  General Tiles  */
/* --------------- */

.nf-tiles {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(216px, 1fr));
	margin-bottom: 20px;
	width: 100%;
}

.nf-tiles[data-max-col="4"] {
	grid-template-columns: repeat(auto-fit, minmax(0px, 290px));
}

.nf-tiles[data-max-col="3"] {
	grid-template-columns: repeat(auto-fit, minmax(0px, 400px));
}

.nf-tiles[data-max-col="2"] {
	grid-template-columns: repeat(auto-fit, minmax(0px, 610px));
}

.nf-tiles[data-max-col="1"] {
	grid-template-columns: repeat(auto-fit, minmax(0px, 100%));
}

.nf-tiles figure {
	background: var(--abs-white);
	border-radius: 8px;
	box-shadow: 0 4px 12px var(--nf-shadow);
	margin: 0px;
	padding: 24px;
	text-align: center;
	transition: box-shadow 0.3s ease;
}

/* Tile heading */
.nf-tiles figure h3 {
	color: var(--abs-black);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 12px;
}

.nf-tiles figure h5 {
	color: var(--abs-black);
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 12px;
}

/* Tile paragraph */
.nf-tiles figure p {
	color: var(--ink-base);
	font-size: 15px;
	line-height: 20px;
}

/* Legacy text block */
.nf-tiles figure blockquote {
	color: var(--ink-base);
	font-size: 15px;
	line-height: 20px;
	margin: 10px 0px;
	text-align: left;
}

.nf-tiles figure blockquote.quote {
	padding: 0px 20px;
	position: relative;
}

.nf-tiles figure blockquote.quote::before,
.nf-tiles figure blockquote.quote::after {
color: var(--pri-base);
	font-family: ui-serif, Georgia, "Times New Roman", serif;
	font-size: 30px;
	font-weight: 800;
	position: absolute;
}

/* Opening mark: top-left, slightly above the box */
.nf-tiles figure blockquote.quote::before {
	content: "\201C";
	left: 0px;
	top: -10px;
}

/* Closing mark: bottom-right, slightly below the box */
.nf-tiles figure blockquote.quote::after {
	bottom: -10px;
	content: "\201D";
	right: 0px;
}

/* Attribution logo */
.nf-tiles figure figcaption img {
	max-width: 100px;
}

.nf-tiles figure .nf-tiles-separator {
	margin-bottom: 10px;
	text-align: left;
}

.nf-tiles figure .nf-tiles-separator:not(:last-of-type) {
	border-bottom: 1px solid var(--sec-neutral);
}

/* Vídeo content */
.nf-tiles figure iframe {
	aspect-ratio: 16 / 9;
	height: auto;
	width: 100%;
}

.nf-tiles ul {
	color: var(--ink-base);
	font-size: 15px;
	line-height: 20px;
	padding-left: 20px;
	text-align: left;
}
/* ------------ */
/*  Dash Style  */
/* ------------ */

/* Make the figure the host for the decorative dash and center its contents */
.nf-tiles .nf-tiles-dash {
	text-align: center;
}

/* Draw the dash above the title using a pseudo-element */
.nf-tiles .nf-tiles-dash::before {
	background: var(--pri-base);
	border-radius: 15%;
	content: "";
	display: block;
	height: 5px;
	margin: 0 auto 15px;
	transition: background-color .3s ease;
	width: 65px;
}

/* --------------- */
/*  Counter Style  */
/* --------------- */

/* Initialize the "tile" counter on any .nf-tiles that contains a .nf-tiles-counter */
.nf-tiles:has(.nf-tiles-counter) {
	counter-reset: tile;
}

/* Center-align the counter badge within its container */
.nf-tiles .nf-tiles-counter {
	text-align: center;
}

/* Draw the circular badge and insert the sequential number */
.nf-tiles .nf-tiles-counter::before {
	background: var(--pri-tint);
	border-radius: 50%;
	color: var(--sec-strong);
	content: counter(tile);
	counter-increment: tile;
	display: inline-grid;
	font-size: 28px;
	font-weight: 700;
	height: 48px;
	line-height: 1;
	place-items: center;
	width: 48px;
}

/* ------------ */
/*  Icon Style  */
/* ------------ */

/* Host figure: center content and build the badge via ::before */
.nf-tiles .nf-tiles-icon {
	text-align: center;
}

.nf-tiles .nf-tiles-icon::before {
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 78px;
	margin-bottom: 12px;
	width: 78px;
}

.nf-tiles .nf-tiles-icon:has(> i[class*="fa-"])::before {
	content: none;
}

.nf-tiles .nf-tiles-icon > i[class*="fa-"] {
	background: var(--pri-tint);
	border-radius: 50%;
	color: var(--pri-base);
	display: inline-grid;
	font-size: 52px;
	height: 78px;
	margin-bottom: 12px;
	line-height: 1;
	place-items: center;
	width: 78px;
}

/* Map data-icon values to the actual image via a CSS variable */
.nf-tiles .nf-tiles-icon[data-icon="analytics"]::before {
	background: url("/images/icons/analytics-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="bolt"]::before {
	background: url("/images/icons/bolt-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="book"]::before {
	background: url("/images/icons/book-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="calculator"]::before {
	background: url("/images/icons/calculator-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="certification"]::before {
	background: url("/images/icons/certification-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="chart"]::before {
	background: url("/images/icons/chart-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="checklist"]::before {
	background: url("/images/icons/checklist-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="clipboard"]::before {
	background: url("/images/icons/clipboard-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="document-review"]::before {
	background: url("/images/icons/document-review-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="dossier"]::before {
	background: url("/images/icons/dossier-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="filing-form"]::before {
	background: url("/images/icons/filing-form-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="gavel"]::before {
	background: url("/images/icons/gavel-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="global-network"]::before {
	background: url("/images/icons/global-network-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="global-partnership"]::before {
	background: url("/images/icons/global-partnership-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="globe"]::before {
	background: url("/images/icons/globe-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="handshake"]::before {
	background: url("/images/icons/handshake-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="headset"]::before {
	background: url("/images/icons/headset-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="industry-hub"]::before {
	background: url("/images/icons/industry-hub-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="institution"]::before {
	background: url("/images/icons/institution-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="lock"]::before {
	background: url("/images/icons/lock-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="media"]::before {
	background: url("/images/icons/media-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="megaphone"]::before {
	background: url("/images/icons/megaphone-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="monitor"]::before {
	background: url("/images/icons/monitor-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="review"]::before {
	background: url("/images/icons/review-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="shield"]::before {
	background: url("/images/icons/shield-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

.nf-tiles .nf-tiles-icon[data-icon="tmx"]::before {
	background: url("/images/tmx_logo_dark.png") center / 48px 48px no-repeat;
}

.nf-tiles .nf-tiles-icon[data-icon="us-flag"]::before {
	background: url("/images/icons/us-flag-icon.svg") center / 48px 48px no-repeat, var(--pri-tint);
}

/* ------------ */
/*  Logo Style  */
/* ------------ */
.nf-tiles .nf-tiles-logo.nf-tile-wide {
	grid-template-columns: 150px 1fr 36px;
}

/* Logo image */
.nf-tiles .nf-tiles-logo img {
	margin: 0px auto 10px auto;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

.nf-tiles-logo > a.link-group {
	display: grid;
	grid-template-rows: 120px auto 1fr;
	height: 100%;
	text-align: left;
	text-decoration: none;
}

.nf-tiles-logo > a.link-group > img {
	height: 100%;
	margin: 0px;
	max-height: none;
	max-width: 100%;
	object-fit: contain;
	place-self: center;
}

.nf-tiles-logo > a.link-group > p {
	color: var(--sec-neutral);
	font-size: 14px;
	line-height: 1.4;
	margin: 12px 0 6px;
}

.nf-tiles-logo > a.link-group > h4 {
	color: var(--abs-black);
	font-size: 18px;
	font-weight: 600;
	margin: 0;
}

/* ------------------ */
/*  Wide Tiles Style  */
/* ------------------ */

/* Full-width tile, in-line layout */
.nf-tiles .nf-tile-wide {
	align-items: center;
	display: grid;
	gap: 16px 24px;
	grid-column: 1 / -1;
	grid-template-columns: 78px 1fr auto;
	text-align: left;
}

.nf-tiles .nf-tile-wide:has(> :nth-child(2):last-child:not(a, button)) {
	/* grid-template-columns: 1fr auto; */
	grid-template-columns: 1fr 36px;
}

/* Icon on the left of the grid */
.nf-tiles .nf-tile-wide::before {
	justify-self: center;
}

/* Typography adjusted for inline layout */
.nf-tiles .nf-tile-wide h3 {
	margin: 0 0 6px 0;
}

.nf-tiles.nf-tile-wide p {
	margin: 0;
}

/* Right-alignned button*/
.nf-tiles .nf-tile-wide .btn-outline {
	margin-left: 24px;
	white-space: nowrap;
}

/* Responsive: stacks on mobile */
@media (max-width:768px) {
	.nf-tiles .nf-tile-wide {
		grid-template-columns: 1fr !important;
		text-align: center;
	}

	.nf-tiles .nf-tile-wide::before {
		margin: 0 auto 8px;
	}

	.nf-tiles .nf-tile-wide .btn-outline {
		margin: 12px auto 0;
	}

}

/* ------------------ */
/*  Blog Tiles Style  */
/* ------------------ */

.nf-tiles .nf-tiles-blog {
	padding: 0px;
}

/* Clickable tile area */
.nf-tiles .nf-tiles-blog a {
	text-decoration: none;
}

/* Thumbnail image */
.nf-tiles .nf-tiles-blog a img {
	aspect-ratio: 16 / 9;
	border-radius: 8px 8px 0px 0px;
	width: 100%;
}

/* Caption wrapper */
.nf-tiles .nf-tiles-blog a figcaption {
	font-size: 13px;
	padding: 24px;
	text-align: left;
}

/* Caption headline */
.nf-tiles .nf-tiles-blog a figcaption h4 {
	color: var(--abs-black);
	font-size: 13px;
	font-weight: 600;
	margin: 12px 0px;
	text-align: left;
}

/* ------------------ */
/*  Card Tiles Style  */
/* ------------------ */

/* Spacing below the header for the filter bar */
.nf-card-filters {
	margin-bottom: 20px;
}

/* Visual style and sizing for all filter buttons */
.nf-card-filters button {
	align-content: center;
	background-color: transparent;
	border-radius: 25px;
	border: 2px solid var(--sec-strong);
	color: var(--sec-strong);
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	height: 48px;
	padding: 0px 1.35em;
	text-align: center;
	text-decoration: none;
	text-transform: capitalize;
	transition: all 0.2s;
}

/* Hover feedback colors for filter buttons */
.nf-card-filters button:hover {
	background-color: var(--pri-tint);
	border: 2px solid var(--sec-mid);
	color: var(--sec-strong);
}

/* Responsive grid container and positioning context for cards */
.nf-card-tiles {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(0px, 250px));
	justify-content: center;
	margin-bottom: 20px;
	width: 100%;
	position: relative;
}

.nf-card-tiles[data-grid-size="3"] {
	grid-template-columns: repeat(auto-fit, minmax(0px, 400px));
}

/* Base animation properties and 3D perspective for each card wrapper */
.nf-card-tiles > div {
	perspective: 1000px;
	opacity: 1;
	transform: translateZ(0);
	transition: transform 640ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 360ms ease-out, box-shadow 240ms ease-out;
	will-change: transform, opacity;
}

/* Animate cards out with a subtle drop and disable interaction */
.nf-card-tiles.is-animating > div.is-hiding {
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px) scale(0.98);
}

/* Fully remove hidden cards from the layout flow */
.nf-card-tiles > div.is-hidden {
	display: none;
}

/* Initial state before a card animates into view */
.nf-card-tiles > div.is-appearing {
	opacity: 0;
	transform: translateY(10px) scale(.98);
}

/* Target state during the appearance animation */
.nf-card-tiles.is-animating > div.is-appearing.is-active {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* Honor reduced-motion preference for move/fade transitions */
@media (prefers-reduced-motion:reduce) {
	.nf-card-tiles > div {
		transition: none !important;
	}
}

/* Flip host: sized, elevated figure with 3D context */
.nf-card-tiles > div figure {
	background: var(--abs-white);
	border-radius: 8px;
	box-shadow: 0px 4px 12px var(--nf-shadow);
	font-size: 14px;
	height: 370px;
	margin: 0px;
	overflow: hidden;
	position: relative;
	text-align: center;
	transform-style: preserve-3d;
	transition: transform .6s ease;
	will-change: transform;
}

/* Flip faces: front and back share the same absolute box */
.nf-card-tiles > div figure .front,
.nf-card-tiles > div figure .back {
	border-radius: 8px;
	display: block;
	inset: 0;
	position: absolute;
}

/* Front face shown by default with mid-flip swap timing */
.nf-card-tiles > div figure .front {
	opacity: 1;
	transition: opacity 0s linear .2s, z-index 0s linear .2s;
	z-index: 2;
}

/* Back face pre-rotated and styled for contrast */
.nf-card-tiles > div figure .back {
	background: var(--pri-dark);
	color: var(--abs-white);
	opacity: 0;
	transform: rotateY(180deg);
	transition: opacity 0s linear .2s, z-index 0s linear .2s;
	z-index: 1;
}

/* Rotate the entire card on hover to perform the flip */
.nf-card-tiles > div:hover > figure {
	transform: rotateY(180deg);
}

/* During flip: front goes under and becomes invisible midway */
.nf-card-tiles > div:hover > figure .front {
	opacity: 0;
	transition: opacity 0s linear .2s, z-index 0s linear .2s;
	z-index: 1;
}

/* During flip: back comes to front and becomes visible midway */
.nf-card-tiles > div:hover > figure .back {
	opacity: 1;
	transition: opacity 0s linear .2s, z-index 0s linear .2s;
	z-index: 2;
}

/* Shared visual baseline for figures inside the grid */
.nf-card-tiles figure {
	background: var(--abs-white);
	border-radius: 8px;
	box-shadow: 0 4px 12px var(--nf-shadow);
	margin: 0px;
	padding: 0px;
	text-align: center;
	transition: box-shadow 0.2s ease;
}

/* Sized top image with rounded top corners on the front */
.nf-card-tiles figure .front .picture {
	border-radius: 8px 8px 0px 0px;
	height: 250px;
	width: 100%;
}

/* Sized top image with rounded top corners on the front */
.nf-card-tiles figure .front .logo {
	display: flex;
	height: 100px;
	justify-content: center;
	padding: 10px;
	place-items: center;
}

.nf-card-tiles figure .front .logo img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
}

/* Spacing for the front caption block */
.nf-card-tiles figure .front figcaption {
	padding: 10px;
}

/* Emphasized staff name on the front side */
.nf-card-tiles figure .front .name {
	color: var(--sec-strong);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
}

/* Emphasized staff name on the front side */
.nf-card-tiles figure .front .short-text {
-webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  margin-bottom: 20px;
  overflow: hidden;
  padding: 0px 10px;
  text-align: center;
  width: 100%;
 }

/* Subtle location styling under the name */
.nf-card-tiles figure .front .location {
	color: var(--sec-neutral);
	font-size: 12px;
	margin-top: 5px;
}

/* Prepend a map-pin icon to the location text */
.nf-card-tiles figure .front .location::before {
	content: "\F041";
	font-family: FontAwesome;
}

/* Back caption container with full-height layout and scrolling */
.nf-card-tiles figure .back figcaption {
	display: flow-root;
	height: 100%;
	padding: 16px 20px;
	position: relative;
}

/* Dock the back-side button group to the bottom edge */
.nf-card-tiles figure .back figcaption .button-group {
	bottom: 0px;
	position: absolute;
}

/* Back-side tab panels are hidden by default and scrollable */
.nf-card-tiles figure .back [data-card-category] {
	display: none;
	height: calc(100% - 48px);
	overflow-y: auto;
	text-align: left;
}

/* Default back tab when no radio is checked: show industry */
.nf-card-tiles figure .back figcaption:not(:has(.button-group input[type="radio"]:checked)) [data-card-category="industry"] {
	display: block;
}

/* Show industry when the first radio is selected */
.nf-card-tiles figure .back figcaption:has(.button-group input[type="radio"]:nth-of-type(1):checked) [data-card-category="industry"] {
	display: block;
}

/* Show personal when the second radio is selected */
.nf-card-tiles figure .back figcaption:has(.button-group input[type="radio"]:nth-of-type(2):checked) [data-card-category="personal"] {
	display: block;
}

/* Visually hide the radios while keeping them accessible */
.nf-card-tiles figure .back .button-group input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

/* Horizontal layout for the back-side button group */
.nf-card-tiles figure .back .button-group {
	display: grid;
	grid-auto-flow: column;
	gap: 8px;
}

/* Default appearance for back-side tab labels */
.nf-card-tiles figure .back .button-group label {
	padding: 8px 12px;
	border: 1px solid var(--sec-neutral);
	border-radius: 6px;
	cursor: pointer;
}

/* Emphasized tab label style within back figcaption group */
.nf-card-tiles figure .back figcaption .button-group label {
	align-content: center;
	background-color: transparent;
	border-color: var(--sec-strong);
	border-radius: 0px;
	border-style: solid;
	border-width: 2px 2px 0px 2px;
	color: var(--abs-white);
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	height: 48px;
	padding: 0px 1.35em;
	text-align: center;
	text-decoration: none;
	text-transform: capitalize;
	transition: all 0.2s;
}

/* Hover feedback for back-side tab labels */
.nf-card-tiles figure .back figcaption .button-group label:hover {
	background-color: var(--pri-tint);
	border-color: var(--sec-mid);
	color: var(--sec-strong);
}

/* Active style for the first tab label when its radio is checked */
.nf-card-tiles figure .back .button-group input[type="radio"]:nth-of-type(1):checked ~ label:nth-of-type(1) {
	background-color: var(--pri-tint);
	border-color: var(--sec-mid);
	color: var(--sec-strong);
}

/* Active style for the second tab label when its radio is checked */
.nf-card-tiles figure .back .button-group input[type="radio"]:nth-of-type(2):checked ~ label:nth-of-type(2) {
	background-color: var(--pri-tint);
	border-color: var(--sec-mid);
	color: var(--sec-strong);
}

/* Disable flip rotations and swaps when reduced motion is requested */
@media (prefers-reduced-motion:reduce) {
	.nf-card-tiles > div figure {
		transform: none !important;
	}
	.nf-card-tiles > div figure .front,
	.nf-card-tiles > div figure .back {
		transition: none !important;
	}
}

/* Quote text container: remove default margins, add side padding for marks, position context, center text */
.nf-card-tiles figure .back figcaption:has(blockquote) {
}

.nf-card-tiles figure .back figcaption blockquote {
	margin: 10px 0px;
	padding: 0px;
	position: relative;
	text-align: left;
	max-height: 100%;
	overflow-y: auto;
}

.nf-card-tiles figure .back figcaption blockquote:has(+ .button-group) {
	max-height: calc(100% - 50px);
	overflow-y: auto;
}

/* Decorative quote glyphs: large serif marks in 46×46 boxes, absolutely positioned and centered */
.nf-card-tiles figure .back figcaption blockquote.quote::before,
.nf-card-tiles figure .back figcaption blockquote.quote::after {
	color: var(--abs-white);
	display: grid;
	font-family: ui-serif, Georgia, "Times New Roman", serif;
	font-size: 80px;
	font-weight: 800;
	height: 46px;
	place-items: center;
	position: absolute;
	width: 46px;
}

/* Opening mark: top-left, slightly above the box */
.nf-card-tiles figure .back figcaption blockquote.quote::before {
	content: "\201C";
	left: 0px;
	top: -20px;
}

/* Closing mark: bottom-right, slightly below the box */
.nf-card-tiles figure .back figcaption blockquote.quote::after {
	bottom: -20px;
	content: "\201D";
	right: 0px;
}

/* ----------------- */
/*  Accordion Style  */
/* ----------------- */
.nf-tiles.nf-tiles-accordion {
	gap: 8px;
	grid-template-columns: 1fr;
}

.nf-accordion-item {
	background: var(--abs-white);
	border-radius: 8px;
	box-shadow: 0 4px 12px var(--nf-shadow);
	margin: 0;
	overflow: hidden;
}

.nf-accordion-item > summary {
	align-items: center;
	color: var(--abs-black);
	cursor: pointer;
	display: flex;
	font-size: 15px;
	font-weight: 500;
	justify-content: space-between;
	list-style: none;
	padding: 12px 16px;
}

.nf-accordion-item > summary::-webkit-details-marker {
	display: none;
}

.nf-accordion-item > summary::after {
	color: var(--sec-strong);
	content: "\002B";
	font-size: 18px;
	font-weight: 700;
}

.nf-accordion-item[open] > summary::after {
	content: "\2212";
}

.nf-accordion-body {
	border-top: 1px solid var(--surface-muted);
	padding: 0 16px 12px 16px;
}

.nf-accordion-body p {
	color: var(--ink-base);
	font-size: 15px;
	line-height: 20px;
	margin: 8px 0 0;
}

/* -------------------------------------------------------------------------------- */
/*                                 Section Headings                                 */
/* -------------------------------------------------------------------------------- */

.nf-section-title {
	color: var(--abs-black);
	font-weight: 700;
	margin-bottom: 32px;
	text-align: center;
}

h1.nf-section-title {
	font-size: 34px;
}

h2.nf-section-title {
	font-size: 28px;
}

h3.nf-section-title {
	font-size: 18px;
}

.nf-section-title:has(+ .nf-section-subtitle) {
	margin-bottom: 0px;
}

.nf-section-subtitle {
	color: var(--ink-base);
	font-size: 16px;
	margin-bottom: 25px;
	margin-top: 0px;
}

/* -------------------------------------------------------------------------------- */
/*                                   Bottom Rail                                    */
/* -------------------------------------------------------------------------------- */

.nf-bottom-rail {
	align-items: center;
	display: flex;
	gap: 16px;
	padding: 12px 0;
	width: 100%;
}

.nf-bottom-rail::before {
	background: var(--sec-neutral);
	border-radius: 8px;
	content: "";
	flex: 1 1 auto;
	height: 4px;
}

.nf-bottom-rail .btn-outline {
	align-items: center;
	display: inline-flex;
	font-size: 14px;
	gap: 0.5rem;
	height: 34px;
	padding-right: 45px;
	position: relative;
}

.nf-bottom-rail .btn-outline::after {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	content: "\F105";
	font-family: FontAwesome;
	font-size: 0.95em;
	font-style: normal;
	font-weight: 900;
	line-height: 1;
	position: absolute;
	right: 25px;
}

/* -------------------------------------------------------------------------------- */
/*                                      Banner                                      */
/* -------------------------------------------------------------------------------- */

/* Section container */
.nf-section-banner {
	align-items: stretch;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 344px;
}

.nf-section-banner[data-banner="mining-metals"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: linear-gradient(to bottom, var(--nf-overlay), var(--nf-overlay)), url("/images/slideshow/3416-newsfile-sliders-MINING.jpg");
}

.nf-section-banner[data-banner="cannabis"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: linear-gradient(to bottom, var(--nf-overlay), var(--nf-overlay)), url("/images/slideshow/3416-newsfile-sliders-CANNABIS.jpg");
}

.nf-section-banner[data-banner="technology"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: linear-gradient(to bottom, var(--nf-overlay), var(--nf-overlay)), url("/images/slideshow/3416-newsfile-sliders-TECHNOLOGY.jpg");
}

.nf-section-banner[data-banner="energy"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: linear-gradient(to bottom, var(--nf-overlay), var(--nf-overlay)), url("/images/slideshow/3416-newsfile-sliders-ENERGY.jpg");
}

.nf-section-banner[data-banner="health"] {
	--header-color: var(--abs-black);
	--text-color: var(--abs-black);
	background-image: linear-gradient(to bottom, var(--nf-overlay), var(--nf-overlay)), url("/images/slideshow/3416-newsfile-sliders-HEALTH.jpg");
}

.nf-section-banner[data-banner="1"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: linear-gradient(to bottom, var(--nf-overlay), var(--nf-overlay)), url("/images/banners/cta_bg_01.png");
}

.nf-section-banner[data-banner="2"] {
	--header-color: var(--pri-base);
	--text-color: var(--abs-white);
	background-image: linear-gradient(to bottom, var(--nf-overlay), var(--nf-overlay)), url("/images/banners/cta_bg_02.png");
}

.nf-section-banner[data-banner="3"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: linear-gradient(to bottom, var(--nf-overlay), var(--nf-overlay)), url("/images/banners/cta_bg_03.png");
}

.nf-section-banner[data-banner="4"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: linear-gradient(to bottom, var(--nf-overlay), var(--nf-overlay)), url("/images/banners/cta_bg_04.png");
}

.nf-section-banner[data-banner="5"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: linear-gradient(to bottom, var(--nf-overlay), var(--nf-overlay)), url("/images/banners/cta_bg_05.jpg");
}

.nf-section-banner[data-banner="6"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: linear-gradient(to bottom, var(--nf-overlay), var(--nf-overlay)), url("/images/banners/cta_bg_06.jpg");
}

.nf-section-banner[data-banner="7"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: linear-gradient(to bottom, var(--nf-overlay), var(--nf-overlay)), url("/images/banners/cta_bg_07.jpg");
}

.nf-section-banner[data-banner="8"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: linear-gradient(to bottom, var(--nf-overlay), var(--nf-overlay)), url("/images/banners/cta_bg_08.jpg");
}

.nf-section-banner[data-banner="pr-1"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-image: linear-gradient(to bottom, var(--nf-strong-overlay), var(--nf-strong-overlay)), url("/images/banners/pr_bg_01.jpg");
}

.nf-section-banner[data-banner="pr-2"] {
	--header-color: var(--abs-white);
	--text-color: var(--abs-white);
	background-color: var(--pri-dark);
	background-image: linear-gradient(to bottom, var(--nf-overlay), var(--nf-overlay)), url("/images/bg-constellation-network.png");
}

/* Content wrapper */
.nf-section-banner .nf-section-banner-text {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: left;
	width: 100%;
}

/* Heading */
.nf-section-banner .nf-section-banner-text h1 {
	color: var(--header-color);
	font-size: clamp(28px, 7vw, 50px);
	line-height: 1.15;
	margin: 0px;
	text-wrap: balance;
}

.nf-section-banner .nf-section-banner-text h2 {
	color: var(--header-color);
	font-size: 38px;
	line-height: 1.15;
	margin: 0px;
	text-wrap: balance;
}

.nf-section-banner .nf-section-banner-text h3 {
	color: var(--header-color);
	font-size: 29px;
	line-height: 1.15;
	margin: 0px;
	text-wrap: balance;
}

.nf-section-banner .nf-section-banner-text h4 {
	color: var(--header-color);
	font-size: 25px;
	line-height: 1.15;
	margin: 0px;
	text-wrap: balance;
}

.nf-section-banner .nf-section-banner-text h5 {
	color: var(--header-color);
	font-size: 22px;
	line-height: 1.15;
	margin: 0px;
	text-wrap: balance;
}

.nf-section-banner .nf-section-banner-text h6 {
	color: var(--header-color);
	font-size: 17px;
	line-height: 1.15;
	margin: 0px;
	text-wrap: balance;
}

/* Paragraph */
.nf-section-banner .nf-section-banner-text p {
	color: var(--text-color);
	font-size: 16;
	line-height: 1.5;
	margin: 0px;
}

/* -------------------------------------------------------------------------------- */
/*                                    CTA Bottom                                    */
/* -------------------------------------------------------------------------------- */

/* Heading */
#nf-cta-bottom h1 {
	font-size: clamp(28px, 8vw, 46px);
	font-weight: 700;
	line-height: 44px;
	text-wrap: balance;
}

/* Paragraph */
#nf-cta-bottom p {
	font-size: 20px;
	line-height: 24px;
}

/* -------------------------------------------------------------------------------- */
/*                                      Quote                                       */
/* -------------------------------------------------------------------------------- */

/* Quote text container: remove default margins, add side padding for marks, position context, center text */
.nf-quote blockquote {
	margin: 0px;
	padding: 0px 50px;
	position: relative;
	text-align: center;
}

/* Decorative quote glyphs: large serif marks in 46×46 boxes, absolutely positioned and centered */
.nf-quote blockquote::before,
.nf-quote blockquote::after {
	color: var(--sec-strong);
	display: grid;
	font-family: ui-serif, Georgia, "Times New Roman", serif;
	font-size: 80px;
	font-weight: 800;
	height: 46px;
	place-items: center;
	position: absolute;
	width: 46px;
}

/* Opening mark: top-left, slightly above the box */
.nf-quote blockquote::before {
	content: "\201C";
	left: 0px;
	top: -20px;
}

/* Closing mark: bottom-right, slightly below the box */
.nf-quote blockquote::after {
	bottom: -20px;
	content: "\201D";
	right: 0px;
}

/* Attribution row: right-aligned */
.nf-quote figcaption {
	text-align: right;
}

/* Author line: block layout with extra top spacing */
.nf-quote figcaption cite {
	display: block;
	margin-top: 30px;
}

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

/* Section container */
section .nf-container:has(.nf-marquee) {
	max-width: 100vw;
}

/* Marquee (outer shell) */
.nf-marquee {
	display: flex;
	margin: 0 auto;
	overflow: hidden;
	padding: 20px 0;
	width: 100%;
}

/* Each direct child track spans full width */
.nf-marquee > * {
	flex: 0 0 100%;
}

/* Track (animated row of logos) */
.nf-marquee .nf-marquee-track {
	animation: scrolling 30s linear infinite;
	display: flex;
	gap: 40px;
	padding-right: 40px;
	will-change: transform;
}

/* Logo cell */
.nf-marquee .nf-marquee-track .nf-marquee-seq {
	align-items: center;
	display: grid;
	justify-content: center;
	width: 100%;
}

/* Logo image */
.nf-marquee .nf-marquee-track .nf-marquee-seq img {
	display: block;
	filter: grayscale(100%);
	max-height: 80px;
	max-width: 200px;
}

/* Pause on hover (accessibility: gives user control) */
.nf-marquee:hover .nf-marquee-track {
	animation-play-state: paused;
}

/* Keyframes */
@keyframes scrolling {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}

}

/* -------------------------------------------------------------------------------- */
/*                                   Splited List                                   */
/* -------------------------------------------------------------------------------- */
ul.two-cols,
ul.three-cols {
  column-gap: 10rem;
  list-style-position: inside;
}

ul.two-cols {
  column-count: 2;
}

ul.three-cols {
  column-count: 3;
}

ul.two-cols li,
ul.three-cols li {
  break-inside: avoid;
}

@media (max-width:996px) {
	ul.three-cols {
	  column-count: 2;
	}

}

@media (max-width:625px) {
	ul.two-cols,
	ul.three-cols {
	  column-count: 1;
	}

}

/* -------------------------------------------------------------------------------- */
/*                                    Lined List                                    */
/* -------------------------------------------------------------------------------- */

.nf-lined-list {
	display: block;
	width: 100%;
}

.nf-lined-list figure {
	margin: 0px 0px 24px 0px;
	padding-left: 16px;
	position: relative;
}

.nf-lined-list figure:last-child {
	margin-bottom: 0px;
}

.nf-lined-list figure::before {
	background-color: var(--pri-base);
	border-radius: 2px;
	content: "";
	height: 100%;
	left: 0px;
	position: absolute;
	top: 0px;
	width: 4px;
}

.nf-lined-list figure h3 {
	color: var(--abs-black);
	font-size: 24px;
	font-weight: 700;
	margin: 0px 0px 6px 0px;
}

.nf-lined-list figure p {
	color: var(--sec-neutral);
	margin: 0px;
}

.nf-lined-list--grid {
	display: grid;
	row-gap: 36px;
}

.nf-lined-list--grid .nf-row {
	align-items: center;
	column-gap: 32px;
	display: grid;
	grid-template-columns: minmax(180px, 1fr) repeat(4, minmax(160px, 1fr));
	margin: 0px;
	padding-left: 16px;
	position: relative;
	row-gap: 16px;
}

.nf-lined-list--grid>.nf-row::before {
	background-color: var(--pri-base);
	border-radius: 2px;
	content: "";
	height: 100%;
	left: 0px;
	position: absolute;
	top: 0px;
	width: 4px;
}

.nf-lined-list--grid>.nf-row h3 {
	color: var(--abs-black);
	margin: 0;
}

.nf-logos {
	display: grid;
	grid-template-rows: repeat(2, auto);
	row-gap: 22px;
}

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

.nf-logo img,
.nf-logo svg {
	max-height: 28px;
	max-width: 100%;
	width: auto;
}

@media (max-width:1024px) {
	.nf-lined-list--grid>.nf-row {
		column-gap: 24px;
		grid-template-columns: minmax(200px, 1fr) repeat(3, minmax(140px, 1fr));
	}

}

@media (max-width:768px) {
	.nf-lined-list--grid {
		row-gap: 24px;
	}

	.nf-lined-list--grid>.nf-row {
		grid-template-columns: 1fr;
		row-gap: 14px;
	}

	.nf-logos {
		column-gap: 20px;
		grid-auto-rows: auto;
		grid-template-columns: repeat(2, minmax(120px, 1fr));
	}

}

@media (max-width:480px) {
	.nf-logo img,
	.nf-logo svg {
		max-height: 24px;
	}

	.nf-logos {
		grid-template-columns: repeat(2, minmax(100px, 1fr));
	}

}

/* -------------------------------------------------------------------------------- */
/*                                    Check List                                    */
/* -------------------------------------------------------------------------------- */
.nf-container.center-content .nf-checklist {
	list-style: none;
	margin: 24px 0px 0px;
	max-width: 520px;
	padding: 0px;
	text-align: left;
	width: 100%;
}

.nf-checklist li {
	color: var(--ink-base);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 16px;
	padding-left: 44px;
	position: relative;
}

.nf-checklist li::before {
	background-color: var(--sec-strong);
	border-radius: 50%;
	content: "";
	height: 28px;
	left: 0px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
}

.nf-checklist li::after {
	align-items: center;
	color: var(--abs-white);
	content: "\2713";
	display: flex;
	font-size: 15px;
	font-weight: 700;
	height: 28px;
	justify-content: center;
	left: 0px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
}

.nf-checklist li > div {
	color: var(--sec-neutral);
	font-weight: normal;
	line-height: 1.4;
	margin-top: 4px;
}

/* -------------------------------------------------------------------------------- */
/*                                      Media                                       */
/* -------------------------------------------------------------------------------- */

.nf-media {
	display: flex;
	flex-direction: row !important;
	align-items: flex-start;
	gap: 24px;
}

.nf-media > iframe {
	display: block;
	flex: 0 0 750px;
	max-width: 750px;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
}

.nf-media > div {
	flex: 1 1 0;
	min-width: 280px;
}

@media (max-width:1100px) {
	.nf-media {
		flex-direction: column !important;
	}

	.nf-media > iframe {
		max-width: 100%;
		flex-basis: auto;
	}

}

/* -------------------------------------------------------------------------------- */
/*                              Form / Input / Search                               */
/* -------------------------------------------------------------------------------- */
.nf-form {
	max-width: 800px;
	position: relative;
	width: 100%;
}

.form-group {
	width: 100%;
}

.form-row {
	align-items: flex-start;
	display: flex;
	gap: 24px;
}

.form-row > .form-group {
	flex: 1;
	min-width: 0px;
}

.nf-select {
	display: block;
	position: relative;
	width: 100%;
}

.nf-select::after {
	bottom: 16px;
	color: var(--abs-black);
	content: "\F078";
	font-family: FontAwesome;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	pointer-events: none;
	position: absolute;
	right: 12px;
}

.nf-select select {
	-webkit-appearance: none;
	appearance: none;
	background-image: linear-gradient(var(--pri-base), var(--pri-base));
	background-position: right 36px center;
	background-repeat: no-repeat;
	background-size: 1px 60%;
	background: var(--abs-white);
	border-radius: 8px;
	border: 1px solid var(--pri-base);
	color: var(--abs-black);
	cursor: pointer;
	display: block;
	font: inherit;
	height: 44px;
	line-height: 1.2;
	padding: 10px 12px;
	width: 100%;
}

.nf-select select option[disabled][selected] {
	color: #8AA0AD;
}

.form-group > label {
	color: var(--abs-black);
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 6px;
}

.form-group > input:not([type="radio"]):not([type="checkbox"]),
.form-group > textarea,
.form-group > select:not(:where(.nf-select select)) {
	background: var(--abs-white);
	border-radius: 10px;
	border: 1px solid var(--pri-base);
	color: var(--abs-black);
	font-size: 15px;
	height: 44px;
	line-height: 1.3;
	padding: 10px 12px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
	width: 100%;
}

.form-group > textarea {
	height: auto;
	min-height: 150px;
	resize: vertical;
}

.form-group > input:hover,
.form-group > textarea:hover,
.form-group > select:hover {
	border-color: var(--sec-mid);
}

.nf-select input:focus,
.nf-select textarea:focus,
.nf-select select:focus {
	border-color: var(--pri-base);
	outline: none;
}

::placeholder {
	color: var(--sec-neutral);
}

.nf-field-hint {
	color: var(--sec-neutral);
	font-size: 12px;
	line-height: 1.3;
	margin-bottom: 0px;
	margin-top: 6px;
	min-height: 18px;
}

.nf-errors {
	min-height: 18px;
}

.nf-error {
	background-color: var(--surface-attention);
	border-radius: 4px;
	color: var(--acc-critical);
	display: block;
	font-size: 12px !important;
	font-weight: 700;
	margin-bottom: 15px;
	margin-top: 5px;
	padding: 4px;
}

.nf-error[hidden] {
	display: none;
}

.form-group.is-error > input,
.form-group.is-error > textarea,
.form-group.is-error > select {
	border-color: var(--acc-critical) !important;
}

.form-group.is-success > input,
.form-group.is-success > textarea,
.form-group.is-success > select {
	border-color: var(--acc-positive) !important;
}

.nf-choice-group {
	display: grid;
	gap: 12px;
}

.nf-radio {
	align-items: start;
	column-gap: 10px;
	display: grid;
	grid-template-columns: 20px 1fr;
}

.nf-radio input[type="radio"] {
	-webkit-appearance: none;
	appearance: none;
	background: var(--abs-white);
	border-radius: 50%;
	border: 2px solid var(--sec-mid);
	cursor: pointer;
	display: grid;
	height: 18px;
	margin: 2px 0px 0px;
	place-content: center;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
	width: 18px;
}

.nf-radio input[type="radio"]::after {
	background: var(--pri-base);
	border-radius: 50%;
	content: "";
	height: 10px;
	transform: scale(0);
	transition: transform 0.12s ease-in-out;
	width: 10px;
}

.nf-radio input[type="radio"]:hover {
	border-color: var(--sec-strong);
}

.nf-radio input[type="radio"]:focus-visible {
	border-color: var(--pri-base);
	box-shadow: 0px 0px 0px 3px var(--pri-tint);
	outline: none;
}

.nf-radio input[type="radio"]:checked {
	background: var(--abs-white);
	border-color: var(--pri-base);
}

.nf-radio input[type="radio"]:checked::after {
	transform: scale(1);
}

.nf-radio input[type="radio"]:disabled {
	cursor: not-allowed;
	opacity: 0.6;
}

.nf-radio input[type="radio"]:disabled + label {
	opacity: 0.7;
}

.form-group.is-error .nf-radio input[type="radio"] {
	border-color: var(--acc-critical) !important;
	box-shadow: 0px 0px 0px 3px var(--pri-neutral);
}

.form-group.is-success .nf-radio input[type="radio"] {
	border-color: var(--acc-positive) !important;
	box-shadow: 0px 0px 0px 3px var(--pri-neutral);
}

.nf-alert {
	border-radius: 10px;
	padding: 5px 15px;
}

.nf-alert.success {
	background: var(--pri-tint);
	color: var(--acc-positive);
}

.nf-alert.error {
	background: var(--pri-tint);
	color: var(--acc-critical);
}

.nf-actions {
	display: flex;
	justify-content: flex-start;
	margin-top: 10px;
}

@media (max-width:640px) {
	.form-row {
		flex-wrap: wrap;
	}

	.form-row > * {
		flex: 1 1 100%;
		margin-left: 0px;
	}

}

.nf-loading {
	align-items: center;
	backdrop-filter: blur(2px);
	background: rgba(234, 239, 241, 0.75);
	border-radius: 14px;
	display: none;
	inset: 0px;
	justify-content: center;
	position: absolute;
	z-index: 10;
}

.nf-form.is-loading .nf-loading {
	display: flex;
}

.nf-loading-inner {
	align-items: center;
	background: var(--abs-white);
	border-radius: 999px;
	border: 1px solid var(--pri-neutral);
	box-shadow: 0px 6px 14px var(--nf-shadow);
	color: var(--pri-dark);
	display: inline-flex;
	font-size: 14px;
	gap: 10px;
	line-height: 1.2;
	padding: 10px 14px;
}

.nf-spinner {
	animation: nfspin 0.8s linear infinite;
	border-radius: 50%;
	border: 2px solid var(--pri-neutral);
	border-top-color: var(--pri-base);
	height: 18px;
	width: 18px;
}

@keyframes nfspin {
	to {
		transform: rotate(360deg);
	}

}

.nf-status {
	background: var(--pri-tint);
	border-radius: 10px;
	border: 1px solid var(--pri-neutral);
	color: var(--pri-dark);
	display: none;
	margin-top: 14px;
	padding: 12px 14px;
}

.nf-status.is-visible {
	display: block;
}

.nf-status.success {
	background: var(--pri-tint);
	border-color: var(--pri-neutral);
	color: var(--acc-positive);
}

.nf-status.error {
	background: var(--pri-tint);
	border-color: var(--pri-neutral);
	color: var(--acc-critical);
}

.nf-input-btn {
	align-items: stretch;
	background-color: var(--abs-white);
	border-radius: 8px;
	border: 1px solid var(--pri-base);
	display: inline-flex;
	overflow: hidden;
	width: 100%;
}

.nf-input-btn input[type="search"] {
	background-color: transparent;
	border: none;
	flex: 1 1 auto;
	font-size: 14px;
	height: 44px;
	line-height: 1.4;
	min-width: 0px;
	padding: 0px 10px;
}

.nf-input-btn input[type="search"]::placeholder {
	color: var(--sec-neutral);
}

.nf-input-btn input[type="search"]:focus {
	outline: none;
}

.nf-input-btn button[type="submit"] {
	align-items: center;
	background-color: var(--pri-base);
	border-left: 1px solid var(--nf-shadow);
	border: none;
	color: var(--abs-white);
	cursor: pointer;
	display: inline-flex;
	flex: 0 0 auto;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.nf-input-btn button[type="submit"] i {
	font-size: 14px;
}

.nf-input-btn button[type="submit"]:hover,
.nf-input-btn button[type="submit"]:focus-visible {
	background-color: var(--sec-strong);
}

@media (max-width:768px) {
	.nf-form {
		max-width: 100%;
		padding: 0px 16px;
	}

	.form-row {
		align-items: stretch;
		flex-direction: column;
		gap: 16px;
	}

	.form-row > .form-group,
	.form-row > fieldset.form-group {
		flex: 0 0 100%;
		min-width: 0;
		width: 100%;
	}

	.nf-choice-group {
		gap: 10px;
	}

	.form-group > input:not([type="radio"]):not([type="checkbox"]),
	.form-group > textarea,
	.form-group > select:not(:where(.nf-select select)),.nf-select select {
		width: 100%;
	}

	.nf-actions {
		justify-content: stretch;
	}

	.nf-input-btn {
		width: 100%;
	}

}

/* -------------------------------------------------------------------------------- */
/*                                  Press Release                                   */
/* -------------------------------------------------------------------------------- */
.tracker {
	height: 1px;
	width: 1px;
}

#release img {
	max-width: 100%;
}

#release a {
	overflow-wrap: anywhere;
	word-break: break-word;
}

@media (max-width:640px) {
	#release table {
		display: block !important;
		max-width: 100% !important;
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch;
	}

	#release table > tbody {
		display: table !important;
		width: max-content !important;
		min-width: 100% !important;
	}

}

@media print {
	body *:not([data-print="show"]):not([data-print="show"] *):not(:has([data-print="show"])),
	.nf-share-row,
	.warning-block,
	.nf-share {
		display: none !important;
	}

	[data-print="show"] {
		all: revert !important;
	}

	[data-print="show"] .nf-container {
		margin: 0px;
		padding: 0px;
	}

	[data-print="show"] .nf-container h2,
	[data-print="show"] .nf-container h3,
	[data-print="show"] .nf-container p {
		all: revert !important;
	}
}

/* -------------------------------------------------------------------------------- */
/*                                     Cookies                                      */
/* -------------------------------------------------------------------------------- */
.cookie-consent-overlay {
	-webkit-backdrop-filter: blur(6px);
	align-items: center;
	backdrop-filter: blur(6px);
	background: var(--nf-overlay);
	display: flex;
	inset: 0;
	justify-content: center;
	position: fixed;
	z-index: 9999;
}

.cookie-consent-overlay[aria-hidden="true"] {
	display: none;
}

body.cookie-consent-open {
	overflow: hidden;
}

.cookie-consent-banner {
	background-color: var(--abs-white);
	border-radius: 16px;
	box-shadow: 0 20px 60px var(--nf-shadow);
	box-sizing: border-box;
	font-size: 0.95rem;
	max-width: 570px;
	padding: 32px 32px 24px;
	width: calc(100% - 40px);
}

.cookie-consent-banner h3 {
	color: var(--abs-black);
	font-size: 1.35rem;
	font-weight: 600;
	margin: 0px 0px 12px;
}

.cookie-consent-text {
	color: var(--abs-black);
	line-height: 1.5;
	margin: 0px 0px 20px;
}

.cookie-consent-text a {
	color: var(--pri-base);
	text-decoration: none;
}

.cookie-consent-options {
	background: var(--pri-neutral);
	border-radius: 12px;
	border: 1px solid var(--sec-neutral);
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;
	margin-top: 4px;
	padding: 12px 14px;
}

.cookie-consent-option {
	align-items: center;
	color: var(--abs-black);
	display: flex;
	font-size: 0.9rem;
	gap: 8px;
}

.cookie-consent-option input[type="checkbox"] {
	accent-color: var(--pri-base);
}

.cookie-consent-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

@media (max-width:480px) {
	.cookie-consent-banner {
		padding: 24px 20px 18px;
	}

	.cookie-consent-actions {
		flex-direction: column;
	}

	.cookie-consent-button {
		width: 100%;
	}

}

.cookie-policy-modal {
	align-items: center;
	display: none;
	inset: 40px 20px;
	justify-content: center;
	position: fixed;
	z-index: 10000;
}

.cookie-policy-modal[aria-hidden="false"] {
	display: flex;
}

.cookie-policy-modal-content {
	background: var(--abs-white);
	border-radius: 16px;
	box-shadow: 0 20px 60px --nf-overlay;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	max-height: 90vh;
	max-width: 900px;
	padding: 24px 24px 20px;
	width: 100%;
}

.cookie-policy-title {
	color: var(--abs-black);
	font-size: 1.3rem;
	margin: 0px 0px 12px;
}

.cookie-policy-body {
	color: var(--abs-black);
	flex: 1 1 auto;
	font-size: 0.9rem;
	line-height: 1.5;
	overflow: auto;
}

.cookie-policy-close {
	align-self: flex-end;
	background: transparent;
	border: none;
	color: var(--pri-base);
	cursor: pointer;
	font-size: 1.8rem;
	line-height: 1;
	margin: -4px -4px 4px;
}

/* -------------------------------------------------------------------------------- */
/*                                      Modal                                       */
/* -------------------------------------------------------------------------------- */

.nf-modal-overlay {
	-webkit-backdrop-filter: blur(6px);
	align-items: center;
	backdrop-filter: blur(6px);
	background: var(--nf-overlay);
	display: flex;
	inset: 0;
	justify-content: center;
	position: fixed;
	z-index: 9999;
}

.nf-modal-overlay[aria-hidden="true"] {
	display: none;
}

body.nf-modal-open {
	overflow: hidden;
}

.nf-modal {
	background-color: var(--abs-white);
	border-radius: 16px;
	box-shadow: 0 20px 60px var(--nf-shadow);
	box-sizing: border-box;
	font-size: 0.95rem;
	max-width: 570px;
	padding: 28px 28px 22px;
	position: relative;
	width: calc(100% - 40px);
}

.nf-modal--sm {
	max-width: 420px;
}

.nf-modal-title {
	color: var(--abs-black);
	font-size: 1.35rem;
	font-weight: 600;
	margin: 0 0 16px;
}

.nf-modal-close {
	align-items: center;
	background: transparent;
	border-radius: 10px;
	border: 0;
	color: var(--sec-strong);
	cursor: pointer;
	display: inline-flex;
	font-size: 28px;
	height: 40px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 40px;
}

.nf-modal-close:hover {
	background: var(--pri-tint);
	color: var(--sec-mid);
}

.nf-modal-close:focus-visible {
	outline: 2px solid var(--pri-dark);
	outline-offset: 2px;
}

.nf-modal .nf-form {
	max-width: none;
	padding: 0;
}

.nf-modal-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 16px;
}

.nf-modal-actions--stretch > * {
	width: 100%;
}

@media (max-width:480px) {
	.nf-modal {
		padding: 24px 20px 18px;
	}
}

/* -------------------------------------------------------------------------------- */
/*                                     Switcher                                     */
/* -------------------------------------------------------------------------------- */

.nf-switcher {
	width: 100%;
}

/* Visually hidden but accessible */
.nf-switcher__input {
	block-size: 1px;
	border: 0px;
	clip-path: inset(50%);
	clip: rect(0 0 0 0);
	inline-size: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0px;
	position: absolute;
	white-space: nowrap;
}

/* Tabs row */
.nf-switcher__tabs {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0px 0px 14px 0px;
}

/* Labels are styled as buttons via existing btn classes */
.nf-switcher__tab {
	align-items: center;
	display: inline-flex;
	justify-content: center;
	min-height: 42px;
	padding: 0px 16px;
	text-transform: none;
	user-select: none;
}

/* Panel box */
.nf-switcher__panel-wrap {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	border: 1px solid var(--abs-black);
	padding: clamp(14px, 2.2vw, 22px);
}

.nf-switcher__panel {
	display: none;
}

.nf-switcher__text {
	font-size: 14px;
	line-height: 1.55;
	margin: 0px 0px 16px 0px;
}

/* Logos area */
.nf-switcher__media {
	align-items: center;
	background: var(--abs-white);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 14px 18px;
	justify-content: center;
	padding: clamp(14px, 2vw, 18px);
}

.nf-switcher__logo {
	display: block;
	filter: grayscale(100%);
	max-height: 80px;
	max-width: 200px;
	object-fit: contain;
}

/* Active tab: mimic .btn-secondary */
#sw_na:checked ~ .nf-switcher__tabs label[for="sw_na"],
#sw_eu:checked ~ .nf-switcher__tabs label[for="sw_eu"],
#sw_as:checked ~ .nf-switcher__tabs label[for="sw_as"],
#sw_sa:checked ~ .nf-switcher__tabs label[for="sw_sa"],
#sw_oc:checked ~ .nf-switcher__tabs label[for="sw_oc"],
#sw_af:checked ~ .nf-switcher__tabs label[for="sw_af"] {
	background-color: var(--pri-dark);
	color: var(--abs-white);
}

/* Active panel */
#sw_na:checked ~ .nf-switcher__panel-wrap .nf-switcher__panel--na,
#sw_eu:checked ~ .nf-switcher__panel-wrap .nf-switcher__panel--eu,
#sw_as:checked ~ .nf-switcher__panel-wrap .nf-switcher__panel--as,
#sw_sa:checked ~ .nf-switcher__panel-wrap .nf-switcher__panel--sa,
#sw_oc:checked ~ .nf-switcher__panel-wrap .nf-switcher__panel--oc,
#sw_af:checked ~ .nf-switcher__panel-wrap .nf-switcher__panel--af {
	display: block;
}

/* Focus ring that shows on the corresponding label when the (hidden) input is focused */
#sw_na:focus-visible ~ .nf-switcher__tabs label[for="sw_na"],
#sw_eu:focus-visible ~ .nf-switcher__tabs label[for="sw_eu"],
#sw_as:focus-visible ~ .nf-switcher__tabs label[for="sw_as"],
#sw_sa:focus-visible ~ .nf-switcher__tabs label[for="sw_sa"],
#sw_oc:focus-visible ~ .nf-switcher__tabs label[for="sw_oc"],
#sw_af:focus-visible ~ .nf-switcher__tabs label[for="sw_af"] {
	outline: 2px solid var(--pri-dark);
	outline-offset: 2px;
}

@media (max-width:520px) {
	.nf-switcher__tab {
		min-height: 40px;
		padding: 0px 14px;
	}

	.nf-switcher__logo {
		max-height: 26px;
		max-width: 130px;
	}

}
