/* ==========================================================================
   HSRC Annual Conference — theme styles
   1. Tokens
   2. Base & utilities
   3. Buttons & icons
   4. Header & navigation
   5. Hero
   6. Pillars & countdown
   7. About
   8. Action bar
   9. Interior pages
   10. Footer
   11. Responsive
   ========================================================================== */

/* 1. Tokens ---------------------------------------------------------------- */

:root {
	/* Sampled from the conference banner artwork. */
	--blue-950: #030711;
	--blue-900: #061024;
	--blue-800: #0a2a52;
	--blue-700: #10538f;
	--blue-600: #1560a8;
	--blue: #0a2a52;

	--orange-700: #a8571a;
	--orange-600: #d97b20;
	--orange: #f1902b;
	--orange-400: #f8a94f;
	--orange-200: #fbd3a0;

	--ink: #0f2440;
	--body: #55617a;
	--muted: #7d879b;
	--line: #e3e7ee;
	--line-soft: #eef1f6;
	--bg: #ffffff;
	--bg-soft: #f5f7fa;

	--font-display: "Archivo", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
	--font-body: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

	--container: 1400px;
	--gutter: 24px;
	--radius: 3px;
	--header-h: 86px;

	--shadow-sm: 0 1px 2px rgba(10, 42, 82, .07);
	--shadow-md: 0 6px 24px rgba(10, 42, 82, .1);
	--shadow-lg: 0 18px 48px rgba(3, 7, 17, .2);
}

/* 2. Base & utilities ------------------------------------------------------ */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--body);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .5em;
	font-family: var(--font-display);
	color: var(--ink);
	font-weight: 700;
	line-height: 1.2;
}

p {
	margin: 0 0 1.1em;
}

a {
	color: var(--blue-600);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover {
	color: var(--orange-600);
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

ul, ol {
	margin: 0 0 1.1em;
	padding-left: 1.2em;
}

figure {
	margin: 0;
}

button {
	font: inherit;
	cursor: pointer;
}

:focus-visible {
	outline: 3px solid var(--orange-400);
	outline-offset: 2px;
}

.container {
	width: min(100% - (var(--gutter) * 2), var(--container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--blue);
	color: #fff;
	padding: 12px 20px;
	font-weight: 600;
}

.skip-link:focus {
	left: 12px;
	top: 12px;
	color: #fff;
}

.section-title {
	font-size: clamp(24px, 2.1vw, 31px);
	text-transform: uppercase;
	color: var(--blue);
	letter-spacing: .005em;
	margin-bottom: 22px;
}

.section-title::after {
	content: "";
	display: block;
	width: 58px;
	height: 4px;
	background: var(--orange);
	margin-top: 14px;
}

/* 3. Buttons & icons ------------------------------------------------------- */

.hsrc-icon {
	flex: none;
	display: block;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 13px 26px;
	border: 2px solid transparent;
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .075em;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1.2;
	transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.btn__chev {
	transition: transform .18s ease;
}

.btn:hover .btn__chev {
	transform: translateX(3px);
}

.btn--orange {
	background: var(--orange);
	border-color: var(--orange);
	color: #fff;
}

.btn--orange:hover {
	background: var(--orange-600);
	border-color: var(--orange-600);
	color: #fff;
}

.btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, .55);
	color: #fff;
}

.btn--ghost:hover {
	background: rgba(255, 255, 255, .1);
	border-color: #fff;
	color: #fff;
}

.btn--outline {
	background: transparent;
	border-color: var(--line);
	color: var(--blue);
}

.btn--outline:hover {
	border-color: var(--orange);
	color: var(--orange-600);
}

.btn--blue {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
}

.btn--blue:hover {
	background: var(--blue-600);
	border-color: var(--blue-600);
	color: #fff;
}

.btn--sm {
	padding: 11px 22px;
	font-size: 13px;
}

.btn--lg {
	padding: 16px 30px;
	font-size: 15px;
	gap: 22px;
}

.icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	flex: none;
	color: #fff;
}

.icon-circle--blue {
	background: var(--blue);
}

.icon-circle--orange {
	background: var(--orange);
}

.icon-circle--sm {
	width: 42px;
	height: 42px;
}

/* 4. Header & navigation --------------------------------------------------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--line-soft);
	transition: box-shadow .2s ease;
}

.site-header.is-stuck {
	box-shadow: 0 2px 14px rgba(10, 42, 82, .1);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: var(--header-h);
}

.site-header__brand {
	flex: none;
}

.site-header__brand .site-logo,
.site-header__brand .custom-logo-link {
	display: block;
	line-height: 0;
}

.site-header__brand img {
	width: auto;
	height: 58px;
}

.primary-nav {
	margin-inline: auto;
}

.primary-nav__list {
	display: flex;
	align-items: center;
	gap: 26px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav__list a {
	position: relative;
	display: block;
	padding: 6px 0;
	color: #14284d;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	transition: color .18s ease;
}

.primary-nav__list a:hover {
	color: var(--orange-600);
}

.primary-nav__list > .menu-item > a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	height: 3px;
	background: var(--orange);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .2s ease;
}

.primary-nav__list > .menu-item:hover > a::after,
.primary-nav__list > .current-menu-item > a::after,
.primary-nav__list > .current-menu-ancestor > a::after,
.primary-nav__list > .current_page_item > a::after {
	transform: scaleX(1);
}

/* Dropdowns */

.primary-nav__list .sub-menu {
	position: absolute;
	top: calc(100% + 14px);
	left: -18px;
	min-width: 232px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: #fff;
	border: 1px solid var(--line-soft);
	box-shadow: var(--shadow-md);
	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
	z-index: 20;
}

.primary-nav__list > .menu-item {
	position: relative;
}

.primary-nav__list > .menu-item:hover > .sub-menu,
.primary-nav__list > .menu-item:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
}

.primary-nav__list .sub-menu a {
	padding: 9px 20px;
	letter-spacing: .04em;
	white-space: normal;
}

.primary-nav__list .sub-menu a::after {
	display: none;
}

.primary-nav__list .sub-menu a:hover {
	background: var(--bg-soft);
}

.primary-nav__list .menu-item-has-children > a {
	padding-right: 14px;
}

.primary-nav__list > .menu-item-has-children > a::before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 5px;
	height: 5px;
	border-right: 1.6px solid currentColor;
	border-bottom: 1.6px solid currentColor;
	transform: translateY(-70%) rotate(45deg);
	opacity: .7;
}

.site-header__actions {
	flex: none;
	display: flex;
	align-items: center;
	gap: 12px;
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--blue);
}

.nav-toggle__close {
	display: none;
}

body.nav-open .nav-toggle__open {
	display: none;
}

body.nav-open .nav-toggle__close {
	display: block;
}

.nav-scrim {
	position: fixed;
	inset: 0;
	background: rgba(5, 19, 44, .5);
	opacity: 0;
	transition: opacity .25s ease;
	z-index: 110;
}

body.nav-open .nav-scrim {
	opacity: 1;
}

/* 5. Hero ------------------------------------------------------------------ */

.hero {
	position: relative;
	background: linear-gradient(90deg, #0d4c8c 0%, #0a2a52 42%, #061024 74%, #030711 100%);
	color: #fff;
}

/* The supplied banner artwork, edge to edge. */

.hero__banner {
	position: relative;
	display: block;
	line-height: 0;
}

.hero__banner-img {
	width: 100%;
	height: auto;
	display: block;
}

/*
 * The banner carries the headline as artwork, so the live text below is kept
 * in the document for search engines and screen readers but hidden visually.
 * Below the banner's readable width it swaps in as the visible hero.
 */
.hero__compact {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.hero__eyebrow {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--orange);
}

.hero__title {
	margin: 0 0 16px;
	font-size: clamp(30px, 8.2vw, 46px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -.01em;
	color: #fff;
}

.hero__title .accent {
	color: var(--orange);
}

.hero__rule {
	width: 100%;
	height: 4px;
	margin: 0 0 16px;
	background: var(--orange);
	border: 0;
}

.hero__subtitle {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: #dce7f4;
}

/* Facts and calls to action, directly beneath the banner. */

.hero__band {
	background: linear-gradient(90deg, #0b3a6e 0%, #061024 70%, #030711 100%);
	border-top: 1px solid rgba(241, 144, 43, .35);
}

.hero__band-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 22px 40px;
	padding-block: 22px;
}

.hero__facts {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hero__fact {
	display: flex;
	align-items: center;
	gap: 14px;
}

.hero__fact-icon {
	display: flex;
	color: var(--orange);
}

.hero__fact-text {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.hero__fact-line {
	display: block;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* 6. Pillars & countdown --------------------------------------------------- */

.pillars {
	background: #fff;
	padding-block: 26px 0;
}

.pillars__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(0, 1.16fr);
	gap: 20px;
}

.pillar {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px 24px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
}

.pillar__title {
	margin: 0 0 5px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--blue);
}

.pillar__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--body);
}

.countdown-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 18px 24px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	text-align: center;
}

.countdown-card__title {
	margin: 0 0 10px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .085em;
	text-transform: uppercase;
	color: var(--blue);
}

.countdown {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}

.countdown__unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.countdown__value {
	font-family: var(--font-display);
	font-size: clamp(28px, 2.6vw, 40px);
	font-weight: 700;
	line-height: 1.05;
	color: var(--orange);
	font-variant-numeric: tabular-nums;
}

.countdown__label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--muted);
}

.countdown__done {
	margin: 6px 0 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--blue);
}

/* 7. About ----------------------------------------------------------------- */

.about {
	background: #fff;
	padding-block: 52px 58px;
}

.about__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2.03fr);
	gap: 36px;
	align-items: start;
}

.about__text p {
	font-size: 15.5px;
	line-height: 1.72;
	color: var(--body);
}

.about__cta {
	margin: 26px 0 0;
}

.about__cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.about-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: box-shadow .2s ease, transform .2s ease;
}

.about-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.about-card__media {
	aspect-ratio: 292 / 136;
	overflow: hidden;
	background: var(--blue-800);
}

.about-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-card__body {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 20px 22px;
}

.about-card__title {
	margin: 0 0 5px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .045em;
	text-transform: uppercase;
	color: var(--blue);
}

.about-card__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: var(--body);
}

/* 8. Action bar ------------------------------------------------------------ */

.actionbar {
	background: var(--blue-800);
	padding-block: 24px;
}

.actionbar__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.actionbar__item {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 8px 26px;
	color: #fff;
	text-decoration: none;
	transition: transform .18s ease;
}

.actionbar__item:first-child {
	padding-left: 0;
}

.actionbar__item:last-child {
	padding-right: 0;
}

.actionbar__item + .actionbar__item {
	border-left: 1px solid rgba(255, 255, 255, .15);
}

.actionbar__item:hover {
	color: #fff;
	transform: translateX(3px);
}

.actionbar__icon {
	display: flex;
	color: var(--orange-400);
}

.actionbar__body {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.actionbar__title {
	font-family: var(--font-display);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .045em;
	text-transform: uppercase;
	color: #fff;
}

.actionbar__status {
	font-size: 14px;
	color: var(--orange-400);
}

/* 9. Interior pages -------------------------------------------------------- */

.page-hero {
	position: relative;
	background:
		radial-gradient(110% 130% at 78% 40%, #164280 0%, #0c2a5c 44%, #071b3d 82%),
		var(--blue-900);
	color: #fff;
	padding-block: 58px 62px;
	overflow: hidden;
}

.page-hero::after {
	content: "";
	position: absolute;
	right: -80px;
	top: -120px;
	width: 460px;
	height: 460px;
	border: 42px solid rgba(192, 145, 43, .18);
	border-radius: 50%;
	pointer-events: none;
}

.page-hero__inner {
	position: relative;
	z-index: 2;
}

.page-hero__title {
	margin: 0;
	font-size: clamp(30px, 3.6vw, 50px);
	font-weight: 800;
	line-height: 1.08;
	text-transform: uppercase;
	color: #fff;
}

.page-hero__title::after {
	content: "";
	display: block;
	width: 58px;
	height: 4px;
	background: var(--orange);
	margin-top: 18px;
}

.page-hero__sub {
	margin: 16px 0 0;
	max-width: 62ch;
	font-size: 17px;
	color: #dde5f1;
}

.breadcrumbs {
	margin: 0 0 14px;
	font-size: 12.5px;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: #b9c8de;
}

.breadcrumbs a {
	color: var(--orange-200);
	text-decoration: none;
}

.breadcrumbs a:hover {
	color: #fff;
}

.breadcrumbs span[aria-hidden] {
	margin-inline: 8px;
	opacity: .6;
}

.site-main > .content-area {
	padding-block: 52px 64px;
}

.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 44px;
}

.content-layout--sidebar {
	grid-template-columns: minmax(0, 1fr) 312px;
}

.entry-content {
	font-size: 16.5px;
	line-height: 1.75;
	color: var(--body);
}

/* Cap the measure when there is no sidebar to do it for us. */
.content-layout:not(.content-layout--sidebar) .entry-content {
	max-width: 900px;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content h2 {
	margin-top: 1.7em;
	font-size: clamp(22px, 2.1vw, 29px);
	color: var(--blue);
}

.entry-content h3 {
	margin-top: 1.5em;
	font-size: clamp(19px, 1.7vw, 23px);
	color: var(--blue);
}

.entry-content a {
	color: var(--blue-600);
}

.entry-content blockquote {
	margin: 1.6em 0;
	padding: 6px 0 6px 26px;
	border-left: 4px solid var(--orange);
	font-size: 18px;
	color: var(--ink);
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.35em;
}

.entry-content li {
	margin-bottom: .45em;
}

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.4em 0;
}

.entry-content th,
.entry-content td {
	padding: 12px 14px;
	border: 1px solid var(--line);
	text-align: left;
}

.entry-content th {
	background: var(--bg-soft);
	color: var(--blue);
	font-family: var(--font-display);
	font-size: 14px;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.entry-content img {
	border-radius: var(--radius);
}

/* Post list */

.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
}

.post-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line-soft);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: box-shadow .2s ease, transform .2s ease;
}

.post-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.post-card__media {
	aspect-ratio: 16 / 9;
	background: var(--blue-800);
	overflow: hidden;
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__body {
	padding: 20px 22px 24px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.post-card__title {
	margin: 0 0 10px;
	font-size: 19px;
	line-height: 1.3;
	color: var(--blue);
}

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

.post-card__title a:hover {
	color: var(--orange-600);
}

.post-card__excerpt {
	font-size: 14.5px;
	line-height: 1.6;
	margin-bottom: 16px;
}

.post-card__more {
	margin-top: auto;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--orange-600);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 18px;
	margin: 0 0 12px;
	font-size: 12.5px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--muted);
}

.entry-meta__date {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.entry-meta a {
	color: var(--orange-600);
	text-decoration: none;
}

/* Sidebar & widgets */

.widget {
	margin-bottom: 30px;
	padding: 24px;
	background: var(--bg-soft);
	border-radius: var(--radius);
}

.widget-title {
	margin: 0 0 14px;
	font-size: 15px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--blue);
}

.widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget li + li {
	margin-top: 9px;
	padding-top: 9px;
	border-top: 1px solid var(--line);
}

.widget a {
	color: var(--body);
	text-decoration: none;
	font-size: 14.5px;
}

.widget a:hover {
	color: var(--orange-600);
}

/* Pagination */

.pagination {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	margin: 0 3px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	color: var(--blue);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	background: var(--blue);
	border-color: var(--blue);
	color: #fff;
}

/* Search form */

.search-form {
	display: flex;
	gap: 8px;
}

.search-form input[type="search"] {
	flex: 1;
	min-width: 0;
	padding: 11px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font: inherit;
	font-size: 14.5px;
	color: var(--ink);
	background: #fff;
}

.search-form input[type="search"]:focus {
	border-color: var(--orange);
	outline: none;
}

.search-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	border: 0;
	border-radius: var(--radius);
	background: var(--blue);
	color: #fff;
}

.search-form button:hover {
	background: var(--orange);
}

/* Core search block, used inside widget areas. */

.wp-block-search__inside-wrapper {
	gap: 8px;
}

.wp-block-search .wp-block-search__input {
	padding: 11px 14px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font: inherit;
	font-size: 14.5px;
	color: var(--ink);
	background: #fff;
}

.wp-block-search .wp-block-search__input:focus {
	border-color: var(--orange);
	outline: none;
}

.wp-block-search .wp-block-search__button {
	margin-left: 0;
	padding: 11px 18px;
	border: 0;
	border-radius: var(--radius);
	background: var(--blue);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.wp-block-search .wp-block-search__button:hover {
	background: var(--orange);
}

/* Comments */

.comments {
	margin-top: 48px;
	padding-top: 36px;
	border-top: 1px solid var(--line);
	max-width: 900px;
}

.comments__title {
	font-size: 21px;
	color: var(--blue);
	margin-bottom: 20px;
}

.comment-list {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
}

.comment-list .children {
	list-style: none;
	margin: 0;
	padding-left: 28px;
}

.comment-body {
	padding: 20px 0;
	border-bottom: 1px solid var(--line-soft);
}

.comment-author img {
	border-radius: 50%;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
}

.comment-meta {
	font-size: 13px;
	color: var(--muted);
	margin-bottom: 8px;
}

.comment-form label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 11px 14px;
	margin-bottom: 16px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	font: inherit;
	font-size: 15px;
	color: var(--ink);
	background: #fff;
}

.comment-form input:focus,
.comment-form textarea:focus {
	border-color: var(--orange);
	outline: none;
}

.comment-form .form-submit input[type="submit"] {
	cursor: pointer;
}

/* 404 */

.error-404 {
	text-align: center;
	padding-block: 70px 90px;
}

.error-404__code {
	font-family: var(--font-display);
	font-size: clamp(76px, 12vw, 152px);
	font-weight: 800;
	line-height: 1;
	color: var(--line);
	margin: 0;
}

/* 10. Footer --------------------------------------------------------------- */

.site-footer {
	background: var(--blue-900);
	color: #c8d4e6;
	padding-block: 56px 0;
	font-size: 14.5px;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
	gap: 40px;
	padding-bottom: 44px;
}

.site-footer__brand img {
	height: 62px;
	width: auto;
	margin-bottom: 18px;
}

.site-footer__about {
	max-width: 42ch;
	line-height: 1.65;
	color: #b7c5da;
}

.site-footer__title {
	margin: 0 0 18px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: #fff;
}

.site-footer__title::after {
	content: "";
	display: block;
	width: 34px;
	height: 3px;
	background: var(--orange);
	margin-top: 10px;
}

.site-footer__menu,
.site-footer__dates,
.contact-list,
.social-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__menu li + li {
	margin-top: 10px;
}

.site-footer__menu a {
	color: #b7c5da;
	text-decoration: none;
	transition: color .18s ease;
}

.site-footer__menu a:hover {
	color: var(--orange-400);
}

.site-footer__dates li {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.site-footer__dates li:last-child {
	border-bottom: 0;
}

.site-footer__dates-label {
	font-size: 12px;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: #92a5c2;
}

.site-footer__dates-value {
	color: #fff;
	font-weight: 600;
}

.contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 14px;
	line-height: 1.55;
}

.contact-list .hsrc-icon {
	color: var(--orange-400);
	margin-top: 3px;
}

.contact-list a {
	color: #b7c5da;
	text-decoration: none;
}

.contact-list a:hover {
	color: var(--orange-400);
}

.social-list {
	display: flex;
	gap: 10px;
	margin-top: 22px;
}

.social-list a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 50%;
	color: #d7e2f1;
	transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.social-list a:hover {
	background: var(--orange);
	border-color: var(--orange);
	color: #fff;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-block: 20px;
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.site-footer__copy {
	margin: 0;
	font-size: 13.5px;
	color: #93a6c3;
}

.site-footer__utility {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__utility a {
	font-size: 13.5px;
	color: #93a6c3;
	text-decoration: none;
}

.site-footer__utility a:hover {
	color: var(--orange-400);
}

/* 11. Responsive ----------------------------------------------------------- */

/*
 * Below ~900px the banner's baked-in sub-headline drops under ~10px, so the
 * artwork steps aside and the live text takes over as the visible hero.
 */
@media (max-width: 900px) {
	.hero__banner-img {
		display: none;
	}

	.hero__compact {
		position: static;
		width: auto;
		height: auto;
		margin: 0;
		padding-block: 36px 34px;
		overflow: visible;
		clip-path: none;
		white-space: normal;
	}

	.hero__band {
		border-top: 0;
	}
}

@media (max-width: 1400px) {
	.primary-nav__list {
		gap: 20px;
	}

	.primary-nav__list a {
		font-size: 12px;
		letter-spacing: .04em;
	}
}

@media (max-width: 1240px) {
	.pillars__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.countdown-card {
		grid-column: span 2;
	}

	.about__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 34px;
	}
}

@media (max-width: 1180px) {
	.nav-toggle {
		display: inline-flex;
	}

	/* The drawer leaves the flow, so the actions take over pushing right. */
	.site-header__actions {
		margin-left: auto;
	}

	.primary-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(86vw, 350px);
		margin: 0;
		padding: 92px 26px 36px;
		background: #fff;
		box-shadow: var(--shadow-lg);
		overflow-y: auto;
		transform: translateX(101%);
		transition: transform .28s ease;
		z-index: 120;
	}

	body.nav-open .primary-nav {
		transform: none;
	}

	.primary-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.primary-nav__list > .menu-item {
		border-bottom: 1px solid var(--line-soft);
	}

	.primary-nav__list a {
		padding: 14px 2px;
		font-size: 13.5px;
	}

	.primary-nav__list > .menu-item > a::after {
		display: none;
	}

	.primary-nav__list .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		border: 0;
		box-shadow: none;
		padding: 0 0 8px 14px;
		min-width: 0;
	}

	.primary-nav__list > .menu-item-has-children > a::before {
		display: none;
	}

	.actionbar__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 4px 0;
	}

	.actionbar__item {
		padding: 14px 22px;
	}

	.actionbar__item:nth-child(odd) {
		padding-left: 0;
	}

	.actionbar__item:nth-child(3),
	.actionbar__item:nth-child(4) {
		border-top: 1px solid rgba(255, 255, 255, .15);
	}

	.actionbar__item:nth-child(odd) {
		border-left: 0;
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.hero__band-inner {
		justify-content: flex-start;
	}

	.content-layout--sidebar {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 760px) {
	:root {
		--gutter: 18px;
		--header-h: 72px;
	}

	.site-header__brand img {
		height: 46px;
	}

	.site-header__cta {
		display: none;
	}

	.hero__facts {
		gap: 16px 26px;
	}

	.hero__actions {
		width: 100%;
	}

	.hero__actions .btn {
		flex: 1 1 auto;
		justify-content: space-between;
	}

	.pillars__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.countdown-card {
		grid-column: auto;
	}

	.about__cards {
		grid-template-columns: minmax(0, 1fr);
	}

	.actionbar__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.actionbar__item {
		padding: 14px 0;
		border-left: 0 !important;
	}

	.actionbar__item + .actionbar__item {
		border-top: 1px solid rgba(255, 255, 255, .15);
	}

	.site-footer__grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
	}
}
