.site {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.site-content {
  flex: 1;
}

html {
	overflow-y: scroll;
}

body {
	font-size:12pt;
	font-family: 'Open Sans', sans-serif;
	margin:0;
	padding:0;
  	color: #272727;
	background-color: #fefdfa;
}

body.research-section {
	background-color: #fefdfa;
}

body.research-section .section-band {
	background-color: #f5eee0;
}

/* -------------------- Padding and Margins -------------------- */
.down {
	margin-top:20px;
}
.pad {
  padding: 10px;
}
.padtb {
  padding: 100px 0;
}
.alignright {
	float:right;
	padding-left: 20px;
	padding-bottom: 20px;
}
.alignleft {
	float:left;
	padding-right: 20px;
	padding-bottom: 20px;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.grid {
  display: flex;
  flex-wrap: wrap;
}
.space {
  justify-content: space-between;
}

/* -------------------- Colours -------------------- */
.red {
	background-image: linear-gradient( to bottom, #eff1f3, #fff );
}
.orange, .subsidebar {
  background-color: #f26532;
}
.off-orange {
  color: #fff;
  background-color: #e48b6b;
}

.white {
  color: #272727;
  background-color: #ffffff;
}
.purple {
  background-color: #333192;
}
.orange-text {
  color: #f26532;
}
.blue-text {
  color: #002d56;
}
/* -------------------- General Styles -------------------- */
p, li {
	line-height:1.6em;
}
img {
	border-style: none;
}
.center {
	text-align:center;
}
.right {
	text-align:right;
}

.absol {
	position:relative;
}
.align {
  align-self: center;
}
h1, h2, h3, h4 {
  font-weight: normal;
}
h1 {
  font-size: calc(1em + 0.8vw);
}
h2 {
  font-weight: 300;
  font-size: calc(1em + 0.8vw);
}

a {
	text-decoration: none;
	color: #002d56;
}

a:hover {
	color: #f26532;
}

q {
	display: inline-block;
	font-style: italic;
	margin-left: 7%;
	margin-right:7%;
}
/* -------------------- Header -------------------- */

/* Logo is 405×145px, displayed at min(20vw, 250px). Header padding adds 24px.
   --header-height is used by sub-page navs that need to sit below the sticky header. */
:root {
	--header-height: calc(7.16vw + 24px);
}
@media (min-width: 1250px) {
	:root {
		--header-height: 114px;
	}
}

header {
	width: 100%;
	box-sizing: border-box;
	background-color: #fff;
	padding: 0 1vw;
}

@media (min-width: 641px) {
	header {
		position: sticky;
		top: 0;
		z-index: 100;
		border-bottom: 1px solid #e5e8eb;
	}
}

.header-bar {
	max-width: 1800px;
	margin: 0 auto;
}

.header-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
}

.logo img {
	width: 20vw;
	max-width: 250px;
	height: auto;
	display: block;
}

.productname .title {
	font-size: calc(0.6em + 0.6vw);
	font-weight: 600;
}

header .button-box {
	text-align: right;
	flex-shrink: 0;
}

header .button {
	font-size: clamp(13px, calc(0.4em + 0.5vw), 16px);
}
header .button a {
	background-color: #f26532;
	padding: 8px 14px;
	display: inline-block;
}
header .button a:hover {
	background-color: #002d56;
}


/* -------------------- Navigation -------------------- */
.navigation {
	flex: 1;
	display: flex;
	justify-content: center;
	font-size: calc(0.6em + 0.5vw);
}
nav ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
}
nav li {
	margin: 10px;
}
nav li a {
	text-decoration: none;
	color: #272727;
}
nav li a:hover, .current {
	color: #f26532;
	border-bottom: solid thin;
}

/* -------------------- Hamburger toggle -------------------- */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px 8px;
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: #272727;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.navigation.open .nav-toggle span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.navigation.open .nav-toggle span:nth-child(2) {
	opacity: 0;
}
.navigation.open .nav-toggle span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 640px) {
	.navigation {
		flex: 0;
		position: relative;
	}

	.nav-toggle {
		display: flex;
	}

	.navigation nav {
		display: none;
		position: absolute;
		top: calc(100% + 8px);
		right: 0;
		background: #fff;
		border: 1px solid #e5e8eb;
		border-radius: 4px;
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
		z-index: 200;
		min-width: 180px;
	}

	.navigation.open nav {
		display: block;
	}

	nav ul {
		flex-direction: column;
		padding: 8px 0;
	}

	nav li {
		margin: 0;
	}

	nav li a {
		display: block;
		padding: 10px 20px;
	}

	nav li a:hover, nav li.current a {
		border-bottom: none;
		color: #f26532;
	}
}

/* -------------------- Page Styles -------------------- */
.container {
	width: 92vw;
	margin: auto;
	max-width: 1200px;
}

.container-narrow {
	max-width: 70vw;
}


.line-spacer {height: 1vh;}
.double-line-spacer {height: 2vh;}
.quad-line-spacer {height: 4vh;}

.region-line {margin-left:auto; margin-right:auto;  text-align: center;}

.region-box {
    display: inline-block;
	width: auto;
	height: auto;
	align-self: center;
	text-align: center;
	margin: 3px;
}
.region {
	align-self: center;
	margin-bottom: 1vw;
	font-size: 0.8em;
}
.region a {
	padding: 0.3vw;
	color: #fff;
	text-decoration: none;
	border-radius: none;
	background-color: #f26532;
}

.region.selected a {
	background-color: #002d56;
}
.region a:hover {
	background-color: #002d56;
}

/* -------------------- Page Banner and Title -------------------- */

.home .page-title {
	padding-top: 10px;
	font-weight: 300;
}

.home .page-logo {
	padding-top: 60px;
}

.home .page-logo img{
	width: 55vw;
	max-width: 500px;
}

.inner .page-title {
	padding: 60px 0;
	font-weight: 300;
}
.statusnmsg {
	color: #f26532;
}
.big {
  font-size: calc(1em + 2.5vw);
  font-weight: 700;
}

a[target="_blank"]:not(:has(img)):after {
    font-family: 'FontAwesome';
    content: " \f08e";
}

/* -------------------- Button -------------------- */


.action-line {
	width: 20vw;
	max-width: 250px;
	height: auto;
	align-self: center;
	text-align: center;
	margin-right: 10px;
	margin-top: 15px;
}

.action-line .button-box .button {
	align-self: center;
	margin-bottom: 1vw;
	font-size: calc(0.35em + 0.45vw);
}
.action-line .button-box .button a {
	background-color: #002d56;
}

.action-line .button-box .button a:hover {
	background-color: #f26532;
	color: #002d56;
}


.button a {
	padding: 0.5vw 1vw;
	color: #fff;
	background-color: #002d56;
	text-decoration: none;
	border-radius: 5px;
	white-space: nowrap;
}

.button a:hover {
	background-color: #f26532;
	color: #fff;
}

/* -------------------- recaptcha -------------------- */
.g-recaptcha {
   margin: 15px auto !important;
   width: auto !important;
   height: auto !important;
   text-align: -webkit-center;
   text-align: -moz-center;
   text-align: -o-center;
   text-align: -ms-center;
}
/* -------------------- Tables -------------------- */


table.data {
    margin-left:auto;
    margin-right:auto;
    font-size: calc(0.4em + 0.4vw);
    color:#333333;
    margin-bottom:5px;
    border-style: solid;
    border-width: 1px;
    border-color: black;
    border-collapse: collapse;
	margin-top: 20px;
	margin-bottom: 20px;
}

table.data th {
    border-width: 1px;
    padding: 8px;
    margin-bottom: 10px;
    font-size: calc(0.6em + 0.4vw);
    border-style: solid;
    border-color: #666666;
    background-color: #dedede;
}

table.data td {
    vertical-align: top;
    border-width: 1px;
    padding: 8px;
    border-style: solid;
    border-color: #666666;
}

table.data tr {
    background-color: #ffffff;
}

table.highlight tbody tr:hover {
  background-color: lightyellow !important;
}

table.colour tr {
  background-color: blue !important;
}


table.center td {
	text-align: center;
}

table.wide {
    width:100%;
}

table.smalltext th, table.smalltext td{
	font-size: 0.6em;
}

table.midtext th, table.midtext td{
	font-size: 0.8em;
}

/* -------------------- Contact Form -------------------- */
.container.contact-form{
  padding: 50px;
}

.contact-form {
	width:98vw;
	max-width: 800px;
}

.contact-form .contact-image {
	text-align: center;
}

.contact-form .contact-image img{
	width: 40vw;
	max-width: 250px;
	height: auto;
}

.contact-form form {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
}
.contact-form input {
	width: 40%;
}
.contact-form textarea {
	width: 100%;
}
.contact-form input, .contact-form textarea {
	padding: 10px;
	margin: 10px;
	box-sizing: border-box;
	border: solid thin gray;
}

.contact-form .submit {
	padding: 10px 15px;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	background-color: #f26532;
	width: 200px;
}
.contact-form input:focus, .contact-form textarea:focus {
	background-color: #e5e8eb;
}
.container .error-container .error{
  justify-content: center;
}

/* -------------------- Enquiry Form -------------------- */
.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.enquiry-form label {
    display: flex;
    flex-direction: column;
    font-size: 0.9em;
    color: #002d56;
    font-weight: 600;
}

.enquiry-form input,
.enquiry-form textarea {
    padding: 10px 12px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1em;
    font-weight: normal;
    color: #272727;
    background: #fff;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: #f26532;
    background-color: #fffaf7;
}

.enquiry-form textarea {
    resize: vertical;
    min-height: 140px;
}

.enquiry-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.enquiry-form button[type="submit"] {
    align-self: flex-start;
    padding: 12px 24px;
    background: #f26532;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.enquiry-form button[type="submit"]:hover {
    background: #002d56;
}

.enquiry-form button[type="submit"]:disabled {
    background: #a8a8a8;
    cursor: not-allowed;
}

.enquiry-form-error {
    background: #fff4ee;
    border: 1px solid #f7c8b2;
    color: #b54521;
    padding: 12px 16px;
    border-radius: 4px;
    margin: 0;
}

.enquiry-form-success {
    background: #edf7ed;
    border: 1px solid #b7d9b7;
    color: #2e6b2e;
    padding: 16px 20px;
    border-radius: 4px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* -------------------- Article/reading content -------------------- */

.article {
    max-width: 760px;
    margin: 0 auto;
}

.article p a,
.Grid-cell.highlightbox p a {
    color: #0088CE;
}

.article p.code-disclaimer {
    font-size: 0.9em;
    color: #5a6775;
    border-left: 3px solid #e5e8eb;
    padding: 8px 12px;
    margin-top: 1.5em;
    background-color: #fafbfc;
}

.article p.status-note {
    font-size: 0.9em;
    color: #5a6775;
    border-left: 3px solid #f26532;
    padding: 8px 12px;
    margin-top: 1.5em;
    background-color: #fafbfc;
}

.article p a:hover,
.Grid-cell.highlightbox p a:hover {
    color: #f26532;
}

/* -------------------- Research index cards -------------------- */

.research-cards .Grid-cell.highlightbox {
    flex: 1 1 320px;
    max-width: 480px;
}

.research-cards .action-line .button-box .button {
    font-size: clamp(13px, calc(0.45em + 0.45vw), 16px);
}

.research-cards .button a {
    display: inline-block;
    padding: 10px 20px;
}

.research-cards .research-status {
    margin: 0 -1vw -1vh -1vw;
    padding: 10px 1vw;
    background-color: #f5f5f5;
    border-top: 1px solid #e5e8eb;
    text-align: center;
    font-size: 0.85em;
    color: #002d56;
}

.research-cards .research-status i {
    color: #1a8754;
    margin-right: 6px;
}

.research-cards .research-status--active i {
    color: inherit;
}

@media (max-width: 768px) {
    .research-cards .Grid-cell.highlightbox {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .research-cards .button a {
        padding: 12px 24px;
    }
}

/* -------------------- Capability directory rows (What We Do) -------------------- */

.capability-section-heading {
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e8eb;
}

.capability-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
}

a.capability-row {
    display: grid;
    grid-template-columns: 110px 1fr 160px;
    gap: 24px;
    align-items: center;
    padding: 18px 24px;
    border: 1px solid #e5e8eb;
    border-radius: 6px;
    background: #fff;
    color: #272727;
    text-decoration: none;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

a.capability-row:hover {
    border-color: #f26532;
    background-color: #fffaf7;
}

.capability-media {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 72px;
}

.capability-media img {
    max-width: 100%;
    max-height: 72px;
    width: auto;
    height: auto;
}

.capability-media .fa {
    font-size: 40px;
    color: #f26532;
}

.capability-media .fa-flask,
.capability-media .fa-server {
    color: #002d56;
}

.capability-body h3 {
    margin: 0 0 4px 0;
    font-size: 1.1em;
    color: #002d56;
}

.capability-body p {
    margin: 0;
    color: #444;
    font-size: 0.95em;
    line-height: 1.5;
}

.capability-action {
    text-align: right;
    color: #f26532;
    white-space: nowrap;
}

a.capability-row:hover .capability-action {
    text-decoration: none;
}

@media (max-width: 720px) {
    a.capability-row {
        grid-template-columns: 72px 1fr;
        gap: 16px;
        padding: 16px;
    }
    .capability-media {
        height: 56px;
    }
    .capability-media img {
        max-height: 56px;
    }
    .capability-media .fa {
        font-size: 32px;
    }
    .capability-action {
        grid-column: 1 / -1;
        text-align: left;
        margin-top: 4px;
    }
}

/* -------------------- Prev/next article navigation -------------------- */

nav.page-nav {
    display: flex;
    align-items: stretch;
    margin-top: 48px;
    margin-bottom: 64px;
    border: 1px solid #e5e8eb;
    border-radius: 6px;
    background: #f7f9fb;
    overflow: hidden;
    font-size: calc(0.55em + 0.3vw);
}

nav.page-nav a {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    text-decoration: none;
    color: #002d56;
    border-right: 1px solid #e5e8eb;
    transition: background-color 0.15s ease, color 0.15s ease;
    min-width: 0;
}

nav.page-nav a:last-child {
    border-right: none;
}

nav.page-nav a:hover {
    background-color: #ffffff;
    color: #f26532;
}

nav.page-nav .page-nav-arrow {
    color: #f26532;
    font-weight: 700;
    flex-shrink: 0;
}

nav.page-nav .page-nav-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

nav.page-nav .page-nav-prev {
    justify-content: flex-start;
}

nav.page-nav .page-nav-index {
    justify-content: center;
    flex: 0 1 auto;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85em;
    padding-left: 24px;
    padding-right: 24px;
    background: #eef2f5;
}

nav.page-nav .page-nav-index:hover {
    background: #e3e9ee;
    color: #f26532;
}

nav.page-nav .page-nav-next {
    justify-content: flex-end;
    text-align: right;
}

nav.page-nav .page-nav-next.page-nav-complete {
    gap: 12px;
}

nav.page-nav .page-nav-complete-icon {
    color: #f26532;
    font-size: 1.5em;
    flex-shrink: 0;
}

nav.page-nav .page-nav-complete-main {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 600px) {
    nav.page-nav {
        flex-direction: column;
    }
    nav.page-nav a {
        border-right: none;
        border-bottom: 1px solid #e5e8eb;
        justify-content: space-between;
    }
    nav.page-nav a:last-child {
        border-bottom: none;
    }
    nav.page-nav .page-nav-index {
        justify-content: center;
    }
}

.article p.page-nav-back {
    margin-top: -48px;
    margin-bottom: 64px;
    text-align: center;
    font-size: 0.9em;
}

.article p.page-nav-back a {
    color: #8a95a0;
    text-decoration: none;
    transition: color 0.15s ease;
}

.article p.page-nav-back a:hover {
    color: #f26532;
}

/* -------------------- Code blocks -------------------- */

pre {
    background: #f0f2f5;
    padding: 20px;
    overflow-x: auto;
    margin: 20px 0;
    border-left: 3px solid #888;
}

pre code {
    font-family: 'Courier New', Consolas, monospace;
    font-size: 0.85em;
    line-height: 1.5;
    background: none;
    padding: 0;
}

code {
    background: #f0f2f5;
    padding: 2px 5px;
    font-family: 'Courier New', Consolas, monospace;
    font-size: 0.875em;
}

/* -------------------- Diagrams -------------------- */

figure.diagram {
    margin: 32px 0;
    text-align: center;
}

figure.diagram svg {
    max-width: 100%;
    height: auto;
}

figure.diagram figcaption {
    font-size: 0.85em;
    color: #888;
    font-style: italic;
    margin-top: 8px;
}

/* -------------------- Breadcrumbs -------------------- */
.breadcrumb {
	font-size: 0.85em;
	color: #888;
	margin: 8px 0 12px 0;
	padding: 0;
}

.breadcrumb a {
	color: #888;
}

.breadcrumb a:hover {
	color: #f26532;
}

/* -------------------- Section headings -------------------- */
.section-heading {
  font-weight: 600;
  color: #002d56;
  font-size: calc(1.1em + 0.8vw);
  margin-bottom: 24px;
}

/* -------------------- Section band -------------------- */
.section-band {
  background-color: #f0f2f5;
  padding: 40px 0;
}

/* -------------------- Service cards -------------------- */
.section-band .Grid-cell.highlightbox {
  background-color: #fff;
}

.service-cards {
  gap: 24px;
}

.service-cards .Grid-cell.highlightbox {
  text-align: center;
  flex: 0 1 300px;
  margin: 0;
}

@media (max-width: 960px) {
  .service-cards {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .service-cards {
    gap: 12px;
  }

  .service-cards .Grid-cell.highlightbox {
    flex: 0 1 100%;
  }
}

/* -------------------- Service images -------------------- */
.highlightbox .service-image {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 0 16px 0;
}

/* -------------------- Values section -------------------- */
.int6-stands-for {
  text-align: center;
  font-size: calc(1em + 0.8vw);
  margin-bottom: 6px;
}

.int6-stands-for strong {
  color: #002d56;
  font-weight: 700;
}

.int6-stands-for .orange {
  color: #f26532;
  background-color: transparent;
}

.values-tagline {
  text-align: center;
  color: #f26532;
  font-size: calc(1em + 0.8vw);
  margin-bottom: 28px;
}

.values-grid {
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  align-items: center;
  flex: 0 0 50%;
  box-sizing: border-box;
  padding: 12px 16px;
  gap: 14px;
  border: solid thin #fff;
}

.value-item:hover {
  border-color: #0088CE;
}

@media (max-width: 640px) {
  .value-item {
    flex: 0 0 100%;
  }
}

.value-item .value-icon {
  flex-shrink: 0;
  width: 48px;
  height: auto;
  margin-top: 4px;
}

.value-item p {
  margin: 0;
  line-height: 1.6;
}

/* -------------------- Values interaction -------------------- */
.values-tagline [data-value] {
  cursor: default;
}

.value-item[data-value] {
  border-radius: 4px;
}

.values-section:has([data-value="integrity"]:hover) [data-value="integrity"],
.values-section:has([data-value="intelligent"]:hover) [data-value="intelligent"],
.values-section:has([data-value="innovative"]:hover) [data-value="innovative"],
.values-section:has([data-value="inquisitive"]:hover) [data-value="inquisitive"],
.values-section:has([data-value="invested"]:hover) [data-value="invested"],
.values-section:has([data-value="intentional"]:hover) [data-value="intentional"] {
  color: #002d56;
}

.values-section:has([data-value="integrity"]:hover) .value-item[data-value="integrity"],
.values-section:has([data-value="intelligent"]:hover) .value-item[data-value="intelligent"],
.values-section:has([data-value="innovative"]:hover) .value-item[data-value="innovative"],
.values-section:has([data-value="inquisitive"]:hover) .value-item[data-value="inquisitive"],
.values-section:has([data-value="invested"]:hover) .value-item[data-value="invested"],
.values-section:has([data-value="intentional"]:hover) .value-item[data-value="intentional"] {
  background-color: #e8edf2;
}

/* -------------------- Testimonial -------------------- */
.testimonial-section {
  background-color: #002d56;
  color: #fff;
  padding: 48px 0;
}

.testimonial-section q {
  color: #fff;
}

.testimonial-section .attribution {
  color: #f26532;
  font-weight: 600;
  text-align: center;
  display: block;
  margin-top: 24px;
}

/* -------------------- Tagline band -------------------- */
.tagline-band {
  padding: 14px 0;
  text-align: center;
  background-color: #fefdfa;
}

.tagline-text {
  font-size: calc(1em + 0.6vw);
  font-weight: 300;
  margin: 0;
}

/* -------------------- Footer -------------------- */
.footer-columns {
  background-color: #002d56;
  border-top: 4px solid #f26532;
  padding: 24px 0 12px 0;
  color: #fff;
  font-size: 0.78em;
}

.footer-columns h4 {
  color: #f26532;
  font-weight: 600;
  margin: 0 0 6px 0;
  font-size: 1em;
}

.footer-columns p {
  margin: 0 0 6px 0;
}

.footer-columns a {
  color: #fff;
  text-decoration: none;
}

.footer-columns a:hover {
  color: #f26532;
}

.footer-columns address {
  font-style: normal;
  line-height: 1.5;
}

.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-columns ul li {
  margin-bottom: 5px;
}

.footer-grid {
  flex-wrap: wrap;
}

.footer-grid .Grid-cell {
  min-width: 180px;
  flex: 1;
  padding: 0 24px 12px 0;
}

.footer-logo {
  text-align: center;
}

.footer-logo-small {
  align-self: center;
}

.footer-logo-small img {
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.copyright {
	color: #fff;
	background-color: #000;
	font-size: 8pt;
	padding: 6px 10px;
}
.copyright p, .copyright i {
  align-self: center;
}
.copyright i {
	font-size: 20pt;
	color: #fff;
}

/* -------------------- Mobile: grid stacking -------------------- */
@media (max-width: 768px) {
    .Grid-cell.highlightbox {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .Grid--1of2 > .Grid-cell,
    .Grid--1of3 > .Grid-cell,
    .Grid--1of4 > .Grid-cell,
    .Grid-cell.threecol {
        flex: 0 0 100%;
    }
}

/* -------------------- Mobile: footer -------------------- */
@media (max-width: 640px) {
    .tagline-band {
        padding: 20px 0;
    }
    .tagline-text {
        font-size: 1.1em;
    }
    .footer-columns {
        padding: 28px 0 12px 0;
        text-align: center;
    }
    .footer-grid {
        flex-direction: column;
    }
    .footer-grid .Grid-cell {
        flex: 1 1 100%;
        min-width: 0;
        padding: 0 0 20px 0;
        text-align: center;
    }
    .footer-grid .Grid-cell.center,
    .footer-grid .Grid-cell.right {
        text-align: center;
    }
    .copyright {
        font-size: 10pt;
        padding: 12px 16px;
    }
    .copyright .container.grid.space {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }
    .copyright p {
        margin: 0;
    }
    .copyright i {
        font-size: 22pt;
    }
}

/* -------------------- Mobile: research articles -------------------- */
@media (max-width: 768px) {
    .article img {
        max-width: 100%;
        height: auto;
    }
    .article table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .article pre {
        padding: 12px;
        font-size: 0.8em;
    }
    .article h1,
    .article h2,
    .article h3 {
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
}
