/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bold}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

* { box-sizing: border-box }
img { max-width: 100%; height: auto; }

:root {
	--font-family: system-ui, "Helvetica Neue", "Helvetica", sans-serif;
	--brand-font-family: sans-serif;
	--site-max-width: 1100px;
	--content-side-padding: 14px;
	--border-radius: 10px;
	
	--text-color: #0b0b0c;
	--text-secondary-color: #505a5f;
	--text-off-white-color: #2b2b2c;
	--background-color: #ffffff;
	--background-secondary-color: #f5f6f9;
	--background-tint-color: #e3e5f4;
	
	--accent-color: #fa243c;
	--accent-contrast-color: white;
	
	--border-color: #d2d4d8;
	--image-border-color: #aaa;
	--list-item-separator-color: rgba(0,0,0, 0.10);
	
	--button-color: #000000;
	--button-background-color: #dbdad9;
	--button-hover-shadow: 0 0 0 100vmax inset rgba(255,255,255, 0.18);
	
	--link-highlight-background-color: rgba(230, 152, 167, 0.18);
	--text-link-highlight-background-color: rgba(230, 152, 167, 0.22);
}

.dark {
	--text-color: #ffffff;
	--text-secondary-color: #a0aaaf;
	--text-off-white-color: #d1d2d6;
	--background-color: #000000;
	--background-secondary-color: #0a0b0d;
	--background-tint-color: #202429;
	
	--accent-color: #fa243c;
	--accent-contrast-color: white;
	
	--border-color: #33353a;
	--image-border-color: #555555;
	--list-item-separator-color: rgba(255,255,255, 0.18);
	
	--link-highlight-background-color: rgba(230, 152, 167, 0.18);
	--text-link-highlight-background-color: rgba(230, 152, 167, 0.28);
}

@media (min-width: 50em) {
	
}
@media (min-width: 72em) {
	
}

html {
	font-family: var(--font-family);
	font-size: 16px;
	background-color: var(--background-color);
}

body {
	margin: 0;
	padding: 0;
	font-optical-sizing: auto;
	color: var(--text-color);
	background-color: var(--background-secondary-color);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}












/* Typography: Fonts
-------------------------------------------------- */
.brand-font {
	font-family: var(-brand-font);
	font-optical-sizing: auto;
	font-style: normal;
}
.weight-700 { font-weight: 700; }
.weight-900 { font-weight: 900; }




/* Typography: Headings
-------------------------------------------------- */
.heading-xxl {
	font-size: 30px;
	font-weight: 800;
	line-height: 1.1;
	margin-top: 0;
	margin-bottom: 0.75em;
}
h1, .heading-xl {
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.2;
	text-wrap: balance;
	margin-top: 30px;
	margin-bottom: 0.5em;
}
h2, .heading-lg {
	font-size: 1.325rem;
	font-weight: 700;
	line-height: 1.3;
	text-wrap: balance;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
}
h3, .heading-md {
	font-size: 1.063rem;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 0.5em;
}
h4, .heading-sm {
	font-size: 0.813rem;
	font-weight: 700;
	margin-bottom: 3px;
}
h5, .heading-xs {
	font-size: 0.813rem;
	font-weight: 600;
	margin-bottom: 1px;
}
@media (min-width: 50em) {
	.heading-xxl {
		font-size: 36px;
	}
	h1, .heading-xl {
		font-size: 2.0rem;
	}
	h2, .heading-lg {
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 50em) {
	h1 span, h2 span, h3 span {
		display: block;
		font-size: 0.75em;
		font-weight: 600;
		line-height: 1.3;
	}
}

.numbered-heading {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin-top: 3em;
	margin-bottom: 5px;
}
.numbered-heading:before {
	content: "";
	display: block;
	position: absolute;
	z-index: 0;
	top: 24px;
	left: 5%;
	width: 90%;
	height: 3px;
	background: var(--accent-color);
	border-radius: 2px;
}
.numbered-heading .item-number {
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
	font-size: 1em;
	text-align: center;
	width: 2.5em;
	height: 2.5em;
	background-color: var(--background-color);
	border: 3px solid var(--accent-color);
	border-radius: 50%;
}
.numbered-heading + .sub-heading {
	text-align: center;
	color: var(--text-secondary-color);
	margin-bottom: 1em;
}

@media screen and (min-width: 50em) {
	.numbered-heading:before {
		top: 23px;
	}
	.numbered-heading .item-number {
		width: 2em;
		height: 2em;
	}
}

/* Typography: Text
-------------------------------------------------- */
p,
ul,
ol {
	font-size: 1em;
	line-height: 1.4;
	margin-block-start: 0;
	margin-block-end: 1.5em;
}

.lead {
	font-size: 1.063rem;
	line-height: 1.34;
	letter-spacing: .007em;
	margin-top: 1em;
	margin-bottom: 1em;
}

.small-print {
	display: block;
	font-size: 10px;
	line-height: 1.2;
	color: var(--text-secondary-color);
}

@media (min-width: 50em) {
	.lead {
		font-size: 1.313em;
	}
}

/* Typography: Links
-------------------------------------------------- */
a,
.link {
	color: var(--accent-color);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
}
a.text-color {
	color: var(--text-color);
}
a.plain-link {
	color: var(--text-color);
	text-decoration: none;
}
a.plain-link:hover {
	color: var(--accent-color);
}
a:hover, a:active {
	text-decoration-thickness: 2px;
}

.strong-link {
	display: inline-block;
	font-weight: 500;
	text-underline-offset: 0.25em;
}
.strong-link:hover, .strong-link:active {
	text-decoration-thickness: 2px;
	background-color: var(--link-highlight-background-color);
}

/* Images: Base
-------------------------------------------------- */
figure {
	margin: 0 0 2rem 0;
}
figcaption.caption {
	display: block;
	font-size: 0.75em;
	line-height: 1.35;
	color: var(--text-secondary-color);
	margin-top: 2px;
}

.rounded-image {
	border-radius: var(--border-radius);
}
.tile-image {
	border-radius: 6px;
	aspect-ratio: 16 / 9;
}

.brand-icon {
	border: 1px solid var(--image-border-color);
	border-top-left-radius: 20%;
	border-top-right-radius: 20%;
	border-bottom-left-radius: 20%;
	border-bottom-right-radius: 20%;
	aspect-ratio: 1 / 1;
}
.brand-logo {
	border: 1px solid var(--image-border-color);
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	aspect-ratio: 21 / 10;
}
.brand-screenshot {
	border: 2px solid var(--image-border-color);
	padding: 6px;
	background-color: black;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	object-fit: cover;
	aspect-ratio: 1170 / 2532;
}

.icon-row .icon {
	width: 72px;
	height: 72px;
	margin-left: 2px;
	margin-right: 2px;
	margin-top: 3px;
	margin-bottom: 3px;
}














/* Layout
-------------------------------------------------- */
.container {
	max-width: var(--site-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--content-side-padding);
	padding-right: var(--content-side-padding);
}

.limit-character-width {
	max-width: 70ch;
	margin-left: auto;
	margin-right: auto;
}

.grid {
	display: grid;
	gap: 10px;
	grid-template-columns: 100%;
}

.item-grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.align-center { align-items: center; }

@media (min-width: 50em) {
	.grid[data-items-md="2"] {
		grid-template-columns: 50% 50%;
		gap: 25px;
	}
	.grid.columns-60-30 {
		grid-template-columns: 60% 30%;
		justify-content: space-between;
	}
	.grid.columns-70-30 {
		grid-template-columns: 70% 30%;
		gap: 50px;
	}
}

@media (min-width: 72em) {
	
}

/* Layout sections
-------------------------------------------------- */
.section {
	
}
.section-heading-icon {
	width: 128px;
	height: 128px;
}

/* Side nav: only on-screen by default on large screens, otherwise place it into view when required
-------------------------------------------------- */
#sidenav {
	position: fixed;
	z-index: 9;
	top: 50px;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100lvh;
	height: calc(100vh - 50px);
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	background-color: var(--background-color);
	padding-top: 30px;
	opacity: 0;
	transform: translateY(-100%);
	transition: opacity 1.0s, transform .44s cubic-bezier(.32, .08, .24, 1);
}

.sidenav-is-open #sidenav {
	overflow: auto;
	opacity: 1;
	transform: translateY(0%);
	transition: opacity 0.25s, transform 0.5s;
}

/* Sidenav menu
-------------------------------------------------- */
.sidenav-container {
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 100px;
	max-width: 30ch;
}

.sidenav-menu {
	margin-block-end: 25px;
	padding: 0;
	font-size: 1.125rem;
	font-weight: 500;
}

.sidenav-menu .menu-item {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0.5em var(--content-side-padding);
	gap: 1.5ch;
	color: var(--text-secondary-color);
	text-decoration: none;
	border-radius: 4px;
	border-bottom: 1px solid var(--list-item-separator-color);
}

.sidenav-menu .menu-item.active, .sidenav-menu .menu-item:hover {
	color: var(--text-color);
	background-color: var(--link-highlight-background-color);
}

.sidenav-menu .menu-icon, .sidenav-menu .menu-icon-color {
	width: 1.0em;
	height: 1.0em;
	opacity: 0.75;
}

.dark .sidenav-menu .menu-icon {
	filter: invert(1);
}

.sidenav-menu .label {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}












/* Navbar
-------------------------------------------------- */
#site-navbar {
	position: sticky;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 52px;
	background-color: rgba(223,229,231, 0.7);
	border-bottom: 1px solid var(--border-color);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	backdrop-filter: saturate(180%) blur(20px);
}
.dark #site-navbar {
	background-color: rgba(23,29,31, 0.7);
}

#site-navbar .navbar {
	display: flex;
	align-items: center;
	height: 52px;
}

#site-navbar .spacer {
	flex: 1;
}

#site-navbar .site-logo {
	display: block;
	width: auto;
	height: 23px;
}

.navbar-buttons {
	display: flex;
	align-items: center;
	margin-left: 10px;
}

.navbar-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	font-size: 0.875rem;
	color: var(--text-secondary-color);
	border-radius: 4px;
	width: 38px;
	height: 38px;
	padding: 10px;
}

.navbar-button.flex {
	width: auto;
}

.dark .navbar-button img {
	filter: invert(1);
}

@media (hover: hover) {
	.navbar-button:hover {
		background-color: rgba(255,255,255, 0.16);
	}
}

.navbar-menu {
	display: none;
}
@media (min-width: 50em) {
	.navbar-menu {
		display: flex;
	}
	.navbar-menu a {
		font-size: 12px;
		font-weight: 400;
		text-decoration: none;
		color: var(--text-color);
		padding: 8px 10px;
	}
	.navbar-menu a:hover {
		color: var(--accent-color);
	}
}














/* Buttons
-------------------------------------------------- */
.button {
	appearance: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: .12px;
	text-align: center;
	white-space: nowrap;
	border: none;
	border-radius: 6px;
	margin: 1px;
	padding: 0.75em 1.25em;
	background-color: var(--button-background-color);
	color: var(--button-color);
	text-decoration: none;
	text-align: center;
}

.button:hover {
	box-shadow: var(--button-hover-shadow);
}

.button.prominent {
	color: var(--accent-contrast-color);
	background-color: var(--accent-color);
}

.button.plain {
	color: var(--text-secondary-color);
	background-color: transparent;
}

.button.xl { font-size: 20px; padding-left: 1.75em; padding-right: 1.75em; }
.button.lg { font-size: 16px; }
.button.md { font-size: 14px; }
.button.sm { font-size: 13px; }
.button.xs { font-size: 12px; }

.button.stretch {
	width: 100%;
}

@media (min-width: 50em) {
	.button {
		padding-top: 0.5em;
		padding-bottom: 0.5em;
	}
	.button-with-label.vertical {
		flex-direction: column;
		gap: 3px;
	}
}















/* Components: Breadcrumbs
-------------------------------------------------- */
.breadcrumbs {
	margin-top: 0;
	margin-bottom: 0;
	padding: 10px 0 10px 0;
}

.breadcrumbs ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumbs li {
	display: inline-block;
	margin: 0;
	padding: 0;
	font-size: 0.75rem;
	color: var(--text-secondary-color);
}

.breadcrumbs li + li:before {
	content: "›";
	padding: 0 0.5em;
	color: var(--text-secondary-color);
}

.breadcrumbs a {
	color: var(--text-color);
	font-weight: normal
}

























/* Feature panel
-------------------------------------------------- */
.feature-panel {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: inherit;
	background-color: var(--background-tint-color);
	padding: 8px 10px;
	border-radius: var(--border-radius);
}
.feature-panel:hover,
.feature-panel:active {
	background-color: var(--link-highlight-background-color);
}

.feature-panel .icon {
	flex-grow: 0;
	flex-shrink: 0;
	width: 50px;
	height: 50px;
}

.feature-panel .disclosure {
	flex-grow: 0;
	flex-shrink: 0;
	width: 17px;
	height: 17px;
	opacity: 0.4;
}

.feature-panel .body {
	display: flex;
	flex-grow: 1;
	flex-direction: column;
	gap: 2px;
}

.feature-panel .title {
	font-size: 1rem;
	line-height: 1.2;
	font-weight: 800;
	margin-top: 0;
	margin-bottom: 0;
}

.feature-panel .text {
	font-size: 0.875rem;
	line-height: 1.3;
	font-weight: 500;
	margin-top: 0;
	margin-bottom: 0;
}

























/* Component: Horizontal Track
-------------------------------------------------- */
.horizontal-track {
	display: flex;
	flex-wrap: nowrap;
	gap: 10px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: calc(var(--content-side-padding) * -1);
	margin-right: calc(var(--content-side-padding) * -1);
	padding-left: var(--content-side-padding);
	padding-right: var(--content-side-padding);
	padding-top: 0;
	padding-bottom: 0;
	scroll-snap-type: x mandatory;
	scroll-padding: var(--content-side-padding);
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.horizontal-track::-webkit-scrollbar {
	display: none;
}

.horizontal-track-item {
	display: flex;
	flex-grow: 0;
	flex-shrink: 0;
	width: 100%;
	scroll-snap-align: start;
}

.horizontal-track[data-items="3.5"] .horizontal-track-item {
	width: 42%;
}
.horizontal-track[data-items="4"] .horizontal-track-item {
	width: 70%;
	max-width: 300px;
}

/* Sizing */
@media screen and (min-width: 50em) {
	.horizontal-track[data-items="2"] .horizontal-track-item {
		width: calc(50%);
	}
}

@media screen and (min-width: 72em) {
	.horizontal-track {
		gap: 15px;
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
		scroll-padding: 0;
	}
	
	.horizontal-track[data-items="3.5"] .horizontal-track-item {
		width: 26%;
	}
	.horizontal-track[data-items="4"] .horizontal-track-item {
		width: calc(25% - 11.5px);
	}
}































/* Lists
-------------------------------------------------- */
.list {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Check List
-------------------------------------------------- */
.check-list-item {
	display: flex;
	align-items: center;
	font-size: 14px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.check-list-item .check {
	flex-grow: 0;
	flex-shrink: 0;
	width: 1.5em;
	height: 1.5em;
	margin-right: 14px;
}
.check-list-item .item {
	display: flex;
	flex-direction: column;
}

/* Article List
-------------------------------------------------- */
.article-list {
	
}
.article-list.sm {
	font-size: 0.875em;
}

.article-list .item {
	display: flex;
	align-items: center;
	color: inherit;
	text-decoration: none;
	padding: 0.75em 0;
	border-top: 1px solid var(--list-item-separator-color);
}
.article-list .item:hover,
.article-list .item:active {
	text-decoration: underline;
}
.article-list .item-image {
	flex-grow: 0;
	width: 30%;
	border-radius: 5px;
	margin-right: 12px;
}
.article-list .item-title {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.3;
}









/* Brand List
-------------------------------------------------- */
.brand-list {
	display: grid;
	column-gap: 26px;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	list-style: none;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: calc(var(--content-side-padding) * -1);
	margin-right: calc(var(--content-side-padding) * -1);
	padding: 0;
}

.brand-list-item {
	position: relative;
	display: flex;
	align-items: center;
	margin: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: var(--content-side-padding);
	padding-right: var(--content-side-padding);
	border-top: 1px solid var(--list-item-separator-color);
}
.brand-list-item:hover,
.brand-list-item:active {
	background-color: var(--link-highlight-background-color);
}

@media screen and (min-width: 72em) {
	.brand-list {
		margin-left: 0;
		margin-right: 0;
	}
	.brand-list-item {
		padding-left: 6px;
		padding-right: 6px;
	}
}

.brand-list-icon {
	flex: 0;
	width: 52px;
	margin-right: var(--content-side-padding);
}
.brand-list-body {
	display: flex;
	flex: 1;
	flex-direction: column;
}
.brand-list-disclosure {
	flex: 0;
	width: 12px;
	margin-left: 35px;
	opacity: 0.4;
}
.dark .brand-list-disclosure {
	filter: invert(1);
	opacity: 0.48;
}

.brand-list-title {
	font-size: 1em;
	line-height: 1.35;
	margin: 0;
}

.brand-list-description {
	display: block;
	font-size: 0.813em;
	line-height: 1.2;
	color: var(--text-secondary-color);
	margin-top: 1px;
}



/* Description list
-------------------------------------------------- */
.description-list {
	list-style: none;
}

.description-list dt {
	font-weight: bold;
	color: var(--text-secondary-color);
}

.description-list dd {
	line-height: 1.35;
	margin-top: 0.15em;
	margin-inline-start: 0;
	margin-block-end: 0.5em;
	padding-bottom: 0.25em;
}











/* Panels
-------------------------------------------------- */
.panel {
	position: relative;
	display: block;
	color: var(--text-color);
	text-decoration: none;
	width: 100%;
	padding: 1em;
	border-radius: var(--border-radius);
	background-color: var(--background-tint-color);
}
.panel.ratio-4-5 { aspect-ratio: 4 / 5; }
.panel.with-footer { padding-bottom: 110px; }
.panel.flex { display: flex; flex-direction: column; }

a.panel:hover {
	filter: brightness(0.8);
}

.panel-heading-xs {
	flex-grow: 1;
	display: block;
	font-size: 0.75em;
	line-height: 1.25;
	color: var(--text-secondary-color);
	margin-top: 0;
	margin-bottom: 1em;
}
.panel-heading-xl {
	display: block;
	font-size: 2.25em;
	font-weight: 700;
	marging-top: 0;
}

.panel-heading {
	font-size: 1.75rem;
	font-weight: 800;
}
.panel-heading small {
	display: block;
	font-size: 75%;
	font-weight: 400;
	margin-top: 0;
}
.panel-text {
	margin-top: 20px;
	font-size: 12px;
	font-weight: 500;
	color: rgba(255,230,235, 0.68);
}
.panel-icon-row .brand-icon {
	width: 32px;
	height: 32px;
	margin-bottom: 15px;
	box-shadow: 2px 3px 2px 0px rgba(0,0,0, 0.16);
	border: 1px solid rgba(255,255,255, 0.18);
}
.panel-icon-row.md .brand-icon {
	width: 52px;
	height: 52px;
}

.panel.lg {
	padding: 2.5em;
}
.panel.lg .brand-icon {
	width: 110px;
	height: 110px;
	margin-bottom: 2em;
}
.panel.lg .brand-logo {
	width: 130px;
	margin-bottom: 2em;
}

.panel-footer-pane {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70px;
	padding: 0 1em;
	backdrop-filter: blur(20px) saturate(80%) brightness(75%);
	border-bottom-left-radius: var(--border-radius);
	border-bottom-right-radius: var(--border-radius);
}
.panel-footer-pane .brand-icon {
	margin: 0 3px;
	width: 40px;
	height: 40px;
	border: none;
}
.panel-footer {
	display: block;
	font-size: 0.813em;
	font-weight: 500;
	line-height: 1.35;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
}
.panel-cta-links a {
	font-size: 1.125em;
	display: block;
	padding: 0.25em 0;
	text-decoration: none;
}
.panel-cta-links a:hover {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

/* Panel list
-------------------------------------------------- */
.panel-list {
	margin: 8px -1em 0 -1em;
	padding: 0;
	list-style: none;
	text-align: left;
}
.panel-list-item {
	display: flex;
	flex-direction: column;
	line-height: 1.4;
	margin: 0;
	padding: 5px 1em;
}
.panel-list-item:nth-child(odd) {
	background-color: rgba(0,0,0, 0.1);
}
.dark .panel-list-item:nth-child(odd) {
	background-color: rgba(255,255,255, 0.1);
}
.panel-list .key {
	font-size: 0.75em;
	color: var(--text-secondary-color_;)
}
.panel-list .val {
	font-size: 0.875em;
	font-weight: bold;
}













/* Panels with fixed ratio and bottom text alignment
-------------------------------------------------- */
.panel-16-9 {
	position: relative;
	display: flex;
	justify-content: start;
	align-items: end;
	color: var(--text-color);
	text-decoration: none;
	width: 100%;
	padding: 1em;
	border-radius: var(--border-radius);
	background-color: var(--background-tint-color);
	aspect-ratio: 16 / 9;
}
.panel-16-9 .title {
	display: flex;
	flex-direction: column;
	font-size: 1.13rem;
	font-weight: 500;
	line-height: 1.3;
}
.panel-16-9 .title strong {
	white-space: nowrap;
	font-weight: 800;
}





/* Block links
-------------------------------------------------- */
.block-links {
	display: grid;
	grid-template-columns: repeat(4, minmax(100px, 1fr));
	gap: 10px;
}

.block-links .item {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--text-color);
	height: 4em;
	background-color: var(--background-tint-color);
	padding: 0.5em 1em;
	border-radius: var(--border-radius);
}

.block-links .item:hover {
	background-color: var(--link-highlight-background-color);
}

.block-links .item .icon {
	width: 1.5em;
	height: 1.5em;
	margin-right: 12px;
}
.dark .block-links .item .icon {
	filter: invert(1);
}













/* Tabs
-------------------------------------------------- */
.tabs {
	display: flex;
	flex-wrap: nowrap;
	margin-left: calc(var(--content-side-padding) * -1);
	margin-right: calc(var(--content-side-padding) * -1);
	padding-left: var(--content-side-padding);
	padding-right: var(--content-side-padding);
	padding-top: 5px;
	padding-bottom: 5px;
	list-style: none;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
	display: none;
}

.tabs.full-width {
	margin-left: calc(var(--content-side-padding) * -1);
	margin-right: calc(var(--content-side-padding) * -1);
	padding-left: var(--content-side-padding);
	padding-right: var(--content-side-padding);
	border-radius: 4px;
}

.tabs li {
	flex: 0 0 auto;
	padding: 0;
}

.tabs .tab {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	text-decoration: none;
	border: none;
}

/* Tabs: Filled Tabs
-------------------------------------------------- */
.filled-tabs .tab {
	font-size: 0.875em;
	font-weight: 600;
	height: 2.5em;
	margin-right: 2px;
	padding: 0 1.0em;
	border-radius: 1.25em;
	color: var(--text-color);
	background-color: var(--background-secondary-color);
}

.filled-tabs .tab:hover {
	background-color: var(--link-highlight-background-color);
}

.filled-tabs .tab.active {
	color: var(--accent-contrast-color);
	background-color: var(--accent-color);
}

.filled-tabs.hilight-tabs .tab {
	outline: 2px solid var(--border-color);
	margin-right: 6px;
}

/* Tabs: Plain Tabs
-------------------------------------------------- */
.plain-tabs .tab {
	font-size: 0.813em;
	font-weight: 600;
	padding: 0.75em 1.0em;
	color: var(--text-secondary-color);
	border-bottom: 2px solid transparent;
}

.plain-tabs .tab:hover {
	background-color: var(--link-highlight-background-color);
	border-radius: 5px;
}

.plain-tabs .tab.active {
	color: var(--text-color);
	border-bottom-color: var(--accent-color);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
























/* Articles
-------------------------------------------------- */
.main-article h2 {
	margin-top: 2.5em;
}
.main-article p,
.main-article ul {
	font-size: 17px;
	line-height: 1.4705882353;
}
.main-article p a {
	font-weight: 500;
	color: inherit;
	text-decoration-color: var(--accent-color);
	text-decoration-thickness: 1px;
}
.main-article p a:hover,
.main-article p a:active {
	text-decoration-thickness: 2px;
	background-color: var(--text-link-highlight-background-color);
}

.article-header {
	display: flex;
	flex-direction: column-reverse;
}
@media screen and (min-width: 50em) {
	.article-header {
		flex-direction: column;
	}
}

.article-main-figure {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: calc(var(--content-side-padding) * -1);
	margin-right: calc(var(--content-side-padding) * -1);
}
.article-main-image {
	margin: 0;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.article-byline {
	display: flex;
	align-items: center;
	gap: 0.25em;
	font-size: 11px;
	font-weight: 600;
	padding: 0.75em 0 1.0em 0;
}
.article-byline-date {
	color: var(--text-secondary-color);
}
.article-byline-date:before {
	content: "\2013";
	margin-left: 0.25rem;
	margin-right: 0.25rem;
}

@media screen and (min-width: 50em) {
	.article-main-figure {
		margin-left: 0;
		margin-right: 0;
	}
	.article-main-image {
		border-radius: 8px;
		aspect-ratio: 2 / 1;
	}
}

.article-inline-image {
	border-radius: 6px;
}

.quote {
	display: block;
	font-size: 17px;
	line-height: 1.4705882353;
	font-weight: 500;
	margin-block-start: 0;
	margin-block-end: 2em;
	padding: 1em;
	background-color: var(--background-tint-color);
	border-left: 3px solid var(--accent-color);
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}



















































/* Natural accordians!
-------------------------------------------------- */
details {
	background-color: var(--background-tint-color);
	border-radius: 5px;
	margin-bottom: 2px;
}

details.transparent {
	background-color: transparent;
}

details p {
	padding: 1em;
}

details summary {
	display: flex;
	font-size: 1.063em;
	line-height: 1.3;
	font-weight: 600;
	padding: 0.75em var(--content-side-padding);
	border-radius: 5px;
	cursor: pointer;
}

details.sub-details > summary {
	font-size: 1em;
	border-top: 1px solid var(--list-item-separator-color);
}

details summary:hover, details[open] > summary {
	background-color: var(--link-highlight-background-color);
}

summary::-webkit-details-marker {
	flex-shrink: 0;
	margin-top: 0.35em;
	margin-inline-end: 0.75em;
	opacity: 0.65;
}















/* Tags
-------------------------------------------------- */
.tags {
	display: flex;
	flex-wrap: nowrap;
	gap: 3px;
	list-style: none;
	margin: 0 3px 3px 0;
	padding: 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.tags::-webkit-scrollbar {
	display: none;
}
.tag {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 0;
	flex-shrink: 0;
	flex-wrap: nowrap;
	font-size: 0.813em;
	font-weight: 500;
	min-width: 5.5ch;
	height: 2.5em;
	padding-left: 6px;
	padding-right: 6px;
	background-color: var(--background-color);
	border: 1px solid var(--border-color);
	border-radius: 4px;
	white-space: nowrap;
}
.tag.sm {
	font-size: 0.688em;
}
.tag-icon {
	margin-right: 3px;
}























/* Info Label
-------------------------------------------------- */
.info-label {
	display: inline-block;
	font-size: 10px;
	font-weight: 600;
	margin: 1px 0;
	padding: 2px 6px;
	border-radius: 3px;
	background-color: var(--background-tint-color);
	vertical-align: middle;
	white-space: nowrap;
}

.info-label.plain {
	font-size: 9px;
	background-color: transparent;
	border: 1px solid var(--text-color);
	border-radius: 4px;
}














/* Rating stars
-------------------------------------------------- */
.rating-stars {
	color: orange !important;
}

























/* Information notice
-------------------------------------------------- */
.information-notice {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-weight: 500;
	margin-bottom: 1rem;
	padding: 1em;
	background-color: var(--background-tint-color);
	border-left: 5px solid rgba(255, 255, 255, 0.4);
	border-radius: 3px;
}

.information-notice.with-cta {
	gap: 8px;
}

@media (min-width: 40em) {
	.information-notice.with-cta {
		flex-wrap: nowrap;
		justify-content: space-between;
		gap: 75px;
	}
}

.information-notice.with-cta .cta-button {
	color: black;
	background-color: white;
	font-size: 0.875em;
}

.information-notice p {
	margin: 0;
	line-height: 1.35;
}

.information-notice .small-print {
	margin-top: 8px;
	color: inherit;
	opacity: 0.7;
}

.information-notice .actions {
	flex-shrink: 0;
	width: 100%;
}

.information-notice.success {
	color: #fff;
	background-color: rgb(40, 178, 40);
}

.information-notice.error {
	color: #fff;
	background-color: rgb(124, 27, 27);
}

.information-notice .icon {
	width: 2em;
	height: 2em;
	margin-right: 1em;
	filter: invert(1);
}


























/* Dialogs
-------------------------------------------------- */
dialog::backdrop {
	background: rgba(0, 0, 0, 0.75);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

dialog {
	background: var(--background-secondary-color);
	color: var(--text-color);
	padding: 2em;
	border: 2px solid var(--border-color);
	border-radius: 12px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
dialog[open] {
	transition:  translate 0.4s cubic-bezier(0.16, 1, 0.3, 1), display 0.4s cubic-bezier(0.16, 1, 0.3, 1) allow-discrete;
	translate: 0 0;
	@starting-style {
		translate: 0 100vh;
	}
}

.close-dialog-button {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 10px;
	right: 10px;
	width: 40px;
	height: 40px;
	font-size: 25px;
	font-weight: 600;
	color: var(--button-color);
	background: var(--button-background-color);
	border: none;
	border-radius: 50%;
}





















/* Forms: Inputs
-------------------------------------------------- */
.input-field {
	margin: 0 0 1em 0;
}

.input-hint {
	display: block;
	font-size: 0.875em;
	margin: 0 0 5px 0;
	color: var(--text-secondary-color);
}

.input-hint-inline {
	display: block;
	font-size: 0.875em;
	margin: 3px 0 0 0;
	color: var(--text-secondary-color);
}

fieldset {
	background-color: var(--background-tint-color);
	border: 1px solid var(--border-color);
	border-radius: 8px;
	margin-bottom: 2em;
	padding-top: 0;
	padding-bottom: 0.725em;
}

legend {
	font-weight: 500;
}

label {
	display: block;
	font-size: 0.875em;
	margin: 0 0 5px 0;
}

textarea, input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"], input[type="date"], input[type="datetime-local"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: var(--background-color);
	color: var(--text-color);
	font-size: 1rem;
	line-height: 1.1875;
	width: 100%;
	height: 2.5rem;
	border: 1px solid var(--border-color);
	border-radius: 5px;
	padding-left: 8px;
	padding-right: 8px;
}

.input-sm {
	max-width: 100px;
}

.input-md {
	max-width: 350px;
}

input[readonly] {
	background-color: transparent;
}

textarea {
	height: auto;
	padding-top: 6px;
	padding-bottom: 6px;
}

.search-bar {
	max-width: 380px;
	margin-left: auto;
	margin-right: auto;
}

.search-bar .search-input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: var(--background-color);
	color: var(--text-color);
	text-align: center;
	width: 100%;
	height: 3em;
	font-size: 1rem;
	line-height: 1.1875;
	border: 1px solid var(--border-color);
	margin: 10px 0;
	padding-left: 15px;
	padding-right: 8px;
	border-radius: 1.5em;
}

.search-results {
	min-height: 46vh;
}

/* Forms: Select inputs
-------------------------------------------------- */
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: var(--background-color);
	color: var(--text-color);
	font-size: 1rem;
	line-height: 1.1875;
	width: 100%;
	height: 2.5rem;
	border: 1px solid var(--border-color);
	border-radius: 5px;
	padding-left: 8px;
	padding-right: 24px;
	background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
	background-repeat: no-repeat;
	background-position: right;
}

select:hover {
	background-color: var(--thin-material-background-color);
}

/* Elements: tables
-------------------------------------------------- */
.table-container {
	font-size: 0.875em;
	margin-top: 1em;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.table {
	width: 100%;
	border-collapse: collapse;
	font-size: 1em;
}

.table th, .table td {
	font-size: 1em;
	text-align: left;
	padding: 0.3em 0.5em;
	border: 1px solid var(--list-item-separator-color);
}

.table th {
	background-color: var(--background-tint-color);
}

@media (max-width: 50em) {
	.table-container {
		margin-left: calc(var(--content-side-padding) * -1);
		margin-right: calc(var(--content-side-padding) * -1);
		padding-left: var(--content-side-padding);
		padding-right: var(--content-side-padding);
	}
}





















/* Footer
-------------------------------------------------- */
#site-footer {
	margin-top: 50px;
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 2px solid var(--border-color);
}

.fixed-button {
	position: fixed;
	z-index: 10;
	top: 56px;
	right: 5px;
	opacity: 0.5;
}
.fixed-button:hover {
	opacity: 1;
}























/* GambleAware
-------------------------------------------------- */
.gambleaware {
	font-weight: 600;
}
.gambleaware .branding {
	color: #EC6923;
}






/* Colours
-------------------------------------------------- */
.black { color: #ffffff; background-color: #000000; }
.white { color: #000000; background-color: #ffffff; }
.silver { color: #000000; background-color: silver; }
.gold { color: #000000; background-color: gold; }
.red { color: #ffffff; background-color: #eb2929; }
.red-1 { color: #000000; background-color: #e9bec9; }
.green { color: #ffffff; background-color: #3bc03e; }
.blue { color: #ffffff; background-color: #308bea; }
.yellow { color: #000000; background-color: #ebb146; }
.orange { color: #ffffff; background-color: #fe9237; }
.orange-1 { color: #000000; background-color: #f2b27c; }

/* Backgrounds
-------------------------------------------------- */
.abstract {
	color: white;
	background-size: cover;
	background-position: center;
}

.abstract.blue-yellow { background-image: url('/img/backgrounds/abstract-blue-yellow.jpg') }
.abstract.pink-yellow { background-image: url('/img/backgrounds/abstract-pink-yellow.jpg') }
.abstract.purple-neon { background-image: url('/img/backgrounds/abstract-purple-neon.jpg') }
.abstract.purple-blue { background-image: url('/img/backgrounds/abstract-purple-blue.png') }

.background { background-color: var(--background-color) }
.tint-background { background-color: var(--background-tint-color) }

.gradient-blue-red {
	color: white;
	background-color: #170d24;
	background-image:
		radial-gradient(ellipse at 10% 90%, #3c2d83 0%, transparent 55%),
		radial-gradient(ellipse at 90% 90%, #c33c65 0%, transparent 55%),
		radial-gradient(ellipse at 90% 10%, #4a74dc 0%, transparent 55%),
		radial-gradient(ellipse at 10% 10%, #35244f 0%, transparent 55%);
}
.gradient-blue-yellow {
	color: white;
	background-color: #170d24;
	background-image:
		radial-gradient(ellipse at 10% 90%, #bfcb43 0%, transparent 75%),
		radial-gradient(ellipse at 90% 90%, #38ae86 0%, transparent 75%),
		radial-gradient(ellipse at 90% 10%, #1d9dc4 0%, transparent 75%),
		radial-gradient(ellipse at 10% 10%, #425a96 0%, transparent 75%);
}
.gradient-purple-blue {
	color: white;
	background-color: #170d24;
	background-image:
		radial-gradient(ellipse at 10% 90%, #6039f1 0%, transparent 55%),
		radial-gradient(ellipse at 90% 90%, #d677f4 0%, transparent 55%),
		radial-gradient(ellipse at 90% 10%, #2b1fc2 0%, transparent 55%),
		radial-gradient(ellipse at 10% 10%, #c2028c 0%, transparent 55%);
}
.gradient-purple-neon {
	color: white;
	background-color: #170d24;
	background-image:
		radial-gradient(ellipse at 10% 90%, #8f1fe5 0%, transparent 75%),
		radial-gradient(ellipse at 90% 90%, #2720bb 0%, transparent 75%),
		radial-gradient(ellipse at 90% 10%, #191c23 0%, transparent 75%),
		radial-gradient(ellipse at 10% 10%, #08c9f4 0%, transparent 75%);
}











/* Allow entire items to be clickable without making the whole element a link
-------------------------------------------------- */
.full-item-link {
	position: relative;
}
.full-item-link .item-link:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

/* Sticky
-------------------------------------------------- */
.sticky {
	position: -webkit-sticky;
	position: sticky;
}
.sticky.at-top {
	top: 70px;
}








/* Tweaks
-------------------------------------------------- */
time { white-space: nowrap; }
hr { margin: var(--vertical-spacing) 0; height: 1px; background-color: var(--border-color); border: none; }










/* Sizing helpers
-------------------------------------------------- */
.max-width-300 { max-width: 300px; }



/* Layout spacing
-------------------------------------------------- */
.padding-top-none { padding-top: 0; }
.padding-top-sm { padding-top: 12px; }
.padding-top-md { padding-top: 30px; }
.padding-top-lg { padding-top: 60px; }
.padding-bottom-sm { padding-bottom: 15px; }
.padding-bottom-md { padding-bottom: 30px; }
.padding-bottom-lg { padding-bottom: 60px; }
.padding-bottom-xl { padding-bottom: 90px; }
.margin-top-none { margin-top: 0; }
.margin-top-xs { margin-top: 5px; }
.margin-top-sm { margin-top: 12px; }
.margin-top-md { margin-top: 30px; }
.margin-top-lg { margin-top: 60px; }
.margin-bottom-none { margin-bottom: 0px; }
.margin-bottom-xs { margin-bottom: 5px; }
.margin-bottom-sm { margin-bottom: 12px; }
.margin-bottom-md { margin-bottom: 30px; }
.margin-bottom-lg { margin-bottom: 60px; }
.margin-bottom-xl { margin-bottom: 180px; }



.dark .invert-on-dark {
	filter: invert(1);
}

.offset-text-color p,
.offset-text-color ul {
	color: var(--text-off-white-color);
}




/* Helpers
-------------------------------------------------- */
.flex-spacer { flex-grow: 1; }
.relative { position: relative; }
.block { display: block; }
.text-align-left { text-align: left; }
.text-align-center { text-align: center; }
.hidden { display: none !important; }
.nowrap { white-space: nowrap; }
.text-larger { font-size: 125%; }
@media (max-width: 40em) {
	.hidden-on-sm { display: none !important; }
}
@media (min-width: 40em) {
	.visible-only-on-sm { display: none !important; }
}
@media (max-width: 72em) {
	.hidden-on-md { display: none !important; }
}