:root {
	--font-heading: "Minion Pro", Georgia, "Times New Roman", serif;
	--font-optima: "Optima", "Optima Medium", "Segoe UI", Arial, sans-serif;
	--font-body: Arial, Helvetica, sans-serif;
}

@font-face {
	font-display: swap;
	font-family: "Minion Pro";
	font-style: normal;
	font-weight: 400;
	src: url("../minion-pro/MinionPro-Regular.otf") format("opentype");
}

@font-face {
	font-display: swap;
	font-family: "Optima";
	font-style: normal;
	font-weight: 400;
	src: url("../optima/OPTIMA.TTF") format("truetype");
}

@font-face {
	font-display: swap;
	font-family: "Optima";
	font-style: normal;
	font-weight: 600;
	src: url("../optima/Optima Medium.ttf") format("truetype");
}

:root {
	--color-ink: #16211f;
	--color-muted: #596966;
	--color-surface: #f6f2ea;
	--color-panel: #ffffff;
	--color-accent: #0f7b68;
	--color-accent-dark: #0a5548;
	--color-brand-blue: #0a3643;
	--color-brand-gold: #cf8e36;
	--color-section-heading: #b2792c;
	--color-line: #d9e0db;
	--color-warm: #e0b35b;
	--shadow-soft: 0 20px 60px rgba(22, 33, 31, 0.12);
	--container: 1160px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--color-surface);
	color: var(--color-ink);
	font-family: var(--font-body);
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

.container {
	margin: 0 auto;
	max-width: var(--container);
	padding: 0 24px;
	width: 100%;
}

.site-header {
	background: #ffffff;
	border-bottom: 1px solid #eeeeee;
	position: sticky;
	top: 0;
	z-index: 20;
}

.site-header__inner {
	align-items: center;
	display: flex;
	gap: 108px;
	justify-content: center;
	min-height: 83px;
	max-width: 1480px;
}

.site-logo {
	align-items: center;
	display: inline-flex;
	font-family: var(--font-heading);
	font-weight: 800;
	gap: 10px;
	flex: 0 0 auto;
	line-height: 0;
}

.site-logo img {
	display: block;
	height: auto;
	max-height: 77px;
	object-fit: contain;
	transform: translateY(-2px);
	width: auto;
}

.site-nav {
	align-items: center;
	display: flex;
	flex: 0 1 auto;
	min-height: 44px;
	transform: translateY(2px);
}

.site-nav__list,
.site-footer__nav {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 26px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list li {
	position: relative;
}

.site-nav a {
	color: #5f5f5f;
	font-family: var(--font-heading);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.1;
	white-space: nowrap;
}

.site-nav a:hover {
	color: var(--color-brand-gold);
}

.site-nav .current-menu-item > a,
.site-nav .current-menu-ancestor > a,
.site-nav__list > li > a[aria-current="page"],
.site-nav__list > li:first-child > a {
	color: var(--color-brand-gold);
}

.site-nav__item--has-dropdown:hover > .site-nav__dropdown,
.site-nav__item--has-dropdown:focus-within > .site-nav__dropdown {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.site-nav__dropdown {
	background: #ffffff;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
	left: 0;
	list-style: none;
	margin: 0;
	min-width: 318px;
	opacity: 0;
	padding: 18px 0;
	pointer-events: none;
	position: absolute;
	top: 100%;
	transform: translateY(0);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
	visibility: hidden;
	z-index: 30;
}

.site-nav__dropdown::before {
	display: none;
}

.site-nav__dropdown--compact {
	min-width: 206px;
}

.site-nav__dropdown a {
	color: #222222;
	display: block;
	font-weight: 500;
	padding: 10px 28px;
	white-space: nowrap;
}

.site-nav__dropdown a:hover,
.site-nav__dropdown a:focus {
	background: #003b70;
	color: #ffffff;
}

.site-nav .site-nav__signup {
	background: var(--color-brand-blue);
	color: #ffffff;
	display: inline-flex;
	font-weight: 700;
	line-height: 1;
	min-height: 40px;
	padding: 11px 22px;
}

.site-nav .site-nav__signup:hover {
	background: var(--color-brand-blue);
	color: #ffffff;
}

.site-menu-toggle {
	align-items: center;
	background: var(--color-brand-blue);
	border: 0;
	cursor: pointer;
	display: none;
	height: 44px;
	justify-content: center;
	padding: 0;
	position: relative;
	width: 48px;
}

.site-menu-toggle__bar {
	background: #ffffff;
	display: block;
	height: 2px;
	left: 13px;
	position: absolute;
	transition: transform 0.24s ease, opacity 0.18s ease, top 0.24s ease;
	width: 22px;
}

.site-menu-toggle__bar:nth-child(1) {
	top: 14px;
}

.site-menu-toggle__bar:nth-child(2) {
	top: 21px;
}

.site-menu-toggle__bar:nth-child(3) {
	top: 28px;
}

.site-menu-toggle.is-active .site-menu-toggle__bar:nth-child(1) {
	top: 21px;
	transform: rotate(45deg);
}

.site-menu-toggle.is-active .site-menu-toggle__bar:nth-child(2) {
	opacity: 0;
}

.site-menu-toggle.is-active .site-menu-toggle__bar:nth-child(3) {
	top: 21px;
	transform: rotate(-45deg);
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.eyebrow {
	color: var(--color-accent);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	margin: 0 0 12px;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}
p {
	font-size:19px;
}

h1,
h2,
h3,
.site-nav__list,
.site-footer__nav {
	font-family: var(--font-heading);
}

h1 {
	font-size: clamp(42px, 6vw, 76px);
	letter-spacing: 0;
	line-height: 0.98;
	margin-bottom: 24px;
}

h2 {
	font-size: clamp(30px, 4vw, 48px);
	letter-spacing: 0;
	line-height: 1.08;
	margin-bottom: 18px;
}

h3 {
	font-size: 22px;
	line-height: 1.2;
	margin-bottom: 12px;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.button {
	align-items: center;
	border: 1px solid transparent;
	border-radius: 8px;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button--primary {
	background: var(--color-accent);
	color: #ffffff;
}

.button--primary:hover {
	background: var(--color-accent-dark);
}

.button--secondary {
	border-color: var(--color-line);
	color: var(--color-ink);
}

.button--secondary:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
}

.section {
	padding: 78px 0;
}

.home-hero {
	align-items: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	min-height: 650px;
	overflow: hidden;
	padding: 120px 0 165px;
	position: relative;
	text-align: center;
}

.home-hero__tiles {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(4, 1fr);
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 3;
}

.home-hero__tiles span {
	animation: homeHeroSquareReveal 0.75s cubic-bezier(0.76, 0, 0.24, 1) forwards;
	background: #071f27;
	box-shadow: 0 0 0 1px rgba(198, 143, 60, 0.08);
	display: block;
	transform-origin: center;
}

.home-hero__tiles span:nth-child(6n+1) {
	animation-delay: 0.1s;
}

.home-hero__tiles span:nth-child(6n+2),
.home-hero__tiles span:nth-child(6n+7) {
	animation-delay: 0.18s;
}

.home-hero__tiles span:nth-child(6n+3),
.home-hero__tiles span:nth-child(6n+8),
.home-hero__tiles span:nth-child(6n+13) {
	animation-delay: 0.26s;
}

.home-hero__tiles span:nth-child(6n+4),
.home-hero__tiles span:nth-child(6n+9),
.home-hero__tiles span:nth-child(6n+14),
.home-hero__tiles span:nth-child(6n+19) {
	animation-delay: 0.34s;
}

.home-hero__tiles span:nth-child(6n+5),
.home-hero__tiles span:nth-child(6n+10),
.home-hero__tiles span:nth-child(6n+15),
.home-hero__tiles span:nth-child(6n+20) {
	animation-delay: 0.42s;
}

.home-hero__tiles span:nth-child(6n),
.home-hero__tiles span:nth-child(6n+11),
.home-hero__tiles span:nth-child(6n+16),
.home-hero__tiles span:nth-child(6n+21) {
	animation-delay: 0.5s;
}

.home-hero__overlay {
	background: rgba(0, 0, 0, 0.62);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.home-hero__content {
	animation: homeHeroContentIn 0.8s ease 0.95s both;
	position: relative;
	z-index: 4;
}

.home-hero h1 {
	color: #efe7cf;
	font-family: var(--font-heading);
	font-size: clamp(36px, 2.65vw, 52px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.12;
	margin: 0 auto 30px;
	max-width: 1600px;
	text-shadow: 0 3px 4px rgba(0, 0, 0, 0.72);
	white-space: nowrap;
}

.home-hero p {
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: clamp(24px, 1.85vw, 36px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 auto;
	max-width: 1500px;
	text-shadow: 0 3px 4px rgba(0, 0, 0, 0.72);
	white-space: nowrap;
}

@keyframes homeHeroSquareReveal {
	to {
		opacity: 0;
		transform: scale(0.08);
	}
}

@keyframes homeHeroContentIn {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-hero::before,
	.home-hero::after,
	.home-hero__tiles span,
	.home-hero__content {
		animation: none;
	}

	.home-hero__tiles {
		display: none;
	}
}

.home-hero-features {
	background: #f4f4f4;
	padding-bottom: 28px;
}

.home-hero-features__inner {
	background: var(--color-brand-blue);
	border-top: 8px solid var(--color-brand-gold);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin: -54px auto 0;
	max-width: 1110px;
	min-height: 186px;
	position: relative;
	z-index: 4;
}

.home-hero-feature {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 178px;
	padding: 22px 28px;
	position: relative;
	text-align: center;
}

.home-hero-feature:not(:last-child)::after {
	background: var(--color-brand-gold);
	content: "";
	height: 96px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 2px;
}

.home-hero-feature img {
	height: 58px;
	margin-bottom: 22px;
	object-fit: contain;
	width: 68px;
}

.home-hero-feature h2 {
	color: #ffffff;
	font-family: var(--font-optima);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.16;
	margin: 0;
	max-width: 126px;
}

.home-about {
	background: #f4f4f4;
	font-size: 20px;
	padding: 28px 0 96px;
	text-align: center;
}

.home-about__inner {
	max-width: 1130px;
}

.home-about h2 {
	color: var(--color-section-heading);
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 42px;
}

.home-about__content {
	font-size: 20px;
	margin: 0 auto;
	max-width: 1110px;
}

.home-about p {
	color: #191919;
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.42;
	margin: 0 auto 22px;
}

.home-about p:last-child {
	margin-bottom: 0;
}

.focus-areas {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 34px 0 80px;
	position: relative;
}

.focus-areas__overlay {
	background: rgba(10, 54, 67, 0.64);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.focus-areas__inner {
	position: relative;
	z-index: 2;
}

.focus-areas h2 {
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 46px;
	text-align: center;
}

.focus-areas__grid {
	display: grid;
	gap: 16px 20px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0 auto;
	max-width: 1120px;
}

.focus-card {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 244px;
	padding: 34px 20px;
	text-align: center;
}

.focus-card--dark {
	background: #aa7a26;
}

.focus-card--light {
	background: #c2a074;
}

.focus-card h3 {
	color: #ffffff;
	font-family: var(--font-optima);
	font-size: 21px;
	font-weight: 400;
	line-height: 1.2;
	margin: 22px 0 0;
}

.focus-card__icon {
	display: block;
	height: 72px;
	object-fit: contain;
	width: 82px;
}

.membership-statement {
	background: #f4f4f4;
	padding: 48px 0 72px;
	text-align: center;
}

.membership-statement__inner {
	max-width: 1020px;
}

.membership-statement h2 {
	color: var(--color-section-heading);
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 400;
	line-height: 1.05;
	margin: 0;
}

.directory-cta {
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 377px;
	padding: 110px 0 78px;
	position: relative;
}

.directory-cta__overlay {
	background: rgba(10, 54, 67, 0.18);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.directory-cta__inner {
	max-width: 1120px;
	position: relative;
	z-index: 2;
}

.directory-cta h2 {
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: 44px;
	font-weight: 700;
	line-height: 1.12;
	margin: 0 0 26px;
	max-width: 930px;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.directory-cta__button {
	background: var(--color-brand-blue);
	color: #ffffff;
	display: inline-flex;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	padding: 14px 22px;
}

.directory-cta__button:hover {
	background: var(--color-brand-blue);
	color: var(--color-brand-gold);
}

.downloads-section {
	background: #f4f4f4;
	padding: 42px 0 58px;
	text-align: center;
}

.downloads-section__inner {
	max-width: 1120px;
}

.downloads-section h2 {
	color: var(--color-section-heading);
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 44px;
}

.downloads-list {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(4, 1fr);
	margin: 0 auto 20px;
}

.downloads-card {
	display: block;
	overflow: hidden;
}

.downloads-card img {
	aspect-ratio: 255 / 180;
	display: block;
	filter: grayscale(1);
	object-fit: cover;
	width: 100%;
}

.downloads-card span {
	background: #aa7927;
	color: #ffffff;
	display: block;
	font-family: var(--font-heading);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.1;
	padding: 8px 10px;
}

.downloads-card:hover span {
	background: var(--color-brand-blue);
}

.downloads-section__button {
	background: var(--color-brand-blue);
	color: #ffffff;
	display: inline-flex;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	margin-top: 0;
	padding: 15px 24px;
}

.downloads-section__button:hover {
	color: var(--color-brand-gold);
}

.spotlight-section {
	background: #f4f4f4;
	padding: 0 0 46px;
}

.spotlight-section__inner {
	max-width: 1120px;
}

.spotlight-section h2 {
	color: #191919;
	font-family: var(--font-heading);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 24px;
	text-align: center;
}

.spotlight-section img {
	display: block;
	height: auto;
	width: 100%;
}

.page-hero {
	background: #ffffff;
	padding: 86px 0 48px;
}

.page-hero__inner {
	max-width: 900px;
}

.page-hero p:not(.eyebrow) {
	color: var(--color-muted);
	font-size: 19px;
	max-width: 720px;
}

.section-heading {
	margin-bottom: 34px;
	max-width: 680px;
}

.section-heading--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.card-grid,
.testimonial-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, 1fr);
}

.service-card,
.testimonial,
.process-item {
	background: var(--color-panel);
	border: 1px solid var(--color-line);
	border-radius: 8px;
}

.service-card {
	padding: 28px;
}

.service-card p,
.process-item p,
.testimonial blockquote,
.testimonial span,
.cta p,
.content-page p {
	color: var(--color-muted);
}

.process {
	background: #ffffff;
}

.process__grid {
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
}

.process__list {
	display: grid;
	gap: 16px;
}

.process-item {
	display: grid;
	gap: 18px;
	grid-template-columns: 56px 1fr;
	padding: 24px;
}

.process-item span {
	color: var(--color-warm);
	font-size: 19px;
	font-weight: 900;
}

.testimonial-grid {
	grid-template-columns: repeat(2, 1fr);
}

.testimonial {
	margin: 0;
	padding: 28px;
}

.testimonial blockquote {
	font-size: 20px;
	margin: 0 0 22px;
}

.testimonial strong,
.testimonial span {
	display: block;
}

.cta {
	padding-bottom: 96px;
}

.cta__inner {
	align-items: center;
	background: var(--color-ink);
	border-radius: 8px;
	color: #ffffff;
	display: flex;
	gap: 32px;
	justify-content: space-between;
	padding: 42px;
}

.cta__inner > div {
	max-width: 760px;
}

.cta p {
	margin-bottom: 0;
}

.site-footer {
	background: var(--color-brand-blue);
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: 20px;
	min-height: 414px;
	padding: 51px 0 16px;
	position: relative;
}

.site-footer__inner {
	display: grid;
	gap: 30px;
	grid-template-columns: 350px 350px 390px;
	max-width: 1185px;
}

.site-footer__summary {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.22;
	margin: 0 0 32px;
	max-width: 350px;
}

.footer-newsletter {
	display: grid;
	gap: 10px;
	max-width: 280px;
}

.footer-newsletter label,
.site-footer__column h2 {
	color: #ffffff;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.1;
	margin: 0;
}

.footer-newsletter input {
	border: 0;
	color: var(--color-ink);
	font: inherit;
	font-size: 20px;
	margin-top: 8px;
	min-height: 39px;
	padding: 9px 14px;
	width: 100%;
}

.footer-newsletter button {
	background: #ffffff;
	border: 0;
	color: var(--color-brand-blue);
	cursor: pointer;
	font: inherit;
	font-size: 20px;
	justify-self: start;
	min-height: 34px;
	padding: 8px 14px;
}

.site-footer__column h2 {
	border-bottom: 1px solid rgba(255, 255, 255, 0.34);
	margin-bottom: 26px;
	padding-bottom: 17px;
}

.site-footer__links {
	display: grid;
	font-size: 19px;
	gap: 1px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer a {
	color: #ffffff;
}

.site-footer a:hover {
	color: var(--color-brand-gold);
}

.site-footer__contact {
	font-size: 19px;
	font-weight:400 !important;
	font-style: normal;
}

.site-footer__contact p {
	display: grid;
	gap: 14px;
	grid-template-columns: 18px 1fr;
	line-height: 1.35;
	margin: 0 0 19px;
}

.footer-icon {
	display: inline-flex;
	line-height: 1;
	margin-top: 2px;
}

.footer-icon svg {
	fill: #ffffff;
	height: 18px;
	width: 18px;
}

.site-footer__socials {
	display: flex;
	gap: 10px;
	margin-left: 29px;
}

.site-footer__socials a {
	align-items: center;
	background: #ffffff;
	border-radius: 50%;
	color: var(--color-brand-blue);
	display: inline-flex;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	font-weight: 700;
	height: 31px;
	justify-content: center;
	width: 31px;
}

.site-footer__socials svg {
	fill: currentColor;
	height: 17px;
	width: 17px;
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.38);
	margin-top: 73px;
	max-width: 1185px;
	padding-top: 8px;
	text-align: center;
}

.site-footer__bottom p {
	font-size: 17px;
	font-weight: 400;
	margin: 0;
}

.error-404-page {
	align-items: center;
	background: #f4f4f4;
	display: flex;
	min-height: 520px;
	padding: 96px 0;
	text-align: center;
}

.error-404-page__inner {
	max-width: 720px;
}

.error-404-page__eyebrow {
	color: var(--color-section-heading);
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	margin: 0 0 16px;
}

.error-404-page h1 {
	color: #111111;
	font-family: var(--font-heading);
	font-size: clamp(42px, 5vw, 68px);
	font-weight: 700;
	line-height: 1.05;
	margin: 0 0 20px;
}

.error-404-page p {
	color: #111111;
	font-family: var(--font-heading);
	font-size: 20px;
	line-height: 1.45;
	margin: 0 auto 28px;
	max-width: 560px;
}

.error-404-page__button {
	background: var(--color-brand-blue);
	color: #ffffff;
	display: inline-flex;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	min-height: 46px;
	padding: 14px 28px;
}

.error-404-page__button:hover {
	background: #082b36;
	color: #ffffff;
}


.content-page {
	background: var(--color-panel);
	border: 1px solid var(--color-line);
	border-radius: 8px;
	padding: 42px;
}

.privacy-policy-page {
	background: #f4f4f4;
	padding: 30px 0 56px;
}

.privacy-policy-content {
	background: transparent;
	border: 0;
	border-radius: 0;
	max-width: 1120px;
	padding: 0;
}

.privacy-policy-content h1 {
	color: #111111;
	font-family: var(--font-heading);
	font-size: 30px;
	line-height: 1.15;
	margin: 22px 0 20px;
}

.privacy-policy-content h2,
.privacy-policy-content h3 {
	color: #111111;
	font-family: var(--font-heading);
	font-size: 19px;
	line-height: 1.35;
	margin: 22px 0 12px;
}

.privacy-policy-content p {
	color: #111111;
	font-family: var(--font-heading);
	font-size: 17px;
	line-height: 1.55;
	margin: 0 0 18px;
}

.privacy-policy-content a {
	color: #4d9aff;
}

.membership-enquiry-page {
	background: #f4f4f4;
	padding: 40px 0 54px;
}

.membership-enquiry-layout {
	display: grid;
	gap: 30px;
	grid-template-columns: minmax(0, 820px) 330px;
	max-width: 1220px;
}

.membership-enquiry-main h1 {
	color: #111111;
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 16px;
}

.membership-enquiry-intro {
	color: #111111;
	font-family: var(--font-heading);
	font-size: 19px;
	line-height: 1.35;
	margin: 0 0 16px;
}

.form-alert {
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 14px;
	padding: 10px 12px;
}

.form-alert--success {
	background: #e3f6e8;
	color: #155c26;
}

.form-alert--error {
	background: #fde8e8;
	color: #9f1d1d;
}

.membership-enquiry-form {
	background: #ffffff;
	border: 1px solid #dedede;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
	display: grid;
	gap: 0;
	padding: 23px 24px 24px;
}

.form-honeypot {
	display: none !important;
}

.membership-enquiry-form label:not(.membership-enquiry-check) {
	display: grid;
	gap: 10px;
	margin-bottom: 20px;
}

.membership-enquiry-form span {
	color: #111111;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
}

.membership-enquiry-form em {
	color: #cc1d1d;
	font-style: normal;
}

.membership-enquiry-form input:not([type="checkbox"]),
.membership-enquiry-form select,
.membership-enquiry-form textarea {
	background: #ffffff;
	border: 0;
	border-bottom: 1px solid #d5d5d5;
	border-radius: 0;
	color: #111111;
	font: inherit;
	min-height: 34px;
	outline: none;
	padding: 4px 0;
	width: 100%;
}

.membership-enquiry-form input:focus,
.membership-enquiry-form select:focus,
.membership-enquiry-form textarea:focus {
	border-bottom-color: var(--color-brand-blue);
}

.membership-enquiry-form textarea {
	resize: vertical;
}

.membership-enquiry-check {
	align-items: flex-start;
	display: flex;
	gap: 7px;
	margin: 8px 0 18px;
}

.membership-enquiry-check input {
	margin-top: 2px;
}

.membership-enquiry-check span {
	font-weight: 400;
	line-height: 1.3;
}

.membership-enquiry-check a {
	color: #1b5ca7;
}

.membership-captcha {
	margin: 8px 0 22px !important;
}

.membership-captcha span {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.membership-captcha strong {
	background: #ffe0e0;
	color: #111111;
	display: inline-flex;
	justify-content: center;
	min-width: 86px;
	padding: 8px 18px;
}

.membership-enquiry-form .membership-captcha input {
	border: 1px solid #c98f8f;
	min-height: 42px;
	padding: 7px 8px;
}

.membership-enquiry-form .membership-captcha input:focus {
	border-color: #9f1d1d;
}

.membership-enquiry-form button {
	background: var(--color-brand-blue);
	border: 0;
	color: #ffffff;
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	justify-self: start;
	padding: 10px 14px;
}

.membership-enquiry-sidebar {
	background: #ffffff;
	align-self: start;
	display: grid;
}

.membership-enquiry-sidebar a {
	border-bottom: 1px solid #eeeeee;
	color: #00325d;
	font-family: var(--font-heading);
	font-size: 19px;
	font-weight: 700;
	padding: 15px 18px;
}

.event-enquiry-sidebar {
	align-self: start;
	display: grid;
	gap: 28px;
}

.company-presentation-button {
	background: var(--color-brand-blue);
	color: #ffffff;
	display: inline-flex;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	min-height: 38px;
	padding: 12px 18px;
}

.company-presentation-button:hover {
	background: #082b36;
	color: #ffffff;
}

.participation-request-page {
	background: #f4f4f4;
	padding: 22px 0 72px;
}

.participation-request-layout {
	align-items: start;
	display: grid;
	gap: 30px;
	grid-template-columns: minmax(0, 826px) 300px;
	max-width: 1166px;
}

.participation-request-main h1 {
	color: #111111;
	font-family: var(--font-heading);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 22px;
}

.participation-form {
	background: #ffffff;
	border: 1px solid #dedede;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.13);
	display: grid;
	gap: 0;
	padding: 32px 30px 30px;
}

.participation-form label:not(.form-honeypot),
.participation-options {
	display: grid;
	gap: 12px;
	margin: 0 0 26px;
}

.participation-form span,
.participation-options legend {
	color: #111111;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.participation-options legend {
	margin-bottom: 6px;
}

.participation-form em {
	color: #cc1d1d;
	font-style: normal;
}

.participation-form input:not([type="radio"]):not([type="hidden"]),
.participation-form select,
.participation-form textarea {
	background: #ffffff;
	border: 1px solid #c98f8f;
	border-radius: 0;
	color: #111111;
	font: inherit;
	min-height: 36px;
	outline: none;
	padding: 7px 8px;
	width: 100%;
}

.participation-form textarea {
	min-height: 99px;
	resize: vertical;
}

.participation-form input:focus,
.participation-form select:focus,
.participation-form textarea:focus {
	border-color: var(--color-brand-blue);
}

.participation-options {
	border: 0;
	padding: 0;
}

.participation-form .participation-options label {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: flex-start;
	margin: 0;
	width: fit-content;
}

.participation-form .participation-options input {
	flex: 0 0 auto;
	height: 15px;
	margin: 0;
	min-height: 0;
	padding: 0;
	width: 15px;
}

.participation-options label span {
	font-weight: 700;
}

.participation-captcha span {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.participation-captcha strong {
	background: #ffe0e0;
	display: inline-block;
	min-width: 86px;
	padding: 6px 18px;
	text-align: center;
}

.participation-form button {
	background: var(--color-brand-blue);
	border: 0;
	color: #ffffff;
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	justify-self: start;
	padding: 10px 14px;
}

.participation-form button:hover {
	background: #082b36;
}

.participation-request-aside {
	padding-top: 86px;
}

.participation-request-aside img {
	display: block;
	height: auto;
	width: 100%;
}

.nomination-form-page {
	background: #f4f4f4;
	padding: 18px 0 20px;
}

.nomination-form-layout {
	max-width: 826px;
}

.nomination-form-layout h1 {
	color: #111111;
	font-family: var(--font-heading);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 23px;
}

.nomination-form {
	padding: 33px 30px 31px;
}

.nomination-form label:not(.membership-enquiry-check):not(.form-honeypot) {
	margin-bottom: 29px;
}

.nomination-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.nomination-form select,
.nomination-form textarea {
	min-height: 38px;
}

.nomination-form textarea {
	min-height: 92px;
}

.nomination-options {
	display: grid;
	gap: 12px;
	margin: 0 0 26px;
}

.nomination-form .participation-options label {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: flex-start;
	margin: 0 !important;
	width: fit-content;
}

.nomination-form .participation-options input[type="radio"] {
	flex: 0 0 auto;
	height: 15px;
	margin: 0;
	min-height: 0;
	padding: 0;
	width: 15px;
}

.nomination-captcha {
	gap: 12px !important;
	margin: 6px 0 30px !important;
}

.nomination-captcha span {
	align-items: center;
	display: flex;
	gap: 10px;
}

.nomination-captcha strong {
	background: #ffe0e0;
	display: inline-flex;
	justify-content: center;
	min-width: 86px;
	padding: 8px 18px;
}

.blog-page {
	background: #f4f4f4;
	padding: 15px 0 70px;
}

.blog-page__inner {
	max-width: 1198px;
}

.blog-page h1 {
	color: #111111;
	font-family: var(--font-heading);
	font-size: 37px;
	font-weight: 700;
	line-height: 1.05;
	margin: 0 0 42px 15px;
}

.blog-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 19px 16px;
}

.blog-filters a {
	background: #ffffff;
	border: 1px solid #e4e4e4;
	color: #000000;
	font-family: var(--font-heading);
	font-size: 13px;
	line-height: 1;
	padding: 12px 14px;
	white-space: nowrap;
}

.blog-filters a.is-active,
.blog-filters a:hover {
	background: #f14850;
	border-color: #f14850;
	color: #ffffff;
}

.blog-grid {
	display: grid;
	gap: 16px 15px;
	grid-template-columns: repeat(3, minmax(0, 365px));
}

.blog-card {
	background: #ffffff;
	border-radius: 2px;
	font-family: var(--font-heading);
	overflow: hidden;
	position: relative;
}

.blog-card::before {
	background: #16aabd;
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.blog-card.tone-purple::before {
	background: #9b5ca5;
}

.blog-card.tone-red::before {
	background: #b62c2c;
}

.blog-card.tone-green::before,
.blog-card.tone-governance::before {
	background: #008000;
}

.blog-card.tone-light-blue::before,
.blog-card.tone-family-offices::before {
	background: #8ed0ea;
}

.blog-card__image {
	display: block;
	position: relative;
}

.blog-card__image img {
	aspect-ratio: 365 / 194;
	display: block;
	object-fit: cover;
	width: 100%;
}

.blog-card__image span {
	background: #16aabd;
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	padding: 4px 8px;
	position: absolute;
	right: 5px;
	top: 8px;
}

.blog-card.tone-purple .blog-card__image span {
	background: #9b5ca5;
}

.blog-card.tone-red .blog-card__image span {
	background: #b62c2c;
}

.blog-card.tone-green .blog-card__image span,
.blog-card.tone-governance .blog-card__image span {
	background: #008000;
}

.blog-card.tone-light-blue .blog-card__image span,
.blog-card.tone-family-offices .blog-card__image span {
	background: #8ed0ea;
}

.blog-card__body {
	min-height: 168px;
	padding: 24px 20px 20px;
}

.blog-card__body time {
	color: #ff1d25;
	display: block;
	font-size: 12px;
	line-height: 1;
	margin-bottom: 16px;
}

.blog-card__body p {
	color: #4e4e4e;
	font-size: 15px;
	line-height: 1.5;
	margin: 0 0 17px;
	min-height: 46px;
}

.blog-card__button {
	background: var(--color-brand-blue);
	color: #ffffff;
	display: inline-flex;
	font-size: 19px;
	font-weight: 700;
	line-height: 1;
	padding: 10px 15px;
}

.blog-card__button:hover {
	background: #082b36;
	color: #ffffff;
}

.blog-card__footer {
	background: #e5e5e5;
	color: #000000;
	font-family: var(--font-heading);
	font-size: 13px;
	min-height: 41px;
	padding: 13px 20px;
}

.blog-card__footer strong {
	font-weight: 700;
}

.single-blog-page {
	background: #f4f4f4;
	padding: 47px 0 0;
}

.single-blog__inner {
	max-width: 826px;
}

.single-blog__date {
	color: #000000;
	display: block;
	font-family: var(--font-heading);
	font-size: 19px;
	line-height: 1;
	margin: 0 -8px 24px 0;
	text-align: right;
}

.single-blog__date::before {
	content: "▣";
	font-size: 12px;
	margin-right: 5px;
	vertical-align: 1px;
}

.single-blog__hero {
	background: #ffffff;
	margin: 0 0 15px;
}

.single-blog__hero img {
	display: block;
	height: auto;
	width: 100%;
}

.single-blog__content {
	border-bottom: 1px solid #b98942;
	color: #000000;
	font-family: var(--font-heading);
	padding-bottom: 35px;
}

.single-blog__content p,
.single-blog__content li {
	font-size: 19px;
	line-height: 1.44;
	margin: 0 0 18px;
}

.single-blog__content p:first-child {
	font-weight: 700;
}

.single-blog__content strong {
	font-weight: 700;
}

.single-blog__content em {
	font-style: italic;
}

.single-blog__content blockquote {
	font-style: italic;
	margin: 27px auto 24px;
	max-width: 520px;
	text-align: center;
}

.single-blog__content blockquote p {
	font-weight: 400;
	margin-bottom: 14px;
}

.single-blog__back {
	background: var(--color-brand-blue);
	color: #ffffff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	margin-top: 6px;
	padding: 10px 12px;
}

.single-blog__back:hover {
	background: #082b36;
	color: #ffffff;
}

.event-announcement {
	color: #000000;
	font-family: var(--font-heading);
	padding: 54px 0 148px;
}

.event-announcement p {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 24px;
}

.event-page--compact .event-tabs {
	margin-top: 20px;
}

.membership-page {
	background: #f4f4f4;
	padding: 25px 0 68px;
}

.membership-page__inner {
	max-width: 1108px;
}

.membership-breadcrumb {
	align-items: center;
	color: #000000;
	display: flex;
	font-family: var(--font-heading);
	font-size: 13px;
	gap: 14px;
	line-height: 1;
	margin: 0 0 23px;
}

.membership-breadcrumb a,
.membership-breadcrumb span {
	color: #000000;
}

.membership-breadcrumb a:hover {
	color: var(--color-section-heading);
}

.membership-layout {
	align-items: start;
	display: grid;
	gap: 55px;
	grid-template-columns: minmax(0, 60%) minmax(0, 40%);
}

.membership-title,
.membership-below-content {
	color: #000000;
	font-family: var(--font-heading);
}

.membership-content {
	color: #000000;
	font-family: var(--font-heading);
	padding-bottom: 0;
}

.membership-title {
	color: #111111;
	font-size: 37px;
	font-weight: 700;
	line-height: 1.05;
	margin: 0 0 20px;
}

.membership-content p,
.membership-below-content p {
	color: #000000;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.44;
	margin: 0 0 16px;
}

.membership-below-content {
	margin-top: 18px;
}

.membership-below-content h2 {
	color: var(--color-section-heading);
	display: inline-block;
	font-size: 25px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 19px 14px;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.membership-benefits {
	display: grid;
	gap: 14px;
	list-style: none;
	margin: 0 0 31px 14px;
	padding: 0;
}

.membership-benefits li {
	color: #000000;
	font-size: 19px;
	font-weight: 400;
	line-height: 0.86;
	padding-left: 18px;
	position: relative;
}

.membership-benefits li::before {
	color: var(--color-section-heading);
	content: "◆";
	font-size: 10px;
	left: 0;
	line-height: 1;
	position: absolute;
	top: 5px;
}

.membership-benefits strong {
	line-height: inherit;
	font-weight: 700;
}

.membership-benefits span {
	line-height: inherit;
	font-weight: 400;
}

.membership-enquiry-button {
	background: var(--color-brand-blue);
	color: #ffffff;
	display: inline-flex;
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	margin-left: 14px;
	min-height: 33px;
	padding: 9px 20px;
}

.membership-enquiry-button:hover {
	background: #082b36;
	color: #ffffff;
}

.membership-sidebar {
	background: #ffffff;
	display: grid;
	margin-top: 0;
	width: 100%;
}

.membership-sidebar a {
	border-bottom: 1px solid #eeeeee;
	color: #00325d;
	font-family: var(--font-heading);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.1;
	min-height: 51px;
	padding: 16px 23px;
	position: relative;
}

.membership-sidebar a:last-child {
	border-bottom: 0;
}

.membership-sidebar a:first-child::before,
.membership-sidebar a.is-active::before {
	background: var(--color-section-heading);
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 4px;
}

.membership-sidebar a:first-child::before,
.membership-sidebar a.is-active::before,
.membership-sidebar a:hover::before {
	opacity: 1;
}

.membership-sidebar a::before {
	background: var(--color-section-heading);
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	transition: opacity 0.18s ease;
	width: 4px;
}

.membership-sidebar a:hover {
	background: #fafafa;
	color: var(--color-section-heading);
}

.membership-faq-page {
	background: #f4f4f4;
	padding: 48px 0 86px;
}

.membership-faq-page__inner {
	max-width: 1202px;
}

.membership-faq-layout {
	align-items: start;
	display: grid;
	gap: 30px;
	grid-template-columns: minmax(0, 825px) 255px;
	justify-content: space-between;
}

.membership-faq-content {
	color: #222222;
	font-family: var(--font-heading);
}

.membership-faq-content h1 {
	color: #111111;
	font-size: 29px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 22px;
}

.membership-faq-list {
	display: grid;
	gap: 30px;
}

.membership-faq-item {
	border-bottom: 1px solid var(--color-brand-blue);
}

.membership-faq-question {
	align-items: center;
	background: transparent;
	border: 0;
	color: var(--color-brand-blue);
	cursor: pointer;
	display: grid;
	font-family: var(--font-heading);
	font-size: 21px;
	font-weight: 700;
	gap: 26px;
	grid-template-columns: 17px 1fr;
	letter-spacing: 0.4px;
	line-height: 1.2;
	min-height: 24px;
	padding: 0 0 6px;
	text-align: left;
	width: 100%;
}

.membership-faq-icon {
	border: 2px solid #333333;
	display: inline-block;
	height: 17px;
	position: relative;
	width: 17px;
}

.membership-faq-icon::before,
.membership-faq-icon::after {
	background: #333333;
	content: "";
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.membership-faq-icon::before {
	height: 2px;
	width: 9px;
}

.membership-faq-icon::after {
	height: 9px;
	width: 2px;
}

.membership-faq-item.is-open .membership-faq-icon::after {
	opacity: 0;
}

.membership-faq-answer[hidden] {
	display: none;
}

.membership-faq-answer {
	color: #222222;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.45;
	max-width: 804px;
	padding: 18px 0 21px;
}

.membership-faq-answer p {
	margin: 0 0 17px;
}

.membership-faq-answer p:last-child {
	margin-bottom: 0;
}

.membership-faq-answer strong {
	font-weight: 700;
}

.membership-faq-answer ul {
	margin: 16px 0 0 32px;
	padding: 0;
}

.membership-faq-answer li {
	margin: 0 0 3px;
	padding-left: 4px;
}

.collective-page {
	background: #f4f4f4;
	padding: 44px 0 74px;
}

.collective-page__inner {
	max-width: 1260px;
}

.collective-intro h1 {
	color: var(--color-brand-blue);
	display: table;
	font-family: var(--font-heading);
	font-size: 39px;
	font-weight: 700;
	line-height: 1.08;
	margin: 0 auto 37px;
	position: relative;
	text-align: center;
}

.collective-intro h1::after {
	background: var(--color-section-heading);
	bottom: -5px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	right: 0;
}

.collective-intro__grid {
	align-items: start;
	display: grid;
	gap: 26px;
	grid-template-columns: minmax(0, 636px) minmax(0, 1fr);
}

.collective-intro__image {
	background: #d8d8d8;
	height: 352px;
	overflow: hidden;
}

.collective-intro__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.collective-intro__content {
	color: #000000;
	font-family: var(--font-heading);
	font-size: 19px;
	font-weight: 400;
	line-height: 1.45;
	padding-top: 1px;
}

.collective-intro__content p {
	margin: 0 0 20px;
}

.collective-tabs {
	margin-top: 58px;
}

.collective-tabs__list {
	align-items: center;
	border-bottom: 1px solid var(--color-section-heading);
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	overflow: visible;
	padding-bottom: 10px;
}

.collective-tab {
	background: #a87329;
	border: 1px solid #a87329;
	border-radius: 5px;
	color: #ffffff;
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	flex: 0 0 auto;
	line-height: 1;
	min-height: 45px;
	padding: 12px 12px;
	white-space: nowrap;
}

.collective-tab.is-active {
	background: #ffffff;
	color: #000000;
}

.collective-tab:hover,
.collective-tab:focus-visible {
	background: #ffffff;
	color: #000000;
	outline: none;
}

.collective-tab-panel {
	color: #000000;
	font-family: var(--font-heading);
	font-size: 19px;
	line-height: 1.45;
	padding-top: 22px;
}

.collective-tab-panel[hidden] {
	display: none;
}

.reports-page {
	background: #f4f4f4;
	padding: 34px 0 78px;
}

.reports-page__inner {
	max-width: 1120px;
}

.reports-breadcrumb {
	align-items: center;
	color: #000000;
	display: flex;
	font-family: var(--font-heading);
	font-size: 13px;
	gap: 13px;
	line-height: 1;
	margin: 0 0 14px;
}

.reports-breadcrumb a,
.reports-breadcrumb span {
	color: #000000;
}

.reports-breadcrumb a:hover {
	color: var(--color-section-heading);
}

.reports-page h1 {
	color: #111111;
	font-family: var(--font-heading);
	font-size: 36px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 40px;
}

.reports-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-left: 0;
}

.report-card {
	background: #f4f4f4;
	border: 1px solid #dfdfdf;
	border-top: 3px solid #b97824;
	display: flex;
	flex-direction: column;
	min-height: 418px;
	padding-bottom: 20px;
}

.report-card img {
	height: 352px;
	margin-bottom: 35px;
	object-fit: cover;
	width: 100%;
}

.report-card__button {
	align-self: center;
	background: var(--color-brand-blue);
	color: #ffffff;
	display: inline-flex;
	font-family: var(--font-heading);
	font-size: 19px;
	font-weight: 700;
	justify-content: center;
	line-height: 1;
	margin-top: 0;
	min-height: 46px;
	padding: 15px 16px;
}

.report-card__button:hover {
	background: #082b36;
	color: #ffffff;
}

.initiatives-page {
	background: #f4f4f4;
	padding: 46px 0 90px;
}

.initiatives-page__inner {
	max-width: 1188px;
}

.initiatives-tabs {
	align-items: center;
	border-bottom: 1px solid var(--color-section-heading);
	display: flex;
	justify-content: center;
	margin: 0 0 40px;
	padding-bottom: 9px;
}

.initiatives-tab {
	background: transparent;
	border: 1px solid var(--color-section-heading);
	color: #00325d;
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	min-height: 39px;
	min-width: 154px;
	padding: 11px 22px;
}

.initiatives-tab:first-child {
	border-radius: 4px 0 0 4px;
}

.initiatives-tab:last-child {
	border-left: 0;
	border-radius: 0 4px 4px 0;
}

.initiatives-tab.is-active,
.initiatives-tab:hover,
.initiatives-tab:focus-visible {
	background: #a87329;
	color: #ffffff;
	outline: none;
}

.initiatives-panel[hidden] {
	display: none;
}

.initiatives-grid {
	display: grid;
	gap: 30px 60px;
	grid-template-columns: repeat(2, minmax(0, 525px));
}

.initiative-card {
	background: #f4f4f4;
	border: 1px solid #cdbb9e;
	font-family: var(--font-heading);
}

.initiative-card a {
	display: block;
}

.initiative-card img {
	border-bottom: 6px solid var(--color-brand-blue);
	height: 184px;
	object-fit: cover;
	width: 100%;
}

.initiative-card__content {
	padding: 8px 20px 17px;
}

.initiative-card h2 {
	color: #000000;
	font-size: 23px;
	font-weight: 700;
	line-height: 1.14;
	margin: 0 0 9px;
}

.initiative-card p {
	color: #000000;
	font-size: 19px;
	line-height: 1.25;
	margin: 0 0 9px;
}

.initiative-card p:last-child {
	margin-bottom: 0;
}

.past-initiatives-list {
	display: grid;
	gap: 30px;
	margin: 0 auto;
	max-width: 980px;
}

.past-initiative__link {
	align-items: start;
	display: grid;
	gap: 30px;
	grid-template-columns: 560px minmax(0, 1fr);
}

.past-initiative__link {
	color: inherit;
	text-decoration: none;
}

.past-initiative__link:hover h2 {
	color: var(--color-section-heading);
}

.past-initiative img {
	border-bottom: 3px solid var(--color-brand-blue);
	background: #ffffff;
	height: auto;
	object-fit: contain;
	width: 100%;
}

.past-initiative__content {
	color: #000000;
	font-family: var(--font-heading);
	padding-top: 2px;
}

.past-initiative__content h2 {
	font-size: 23px;
	font-weight: 700;
	line-height: 1.14;
	margin: 0 0 8px;
}

.past-initiative__content p {
	font-size: 19px;
	line-height: 1.35;
	margin: 0 0 2px;
}

.event-page {
	background: #f4f4f4;
	padding: 29px 0 76px;
}

.event-page__inner {
	max-width: 1190px;
}

.event-breadcrumb {
	align-items: center;
	color: #000000;
	display: flex;
	font-family: var(--font-heading);
	font-size: 13px;
	gap: 14px;
	line-height: 1;
	margin: 0 0 44px;
}

.event-breadcrumb a,
.event-breadcrumb span {
	color: #000000;
}

.event-breadcrumb a:hover {
	color: var(--color-section-heading);
}

.event-banner {
	border-bottom: 5px solid var(--color-brand-blue);
	background: #ffffff;
}

.event-banner img {
	display: block;
	height: auto;
	width: 100%;
}

.event-tabs__list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	margin-top: 18px;
	max-width: 958px;
}

.event-tab {
	background: var(--color-brand-blue);
	border: 0;
	border-right: 2px solid #ffffff;
	color: #ffffff;
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: 19px;
	font-weight: 700;
	line-height: 1;
	min-height: 33px;
	padding: 9px 18px;
}

.event-tab:last-child {
	border-right: 0;
}

.event-tab.is-active,
.event-tab:hover,
.event-tab:focus-visible {
	background: #b97824;
	outline: none;
}

.event-tab-panel {
	color: #000000;
	font-family: var(--font-heading);
	font-size: 19px;
	line-height: 1.45;
	padding: 28px 0 0;
}

.event-tab-panel[hidden] {
	display: none;
}

.event-detail-grid {
	align-items: start;
	display: grid;
	gap: 32px;
	grid-template-columns: minmax(0, 1fr) 300px;
}

.event-copy p {
	font-size: 19px;
	line-height: 1.46;
	margin: 0 0 18px;
}

.event-copy__lead {
	font-style: italic;
}

.event-copy ul {
	margin: -4px 0 12px 25px;
	padding: 0;
}

.event-copy li {
	font-size: 19px;
	line-height: 1.35;
}

.event-side-image {
	height: auto;
	width: 300px;
}

.event-agenda {
	background: #ffffff;
	border: 1px solid #dddddd;
}

.event-agenda__heading {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 91px;
	padding: 28px 30px;
}

.event-agenda__heading h2 {
	color: var(--color-section-heading);
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	margin: 0;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.event-agenda__heading span {
	color: var(--color-section-heading);
	font-size: 24px;
	line-height: 1;
}

.event-agenda-row {
	border-top: 1px solid #ded7cd;
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr);
	min-height: 92px;
	padding: 20px 32px 20px 50px;
}

.event-agenda-row__time {
	color: var(--color-section-heading);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.25;
	padding-top: 3px;
}

.event-agenda-row__content {
	border-left: 1px solid #8d8d8d;
	padding-left: 56px;
}

.event-agenda-row__content h3 {
	color: var(--color-brand-blue);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 14px;
}

.event-agenda-row__content p {
	font-size: 19px;
	line-height: 1.35;
	margin: 0;
}

.event-agenda__note {
	border-top: 1px solid #ded7cd;
	font-size: 15px;
	line-height: 1.2;
	margin: 0;
	padding: 8px 0 0;
}

.event-speakers-list {
	display: grid;
	gap: 8px;
}

.event-speaker {
	background: #ffffff;
	border: 1px solid #eeeeee;
	min-height: 135px;
}

.event-speaker__summary {
	align-items: start;
	display: grid;
	gap: 12px;
	grid-template-columns: 70px minmax(0, 1fr) 24px;
	padding: 12px;
}

.event-speaker__summary img {
	height: 84px;
	object-fit: cover;
	width: 70px;
}

.event-speaker h2 {
	color: #000000;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.15;
	margin: 3px 0 3px;
}

.event-speaker p {
	color: #000000;
	font-size: 19px;
	line-height: 1.32;
	margin: 0;
}

.event-speaker__toggle {
	background: transparent;
	border: 0;
	color: #9d6a22;
	cursor: pointer;
	font-family: var(--font-heading);
	font-size: 24px;
	line-height: 1;
	padding: 0;
}

.event-speaker__bio {
	border-top: 1px solid #eeeeee;
	padding: 0 12px 14px 94px;
}

.event-speaker__bio[hidden] {
	display: none;
}

.event-partners {
	align-items: start;
	display: grid;
	gap: 46px;
	grid-template-columns: repeat(2, minmax(0, 280px));
}

.event-partner h2 {
	color: var(--color-section-heading);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 26px;
}

.event-partner img {
	display: block;
	max-height: 112px;
	object-fit: contain;
	width: 100%;
}

.event-partner p {
	font-size: 19px;
	line-height: 1.35;
	margin: 21px 0 0;
	text-align: center;
}

.event-registration p {
	font-size: 19px;
	line-height: 1.45;
	margin: 0 0 19px;
}

.event-registration__button {
	background: var(--color-brand-blue);
	color: #ffffff;
	display: inline-flex;
	font-family: var(--font-heading);
	font-size: 19px;
	font-weight: 700;
	line-height: 1;
	margin-top: 4px;
	min-height: 36px;
	padding: 10px 25px;
}

.event-registration__button:hover {
	background: #082b36;
	color: #ffffff;
}

.survey-page {
	background: #ffffff;
	position: relative;
}

.survey-hero {
	background: #ffffff;
	overflow: hidden;
}

.survey-hero img {
	height: auto;
	object-fit: contain;
	width: 100%;
}

.survey-page__inner {
	max-width: 1138px;
}

.thought-leaders-detail-page {
	background: #f4f4f4;
	padding: 35px 0 42px;
}

.thought-leaders-detail__inner {
	max-width: 1110px;
}

.thought-leaders-detail__hero {
	background: #ffffff;
	border-bottom: 6px solid var(--color-brand-blue);
	margin: 0 auto 21px;
	max-width: 1110px;
}

.thought-leaders-detail__hero img {
	display: block;
	height: auto;
	object-fit: contain;
	width: 100%;
}

.thought-leaders-detail__content {
	color: #000000;
	font-family: var(--font-heading);
}

.thought-leaders-detail__content h1 {
	color: #000000;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 21px;
	text-align: center;
}

.thought-leaders-detail__content h2 {
	color: #000000;
	font-size: 19px;
	font-weight: 400;
	line-height: 1.3;
	margin: 19px 30px 14px;
}

.thought-leaders-detail__content p,
.thought-leaders-detail__content li {
	font-size: 19px;
	line-height: 1.43;
}

.thought-leaders-detail__content p {
	margin: 0 30px 17px;
}

.thought-leaders-detail__content ul {
	margin: 0 30px 16px 54px;
	padding: 0;
}

.thought-leaders-detail__content li {
	margin-bottom: 7px;
	padding-left: 4px;
}

.thought-leaders-detail__content a {
	color: #4f8fff;
}

.thought-leaders-detail__cta {
	border-bottom: 1px solid #e4e4e4;
	margin-top: 43px;
	padding-bottom: 21px;
	text-align: center;
}

.thought-leaders-detail__cta a {
	background: #000000;
	color: #ffffff;
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	min-height: 62px;
	min-width: 153px;
	padding: 22px 28px;
}

.thought-leaders-detail__cta a:hover {
	background: var(--color-brand-blue);
	color: #ffffff;
}

.survey-content {
	align-items: start;
	display: grid;
	gap: 52px;
	grid-template-columns: minmax(0, 613px) 446px;
	margin-top: 0;
	padding-top: 58px;
	padding-bottom: 68px;
}

.survey-copy {
	color: #222222;
	font-family: var(--font-heading);
	position: relative;
	z-index: 1;
}

.survey-copy::before {
	color: rgba(10, 54, 67, 0.03);
	content: "VISION";
	font-family: Georgia, "Times New Roman", serif;
	font-size: 128px;
	font-weight: 700;
	left: -405px;
	line-height: 1;
	position: absolute;
	top: -7px;
	z-index: -1;
}

.survey-copy__section {
	margin-bottom: 31px;
}

.survey-copy__section h1 {
	color: var(--color-brand-blue);
	font-size: 25px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 18px;
}

.survey-copy__section p {
	font-size: 19px;
	line-height: 1.68;
	margin: 0;
}

.survey-participants {
	background: var(--color-brand-blue);
	border-radius: 14px;
	box-shadow: 0 22px 42px rgba(10, 54, 67, 0.18);
	color: #ffffff;
	font-family: var(--font-heading);
	margin-top: 75px;
	padding: 35px 40px 40px;
}

.survey-participants h2 {
	color: var(--color-section-heading);
	font-size: 25px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 20px;
	text-transform: uppercase;
}

.survey-participants ul {
	display: grid;
	gap: 21px;
	list-style: none;
	margin: 0 0 38px;
	padding: 0;
}

.survey-participants li {
	font-size: 19px;
	font-weight: 700;
	line-height: 1.2;
	padding-left: 29px;
	position: relative;
}

.survey-participants li::before {
	color: var(--color-section-heading);
	content: "✓";
	left: 0;
	position: absolute;
	top: 0;
}

.survey-participants a {
	background: #bf934b;
	border-radius: 5px;
	color: #ffffff;
	display: flex;
	font-size: 19px;
	font-weight: 700;
	justify-content: center;
	line-height: 1;
	min-height: 47px;
	padding: 16px 20px;
}

.survey-participants a:hover {
	background: #a87329;
	color: #ffffff;
}

.survey-section-eyebrow {
	color: var(--color-section-heading);
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	margin: 0 0 24px;
	text-align: center;
	text-transform: uppercase;
}

.survey-coverage {
	background: var(--color-brand-blue);
	color: #ffffff;
	padding: 24px 0 30px;
}

.survey-coverage__inner {
	max-width: 1138px;
}

.survey-coverage h2,
.survey-value h2 {
	color: #ffffff;
	font-family: var(--font-heading);
	font-size: 38px;
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 43px;
	text-align: center;
}

.survey-coverage-grid {
	display: grid;
	gap: 11px 30px;
	grid-template-columns: repeat(4, 1fr);
}

.survey-coverage-card {
	background: #fbfaf7;
	border-radius: 8px;
	color: var(--color-brand-blue);
	font-family: var(--font-heading);
	min-height: 135px;
	padding: 12px 18px 30px;
	text-align: center;
}

.survey-coverage-card span {
	align-items: center;
	background: #f2eadf;
	border-radius: 50%;
	color: var(--color-section-heading);
	display: inline-flex;
	font-size: 19px;
	font-weight: 700;
	height: 49px;
	justify-content: center;
	margin-bottom: 18px;
	width: 49px;
}

.survey-coverage-card:nth-child(even) span {
	background: #f0f3f2;
	color: var(--color-brand-blue);
}

.survey-coverage-card h3 {
	font-size: 19px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.survey-value {
	background: #fbfaf7;
	padding: 65px 0 20px;
}

.survey-value__inner {
	max-width: 1138px;
}

.survey-value h2 {
	color: var(--color-brand-blue);
	margin-bottom: 20px;
}

.survey-value-panel {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 24px 50px rgba(10, 54, 67, 0.08);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding: 50px;
}

.survey-value-card {
	display: grid;
	gap: 25px;
	grid-template-columns: 60px minmax(0, 1fr);
	padding: 0 30px 34px 0;
}

.survey-value-card:nth-child(2n) {
	padding-left: 30px;
	padding-right: 0;
}

.survey-value-card:nth-child(n + 3) {
	border-top: 1px solid #e9e3da;
	padding-bottom: 0;
	padding-top: 31px;
}

.survey-value-card__icon {
	background: var(--color-brand-blue);
	border-radius: 10px;
	display: inline-flex;
	height: 60px;
	width: 60px;
}

.survey-value-card__icon--gold {
	align-items: center;
	background: #bf934b;
	color: #ffffff;
	font-size: 28px;
	justify-content: center;
}

.survey-value-card h3 {
	color: var(--color-brand-blue);
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	margin: 28px 0 25px;
}

.survey-value-card p {
	color: #4c3d31;
	font-family: var(--font-heading);
	font-size: 19px;
	line-height: 1.55;
	margin: 0;
}

.survey-closing {
	background: #f4f4f4;
	padding: 64px 0 86px;
}

.survey-closing__inner {
	max-width: 1138px;
}

.survey-quote {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 24px 48px rgba(10, 54, 67, 0.08);
	font-family: var(--font-heading);
	margin: 0 0 81px;
	padding: 88px 80px 65px;
	position: relative;
	text-align: center;
}

.survey-quote::before,
.survey-quote::after {
	color: rgba(191, 147, 75, 0.14);
	content: "”";
	font-size: 72px;
	line-height: 1;
	position: absolute;
}

.survey-quote::before {
	left: 43px;
	top: 31px;
}

.survey-quote::after {
	bottom: 69px;
	right: 43px;
}

.survey-quote p {
	color: #000000;
	font-size: 19px;
	line-height: 1.45;
	margin: 0 auto 46px;
	max-width: 880px;
}

.survey-quote p::after {
	background: var(--color-section-heading);
	content: "";
	display: block;
	height: 3px;
	margin: 28px auto 0;
	width: 50px;
}

.survey-quote cite {
	color: var(--color-brand-blue);
	display: grid;
	font-style: normal;
	gap: 26px;
}

.survey-quote strong {
	font-size: 20px;
}

.survey-quote span {
	color: #7f6b5d;
	font-size: 14px;
	letter-spacing: 0.12em;
}

.survey-bottom-cta {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 22px 44px rgba(10, 54, 67, 0.07);
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
}

.survey-bottom-cta section {
	font-family: var(--font-heading);
	min-height: 317px;
	padding: 86px 41px 50px;
	text-align: center;
}

.survey-bottom-cta__join {
	background: var(--color-brand-blue);
	color: #ffffff;
}

.survey-bottom-cta h2 {
	font-size: 31px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 43px;
}

.survey-bottom-cta p {
	font-size: 19px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0 auto 15px;
	max-width: 500px;
}

.survey-bottom-cta a {
	border-radius: 7px;
	display: inline-flex;
	font-size: 19px;
	font-weight: 700;
	justify-content: center;
	line-height: 1;
	min-height: 53px;
	min-width: 225px;
	padding: 18px 28px;
}

.survey-bottom-cta__join a {
	background: #bf934b;
	color: #ffffff;
}

.survey-bottom-cta__contact {
	color: var(--color-brand-blue);
}

.survey-bottom-cta__contact p {
	color: #6c5546;
	font-weight: 400;
}

.survey-bottom-cta__contact a {
	border: 1px solid #d4d4d4;
	color: var(--color-brand-blue);
	min-width: 474px;
}

.membership-sidebar--faq {
	margin-top: -7px;
	width: 255px;
}

.membership-sidebar--faq a {
	min-height: 51px;
	padding: 17px 23px;
}

.about-priwexus-page {
	background: #f4f4f4;
	padding: 24px 0 86px;
}

.about-priwexus-page__inner {
	max-width: 1220px;
}

.breadcrumb {
	align-items: center;
	color: #111111;
	display: flex;
	font-family: var(--font-heading);
	font-size: 13px;
	gap: 14px;
	margin: 0 0 28px;
}

.breadcrumb a {
	color: #111111;
}

.breadcrumb a:hover {
	color: var(--color-section-heading);
}

.about-priwexus-content {
	color: #111111;
	font-family: var(--font-heading);
	max-width: 1180px;
}

.about-priwexus-content h1 {
	font-size: 31px;
	font-weight: 700;
	line-height: 1.12;
	margin: 0 0 24px;
}

.about-priwexus-content p {
	font-size: 19px;
	line-height: 1.42;
	margin: 0 0 18px;
}

.about-priwexus-content ul {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
}

.about-priwexus-content li {
	font-size: 19px;
	line-height: 1.35;
	padding-left: 26px;
	position: relative;
}

.about-priwexus-content li::before {
	color: #9d6a22;
	content: "◆";
	font-size: 8px;
	left: 0;
	position: absolute;
	top: 8px;
}

.founder-page {
	background: #f4f4f4;
	padding: 24px 0 86px;
}

.founder-page__inner {
	max-width: 1080px;
}

.founder-profile {
	align-items: start;
	display: grid;
	gap: 56px;
	grid-template-columns: 220px minmax(0, 760px);
	margin-top: 28px;
}

.founder-photo {
	display: flex;
	justify-content: flex-start;
	margin: 0;
}

.founder-photo img {
	border: 1px solid #b2792c;
	border-radius: 50%;
	height: 186px;
	object-fit: cover;
	width: 186px;
}

.founder-content {
	color: #111111;
	font-family: var(--font-heading);
	margin-top: 0;
	max-width: 760px;
}

.founder-content h1 {
	font-size: 31px;
	font-weight: 700;
	line-height: 1.12;
	margin: 0 0 10px;
}

.founder-role {
	color: #555555;
	font-size: 19px;
	margin-bottom: 28px;
}

.founder-content p {
	font-size: 19px;
	line-height: 1.45;
	margin: 0 0 24px;
}

.founder-quote {
	background: #ffffff;
	border-left: 5px solid #9d6a22;
	margin: 38px 0 30px;
	padding: 22px 32px;
}

.founder-quote p {
	font-style: italic;
	margin: 0;
}

.founder-content ul {
	display: grid;
	gap: 13px;
	list-style: none;
	margin: 0 0 25px;
	padding: 0;
}

.founder-content li {
	font-size: 19px;
	line-height: 1.25;
	padding-left: 26px;
	position: relative;
}

.founder-content li::before {
	color: #9d6a22;
	content: "◆";
	font-size: 8px;
	left: 0;
	position: absolute;
	top: 7px;
}

.international-affiliates-page {
	background: #f4f4f4;
	padding: 24px 0 92px;
}

.international-affiliates-page__inner {
	max-width: 1140px;
}

.affiliate-logo-grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(2, 382px);
	margin: 54px 0 30px 30px;
}

.affiliate-logo-card {
	align-items: center;
	background: #ffffff;
	display: flex;
	height: 180px;
	justify-content: center;
	padding: 34px;
}

.affiliate-logo-card img {
	display: block;
	max-height: 115px;
	max-width: 260px;
	object-fit: contain;
}

.about-page-list {
	background: #ffffff;
	display: grid;
	margin: 0 auto;
	max-width: 1110px;
}

.about-page-list a {
	border-bottom: 1px solid #eeeeee;
	color: #00325d;
	font-family: var(--font-heading);
	font-size: 19px;
	font-weight: 700;
	padding: 16px 22px;
	position: relative;
}

.about-page-list a:hover::before,
.about-page-list a:focus::before {
	background: #9d6a22;
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	top: 0;
	width: 5px;
}

.academic-partner-page {
	background: #f4f4f4;
	padding: 24px 0 72px;
}

.academic-partner-page__inner {
	max-width: 1140px;
}

.academic-partner-content {
	color: #111111;
	font-family: var(--font-heading);
	margin: 74px auto 0;
	max-width: 1110px;
}

.academic-partner-heading {
	align-items: center;
	display: flex;
	gap: 34px;
	margin-bottom: 44px;
}

.academic-partner-heading img {
	height: 108px;
	object-fit: contain;
	width: 104px;
}

.academic-partner-heading h1 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.15;
	margin: 0;
}

.academic-partner-content p {
	font-size: 19px;
	line-height: 1.48;
	margin: 0 0 20px;
}

.thought-leaders-page {
	background: #f4f4f4;
	padding: 24px 0 74px;
}

.thought-leaders-page__inner {
	max-width: 1190px;
}

.thought-leaders-intro {
	color: #111111;
	font-family: var(--font-heading);
	margin: 30px 0 36px;
	max-width: 1130px;
}

.thought-leaders-intro h1 {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 34px;
}

.thought-leaders-intro p {
	font-size: 19px;
	line-height: 1.45;
	margin: 0;
}

.thought-leaders-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(6, 1fr);
	margin: 0 auto 28px;
	max-width: 1110px;
}

.thought-leader-card {
	align-items: center;
	background: #ffffff;
	display: flex;
	flex-direction: column;
	grid-column: span 2;
	justify-content: center;
	min-height: 266px;
	padding: 24px 24px 22px;
	text-align: center;
}

.thought-leader-card:nth-child(4) {
	grid-column: 2 / span 2;
}

.thought-leader-card:nth-child(5) {
	grid-column: 4 / span 2;
}

.thought-leader-card img {
	border: 1px solid #b2792c;
	border-radius: 50%;
	filter: grayscale(1);
	height: 150px;
	margin-bottom: 54px;
	object-fit: cover;
	width: 150px;
}

.thought-leader-card h2 {
	color: #111111;
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.15;
	margin: 0;
}

.foundation-page {
	background: #f4f4f4;
	color: #111111;
	font-family: var(--font-heading);
	padding: 18px 0 68px;
}

.foundation-page__inner {
	max-width: 1160px;
}

.foundation-banner {
	display: block;
	height: auto;
	margin: 0 auto 48px;
	width: 100%;
}

.foundation-intro {
	margin: 0 auto 88px;
	max-width: 1080px;
	text-align: justify;
}

.foundation-intro p,
.foundation-impact p,
.foundation-need p,
.foundation-vision p {
	font-size: 19px;
	line-height: 1.46;
	margin: 0 0 24px;
}

.foundation-intro h1 {
	font-size: 31px;
	font-weight: 700;
	line-height: 1.2;
	margin: 30px 0 24px;
	text-align: center;
}

.foundation-vision {
	align-items: center;
	display: grid;
	gap: 58px;
	grid-template-columns: minmax(0, 1fr) 540px;
	margin: 0 auto 48px;
	max-width: 1120px;
}

.foundation-vision h2,
.foundation-objectives h2,
.foundation-impact h2 {
	font-size: 30px;
	font-weight: 400;
	line-height: 1.1;
	margin: 0 0 18px;
}

.foundation-vision img {
	display: block;
	height: auto;
	width: 100%;
}

.foundation-objectives {
	background: var(--color-brand-blue);
	border-bottom: 4px solid #b2792c;
	color: #ffffff;
	margin: 0 auto 68px;
	max-width: 1080px;
	padding: 26px 32px 32px;
}

.foundation-objectives ul {
	display: grid;
	gap: 7px;
	margin: 0;
	padding-left: 24px;
}

.foundation-objectives li {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.5;
}

.foundation-impact {
	margin: 0 auto 104px;
	max-width: 1090px;
	text-align: justify;
}

.foundation-impact h2 {
	text-align: center;
}

.foundation-need {
	align-items: center;
	display: grid;
	gap: 46px;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	margin: 0 auto 98px;
	max-width: 980px;
}

.foundation-need h2 {
	font-size: 31px;
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 20px;
	text-transform: uppercase;
}

.foundation-need figure {
	margin: 0;
}

.foundation-need img {
	display: block;
	height: auto;
	width: 100%;
}

.foundation-need figcaption {
	font-size: 11px;
	font-style: italic;
	margin-top: 4px;
}

.foundation-join {
	margin: 0 auto;
	max-width: 1040px;
	text-align: center;
}

.foundation-join > h2 {
	font-size: 31px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 26px;
}

.foundation-join__grid {
	display: grid;
	gap: 46px;
	grid-template-columns: repeat(3, 1fr);
	text-align: center;
}

.foundation-join-card__icon {
	align-items: center;
	background: var(--color-brand-blue);
	border-radius: 50%;
	display: flex;
	height: 124px;
	justify-content: center;
	margin: 0 auto 22px;
	width: 124px;
}

.foundation-join-card__icon img {
	display: block;
	height: 72px;
	object-fit: contain;
	width: 72px;
}

.foundation-join-card h3 {
	font-size: 27px;
	font-weight: 400;
	line-height: 1.15;
	margin: 0 0 14px;
}

.foundation-join-card p {
	font-size: 17px;
	line-height: 1.5;
	margin: 0;
	text-align: justify;
}

.foundation-join__actions {
	display: flex;
	justify-content: space-around;
	margin-top: 66px;
}

.foundation-join__actions a {
	background: #b2792c;
	border-radius: 999px;
	color: #ffffff;
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	justify-content: center;
	min-width: 162px;
	padding: 13px 24px;
}

@media (max-width: 860px) {
	.cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.site-header__inner {
		align-items: center;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 16px;
		position: relative;
	}

	.process__grid {
		grid-template-columns: 1fr;
	}

	.card-grid,
	.testimonial-grid {
		grid-template-columns: 1fr;
	}

	.home-hero {
		min-height: 560px;
		padding: 90px 0 130px;
	}

	.home-hero-features__inner {
		grid-template-columns: repeat(2, 1fr);
		max-width: 720px;
	}

	.home-hero-feature:nth-child(2)::after {
		display: none;
	}

	.site-nav {
		background: var(--color-brand-blue);
		display: none;
		left: 12px;
		margin: 0;
		max-width: calc(100% - 24px);
		order: 3;
		padding: 16px 24px 24px;
		position: absolute;
		right: 12px;
		top: 100%;
		width: 100%;
		z-index: 50;
	}

	.site-nav.is-open {
		display: block;
	}

	.site-menu-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.site-logo img {
		max-height: 64px;
		width: auto;
	}

	.site-nav__list {
		align-items: flex-start;
		flex-wrap: nowrap;
		flex-direction: column;
		gap: 12px;
		width: 100%;
	}

	.site-nav a {
		color: #ffffff;
		font-size: 20px;
	}

	.site-nav a:hover,
	.site-nav .current-menu-item > a,
	.site-nav .current-menu-ancestor > a,
	.site-nav__list > li > a[aria-current="page"],
	.site-nav__list > li:first-child > a {
		color: var(--color-brand-gold);
	}

	.site-nav__dropdown {
		background: var(--color-brand-blue);
		box-shadow: none;
		display: none;
		margin-top: 10px;
		min-width: 0;
		opacity: 1;
		padding: 8px 0 8px 14px;
		pointer-events: auto;
		position: static;
		transform: none;
		visibility: visible;
	}

	.site-nav__item--has-dropdown:hover > .site-nav__dropdown,
	.site-nav__item--has-dropdown:focus-within > .site-nav__dropdown {
		display: block;
	}

	.site-nav__dropdown::before {
		display: none;
	}

	.site-nav__dropdown a {
		padding: 6px 0;
		white-space: normal;
	}

	.site-nav__dropdown a:hover {
		background: transparent;
		color: var(--color-brand-gold);
	}

	.site-nav .site-nav__signup {
		background: var(--color-brand-gold);
		color: var(--color-brand-blue);
		margin-top: 4px;
	}

	.site-nav .site-nav__signup:hover {
		background: var(--color-brand-gold);
		color: var(--color-brand-blue);
	}

	.directory-cta {
		background-attachment: scroll;
	}

	.membership-enquiry-layout {
		grid-template-columns: 1fr;
	}

	.membership-enquiry-sidebar {
		display: none;
	}

	.membership-page {
		padding: 22px 0 48px;
	}

	.membership-page__inner {
		display: flex;
		flex-direction: column;
	}

	.membership-layout {
		display: contents;
	}

	.membership-content {
		order: 1;
	}

	.membership-below-content {
		order: 2;
	}

	.membership-faq-layout {
		gap: 30px;
		grid-template-columns: 1fr;
	}

	.membership-sidebar {
		margin-top: 30px;
		order: 3;
		width: 100%;
	}

	.founder-profile {
		gap: 28px;
		grid-template-columns: 1fr;
	}

	.founder-photo {
		justify-content: flex-start;
	}

	.collective-page {
		padding: 44px 0 62px;
	}

	.collective-intro h1 {
		font-size: 34px;
		margin-bottom: 32px;
	}

	.collective-intro__grid {
		grid-template-columns: 1fr;
	}

	.collective-intro__image {
		height: auto;
		aspect-ratio: 636 / 352;
	}

	.collective-tabs {
		margin-top: 38px;
	}

	.collective-tabs__list {
		flex-wrap: wrap;
	}

	.reports-grid {
		gap: 24px;
		grid-template-columns: repeat(2, minmax(0, 254px));
		justify-content: center;
		margin-left: 0;
	}

	.initiatives-grid {
		gap: 26px;
		grid-template-columns: 1fr;
	}

	.past-initiatives-list {
		max-width: 100%;
	}

	.past-initiative__link {
		gap: 20px;
		grid-template-columns: minmax(0, 1fr);
	}

	.past-initiative img {
		height: auto;
	}

	.event-page {
		padding: 24px 0 58px;
	}

	.event-breadcrumb {
		margin-bottom: 28px;
	}

	.event-tabs__list {
		grid-template-columns: repeat(3, 1fr);
		max-width: none;
	}

	.event-tab {
		border-bottom: 2px solid #ffffff;
		font-size: 15px;
	}

	.event-detail-grid {
		grid-template-columns: 1fr;
	}

	.event-side-image {
		max-width: 300px;
		width: 100%;
	}

	.event-partners {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.survey-hero {
		height: auto;
	}

	.survey-hero img {
		height: auto;
		object-fit: contain;
	}

	.survey-content {
		gap: 34px;
		grid-template-columns: 1fr;
		padding-bottom: 58px;
	}

	.survey-participants {
		margin-top: 0;
	}

	.survey-coverage-grid,
	.survey-value-panel {
		grid-template-columns: repeat(2, 1fr);
	}

	.survey-value-card,
	.survey-value-card:nth-child(2n) {
		padding-left: 0;
		padding-right: 0;
	}

	.survey-value-card:nth-child(n + 3) {
		padding-top: 28px;
	}

	.survey-bottom-cta {
		grid-template-columns: 1fr;
	}

	.survey-bottom-cta__contact a {
		min-width: min(100%, 474px);
	}

	.thought-leaders-detail__content p,
	.thought-leaders-detail__content h2 {
		margin-left: 0;
		margin-right: 0;
	}

	.thought-leaders-detail__content ul {
		margin-left: 22px;
		margin-right: 0;
	}

	.participation-request-layout {
		grid-template-columns: 1fr;
	}

	.participation-request-aside {
		max-width: 300px;
		padding-top: 0;
		width: 100%;
	}

	.site-footer__inner {
		gap: 36px;
		grid-template-columns: 1fr;
	}

	.site-footer__summary,
	.footer-newsletter {
		max-width: none;
	}

	.site-footer__bottom {
		margin-top: 42px;
	}

	.back-to-top {
		bottom: 20px;
		height: 40px;
		right: 8px;
		width: 44px;
	}
}

@media (max-width: 560px) {
	.container {
		padding: 0 18px;
	}

	.site-nav__list {
		gap: 12px;
	}

	.home-hero,
	.section {
		padding: 54px 0;
	}

	.home-hero {
		min-height: 500px;
		padding-bottom: 110px;
	}

	.home-hero h1 {
		font-size: 34px;
		white-space: normal;
	}

	.home-hero p {
		font-size: 23px;
		white-space: normal;
	}

	.home-hero-features__inner {
		grid-template-columns: repeat(2, 1fr);
		margin-top: -46px;
		max-width: 320px;
		min-height: 0;
	}

	.home-hero-feature {
		min-height: 132px;
		padding: 18px 12px;
	}

	.home-hero-feature:not(:last-child)::after {
		bottom: auto;
		height: 78px;
		left: auto;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 2px;
	}

	.home-hero-feature:nth-child(2)::after {
		display: none;
	}

	.home-hero-feature img {
		height: 36px;
		margin-bottom: 16px;
		width: 42px;
	}

	.home-hero-feature h2 {
		font-size: 19px;
		line-height: 1.12;
	}

	.focus-areas {
		padding: 32px 0 54px;
	}

	.focus-areas h2 {
		font-size: 34px;
		margin-bottom: 28px;
	}

	.focus-areas__grid {
		gap: 10px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 340px;
	}

	.focus-card {
		min-height: 142px;
		padding: 20px 10px;
	}

	.focus-card__icon {
		height: 46px;
		transform: scale(0.58);
		transform-origin: center;
		width: 54px;
	}

	.focus-card h3 {
		font-size: 19px;
		line-height: 1.15;
		margin-top: 12px;
	}

	.membership-statement {
		padding: 40px 0 54px;
	}

	.membership-statement h2 {
		font-size: 30px;
		line-height: 1.12;
	}

	.directory-cta {
		min-height: 320px;
		padding: 74px 0 62px;
	}

	.directory-cta h2 {
		font-size: 30px;
		max-width: 100%;
	}

	.downloads-section {
		padding: 36px 0 44px;
	}

	.downloads-section h2,
	.spotlight-section h2 {
		font-size: 34px;
	}

	.downloads-list {
		gap: 14px;
		grid-template-columns: repeat(2, 1fr);
	}

	.downloads-card span {
		font-size: 14px;
		min-height: 42px;
	}

	.cta__inner,
	.content-page,
	.membership-enquiry-form,
	.participation-form {
		padding: 28px;
	}

	.participation-request-page {
		padding: 20px 0 52px;
	}

	.participation-request-main h1 {
		font-size: 30px;
	}

	.thought-leaders-detail-page {
		padding: 24px 0 38px;
	}

	.thought-leaders-detail__content h1 {
		font-size: 28px;
	}

	.thought-leaders-detail__content p,
	.thought-leaders-detail__content li {
		font-size: 19px;
		line-height: 1.48;
	}

	.blog-grid {
		grid-template-columns: 1fr;
	}

	.blog-card__body {
		min-height: 0;
	}

	.thought-leaders-detail__cta a {
		min-height: 50px;
		padding: 17px 24px;
	}

	.blog-page h1 {
		margin-left: 0;
	}

	.blog-filters {
		margin-left: 0;
	}

	.blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.membership-page {
		padding-bottom: 42px;
	}

	.membership-breadcrumb {
		font-size: 12px;
		margin-bottom: 20px;
	}

	.membership-title {
		font-size: 34px;
		line-height: 1.1;
		margin-bottom: 18px;
	}

	.membership-content p {
		font-size: 17px;
		line-height: 1.42;
	}

	.membership-below-content h2,
	.membership-benefits,
	.membership-enquiry-button {
		margin-left: 0;
	}

	.membership-below-content h2 {
		font-size: 24px;
	}

	.membership-benefits {
		gap: 14px;
	}

	.membership-benefits li {
		font-size: 19px;
		line-height: 1.13;
		padding-left: 24px;
	}

	.membership-sidebar a {
		font-size: 19px;
		min-height: 48px;
		padding: 15px 18px;
	}

	.membership-faq-page {
		padding: 38px 0 64px;
	}

	.membership-faq-content h1 {
		font-size: 28px;
	}

	.membership-faq-list {
		gap: 24px;
	}

	.membership-faq-question {
		font-size: 19px;
		gap: 18px;
		grid-template-columns: 17px 1fr;
	}

	.membership-faq-answer {
		font-size: 17px;
		line-height: 1.45;
	}

	.collective-intro h1 {
		font-size: 29px;
	}

	.collective-intro__content,
	.collective-tab-panel {
		font-size: 17px;
	}

	.collective-tabs__list {
		align-items: center;
		gap: 8px;
		margin: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.collective-tab {
		flex: 1 1 calc(50% - 8px);
		font-size: 14px;
		min-height: 40px;
		padding: 10px 10px;
	}

	.reports-page {
		padding: 30px 0 58px;
	}

	.reports-page h1 {
		font-size: 34px;
		margin-bottom: 30px;
	}

	.reports-grid {
		grid-template-columns: minmax(0, 254px);
	}

	.initiatives-page {
		padding: 34px 0 58px;
	}

	.initiatives-tabs {
		align-items: stretch;
		margin-bottom: 30px;
	}

	.initiatives-tab {
		flex: 1 1 0;
		font-size: 14px;
		min-width: 0;
		padding: 11px 10px;
	}

	.initiative-card img {
		height: auto;
		aspect-ratio: 525 / 184;
	}

	.initiative-card h2 {
		font-size: 20px;
	}

	.initiative-card p {
		font-size: 17px;
	}

	.past-initiative__content h2 {
		font-size: 20px;
	}

	.past-initiative__content p {
		font-size: 19px;
	}

	.event-tabs__list {
		grid-template-columns: 1fr;
	}

	.event-tab {
		border-right: 0;
	}

	.event-copy p,
	.event-copy li,
	.event-agenda-row__content p {
		font-size: 19px;
	}

	.event-agenda-row {
		grid-template-columns: 72px minmax(0, 1fr);
		padding: 18px 18px;
	}

	.event-agenda-row__content {
		padding-left: 20px;
	}

	.event-agenda-row__time,
	.event-agenda-row__content h3 {
		font-size: 19px;
	}

	.event-speaker__summary {
		grid-template-columns: 62px minmax(0, 1fr) 22px;
	}

	.event-speaker__summary img {
		height: 76px;
		width: 62px;
	}

	.event-speaker h2 {
		font-size: 19px;
	}

	.event-speaker p,
	.event-registration p {
		font-size: 19px;
	}

	.event-speaker__bio {
		padding-left: 86px;
	}

	.event-partners {
		gap: 28px;
		grid-template-columns: 1fr;
	}

	.survey-copy::before {
		display: none;
	}

	.survey-copy__section h1 {
		font-size: 23px;
	}

	.survey-copy__section p,
	.survey-participants li {
		font-size: 17px;
	}

	.survey-participants {
		border-radius: 10px;
		padding: 28px 24px;
	}

	.survey-coverage {
		padding: 44px 0;
	}

	.survey-coverage h2,
	.survey-value h2 {
		font-size: 30px;
	}

	.survey-coverage-grid,
	.survey-value-panel {
		grid-template-columns: 1fr;
	}

	.survey-value-panel {
		padding: 28px;
	}

	.survey-value-card,
	.survey-value-card:nth-child(n + 3) {
		border-top: 1px solid #e9e3da;
		padding: 26px 0;
	}

	.survey-value-card:first-child {
		border-top: 0;
		padding-top: 0;
	}

	.survey-value-card h3 {
		margin-top: 10px;
	}

	.survey-closing {
		padding: 48px 0 60px;
	}

	.survey-quote {
		margin-bottom: 48px;
		padding: 58px 24px 42px;
	}

	.survey-quote p {
		font-size: 17px;
	}

	.survey-bottom-cta section {
		min-height: 0;
		padding: 48px 24px;
	}

	.survey-bottom-cta h2 {
		font-size: 28px;
		margin-bottom: 24px;
	}

	.affiliate-logo-grid {
		gap: 18px;
		grid-template-columns: 1fr;
		margin: 34px 0 24px;
	}

	.affiliate-logo-card {
		height: 150px;
	}

	.about-page-list a {
		font-size: 19px;
	}

	.academic-partner-content {
		margin-top: 38px;
	}

	.academic-partner-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 18px;
		margin-bottom: 28px;
	}

	.academic-partner-heading h1 {
		font-size: 22px;
	}

	.thought-leaders-intro h1 {
		font-size: 34px;
	}

	.thought-leaders-grid {
		gap: 14px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.thought-leader-card,
	.thought-leader-card:nth-child(4),
	.thought-leader-card:nth-child(5) {
		grid-column: auto;
		min-height: 210px;
		padding: 18px 12px;
	}

	.thought-leader-card img {
		height: 104px;
		margin-bottom: 28px;
		width: 104px;
	}

	.thought-leader-card h2 {
		font-size: 17px;
	}

	.foundation-intro {
		margin-bottom: 52px;
		text-align: left;
	}

	.foundation-vision,
	.foundation-need {
		gap: 28px;
		grid-template-columns: 1fr;
	}

	.foundation-objectives {
		padding: 24px 22px 28px;
	}

	.foundation-impact {
		margin-bottom: 58px;
		text-align: left;
	}

	.foundation-join__grid {
		gap: 30px;
		grid-template-columns: 1fr;
	}

	.foundation-join-card p {
		text-align: left;
	}

	.foundation-join__actions {
		align-items: center;
		flex-direction: column;
		gap: 16px;
		margin-top: 38px;
	}

	.process-item {
		grid-template-columns: 1fr;
	}

	.event-gallery-list,
	.event-gallery-grid {
		grid-template-columns: 1fr;
	}

	.event-gallery-card a {
		display: block;
	}

	.event-gallery-card img {
		aspect-ratio: 525 / 184;
		height: auto;
	}

	.event-gallery-feature {
		grid-template-columns: 1fr;
	}

	.event-gallery-feature__content h1 {
		font-size: 26px;
	}

	.event-gallery-lightbox {
		padding: 64px 50px;
	}

	.event-gallery-lightbox__nav {
		font-size: 52px;
		width: 42px;
	}

	.event-gallery-lightbox__nav--prev {
		left: 4px;
	}

	.event-gallery-lightbox__nav--next {
		right: 4px;
	}
}

.membership-benefits li,
.membership-benefits li strong,
.membership-benefits li span {
	line-height: 25px !important;
}

.event-gallery-page {
	background: #f4f4f4;
	color: #111111;
	font-family: var(--font-heading);
	padding: 28px 0 76px;
}

.event-gallery-page__inner {
	max-width: 1120px;
}

.event-gallery-header {
	margin: 0 0 34px;
}

.event-gallery-header h1 {
	color: #111111;
	font-size: 38px;
	font-weight: 700;
	line-height: 1.08;
	margin: 0 0 12px;
}

.event-gallery-header p {
	font-size: 19px;
	line-height: 1.42;
	margin: 0;
}

.event-gallery-header p span:not(:last-child)::after {
	content: "|";
	margin: 0 10px;
}

.event-gallery-back {
	color: var(--color-section-heading);
	display: inline-flex;
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 18px;
}

.event-gallery-list {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-gallery-card {
	background: #ffffff;
}

.event-gallery-card a {
	display: block;
}

.event-gallery-card img {
	aspect-ratio: 525 / 184;
	background: #ffffff;
	display: block;
	height: auto;
	object-fit: contain;
	width: 100%;
}

.event-gallery-card__body {
	padding: 22px 24px 26px;
}

.event-gallery-card h2 {
	color: var(--color-brand-blue);
	font-size: 24px;
	line-height: 1.15;
	margin: 0 0 16px;
}

.event-gallery-card p {
	font-size: 17px;
	line-height: 1.35;
	margin: 0 0 8px;
}

.event-gallery-card__button {
	background: var(--color-brand-blue);
	color: #ffffff;
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	margin-top: 14px;
	padding: 12px 20px;
}

.event-gallery-card:hover h2 {
	color: var(--color-section-heading);
}

.event-gallery-feature {
	align-items: center;
	border-bottom: 1px solid #d7d7d7;
	display: grid;
	gap: 30px;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	margin-bottom: 34px;
	padding-bottom: 30px;
}

.event-gallery-feature__media img {
	display: block;
	height: auto;
	width: 100%;
}

.event-gallery-feature__content h1 {
	color: #222222;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.4;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.event-gallery-feature__eyebrow,
.event-gallery-feature__meta {
	color: #f04b23;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 1.4;
	margin: 0 0 14px;
}

.event-gallery-feature__meta {
	margin: 0;
}

.event-gallery-feature__description {
	color: #222222;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 19px;
	line-height: 1.35;
	margin: 0 0 6px;
}

.event-gallery-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-gallery-photo {
	background: #ffffff;
	border: 0;
	cursor: pointer;
	display: block;
	overflow: hidden;
	padding: 0;
	text-align: left;
	width: 100%;
}

.event-gallery-photo img {
	aspect-ratio: 4 / 3;
	height: auto;
	object-fit: cover;
	transition: transform 0.25s ease;
	width: 100%;
}

.event-gallery-photo:hover img {
	transform: scale(1.04);
}

.event-gallery-lightbox {
	align-items: center;
	background: rgba(0, 0, 0, 0.88);
	display: none;
	inset: 0;
	justify-content: center;
	padding: 72px 96px;
	position: fixed;
	z-index: 9999;
}

.event-gallery-lightbox.is-open {
	display: flex;
}

.event-gallery-lightbox img {
	max-height: 82vh;
	max-width: 100%;
	object-fit: contain;
}

.event-gallery-lightbox button {
	background: transparent;
	border: 0;
	color: #ffffff;
	cursor: pointer;
	font-family: Arial, Helvetica, sans-serif;
}

.event-gallery-lightbox__close {
	font-size: 44px;
	line-height: 1;
	position: absolute;
	right: 28px;
	top: 18px;
}

.event-gallery-lightbox__nav {
	align-items: center;
	display: flex;
	font-size: 70px;
	height: 78px;
	justify-content: center;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 58px;
}

.event-gallery-lightbox__nav--prev {
	left: 24px;
}

.event-gallery-lightbox__nav--next {
	right: 24px;
}

.home-gallery-section {
	background: #f4f4f4;
	color: #111111;
	font-family: var(--font-heading);
	padding: 72px 0 82px;
}

.home-gallery-section__inner {
	max-width: 1120px;
}

.home-gallery-section__header {
	margin-bottom: 30px;
	text-align: center;
}

.home-gallery-section__header h2 {
	color: var(--color-brand-blue);
	font-size: 42px;
	font-weight: 700;
	line-height: 1.08;
	margin: 0;
}

.home-gallery-section__button {
	background: var(--color-brand-blue);
	color: #ffffff;
	display: flex;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	margin: 30px auto 0;
	padding: 13px 24px;
	white-space: nowrap;
	width: fit-content;
}

.home-gallery-section__button:hover {
	background: var(--color-section-heading);
}

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

.home-gallery-card {
	background: #ffffff;
	min-width: 0;
}

.home-gallery-card a {
	display: block;
	height: 100%;
}

.home-gallery-card img {
	aspect-ratio: 525 / 184;
	background: #ffffff;
	display: block;
	object-fit: contain;
	width: 100%;
}

.home-gallery-card__body {
	padding: 18px 18px 20px;
}

.home-gallery-card h3 {
	color: var(--color-brand-blue);
	font-size: 21px;
	line-height: 1.16;
	margin: 0 0 12px;
}

.home-gallery-card p {
	font-family: var(--font-body);
	font-size: 15px;
	line-height: 1.35;
	margin: 0 0 7px;
}

.home-gallery-card span {
	color: var(--color-section-heading);
	display: inline-flex;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	margin-top: 12px;
}

.home-gallery-card:hover h3 {
	color: var(--color-section-heading);
}

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

@media (max-width: 560px) {
	.home-gallery-section {
		padding: 52px 0 58px;
	}

	.home-gallery-section__header {
		margin-bottom: 24px;
		text-align: center;
	}

	.home-gallery-section__header h2 {
		font-size: 34px;
	}

	.home-gallery-grid {
		grid-template-columns: 1fr;
	}
}
