/*! 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: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	
	--background-color: rgb(255,255,255);
	--text-color: rgb(29,29,31);
	--text-color-muted: #778;
	--accent-color: #03C03C;
	--tint-color: #f2f2f4;
	
	--header-background-color: rgba(255,255,255, .6);
	--header-backdrop-filter: blur(20px) saturate(140%);
	--header-highlight-color: rgba(29,29,31, .2);
	--header-border: 1px solid rgba(0,0,0, .2);
	
	--footer-background-color: #f1f2f5;
	--footer-border: 2px solid #ddd;
	
	--button-color: #fff;
	--button-background-color: #919395;
	--button-prominent-color: #fff;
	--button-prominent-background-color: #03C03C;
	
	--main-border-color: #ccc;
	--input-border-color: #ccc;
	--icon-border: 1px solid rgba(0,0,0, .2);
	
	--link-highlight-background-color: rgba(0,0,0, .1);
	
	--pad-site: 0 20px;
	--icon-border-radius: 14%;
	
}

.dark {
	
	--background-color: #000000;
	--text-color: rgb(245,245,247);
	--text-color-muted: #aaa;
	--accent-color: #03C03C;
	--tint-color: #141418;
	
	--header-background-color: #1d1e1f;
	--header-backdrop-filter: blur(20px) saturate(140%);
	--header-highlight-color: rgba(245,245,247, .2);
	--header-border: 1px solid rgba(255,255,255, .2);
	
	--footer-background-color: #111215;
	--footer-border: 2px solid #222;
	
	--button-color: #fff;
	--button-background-color: #3a3c3f;
	--button-prominent-color: #fff;
	--button-prominent-background-color: #03C03C;
	
	--main-border-color: #444;
	--input-border-color: #444;
	--icon-border: 1px solid rgba(255,255,255, .2);
	
	--link-highlight-background-color: rgba(255,255,255, .14);
	
}

@media screen and (min-width: 601px) {
	:root {
		--pad-site: 0 4%;
	}
}
@media screen and (min-width: 993px) {
	:root {
		--pad-site: 0 2%;
	}
}
@media screen and (min-width: 1140px) {
	:root {
		--pad-site: 0 4%;
	}
}


#theme-toggle-to-light {
	display: none
}

.dark #theme-toggle-to-light {
	display: initial
}

.dark #theme-toggle-to-dark {
	display: none
}








/* Base
   -------------------------------------------------------------------------------- */
html {
	font-size: 62.5%;
	font-family: var(--font-family);
	background-color: var(--background-color);
}

body {
	font-size: 1.5rem;
	color: var(--text-color);
	background-color: var(--background-color);
}

@media screen and (min-width: 601px) {
	body {
		font-size: 1.7rem;
	}
}

a {
	color: var(--accent-color);
}

a.inherit-color {
	color: inherit;
	text-decoration: none;
}

h1 {
	font-size: 2.8rem;
	margin-top: 0;
	margin-bottom: 0;
}

h2 {
	font-size: 2.2rem;
	margin-top: 0;
	margin-bottom: .75em;
}

h3 {
	font-size: 2.0rem;
	margin-top: 0;
	margin-bottom: .75em;
}

p {
	line-height: 1.5em;
	margin: 1em 0;
}

.lead {
	font-size: 19px;
	line-height: 1.3em;
	font-weight: 400;
	letter-spacing: 0.012em;
	margin-top: 32px;
	margin-bottom: 32px;
}

@media screen and (min-width: 993px) {
	h1 {
		font-size: 3.8rem;
	}
	h2 {
		font-size: 2.3rem;
	}
	aside h2 {
		font-size: 2.1rem;
	}
	.lead {
		font-size: 2.8rem;
	}
}

@media screen and (min-width: 1140px) {
	h1 {
		font-size: 4.0rem;
	}
	h2 {
		font-size: 3.0rem;
	}
	aside h2 {
		font-size: 2.3rem;
	}
	.lead {
		font-size: 2.8rem;
	}
}














/* Buttons
   -------------------------------------------------------------------------------- */
.accent {
	color: var(--accent-color);
}

.btn {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	font-size: 14px;
	letter-spacing: .5px;
	border: none;
	border-radius: 8px;
	margin: 1px;
	padding: .75em 1.5em;
	background-color: var(--button-background-color);
	color: var(--button-color);
	text-decoration: none;
	text-align: center;
}

.btn:hover {
	filter: brightness(145%);
}

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

.btn img {
	width: auto;
	height: 1em;
}



















/* Header
   -------------------------------------------------------------------------------- */
#header-site {
	position: fixed;
	z-index: 9;
	top: 0;
	left: 0;
	width: 100%;
	height: 48px;
	display: flex;
	align-items: center;
	background-color: var(--header-background-color);
	-webkit-backdrop-filter: var(--header-backdrop-filter);
	backdrop-filter: var(--header-backdrop-filter);
	padding: var(--pad-site);
	border-bottom: var(--header-border);
}

#nav-home {
	flex: 0 0 50%;
	color: inherit;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
}

#nav-home img {
	max-height: 30px;
	vertical-align: middle;
	padding-right: 2rem;
}

#nav-header-menu {
	display: none;
	flex: 1 0 auto;
}

#nav-tools {
	flex-grow: 1;
	text-align: right;
}

.nav-tool {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	border: none;
	background: none;
	width: 44px;
	height: 44px;
	padding: 12px;
	border-radius: 50%;
}

.nav-tool:hover {
	background-color: var(--link-highlight-background-color);
}

.dark .nav-tool img {
	filter: invert(1);
}

@media screen and (min-width: 993px) {
	#header-site {
		height: auto;
	}
	#nav-home {
		flex: 0 0 16%;
	}
	#nav-header-menu {
		display: block;
	}
}

#nav-header-menu ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

#nav-header-menu ul li {
	flex: 0 0 auto;
	margin-left: 15px;
	margin-right: 15px;
	border-top-width: 3px;
	border-top-style: solid;
	border-top-color: transparent;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: transparent;
}

#nav-header-menu ul li:first-child {
	margin-left: 0;
}

#nav-header-menu ul li a {
	display: block;
	height: 48px;
	line-height: 48px;
	margin: 0;
	padding: 0;
	color: var(--text-color-muted);
	font-weight: 400;
	text-decoration: none;
}

#nav-header-menu ul li:hover {
	border-bottom-color: var(--header-highlight-color);
}

#nav-header-menu ul li.active {
	border-bottom-color: var(--accent-color);
}
























/* Base layout
   -------------------------------------------------------------------------------- */
.container {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	padding: var(--pad-site);
}

#side-nav {
	position: fixed;
	top: 0;
	width: 80%;
	height: 0;
	overflow: auto;
}

main {
	padding-top: 90px;
	width: 100%;
	flex-basis: 100%;
}

aside {
	width: 100%;
	flex-basis: 100%;
}

@media screen and (min-width: 601px) {
	
	main {
		padding-top: 120px;
		width: 80%;
		flex-basis: 80%;
		flex-shrink: 0;
		padding-right: 5%;
	}
	
	aside {
		padding-top: 124px;
		width: 20%;
		flex-basis: 20%;
	}
	
}

@media screen and (min-width: 993px) {
	
	.container {
		flex-wrap: nowrap;
		padding: var(--pad-site);
	}
	
	#side-nav {
		position: -webkit-sticky;
		position: sticky;
		top: initial;
		bottom: 0;
		align-self: flex-end;
		align-self: end;
		padding-top: 120px;
		width: 17%;
		flex-basis: 17%;
		height: auto;
		min-height: 100vh;
		flex-shrink: 0;
		padding-right: 25px;
		background-color: var(--tint-color);
	}
	
	main {
		padding-top: 120px;
		width: 66%;
		flex-basis: 66%;
		flex-shrink: 1;
		padding-right: 5%;
		border: 1px solid #ccc;
	}
	
	aside {
		padding-top: 120px;
		width: 17%;
		flex-basis: 17%;
		background-color: var(--tint-color);
	}
	
	aside p {
		font-size: 14px;
		line-height: 20px;
	}
	
}









/* Menu nav toggle for smaller screens
-------------------------------------------------------------------------------- */
#side-bar-menu-toggle {
	display: none;
}

#side-bar-menu {
	position: fixed;
	top: 48px;
	left: 0;
	width: 100%;
	height: 0;
	background-color: var(--tint-color);
	-webkit-transition: background .44s .2s cubic-bezier(0.52, 0.16, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
	transition: background .44s .2s cubic-bezier(0.52, 0.16, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1)
}

#side-bar-menu-toggle:checked + #side-bar-menu {
	height: 100%;
	-webkit-transition: background .36s cubic-bezier(0.32, 0.08, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1);
	transition: background .36s cubic-bezier(0.32, 0.08, 0.24, 1),height .56s cubic-bezier(0.52, 0.16, 0.24, 1)
}















/* Footer
   -------------------------------------------------------------------------------- */
#footer-site {
	background-color: var(--footer-background-color);
	padding: var(--pad-site);
	padding-top: 30px;
	padding-bottom: 30px;
	border-top: var(--footer-border);
	font-size: 1.4rem;
}

#footer-site h3 {
	margin: 0 0 .5em 0;
	font-size: 1em;
}

#footer-site .copyright {
	margin: 0 0 0 0;
}

@media screen and (min-width: 993px) {
	
	#footer-site {
		padding-left: 19.4%;
	}
	
}















/* Lists
   -------------------------------------------------------------------------------- */
.list {
	margin-top: 0;
	margin-bottom: 120px;
	padding: 0;
	list-style: none;
}

.list .divider {
	
}

.list .list-item {
	position: relative;
	font-size: 1.4rem;
	font-weight: 300;
}

aside .list {
	margin-bottom: 40px;
}

aside .list .list-item {
	font-size: 1.5rem;
}

.list .list-item .list {
	margin-top: 3px;
	margin-bottom: 20px;
}

.list.spaced .list-item {
	margin-top: 10px;
}

.list .list-item-title {
	margin-bottom: .5em;
}

.list .list-item a {
	display: flex;
	align-items: center;
	color: var(--text-color-muted);
	line-height: 1.3;
	text-decoration: none;
	padding-top: 4px;
	padding-bottom: 4px;
	border-radius: 4px;
}

.list .list-item.active > a {
	color: var(--text-color);
	font-weight: 500;
}

.list.no-wrap .list-item a {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.list .list-item a:hover {
	text-decoration: underline;
	background-color: var(--link-highlight-background-color);
}

.list.block .list-item a {
	flex-direction: column;
	align-items: initial;
}

.list.block .list-item a:hover {
	text-decoration: none;
}

.list.block .list-item span {
	display: flex;
	align-items: center;
}

.list.block .list-item a .info {
	margin-bottom: 2px;
}

.list .list-item-logo-color {
	display: inline-block;
	width: 1em;
	height: 1em;
	border-radius: 16%;
	margin-right: 8px;
	background-color: #999;
}

.list .list-item-icon {
	width: 1em;
	height: 1em;
	margin-right: 8px;
	border-radius: 3px;
	vertical-align: top;
}

.dark .list-item-icon {
	filter: invert(1);
}

.list-item-icon-external-link {
	filter: invert(1);
	width: 1em;
	height: 1em;
	position: absolute;
	top: 30%;
	right: 0;
}

.dark .list-item-icon-external-link {
	filter: none;
}

.list .info {
	display: inline-block;
	color: var(--accent-color);
	font-size: smaller;
	margin-bottom: 0;
	font-weight: 600;
}

.list.key-val li {
	display: flex;
	justify-content: space-between;
	padding: .75em 0;
	border-bottom: 1px solid var(--main-border-color);
}

.list.key-val li:last-child {
	border-bottom: none;
}

.list.key-val .list-item a {
	padding: 0;
	line-height: 1;
}

.list.key-val .val {
	text-align: right;
	white-space: nowrap;
	color: var(--text-color-muted);
}

.list-icon {
	width: auto;
	height: 1em;
	margin-right: 5px;
	vertical-align: top;
}

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

.info-list {
	padding: 0;
	margin-top: 0;
	list-style: none;
}

.info-list li {
	font-size: 14px;
	padding: 2px 0;
}

@media screen and (min-width: 601px) {
	
	aside .list .list-item {
		font-size: 1.3rem;
	}
	
}

@media screen and (min-width: 993px) {
	
	.list .list-item {
		font-size: 1.1rem;
	}
	
}

@media screen and (min-width: 1140px) {
	
	.list .list-item {
		font-size: 1.3rem;
	}
	
}



/* Tiles list */
.tiles-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tiles-list .list-item {
	border-radius: 2rem;
	margin-bottom: 3rem;
	background-color: var(--tint-color);
}

.tiles-list .list-item:hover .item-img {
	filter: brightness(0.8);
}

.tiles-list .list-item > a {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
}

.tiles-list .item-description {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 2rem;
}

.tiles-list .item-img {
	border-top-left-radius: 2rem;
	border-top-right-radius: 2rem;
	height: 200px;
	object-fit: cover;
}

.tiles-list .item-description .label {
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--text-color-muted);
}

.tiles-list .item-description .title {
	margin: .25em 0 .75em 0;
}

.tiles-list .item-description .info {
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--text-color-muted);
	margin: 0;
}

.tiles-list .list-item {
	flex-basis: 100%;
}

@media screen and (min-width: 601px) {
	.tiles-list .list-item {
		flex-basis: 48%;
	}
	
	.tiles-list .item-img {
		height: 240px;
	}
}

@media screen and (min-width: 993px) {
	.tiles-list .item-1up a {
		flex-direction: row;
	}
	
	.tiles-list .item-img {
		height: 220px;
	}
	
	.tiles-list .item-1up .item-img {
		border-top-right-radius: 0;
		border-bottom-left-radius: 2rem;
		width: 60%;
		height: 280px;
	}
	
	.tiles-list .item-1up {
		flex-basis: 100%;
	}
	
	.tiles-list .item-2up {
		flex-basis: 48%;
	}
	
	.tiles-list .item-3up {
		flex-basis: 32%;
	}
	
	.tiles-list .item-1up .item-description .title {
		font-size: 2.4rem;
	}
}
















/* Image/figure tweaks
   -------------------------------------------------------------------------------- */
figure {
	margin-top: 0;
	margin-bottom: 60px;
	margin-left: 0;
	margin-right: 0;
}

.heading-img {
	width: 100%;
	border-radius: 20px;
}











/* Section spacing
   -------------------------------------------------------------------------------- */
.section {
	margin-bottom: 70px;
}


















/* Single item bar
   -------------------------------------------------------------------------------- */
.heading-offer {
	display: flex;
	align-items: center;
	padding-left: 18px;
	padding-right: 10px;
	border-left: 4px solid var(--accent-color);
	margin-bottom: 60px;
	background-color: var(--tint-color);
	border-radius: 12px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.heading-offer .brand-icon {
	width: 60px;
	height: 60px;
	border: var(--icon-border);
	border-radius: var(--icon-border-radius);
	margin-right: 20px;
}

.heading-offer .label {
	display: inline-block;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.8px;
	color: var(--accent-color);
	margin-bottom: 8px;
}

.heading-offer p {
	margin-top: 0;
	line-height: 1.4;
}

.heading-offer .btn {
	font-size: 12px;
	padding: .65em 1em;
	border-radius: 5px;
}

@media screen and (min-width: 601px) {
	
	.heading-offer .brand-icon {
		width: 110px;
		height: 110px;
	}
	
}

@media screen and (min-width: 993px) {
	
	.heading-offer .brand-icon {
		width: 140px;
		height: 140px;
	}
	
	.heading-offer .btn {
		font-size: 14px;
		border-radius: 8px;
		padding: .75em 1.5em;
	}
	
}
































/* Bar containing key details in title/value format
   -------------------------------------------------------------------------------- */
.info-bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 40px;
}

.info-bar .info-category {
	position: relative;
	flex-grow: 0;
	flex-shrink: 0;
	flex-basis: 100px;
	justify-content: center;
	text-align: center;
	margin-bottom: 1em;
}

.info-bar .info-category:after {
	display: block;
	content: '';
	position: absolute;
	right: 0;
	top: 20%;
	bottom: 20%;
	width: 1px;
	background-color: var(--main-border-color);
}

.info-bar .info-category:first-child:before {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 20%;
	bottom: 20%;
	width: 1px;
	background-color: var(--main-border-color);
}

.info-bar .info-category:last-child:after {
	display: none;
}

.info-bar .key {
	color:  var(--text-color-muted);
	font-size: 13px;
	font-weight: 600;
}

.info-bar .value {
	display: block;
	color:  var(--text-color);
	font-size: 25px;
	font-weight: 600;
}

@media screen and (min-width: 601px) {
	
	.info-bar {
		flex-wrap: nowrap;
		justify-content: space-between;
	}
	
	.info-bar .info-category {
		flex-grow: 1;
	}
	
	.info-bar .info-category:first-child:before {
		display: none;
	}
	
}













/* Feature rows contain tiles with title and info
   -------------------------------------------------------------------------------- */
.features {
	display: grid;
	grid-column-gap: 15px;
	column-gap: 15px;
	margin-bottom: 60px;
}

.features .item {
	text-decoration: none;
}

.features .item:hover {
	text-decoration: underline;
}

.features img {
	display: block;
	border-radius: 10px;
}

.features .item:hover img {
	box-shadow: 0 3px 10px 2px rgba(0,0,0, .3);
}

.features .item-text {
	display: flex;
	flex-direction: column;
}

.features .item-info {
	margin-top: 1em;
	margin-bottom: .25em;
	font-size: 1.1rem;
	line-height: 1.3;
	font-weight: 600;
	color: var(--accent-color);
}

.features .item-title {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 1.3rem;
	line-height: 1.3;
	color: var(--text-color);
}

.features.three-col {
	grid-template-columns: 1fr 1fr;
}

@media screen and (min-width: 993px) {
	
	.features {
		grid-column-gap: 25px;
		column-gap: 25px;
	}
	
	.features .item-info {
		font-size: 1.2rem;
	}
	
	.features .item-title {
		font-size: 1.5rem;
	}
	
	.features.three-col {
		grid-template-columns: 1fr 1fr 1fr;
	}
	
}

























/* Main item list
   -------------------------------------------------------------------------------- */
.item-list {
	margin-top: 0;
	margin-bottom: 80px;
	padding: 0;
	list-style: none;
}

.item-list .date {
	margin-top: 60px;
}

.item-list .date:first-child {
	margin-top: 0;
}

.item-list .item {
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--main-border-color);
	padding-top: 20px;
	padding-bottom: 20px;
}

.item-list .item-media {
	flex-shrink: 0;
	flex-basis: 100%;
}

.item-list .item-media .item-logo {
	width: auto;
	height: 2.2rem;
	background-color: rgba(255,255,255, 1);
	border-radius: 2px;
	padding: 2px;
}

.item-list .item-media .item-logo.large {
	height: 3rem;
	padding: 4px;
}

.item-list .item-body {
	flex-grow: 1;
	margin-right: 15px;
}

.item-list .item-cta {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
}

.item-list .time {
	float: right;
	font-size: 1.5rem;
	line-height: 1;
	letter-spacing: 1px;
	font-weight: 600;
	margin-top: 24px;
}

.item-list h3 {
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 2rem;
}

.item-list .info {
	margin-top: 0;
	margin-bottom: 7px;
	font-size: 1.5rem;
	line-height: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: var(--text-color-muted);
}

@media screen and (min-width: 993px) {
	.item-list .item {
		flex-direction: row;
	}
	
	.item-list .item-media {
		position: relative;
		top: -3px;
		flex-shrink: 1;
		flex-basis: 32%;
		text-align: right;
	}
	
	.item-list .time {
		margin-top: 0;
	}
	
	.item-list h3 {
		margin-bottom: 0;
	}
}







/* Main item list - large
   -------------------------------------------------------------------------------- */
.item-list-large {
	margin-top: 20px;
	margin-bottom: 60px;
	padding: 0;
	list-style: none;
}

.item-list-large .item {
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid var(--main-border-color);
	padding-top: 20px;
	padding-bottom: 20px;
}

.item-list-large .item:last-child {
	border-bottom: none;
}

.item-list-large .item-media {
	flex-shrink: 0;
	flex-basis: 94px;
	width: 94px;
	max-width: 100px;
	margin-right:  25px;
	margin-bottom: 15px;
}

.item-list-large .item-body {
	flex-grow: 1;
	margin-right: 25px;
}

.item-list-large .item-cta {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	flex-direction: row;
	margin-top: 20px;
}

.item-list-large .item-icon {
	border: var(--icon-border);
	border-radius: var(--icon-border-radius);
}

.item-list-large h3 {
	margin-top: 0;
}

.item-list-large p {
	font-size: 1.6rem;
}

.item-list-large .terms {
	font-size: .8em;
	line-height: 1.35;
	color: var(--text-color-muted);
}

@media screen and (min-width: 993px) {
	
	.item-list-large .item {
		flex-direction: row;
	}
	
}












/* Horizontal icon list
   -------------------------------------------------------------------------------- */
.brand-list-horizontal {
	display: block;
	margin-top: 0;
	margin-bottom: 20px;
	margin-left: -20px;
	margin-right: -20px;
	padding-left: 15px;
	padding-right: 15px;
	list-style: none;
	white-space: nowrap;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.brand-list-horizontal li {
	display: inline-block;
	width: 90px;
	width: 24.2%;
	padding-left: 5px;
	padding-right: 5px;
}

.brand-list-horizontal a {
	text-decoration: none;
}

.brand-list-horizontal a:hover {
	text-decoration: underline;
}

.brand-list-horizontal .item-info {
	margin-top: 1em;
	margin-bottom: .25em;
	font-size: 1.0rem;
	line-height: 1.3;
	font-weight: 500;
	color: var(--text-color-muted);
	overflow: hidden;
	text-overflow: ellipsis;
}

.brand-list-horizontal .item-title {
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 1.2rem;
	line-height: 1.3;
	color: var(--text-color);
	overflow: hidden;
	text-overflow: ellipsis;
}

.brand-list-horizontal .item-icon {
	display: block;
	border: var(--icon-border);
	border-radius: var(--icon-border-radius);
}

@media screen and (min-width: 601px) {
	
	.brand-list-horizontal {
		display: flex;
		gap: 15px;
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}
	
	.brand-list-horizontal li {
		flex: 1 0 0;
		width: 100%;
		padding: 0;
		overflow: hidden;
	}
	
	.brand-list-horizontal .item-info {
		font-size: 1.0rem;
	}
	
	.brand-list-horizontal .item-title {
		font-size: 1.3rem;
	}
	
}

@media screen and (min-width: 993px) {
	
	.brand-list-horizontal .item-info {
		font-size: 1.1rem;
	}
	
}

















/* Articles
   -------------------------------------------------------------------------------- */
article {
	margin-bottom: 60px;
}

article h2 {
	margin-top: 70px;
	text-decoration: underline;
	text-decoration-color: var(--accent-color);
	text-decoration-thickness: 3px;
	text-underline-offset: 0.3em;
	line-height: 1.5;
}

article li {
	font-size: inherit;
	line-height: 1.4;
	margin-bottom: 1em;
}

figcaption {
	font-size: 12px;
	font-weight: 600;
	color: var(--text-color-muted);
	margin-top: 4px;
}

.article-meta {
	display: flex;
	align-items: center;
	padding-left: 18px;
	border-left: 4px solid var(--accent-color);
	margin-top: 50px;
	margin-bottom: 70px;
	background-color: var(--tint-color);
	border-radius: 12px;
}

.profile-picture {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	margin-right: 20px;
}























/* Other
   -------------------------------------------------------------------------------- */
.weather-icon {
	width: 50px;
	height: 50px;
	display: block;
	margin-bottom: 5px;
}










/* Colours
   -------------------------------------------------------------------------------- */
.text-color-muted { color: var(--text-color-muted); }










/* Screen size helpers
   -------------------------------------------------------------------------------- */
@media only screen and (max-width: 992px) {
	.only-lg {
		display: none !important
	}
}

