:root {
	--cc-navy: #002060;
	--cc-navy-dark: #001858;
	--cc-navy-soft: #004888;
	--cc-teal: #0898a0;
	--cc-teal-bright: #08a0a8;
	--cc-teal-deep: #009098;
	--cc-aqua: #d0e8e8;
	--cc-aqua-pale: #f0f8f8;
	--cc-gold: #e8a838;
	--cc-gold-light: #f0b860;
	--cc-white: #ffffff;
	--cc-ink: #10233a;
	--cc-muted: #5f7087;
	--cc-border: rgba(0, 32, 96, 0.14);
	--cc-shadow: 0 18px 50px rgba(0, 24, 88, 0.13);
	--cc-radius: 8px;
	--cc-radius-lg: 18px;
	--cc-max: 1180px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--cc-ink);
	background: var(--cc-white);
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.65;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
}

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

a {
	color: var(--cc-navy);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--cc-teal-deep);
}

:focus-visible {
	outline: 3px solid var(--cc-gold);
	outline-offset: 3px;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	z-index: 999;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	color: var(--cc-white);
	background: var(--cc-navy);
	border-radius: var(--cc-radius);
}

.container {
	width: min(100% - 40px, var(--cc-max));
	margin-inline: auto;
}

.narrow {
	width: min(100% - 40px, 820px);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid var(--cc-border);
	backdrop-filter: blur(16px);
}

.top-line {
	color: var(--cc-white);
	background: var(--cc-navy-dark);
	font-size: clamp(0.72rem, 0.9vw, 0.88rem);
	font-weight: 700;
}

.top-line-inner {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
	width: min(100% - 32px, 1800px);
	max-width: none;
	padding-block: 7px;
	text-align: center;
}

.top-line-inner span {
	flex: 0 1 auto;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 96px;
	padding-block: 6px;
}

.site-branding {
	display: flex;
	align-items: center;
	min-width: 0;
}

.custom-logo-link img {
	width: auto;
	max-width: min(390px, 58vw);
	max-height: 84px;
	object-fit: contain;
}

.brand-fallback {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--cc-navy);
	text-decoration: none;
}

.brand-fallback img {
	width: auto;
	max-width: min(410px, 58vw);
	max-height: 86px;
	object-fit: contain;
}

.brand-mark {
	position: relative;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 4px solid var(--cc-navy);
	border-radius: 50%;
	background:
		radial-gradient(circle at 50% 58%, var(--cc-navy) 0 11%, transparent 12%),
		linear-gradient(135deg, transparent 22%, var(--cc-teal) 23% 35%, transparent 36%),
		linear-gradient(225deg, transparent 22%, var(--cc-teal) 23% 35%, transparent 36%);
}

.brand-star {
	position: absolute;
	top: 4px;
	color: var(--cc-gold);
	font-size: 16px;
	line-height: 1;
}

.brand-words {
	display: grid;
	line-height: 0.95;
	font-size: clamp(1.55rem, 3vw, 2.4rem);
	font-weight: 800;
	letter-spacing: 0;
}

.brand-words span + span {
	color: var(--cc-teal);
}

.primary-navigation {
	margin-left: auto;
}

.primary-navigation ul,
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 16px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation a {
	display: block;
	padding: 9px 10px;
	color: var(--cc-navy);
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: var(--cc-radius);
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
	color: var(--cc-white);
	background: var(--cc-navy);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 9px;
	background: var(--cc-navy);
	border: 0;
	border-radius: var(--cc-radius);
	cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: var(--cc-white);
}

.hero-section {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 14% 18%, rgba(8, 160, 168, 0.38), transparent 28%),
		radial-gradient(circle at 80% 5%, rgba(232, 168, 56, 0.18), transparent 24%),
		linear-gradient(122deg, #00113f 0%, var(--cc-navy-dark) 44%, #00296f 100%);
	border-bottom: 6px solid var(--cc-gold);
	isolation: isolate;
}

.hero-section::before,
.hero-section::after {
	content: "";
	position: absolute;
	inset: auto -8% -20% -8%;
	width: auto;
	height: 42%;
	background:
		linear-gradient(174deg, transparent 0 36%, rgba(255, 255, 255, 0.09) 37% 40%, transparent 41%),
		linear-gradient(180deg, rgba(8, 152, 160, 0.12), rgba(0, 24, 88, 0.1));
	transform: skewY(-2deg);
	pointer-events: none;
	z-index: -1;
}

.hero-section::after {
	inset: 0;
	height: auto;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 84px 84px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 78%);
	transform: none;
	opacity: 0.9;
}

.stage-light {
	position: absolute;
	top: -18%;
	width: 28vw;
	height: 118%;
	background: linear-gradient(180deg, rgba(208, 232, 232, 0.28), rgba(8, 152, 160, 0.08) 56%, transparent);
	clip-path: polygon(48% 0, 88% 100%, 8% 100%);
	filter: blur(1px);
	mix-blend-mode: screen;
	opacity: 0.9;
	pointer-events: none;
	transform-origin: top center;
	animation: ccSweep 9s ease-in-out infinite alternate;
	z-index: 0;
}

.stage-light-left {
	left: 7%;
	transform: rotate(-9deg);
}

.stage-light-right {
	right: 8%;
	animation-delay: -4s;
	transform: rotate(10deg);
}

.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
	gap: 46px;
	align-items: center;
	min-height: 620px;
	padding-block: 34px 56px;
}

.eyebrow,
.section-label,
.card-kicker {
	margin: 0 0 12px;
	color: var(--cc-teal-deep);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 16px;
	color: var(--cc-navy);
	line-height: 1.08;
	letter-spacing: 0;
}

h1 {
	max-width: 900px;
	font-size: clamp(2.4rem, 5vw, 5rem);
}

h2 {
	font-size: clamp(2rem, 3vw, 3.25rem);
}

h3 {
	font-size: 1.28rem;
}

p {
	margin: 0 0 1.1rem;
}

.hero-text {
	max-width: 730px;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

.hero-promise-line {
	position: relative;
	display: inline-block;
	max-width: 700px;
	margin: 0 0 1.4rem;
	padding-left: 18px;
	color: var(--cc-gold-light);
	font-size: clamp(1.05rem, 1.4vw, 1.22rem);
	font-weight: 800;
}

.hero-promise-line::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.2em;
	bottom: 0.2em;
	width: 5px;
	background: var(--cc-gold);
	border-radius: 99px;
	box-shadow: 0 0 22px rgba(232, 168, 56, 0.5);
}

.hero-section h1 {
	color: var(--cc-white);
	text-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.hero-section .eyebrow {
	color: var(--cc-gold-light);
}

.hero-actions,
.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.cc-button,
.read-more,
.wp-block-button__link,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: var(--cc-radius);
}

.button-primary,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	color: var(--cc-white);
	background: var(--cc-navy);
	box-shadow: 0 10px 24px rgba(0, 32, 96, 0.2);
}

.button-primary:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	color: var(--cc-white);
	background: var(--cc-teal-deep);
}

.button-secondary,
.read-more {
	color: var(--cc-navy);
	background: var(--cc-white);
	border-color: var(--cc-border);
}

.button-secondary:hover,
.read-more:hover {
	color: var(--cc-white);
	background: var(--cc-navy);
}

.hero-panel {
	display: grid;
	gap: 18px;
}

.hero-command {
	position: relative;
	min-height: 610px;
	align-content: center;
	place-items: center;
	isolation: isolate;
}

.hero-command::before {
	content: "";
	position: absolute;
	inset: 8% 0 auto;
	height: 84%;
	background:
		radial-gradient(circle at 50% 45%, rgba(8, 160, 168, 0.28), transparent 42%),
		radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12), transparent 18%);
	border-radius: 50%;
	filter: blur(6px);
	opacity: 0.8;
	animation: ccPulseGlow 5.5s ease-in-out infinite;
	pointer-events: none;
}

.command-ring {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: min(94vw, 470px);
	aspect-ratio: 1;
	padding: clamp(24px, 4vw, 44px);
	background:
		radial-gradient(circle, rgba(0, 32, 96, 0.88) 0 42%, rgba(0, 24, 88, 0.86) 43% 61%, transparent 62%),
		conic-gradient(from 0deg, rgba(8, 160, 168, 0.18), rgba(232, 168, 56, 0.86), rgba(8, 160, 168, 0.74), rgba(208, 232, 232, 0.32), rgba(8, 160, 168, 0.18));
	border: 1px solid rgba(208, 232, 232, 0.32);
	border-radius: 50%;
	box-shadow:
		0 36px 90px rgba(0, 0, 0, 0.24),
		inset 0 0 48px rgba(208, 232, 232, 0.14);
	overflow: hidden;
	animation: ccFloatInClean 850ms cubic-bezier(0.18, 0.8, 0.24, 1) both;
}

.command-ring::before,
.command-ring::after {
	content: "";
	position: absolute;
	inset: 8%;
	border: 1px solid rgba(208, 232, 232, 0.24);
	border-radius: 50%;
	pointer-events: none;
}

.command-ring::after {
	inset: 17%;
	border-color: rgba(232, 168, 56, 0.32);
	box-shadow: 0 0 34px rgba(232, 168, 56, 0.12);
	animation: ccRingBreathe 4.8s ease-in-out infinite;
}

.ring-label {
	position: static;
	width: auto;
	margin-top: clamp(8px, 1.4vw, 14px);
	color: var(--cc-gold-light);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	line-height: 1.35;
	text-transform: uppercase;
}

.ring-core {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: grid;
	align-content: center;
	justify-items: center;
	gap: clamp(7px, 1vw, 12px);
	width: min(74%, 350px);
	min-height: 0;
	text-align: center;
	transform: translate(-50%, -50%);
}

.ring-core span {
	display: block;
	color: var(--cc-white);
	font-size: clamp(2.35rem, 4.8vw, 4.2rem);
	font-weight: 900;
	line-height: 0.86;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	text-shadow: 0 12px 38px rgba(0, 0, 0, 0.28);
}

.ring-core span:nth-child(2) {
	color: var(--cc-aqua);
	font-size: clamp(1.65rem, 3.55vw, 2.85rem);
	letter-spacing: 0.025em;
	white-space: nowrap;
}

.ring-core span:nth-child(3) {
	color: var(--cc-gold-light);
	font-size: clamp(2.2rem, 4.45vw, 3.65rem);
}

.ring-core .ring-label {
	color: var(--cc-gold-light);
	font-size: clamp(0.56rem, 0.9vw, 0.68rem);
	font-weight: 900;
	letter-spacing: 0.12em;
	line-height: 1.35;
	margin-top: clamp(3px, 0.8vw, 8px);
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.hero-signal-grid {
	position: relative;
	z-index: 3;
	right: auto;
	bottom: auto;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	width: min(100%, 500px);
	margin-top: 20px;
	animation: ccFloatUp 900ms cubic-bezier(0.18, 0.8, 0.24, 1) 260ms both;
}

.hero-signal-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 150px;
	padding: 16px 14px 14px;
	color: var(--cc-ink);
	text-align: left;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(208, 232, 232, 0.42);
	border-radius: var(--cc-radius);
	backdrop-filter: blur(14px);
	box-shadow: 0 14px 34px rgba(0, 24, 88, 0.18);
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		border-color 180ms ease;
}

.hero-signal-card:hover,
.hero-signal-card:focus-visible {
	color: var(--cc-ink);
	border-color: rgba(8, 152, 160, 0.42);
	box-shadow: 0 18px 42px rgba(0, 24, 88, 0.24);
	transform: translateY(-3px);
}

.hero-signal-icon {
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	margin-bottom: 10px;
	color: var(--cc-white);
	font-size: 1rem;
	font-weight: 900;
	line-height: 1;
	background: var(--cc-teal);
	border-radius: 50%;
}

.hero-signal-card strong {
	display: block;
	color: var(--cc-navy);
	font-size: 0.98rem;
	line-height: 1.1;
}

.hero-signal-card small {
	display: block;
	margin-top: 6px;
	color: var(--cc-muted);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.25;
}

.hero-signal-cta {
	display: inline-flex;
	align-items: center;
	margin-top: auto;
	padding-top: 12px;
	color: var(--cc-teal-deep);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	line-height: 1.2;
	text-transform: uppercase;
}

.hero-signal-cta::after {
	content: ">";
	margin-left: 6px;
	font-size: 0.9rem;
	line-height: 1;
}

.hero-marquee {
	position: relative;
	z-index: 2;
	overflow: hidden;
	color: var(--cc-navy);
	background: var(--cc-gold);
	border-top: 1px solid rgba(255, 255, 255, 0.28);
	box-shadow: 0 -18px 42px rgba(8, 160, 168, 0.12);
}

.hero-marquee-track {
	display: flex;
	width: max-content;
	gap: 0;
	animation: ccMarquee 32s linear infinite;
}

.hero-marquee:hover .hero-marquee-track,
.hero-marquee:focus-within .hero-marquee-track {
	animation-play-state: paused;
}

.hero-marquee-group {
	display: flex;
	flex-shrink: 0;
	gap: 26px;
	padding-block: 12px;
	padding-right: 26px;
	font-size: 0.86rem;
	font-weight: 900;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.hero-marquee a {
	display: inline-flex;
	align-items: center;
	color: var(--cc-navy);
	text-decoration: none;
	white-space: nowrap;
}

.hero-marquee a:hover,
.hero-marquee a:focus-visible {
	color: var(--cc-navy-dark);
	text-decoration: underline;
	text-decoration-thickness: 0.12em;
	text-underline-offset: 0.22em;
}

.hero-marquee a::after {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-left: 26px;
	vertical-align: 0.12em;
	background: var(--cc-navy);
	border-radius: 50%;
}

.intro-section,
.guidance-section,
.latest-section,
.faq-section,
.shop-content,
.article-content,
.comments-area {
	padding-block: 70px;
}

.intro-section .narrow {
	text-align: center;
}

.cc-register-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	align-items: stretch;
	max-width: 1180px;
	margin: 0 auto;
}

.cc-register-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 100%;
	padding: clamp(24px, 4vw, 34px);
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius);
	box-shadow: 0 14px 34px rgba(0, 32, 96, 0.08);
}

.cc-register-icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin-bottom: 18px;
	color: var(--cc-white);
	font-size: 1.55rem;
	font-weight: 900;
	line-height: 1;
	background: var(--cc-teal);
	border-radius: 50%;
}

.cc-register-title {
	margin: 0 0 12px;
	color: var(--cc-navy);
	font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.cc-register-text {
	flex: 1;
	margin: 0 0 24px;
	color: var(--cc-muted);
	font-size: 1.04rem;
	line-height: 1.65;
}

.cc-register-note {
	max-width: 900px;
	margin: 22px auto 0;
	color: var(--cc-muted);
	font-size: 0.95rem;
	line-height: 1.55;
	text-align: center;
}

.card-grid {
	display: grid;
	gap: 18px;
	margin-top: 34px;
}

.card-grid.three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.team-profile-stack {
	display: grid;
	gap: 42px;
	margin-top: 34px;
}

.team-card {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(160px, 28%);
	align-items: stretch;
	min-height: 230px;
	overflow: visible;
	color: var(--cc-ink);
	text-decoration: none;
	background:
		radial-gradient(circle at 86% 24%, rgba(8, 160, 168, 0.16), transparent 28%),
		linear-gradient(135deg, var(--cc-white), rgba(240, 248, 248, 0.86));
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius);
	box-shadow: var(--cc-shadow);
	transition:
		transform 260ms cubic-bezier(0.18, 0.8, 0.24, 1),
		border-color 220ms ease,
		box-shadow 220ms ease;
}

.team-card-no-image {
	grid-template-columns: minmax(0, 1fr);
}

.team-card-no-image .team-card-copy {
	max-width: none;
}

.team-card-has-photo {
	grid-template-columns: minmax(0, 1fr) minmax(230px, 260px);
	column-gap: clamp(20px, 2.2vw, 32px);
	align-items: center;
	min-height: 330px;
}

.team-card-has-photo .team-card-copy {
	max-width: none;
}

.team-card.team-card-has-photo p {
	max-width: none;
}

.team-card::before {
	content: "";
	position: absolute;
	top: clamp(24px, 4vw, 36px);
	left: clamp(24px, 4vw, 38px);
	width: 52px;
	height: 5px;
	background: var(--cc-gold);
	border-radius: 999px;
}

.team-card:hover,
.team-card:focus-visible {
	transform: translateY(-6px);
	border-color: rgba(8, 160, 168, 0.35);
	box-shadow: 0 24px 64px rgba(0, 24, 88, 0.18);
}


.team-card-copy {
	position: relative;
	z-index: 2;
	align-self: center;
	max-width: 660px;
	padding: clamp(52px, 5vw, 62px) clamp(24px, 4vw, 38px) clamp(24px, 4vw, 36px);
}

.team-card h2 {
	margin: 0;
	color: var(--cc-navy);
	font-size: clamp(2rem, 4vw, 3.7rem);
	line-height: 0.95;
}

.team-card p {
	max-width: 560px;
	margin: 16px 0 0;
	color: var(--cc-muted);
	font-size: clamp(1rem, 1.4vw, 1.16rem);
	line-height: 1.55;
}

.team-card-cta {
	display: inline-flex;
	align-items: center;
	margin-top: 18px;
	color: var(--cc-teal-deep);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.team-card-cta::after {
	content: "";
	width: 28px;
	height: 2px;
	margin-left: 10px;
	background: currentColor;
}

.team-card img {
	position: absolute;
	right: clamp(8px, 2.2vw, 22px);
	bottom: 0;
	z-index: 1;
	width: auto;
	max-width: min(38vw, 340px);
	max-height: 360px;
	object-fit: contain;
	object-position: right bottom;
	pointer-events: none;
	transform-origin: 72% 92%;
	transition:
		opacity 520ms ease,
		transform 680ms cubic-bezier(0.16, 0.9, 0.22, 1),
		filter 220ms ease;
	will-change: opacity, transform;
}

.team-card img.team-card-image-photo {
	position: relative;
	right: auto;
	bottom: auto;
	grid-column: 2;
	grid-row: 1;
	justify-self: end;
	align-self: center;
	width: min(26vw, 260px);
	max-width: 260px;
	max-height: none;
	margin: clamp(26px, 3vw, 38px) clamp(24px, 3vw, 36px) clamp(26px, 3vw, 38px) 0;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: 50% 28%;
	border: 5px solid rgba(255, 255, 255, 0.94);
	border-radius: 28px;
	box-shadow: 0 18px 40px rgba(0, 24, 88, 0.2);
}

.team-card:hover img,
.team-card:focus-visible img {
	filter: drop-shadow(0 22px 28px rgba(0, 24, 88, 0.16));
	transform: translateX(-10px) rotate(-1.4deg) scale(1.02);
}

@media (prefers-reduced-motion: no-preference) {
	.cc-team-scroll-motion .team-profile-stack .team-card:not(.is-team-visible),
	.cc-team-scroll-motion .team-profile-stack .team-card:not(.is-team-visible) img {
		opacity: 0;
	}

	.cc-team-scroll-motion .team-profile-stack .team-card.is-team-visible {
		animation: ccPrincipalCardArrive 720ms cubic-bezier(0.16, 0.9, 0.22, 1) backwards;
	}

	.cc-team-scroll-motion .team-profile-stack .team-card.is-team-visible:nth-child(2) {
		animation-delay: 90ms;
	}

	.cc-team-scroll-motion .team-profile-stack .team-card.is-team-visible:nth-child(3) {
		animation-delay: 180ms;
	}

	.cc-team-scroll-motion .team-profile-stack .team-card.is-team-visible:nth-child(4) {
		animation-delay: 270ms;
	}

	.cc-team-scroll-motion .team-profile-stack .team-card.is-team-visible img {
		animation:
			ccPrincipalAvatarArrive 780ms cubic-bezier(0.16, 0.9, 0.22, 1) 180ms backwards,
			ccPrincipalAvatarPresent 1350ms cubic-bezier(0.16, 0.9, 0.22, 1) 1120ms;
	}

	.cc-team-scroll-motion .team-profile-stack .team-card.is-team-visible:nth-child(2) img {
		animation-delay: 270ms, 1210ms;
	}

	.cc-team-scroll-motion .team-profile-stack .team-card.is-team-visible:nth-child(3) img {
		animation-delay: 360ms, 1300ms;
	}

	.cc-team-scroll-motion .team-profile-stack .team-card.is-team-visible:nth-child(4) img {
		animation-delay: 450ms, 1390ms;
	}
}

.team-hero {
	overflow: hidden;
}

.team-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 32%);
	gap: clamp(24px, 5vw, 60px);
	align-items: end;
}

.team-hero-grid img {
	justify-self: end;
	align-self: end;
	width: auto;
	max-width: min(34vw, 360px);
	max-height: 500px;
	object-fit: contain;
	object-position: right bottom;
	filter: drop-shadow(0 22px 34px rgba(0, 24, 88, 0.16));
}

.team-hero-grid-no-image {
	grid-template-columns: minmax(0, 1fr);
}

.team-hero-grid-no-image > div {
	max-width: 820px;
}

.team-hero-grid img.team-hero-image-photo {
	width: min(32vw, 340px);
	max-width: 340px;
	max-height: none;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: 50% 28%;
	border: 6px solid rgba(255, 255, 255, 0.92);
	border-radius: 34px;
	box-shadow: 0 22px 46px rgba(0, 24, 88, 0.2);
	filter: none;
}

.join-audience-stack {
	display: grid;
	gap: 26px;
}

.join-audience-card {
	position: relative;
	overflow: hidden;
	padding: clamp(24px, 4vw, 42px);
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-left: 6px solid var(--cc-gold);
	border-radius: var(--cc-radius);
	box-shadow: 0 16px 44px rgba(0, 32, 96, 0.08);
}

.join-audience-card::after {
	content: "";
	position: absolute;
	right: -42px;
	bottom: -54px;
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, rgba(8, 160, 168, 0.15), transparent 68%);
	pointer-events: none;
}

.join-audience-card h2 {
	max-width: 880px;
	font-size: clamp(2rem, 3.8vw, 3.65rem);
}

.join-audience-card > p:not(.section-label) {
	max-width: 920px;
	color: var(--cc-ink);
	font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.join-audience-card .check-list {
	margin-top: 24px;
}

.join-audience-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.feature-card,
.industry-card,
.post-card,
.post-excerpt,
.widget,
.empty-state,
.comment-respond,
.comment-list .comment {
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius);
	box-shadow: 0 10px 28px rgba(0, 32, 96, 0.06);
}

.feature-card,
.industry-card {
	padding: 24px;
}

.feature-card {
	position: relative;
	overflow: hidden;
	min-height: 150px;
	transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.feature-card-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.feature-card p {
	position: relative;
	z-index: 1;
	margin-top: 16px;
	color: var(--cc-muted);
	font-size: 1.02rem;
}

.feature-card:nth-child(2) {
	margin-top: 20px;
}

.feature-card:nth-child(3) {
	margin-top: -10px;
}

.feature-card::after,
.industry-card::after {
	content: "";
	position: absolute;
	inset: auto -28px -34px auto;
	width: 110px;
	height: 110px;
	background: radial-gradient(circle, rgba(8, 160, 168, 0.16), transparent 65%);
	pointer-events: none;
}

.feature-card:hover,
.industry-card:hover,
.post-card:hover {
	border-color: rgba(8, 152, 160, 0.34);
	box-shadow: 0 18px 44px rgba(0, 32, 96, 0.14);
	transform: translateY(-6px);
}

.feature-card-link h3 {
	transition: color 180ms ease;
}

.feature-card-link:hover h3,
.feature-card-link:focus-visible h3 {
	color: var(--cc-teal-deep);
}

.feature-card::before,
.industry-card::before {
	content: "";
	display: block;
	width: 46px;
	height: 4px;
	margin-bottom: 18px;
	background: var(--cc-gold);
	border-radius: 99px;
}

.feature-card-cta {
	position: relative;
	z-index: 1;
	display: inline-flex;
	margin-top: 18px;
	color: var(--cc-navy);
	font-size: 0.88rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.feature-card-cta::after {
	content: "\2192";
	margin-left: 8px;
	color: var(--cc-gold);
}

.band-section {
	position: relative;
	overflow: hidden;
	padding-block: 78px;
	background:
		radial-gradient(circle at 8% 15%, rgba(8, 160, 168, 0.16), transparent 24%),
		radial-gradient(circle at 86% 82%, rgba(232, 168, 56, 0.15), transparent 26%),
		var(--cc-aqua-pale);
	border-block: 1px solid var(--cc-border);
}

.band-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(112deg, transparent 0 48%, rgba(255, 255, 255, 0.72) 49% 52%, transparent 53%);
	pointer-events: none;
}

.band-section > .container {
	position: relative;
	z-index: 1;
}

.section-heading {
	max-width: 790px;
	margin-bottom: 22px;
}

.industry-card p {
	color: var(--cc-muted);
}

.industry-card-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.industry-card-link h3,
.industry-card-link p {
	transition: color 180ms ease;
}

.industry-card-link:hover h3,
.industry-card-link:focus-visible h3 {
	color: var(--cc-teal-deep);
}

.industry-card-cta {
	display: inline-flex;
	margin-top: 18px;
	color: var(--cc-navy);
	font-size: 0.88rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.industry-card-cta::after {
	content: "\2192";
	margin-left: 8px;
	color: var(--cc-gold);
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
	gap: 44px;
	align-items: start;
}

.check-list {
	display: grid;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding: 16px 16px 16px 48px;
	color: var(--cc-ink);
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius);
	box-shadow: 0 10px 24px rgba(0, 32, 96, 0.06);
	transition: transform 240ms ease, box-shadow 240ms ease;
}

.check-list li:hover {
	transform: translateX(6px);
	box-shadow: 0 16px 34px rgba(0, 32, 96, 0.12);
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 17px;
	top: 20px;
	width: 14px;
	height: 8px;
	border-left: 3px solid var(--cc-teal);
	border-bottom: 3px solid var(--cc-teal);
	transform: rotate(-45deg);
}

.resources-overview-section {
	padding-block: clamp(52px, 7vw, 82px);
	background:
		radial-gradient(circle at 8% 18%, rgba(8, 160, 168, 0.12), transparent 24%),
		var(--cc-white);
}

.resources-overview-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(22px, 4vw, 36px);
}

.resource-access-card {
	position: relative;
	overflow: hidden;
	padding: clamp(28px, 4vw, 42px);
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius-lg);
	box-shadow: 0 18px 46px rgba(0, 32, 96, 0.1);
}

.resource-access-card::after {
	content: "";
	position: absolute;
	right: -72px;
	bottom: -92px;
	width: 240px;
	height: 240px;
	background: radial-gradient(circle, rgba(8, 160, 168, 0.16), transparent 68%);
	pointer-events: none;
}

.resource-access-card-profile::after {
	background: radial-gradient(circle, rgba(232, 168, 56, 0.2), transparent 68%);
}

.resource-access-kicker {
	position: relative;
	z-index: 1;
	display: inline-flex;
	margin: 0 0 18px;
	padding: 7px 12px;
	color: var(--cc-navy);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: var(--cc-aqua-pale);
	border-radius: 999px;
}

.resource-access-card-profile .resource-access-kicker {
	background: rgba(240, 184, 96, 0.28);
}

.resource-access-card h2,
.resource-access-card > p {
	position: relative;
	z-index: 1;
}

.resource-access-card h2 {
	font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.resource-access-card > p:not(.resource-access-kicker):not(.resource-access-status) {
	color: var(--cc-ink);
	font-size: clamp(1.02rem, 1.3vw, 1.16rem);
}

.resource-access-status {
	margin: 24px 0 0;
	padding-top: 18px;
	color: var(--cc-muted);
	font-size: 0.95rem;
	font-weight: 700;
	border-top: 1px solid var(--cc-border);
}

.resources-notice-section {
	padding-block: clamp(38px, 6vw, 58px);
}

.notice-section {
	position: relative;
	overflow: hidden;
	padding-block: 38px;
	background:
		radial-gradient(circle at 18% 0, rgba(8, 160, 168, 0.22), transparent 32%),
		radial-gradient(circle at 86% 100%, rgba(232, 168, 56, 0.16), transparent 28%),
		var(--cc-navy-dark);
}

.safeguarding-notice {
	padding: clamp(22px, 4vw, 34px);
	color: var(--cc-ink);
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-left: 6px solid var(--cc-gold);
	border-radius: var(--cc-radius);
}

.safeguarding-notice h2 {
	color: var(--cc-navy);
}

.safeguarding-notice p {
	color: var(--cc-ink);
}

.notice-section .safeguarding-notice {
	color: var(--cc-white);
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-left: 6px solid var(--cc-gold);
}

.notice-section .safeguarding-notice h2,
.notice-section .safeguarding-notice p {
	color: var(--cc-white);
}

.safeguarding-notice p:last-child {
	margin-bottom: 0;
}

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

.post-card {
	overflow: hidden;
}

.post-card-link {
	display: grid;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.post-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.post-card-body {
	padding: 20px;
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	margin-bottom: 12px;
	color: var(--cc-muted);
	font-size: 0.86rem;
	font-weight: 700;
}

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

.faq-list {
	display: grid;
	gap: 12px;
}

.faq-list details {
	padding: 20px 22px;
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius);
}

.faq-list summary {
	color: var(--cc-navy);
	font-weight: 800;
	cursor: pointer;
}

.faq-list p {
	margin: 14px 0 0;
	color: var(--cc-muted);
}

.page-hero {
	background:
		linear-gradient(115deg, var(--cc-aqua-pale), var(--cc-white) 62%, rgba(208, 232, 232, 0.75)),
		var(--cc-white);
	border-bottom: 1px solid var(--cc-border);
}

.page-hero.compact {
	padding-block: 64px;
}

.page-hero h1 {
	font-size: clamp(2.1rem, 4vw, 4rem);
}

.pillar-hero {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 14% 12%, rgba(8, 160, 168, 0.18), transparent 28%),
		radial-gradient(circle at 88% 30%, rgba(232, 168, 56, 0.18), transparent 24%),
		linear-gradient(115deg, var(--cc-white), var(--cc-aqua-pale) 58%, var(--cc-white));
}

.pillar-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(112deg, transparent 0 46%, rgba(255, 255, 255, 0.76) 47% 50%, transparent 51%);
	pointer-events: none;
}

.pillar-hero .container {
	position: relative;
	z-index: 1;
}

.role-content {
	display: grid;
	gap: 34px;
}

.pillar-impact-panel {
	position: relative;
	overflow: hidden;
	padding: clamp(24px, 4vw, 38px);
	background:
		radial-gradient(circle at 96% 100%, rgba(8, 160, 168, 0.16), transparent 28%),
		linear-gradient(135deg, var(--cc-white), var(--cc-aqua-pale));
	border: 1px solid var(--cc-border);
	border-left: 6px solid var(--cc-gold);
	border-radius: var(--cc-radius);
	box-shadow: 0 16px 42px rgba(0, 32, 96, 0.1);
}

.pillar-impact-panel::after {
	content: "";
	position: absolute;
	right: -48px;
	bottom: -60px;
	width: 210px;
	height: 210px;
	background: radial-gradient(circle, rgba(232, 168, 56, 0.18), transparent 68%);
	pointer-events: none;
}

.pillar-impact-panel .section-label {
	color: var(--cc-teal-deep);
}

.pillar-impact-panel .check-list {
	position: relative;
	z-index: 1;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 18px;
}

.pillar-impact-panel .check-list li {
	min-height: 138px;
	padding: 24px 20px 24px 58px;
	color: var(--cc-navy);
	font-size: clamp(1rem, 1.2vw, 1.14rem);
	font-weight: 800;
	line-height: 1.35;
	background: rgba(255, 255, 255, 0.88);
	border-color: rgba(0, 32, 96, 0.12);
	box-shadow: 0 12px 28px rgba(0, 32, 96, 0.08);
}

.pillar-impact-panel .check-list li::before {
	left: 22px;
	top: 30px;
	border-color: var(--cc-teal);
}

.role-content-section {
	padding-bottom: 30px;
	border-bottom: 1px solid var(--cc-border);
}

.role-content-section:last-of-type {
	padding-bottom: 0;
	border-bottom: 0;
}

.role-content-section h2 {
	font-size: clamp(1.75rem, 2.6vw, 2.6rem);
}

.role-content-section p {
	color: var(--cc-ink);
	font-size: clamp(1.02rem, 1.35vw, 1.16rem);
}

.role-content-section .check-list {
	margin-top: 22px;
}

.role-source-note {
	margin-top: 8px;
}

.role-source-note ul {
	display: grid;
	gap: 8px;
	margin-bottom: 0;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
	gap: clamp(24px, 4vw, 46px);
	align-items: start;
}

.contact-privacy-panel,
.contact-form-panel {
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius);
	box-shadow: 0 16px 42px rgba(0, 32, 96, 0.08);
}

.contact-privacy-panel {
	position: sticky;
	top: 110px;
	padding: clamp(24px, 4vw, 36px);
	border-left: 6px solid var(--cc-gold);
}

.contact-privacy-panel h2 {
	font-size: clamp(1.9rem, 3vw, 3rem);
}

.contact-privacy-panel p {
	color: var(--cc-ink);
}

.contact-form-panel {
	padding: clamp(22px, 4vw, 38px);
}

.contact-form {
	display: grid;
	gap: 18px;
}

.form-grid {
	display: grid;
	gap: 18px;
}

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

.contact-form p {
	margin: 0;
}

.contact-form label {
	display: grid;
	gap: 8px;
	color: var(--cc-navy);
	font-weight: 900;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
	outline: 3px solid var(--cc-gold);
	outline-offset: 3px;
	border-color: var(--cc-teal);
	box-shadow: 0 0 0 2px rgba(0, 32, 96, 0.2);
}

.contact-check-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	align-items: stretch;
}

.contact-captcha {
	padding: 18px;
	background: linear-gradient(135deg, var(--cc-white), var(--cc-aqua-pale));
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius);
}

.contact-captcha label {
	grid-template-columns: minmax(180px, 0.36fr) minmax(0, 1fr);
	align-items: center;
	font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.contact-captcha input {
	min-height: 58px;
	font-size: 1.2rem;
	font-weight: 800;
	text-align: center;
}

.privacy-consent {
	display: flex;
	align-items: center;
	padding: 18px;
	background: var(--cc-aqua-pale);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius);
}

.privacy-consent label {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: start;
	font-weight: 700;
	font-size: 0.98rem;
	line-height: 1.45;
}

.privacy-consent input {
	width: 18px;
	height: 18px;
	margin-top: 3px;
}

.contact-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-notice {
	margin-bottom: 20px;
	padding: 18px 20px;
	border-radius: var(--cc-radius);
}

.form-notice h2 {
	margin-bottom: 8px;
	font-size: 1.4rem;
}

.form-notice.success {
	color: var(--cc-navy);
	background: var(--cc-aqua-pale);
	border: 1px solid rgba(8, 152, 160, 0.26);
}

.form-notice.error {
	color: var(--cc-navy);
	background: #fff6e6;
	border: 1px solid rgba(232, 168, 56, 0.42);
}

.form-notice ul {
	margin-bottom: 0;
}

.content-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	gap: 36px;
	padding-block: 58px;
}

.post-list {
	display: grid;
	gap: 20px;
}

.post-excerpt {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr);
	gap: 22px;
	padding: 18px;
}

.post-thumb img {
	width: 100%;
	height: 100%;
	min-height: 190px;
	object-fit: cover;
	border-radius: var(--cc-radius);
}

.widget-area {
	display: grid;
	align-content: start;
	gap: 18px;
}

.widget {
	padding: 20px;
}

.widget-title {
	font-size: 1.2rem;
}

.article-image {
	margin-top: 38px;
}

.article-image img {
	width: 100%;
	max-height: 560px;
	object-fit: cover;
	border-radius: var(--cc-radius-lg);
	box-shadow: var(--cc-shadow);
}

.article-content {
	font-size: 1.08rem;
}

.article-content > * {
	max-width: 820px;
	margin-inline: auto;
}

.article-content > .alignwide {
	max-width: var(--cc-max);
}

.article-content > .alignfull {
	max-width: none;
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

.article-content h2,
.article-content h3 {
	margin-top: 2rem;
}

.post-navigation {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding-bottom: 54px;
}

.post-navigation a {
	font-weight: 800;
}

.empty-state {
	padding: 34px;
	text-align: center;
}

.search-form {
	display: flex;
	gap: 10px;
	max-width: 620px;
}

.search-field,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="password"],
textarea,
select {
	width: 100%;
	min-height: 46px;
	padding: 11px 13px;
	color: var(--cc-ink);
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius);
	font: inherit;
}

.search-submit,
button,
input[type="submit"] {
	min-height: 46px;
	padding: 11px 16px;
	color: var(--cc-white);
	background: var(--cc-navy);
	border: 0;
	border-radius: var(--cc-radius);
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.shop-content .woocommerce ul.products li.product,
.woocommerce ul.products li.product {
	padding: 16px;
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius);
	box-shadow: 0 10px 28px rgba(0, 32, 96, 0.06);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: var(--cc-navy);
	font-size: 1.08rem;
	font-weight: 800;
}

.woocommerce .price {
	color: var(--cc-teal-deep);
	font-weight: 800;
}

.site-footer {
	color: rgba(255, 255, 255, 0.86);
	background: var(--cc-navy-dark);
}

.site-footer h2,
.site-footer .brand-words,
.site-footer .brand-fallback,
.site-footer a {
	color: var(--cc-white);
}

.site-footer .brand-fallback,
.site-footer .custom-logo-link {
	padding: 8px 10px;
	background: rgba(255, 255, 255, 0.96);
	border-radius: var(--cc-radius);
}

.site-footer .brand-fallback,
.site-footer .brand-fallback .brand-words {
	color: var(--cc-navy);
}

.site-footer .brand-words span + span {
	color: var(--cc-aqua);
}

.site-footer .brand-fallback .brand-words span + span {
	color: var(--cc-teal);
}

.site-footer .brand-mark {
	border-color: var(--cc-white);
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.6fr) minmax(220px, 0.7fr);
	gap: 34px;
	padding-block: 52px;
}

.footer-grid p {
	max-width: 560px;
}

.footer-menu {
	display: grid;
	gap: 8px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding-block: 16px;
	font-size: 0.9rem;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-smallprint {
	text-align: center;
	padding-bottom: 22px;
}

.footer-smallprint p {
	display: grid;
	gap: 14px;
	width: min(100%, 1120px);
	margin: 0 auto;
	padding: 18px clamp(18px, 3vw, 34px);
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.74rem;
	line-height: 1.45;
	text-align: center;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 28px;
	box-sizing: border-box;
}

.footer-smallprint span {
	display: block;
}

.return-to-top {
	position: fixed;
	right: clamp(14px, 2vw, 24px);
	bottom: clamp(14px, 2vw, 24px);
	z-index: 80;
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	color: var(--cc-navy);
	text-decoration: none;
	background:
		linear-gradient(135deg, var(--cc-gold-light), var(--cc-gold));
	border: 2px solid rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	box-shadow:
		0 14px 34px rgba(0, 24, 88, 0.28),
		0 0 0 6px rgba(232, 168, 56, 0.12);
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		background 180ms ease;
}

.return-to-top span {
	font-size: 1.45rem;
	font-weight: 900;
	line-height: 1;
	transform: translateY(-1px);
}

.return-to-top:hover,
.return-to-top:focus-visible {
	color: var(--cc-white);
	background:
		linear-gradient(135deg, var(--cc-teal-bright), var(--cc-navy));
	transform: translateY(-4px);
	box-shadow:
		0 18px 44px rgba(0, 24, 88, 0.34),
		0 0 0 7px rgba(8, 160, 168, 0.14);
}

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

.comment-list .comment,
.comment-respond {
	padding: 20px;
	margin-bottom: 18px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 26px;
}

.nav-links a,
.nav-links span {
	display: inline-flex;
	min-width: 40px;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius);
	text-decoration: none;
}

.nav-links .current {
	color: var(--cc-white);
	background: var(--cc-navy);
}

.cc-motion-ready .hero-section {
	animation: ccHeroFirstPaint 900ms ease-out both;
}

.cc-motion-ready .hero-section::after {
	animation: ccGridWake 1200ms ease-out both;
}

.cc-motion-ready .hero-command::before {
	animation: ccGlowWake 1050ms ease-out both, ccPulseGlow 5.5s ease-in-out 1050ms infinite;
}

.cc-motion-ready .command-ring {
	animation: ccHeroRingArrive 1100ms cubic-bezier(0.16, 0.9, 0.22, 1) both;
}

.cc-motion-ready .ring-core span {
	opacity: 0;
	animation: ccWordPop 620ms cubic-bezier(0.16, 0.9, 0.22, 1) 520ms both;
}

.cc-motion-ready .ring-core span:nth-child(2) {
	animation-delay: 650ms;
}

.cc-motion-ready .ring-core span:nth-child(3) {
	animation-delay: 780ms;
}

.cc-motion-ready .ring-core span:nth-child(4) {
	animation-delay: 910ms;
}

.cc-motion-ready .hero-copy > * {
	opacity: 0;
	animation: ccHeroCopyFly 900ms cubic-bezier(0.16, 0.9, 0.22, 1) both;
}

.cc-motion-ready .hero-copy > *:nth-child(2) {
	animation-delay: 120ms;
}

.cc-motion-ready .hero-copy > *:nth-child(3) {
	animation-delay: 240ms;
}

.cc-motion-ready .hero-copy > *:nth-child(4) {
	animation-delay: 360ms;
}

.cc-motion-ready .hero-copy > *:nth-child(5) {
	animation-delay: 480ms;
}

.cc-motion-ready .hero-signal-grid {
	animation: ccHeroSignals 760ms cubic-bezier(0.16, 0.9, 0.22, 1) 760ms both;
}

.cc-motion-ready .hero-signal-card {
	opacity: 0;
	animation: ccSignalCard 560ms cubic-bezier(0.16, 0.9, 0.22, 1) 920ms both;
}

.cc-motion-ready .hero-signal-card:nth-child(2) {
	animation-delay: 1040ms;
}

.cc-motion-ready .hero-signal-card:nth-child(3) {
	animation-delay: 1160ms;
}

.cc-motion-ready .hero-marquee {
	animation: ccMarqueeReveal 620ms ease-out 1080ms both;
}

.cc-motion-ready.cc-reveal-enabled .reveal-target {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 700ms ease,
		transform 700ms cubic-bezier(0.18, 0.8, 0.24, 1),
		box-shadow 240ms ease,
		border-color 240ms ease;
	will-change: opacity, transform;
}

.cc-motion-ready.cc-reveal-enabled .reveal-target.is-visible {
	opacity: 1;
	transform: none;
}

.cc-motion-ready.cc-reveal-enabled .card-grid .reveal-target:nth-child(2),
.cc-motion-ready.cc-reveal-enabled .faq-list .reveal-target:nth-child(2) {
	transition-delay: 90ms;
}

.cc-motion-ready.cc-reveal-enabled .card-grid .reveal-target:nth-child(3),
.cc-motion-ready.cc-reveal-enabled .faq-list .reveal-target:nth-child(3) {
	transition-delay: 180ms;
}

.cc-motion-ready.cc-reveal-enabled .card-grid .reveal-target:nth-child(4),
.cc-motion-ready.cc-reveal-enabled .faq-list .reveal-target:nth-child(4) {
	transition-delay: 270ms;
}

.cc-motion-ready .feature-card.reveal-target:hover,
.cc-motion-ready .industry-card.reveal-target:hover,
.cc-motion-ready .post-card.reveal-target:hover {
	transform: translateY(-6px);
}

@keyframes ccHeroFirstPaint {
	from {
		filter: saturate(0.9) brightness(0.88);
	}

	to {
		filter: saturate(1) brightness(1);
	}
}

@keyframes ccGridWake {
	from {
		opacity: 0;
		transform: scale(1.04);
	}

	to {
		opacity: 0.9;
		transform: scale(1);
	}
}

@keyframes ccGlowWake {
	from {
		opacity: 0;
		transform: scale(0.82);
	}

	to {
		opacity: 0.8;
		transform: scale(1);
	}
}

@keyframes ccHeroCopyFly {
	from {
		opacity: 0;
		transform: translateX(-46px) translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateX(0) translateY(0);
	}
}

@keyframes ccHeroRingArrive {
	0% {
		opacity: 0;
		filter: blur(8px);
		transform: translateX(58px) scale(0.84);
	}

	68% {
		opacity: 1;
		filter: blur(0);
		transform: translateX(-3px) scale(1.025);
	}

	100% {
		opacity: 1;
		filter: blur(0);
		transform: translateX(0) scale(1);
	}
}

@keyframes ccWordPop {
	from {
		opacity: 0;
		transform: translateY(20px) scale(0.96);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes ccHeroSignals {
	from {
		opacity: 0;
		transform: translateY(26px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ccSignalCard {
	from {
		opacity: 0;
		transform: translateY(18px) scale(0.96);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes ccMarqueeReveal {
	from {
		opacity: 0;
		transform: translateY(100%);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ccFloatUp {
	from {
		opacity: 0;
		transform: translateY(34px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ccFloatInClean {
	from {
		opacity: 0;
		transform: translateX(42px) scale(0.96);
	}

	to {
		opacity: 1;
		transform: translateX(0) scale(1);
	}
}

@keyframes ccPrincipalCardArrive {
	from {
		opacity: 0;
		transform: translateX(42px) translateY(16px) scale(0.98);
	}

	to {
		opacity: 1;
		transform: translateX(0) translateY(0) scale(1);
	}
}

@keyframes ccPrincipalAvatarArrive {
	from {
		opacity: 0;
		transform: translateX(96px) rotate(5deg) scale(0.92);
	}

	to {
		opacity: 1;
		transform: translateX(0) rotate(0) scale(1);
	}
}

@keyframes ccPrincipalAvatarPresent {
	0% {
		transform: translateX(0) rotate(0) scale(1);
	}

	34% {
		transform: translateX(-12px) rotate(-1.7deg) scale(1.025);
	}

	68% {
		transform: translateX(-4px) rotate(0.8deg) scale(1.01);
	}

	100% {
		transform: translateX(0) rotate(0) scale(1);
	}
}

@keyframes ccPulseGlow {
	0%,
	100% {
		opacity: 0.58;
		transform: scale(0.96);
	}

	50% {
		opacity: 0.92;
		transform: scale(1.04);
	}
}

@keyframes ccSweep {
	0% {
		opacity: 0.5;
		transform: rotate(-12deg) translateX(-2%);
	}

	100% {
		opacity: 0.95;
		transform: rotate(10deg) translateX(4%);
	}
}

@keyframes ccRingBreathe {
	0%,
	100% {
		opacity: 0.65;
		transform: scale(0.98);
	}

	50% {
		opacity: 1;
		transform: scale(1.04);
	}
}

@keyframes ccMarquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 980px) {
	.top-line-inner,
	.header-inner {
		align-items: flex-start;
	}

	.top-line-inner {
		display: grid;
		gap: 2px;
		text-align: center;
	}

	.menu-toggle {
		display: block;
		margin-left: auto;
	}

	.primary-navigation {
		width: 100%;
	}

	.header-inner {
		flex-wrap: wrap;
	}

	.primary-navigation ul {
		display: none;
		width: 100%;
		padding-top: 10px;
	}

	.primary-navigation ul.is-open {
		display: grid;
	}

	.primary-navigation a {
		padding: 12px;
		background: var(--cc-aqua-pale);
	}

	.hero-grid,
	.split,
	.content-sidebar,
	.contact-layout,
	.team-hero-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.pillar-impact-panel .check-list {
		grid-template-columns: 1fr;
	}

	.contact-privacy-panel {
		position: static;
	}

	.hero-grid {
		min-height: auto;
		padding-block: 48px;
	}

	.hero-command {
		min-height: 640px;
		place-items: center;
	}

	.cc-register-row {
		grid-template-columns: 1fr;
	}

	.card-grid.four,
	.card-grid.three,
	.post-grid,
	.form-grid.two {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.post-excerpt {
		grid-template-columns: 1fr;
	}

	.team-hero-grid img {
		max-width: min(58vw, 300px);
		max-height: 390px;
		margin-inline: auto;
	}

	.team-hero-grid img.team-hero-image-photo {
		width: min(58vw, 300px);
		max-width: min(58vw, 300px);
		max-height: none;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16px;
	}

	.container,
	.narrow {
		width: min(100% - 28px, var(--cc-max));
	}

	.custom-logo-link img {
		width: auto;
		max-width: min(300px, 72vw);
		max-height: 70px;
	}

	.brand-fallback img {
		width: auto;
		max-width: min(300px, 72vw);
		max-height: 70px;
	}

	.brand-mark {
		width: 48px;
		height: 48px;
	}

	.hero-section::before,
	.hero-section::after,
	.stage-light {
		display: none;
	}

	.hero-grid {
		gap: 28px;
		padding-block: 38px;
	}

	.hero-command {
		min-height: auto;
		padding-top: 18px;
	}

	.command-ring {
		width: min(100%, 360px);
	}

	.ring-core .ring-label {
		font-size: 0.58rem;
		letter-spacing: 0.08em;
	}

	.hero-signal-grid {
		position: relative;
		right: auto;
		bottom: auto;
		grid-template-columns: 1fr;
		width: 100%;
		margin-top: 16px;
	}

	.hero-signal-card {
		min-height: auto;
	}

	.feature-card:nth-child(2),
	.feature-card:nth-child(3) {
		margin-top: 0;
	}

	.hero-actions,
	.search-form,
	.footer-bottom,
	.post-navigation {
		display: grid;
	}

	.cc-button,
	.read-more,
	.search-submit {
		width: 100%;
	}

	.card-grid.four,
	.card-grid.three,
	.post-grid,
	.form-grid.two {
		grid-template-columns: 1fr;
	}

	.team-card {
		grid-template-columns: 1fr;
		min-height: 0;
		overflow: hidden;
	}


	.team-card-copy {
		padding-right: clamp(24px, 4vw, 38px);
	}

	.team-card img {
		right: 8px;
		bottom: 0;
		max-width: min(72vw, 270px);
		max-height: 300px;
	}

	.team-card img.team-card-image-photo {
		position: relative;
		right: auto;
		bottom: auto;
		grid-column: 1;
		grid-row: auto;
		justify-self: end;
		width: min(72vw, 270px);
		max-width: min(72vw, 270px);
		max-height: none;
		margin: 0 clamp(18px, 5vw, 28px) clamp(18px, 5vw, 28px);
	}

	.contact-captcha label {
		grid-template-columns: 1fr;
	}

	.intro-section,
	.guidance-section,
	.latest-section,
	.faq-section,
	.shop-content,
	.article-content,
	.comments-area {
		padding-block: 48px;
	}

	.page-hero.compact {
		padding-block: 44px;
	}

	.resources-overview-grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.cc-motion-ready .reveal-target,
	.cc-motion-ready.cc-reveal-enabled .reveal-target,
	.cc-motion-ready .hero-copy > *,
	.cc-motion-ready .command-ring,
	.cc-motion-ready .ring-core span,
	.cc-motion-ready .hero-signal-grid,
	.cc-motion-ready .hero-signal-card,
	.cc-motion-ready .hero-marquee,
	.cc-motion-ready .team-profile-stack .team-card,
	.cc-motion-ready .team-profile-stack .team-card img,
	.cc-team-scroll-motion .team-profile-stack .team-card,
	.cc-team-scroll-motion .team-profile-stack .team-card img,
	.team-card:hover img,
	.team-card:focus-visible img {
		opacity: 1 !important;
		transform: none !important;
	}
}

/* News & Updates landing page. */
.news-main {
	background:
		linear-gradient(180deg, var(--cc-white) 0, var(--cc-aqua-pale) 48%, var(--cc-white) 100%);
}

.news-hero {
	position: relative;
	overflow: hidden;
	color: var(--cc-white);
	background:
		radial-gradient(circle at 12% 18%, rgba(8, 160, 168, 0.34), transparent 28%),
		radial-gradient(circle at 88% 78%, rgba(232, 168, 56, 0.22), transparent 24%),
		linear-gradient(125deg, var(--cc-navy-dark), var(--cc-navy) 58%, var(--cc-navy-soft));
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.news-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 38px 38px;
	-webkit-mask-image: linear-gradient(90deg, black, transparent 76%);
	mask-image: linear-gradient(90deg, black, transparent 76%);
	pointer-events: none;
}

.news-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
	gap: clamp(36px, 7vw, 92px);
	align-items: center;
	min-height: 430px;
	padding-block: clamp(64px, 8vw, 96px);
}

.news-hero-copy {
	max-width: 780px;
}

.news-hero .section-label {
	color: var(--cc-gold-light);
}

.news-hero h1 {
	max-width: 760px;
	margin-bottom: 18px;
	color: var(--cc-white);
	font-size: clamp(3rem, 7vw, 6.5rem);
	line-height: 0.96;
	letter-spacing: -0.045em;
}

.news-hero-copy > p:last-child {
	max-width: 720px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.news-hero-mark {
	position: relative;
	display: grid;
	place-content: center;
	justify-self: end;
	width: min(29vw, 310px);
	aspect-ratio: 1;
	padding: 34px;
	text-align: center;
	text-transform: uppercase;
	background:
		radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.2), transparent 32%),
		linear-gradient(145deg, rgba(8, 160, 168, 0.96), rgba(0, 72, 136, 0.96));
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	box-shadow:
		0 30px 70px rgba(0, 10, 48, 0.42),
		inset 0 0 0 12px rgba(255, 255, 255, 0.06);
}

.news-hero-mark::after {
	content: "";
	position: absolute;
	inset: 17px;
	border: 1px dashed rgba(255, 255, 255, 0.35);
	border-radius: inherit;
}

.news-hero-mark span,
.news-hero-mark strong {
	position: relative;
	z-index: 1;
	display: block;
	color: var(--cc-white);
	line-height: 1;
}

.news-hero-mark span {
	font-size: clamp(1.35rem, 2.7vw, 2.45rem);
	font-weight: 900;
	letter-spacing: 0.08em;
}

.news-hero-mark strong {
	margin-block: 7px;
	color: var(--cc-gold-light);
	font-size: clamp(2.7rem, 5vw, 4.8rem);
	font-weight: 900;
}

.news-category-bar {
	position: relative;
	z-index: 2;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--cc-border);
	box-shadow: 0 14px 32px rgba(0, 32, 96, 0.06);
}

.news-category-nav {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding-block: 16px;
	scrollbar-width: thin;
}

.news-category-nav a {
	flex: 0 0 auto;
	min-height: 42px;
	padding: 8px 15px;
	color: var(--cc-navy);
	font-size: 0.9rem;
	font-weight: 800;
	text-decoration: none;
	background: var(--cc-aqua-pale);
	border: 1px solid rgba(0, 32, 96, 0.1);
	border-radius: 999px;
}

.news-category-nav a:hover,
.news-category-nav a:focus-visible,
.news-category-nav a.is-current {
	color: var(--cc-white);
	background: var(--cc-navy);
	border-color: var(--cc-navy);
}

.news-content {
	padding-block: clamp(54px, 7vw, 88px);
}

.news-featured-section,
.news-latest-section {
	display: grid;
	gap: 24px;
}

.news-latest-section {
	margin-top: clamp(58px, 8vw, 92px);
}

.news-section-heading {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 24px;
}

.news-section-heading .section-label {
	margin-bottom: 6px;
}

.news-section-heading h2 {
	margin-bottom: 0;
	font-size: clamp(2rem, 4vw, 3.5rem);
}

.news-featured-card {
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
	min-height: 470px;
	overflow: hidden;
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius-lg);
	box-shadow: var(--cc-shadow);
}

.news-featured-media,
.news-card-media {
	display: block;
	overflow: hidden;
	background: var(--cc-navy);
}

.news-featured-media img,
.news-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 420ms ease;
}

.news-featured-card:hover .news-featured-media img,
.news-card:hover .news-card-media img {
	transform: scale(1.025);
}

.news-media-placeholder {
	display: grid;
	place-content: center;
	width: 100%;
	height: 100%;
	min-height: 360px;
	padding: 34px;
	color: var(--cc-white);
	text-align: center;
	background:
		radial-gradient(circle at 20% 20%, rgba(8, 160, 168, 0.46), transparent 34%),
		radial-gradient(circle at 82% 80%, rgba(232, 168, 56, 0.28), transparent 30%),
		linear-gradient(135deg, var(--cc-navy-dark), var(--cc-navy-soft));
}

.news-media-placeholder span,
.news-media-placeholder strong {
	display: block;
}

.news-media-placeholder span {
	margin-bottom: 10px;
	color: var(--cc-gold-light);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.news-media-placeholder strong {
	max-width: 350px;
	font-size: clamp(2rem, 4vw, 4rem);
	line-height: 1;
}

.news-featured-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(30px, 5vw, 58px);
}

.news-featured-copy h3 {
	margin-bottom: 18px;
	font-size: clamp(2rem, 4vw, 3.65rem);
	line-height: 1.05;
}

.news-featured-copy h3 a,
.news-card-copy h3 a {
	color: var(--cc-navy);
	text-decoration: none;
}

.news-featured-copy h3 a:hover,
.news-featured-copy h3 a:focus-visible,
.news-card-copy h3 a:hover,
.news-card-copy h3 a:focus-visible {
	color: var(--cc-teal-deep);
}

.news-featured-copy > p,
.news-card-copy > p {
	color: var(--cc-muted);
}

.news-read-link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	min-height: 44px;
	margin-top: auto;
	padding-top: 14px;
	color: var(--cc-navy);
	font-weight: 900;
	text-decoration: none;
}

.news-read-link span {
	margin-left: 4px;
	transition: transform 180ms ease;
}

.news-read-link:hover span,
.news-read-link:focus-visible span {
	transform: translateX(4px);
}

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

.news-card {
	display: grid;
	grid-template-rows: 220px 1fr;
	overflow: hidden;
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius-lg);
	box-shadow: 0 14px 36px rgba(0, 32, 96, 0.08);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.news-card:hover {
	border-color: rgba(8, 152, 160, 0.34);
	box-shadow: 0 22px 50px rgba(0, 32, 96, 0.14);
	transform: translateY(-5px);
}

.news-media-placeholder-small {
	min-height: 220px;
}

.news-media-placeholder-small strong {
	font-size: clamp(1.55rem, 2.5vw, 2.35rem);
}

.news-card-copy {
	display: flex;
	flex-direction: column;
	padding: 24px;
}

.news-card-copy h3 {
	margin-bottom: 12px;
	font-size: clamp(1.35rem, 2.2vw, 1.8rem);
	line-height: 1.15;
}

.news-card-copy .news-read-link {
	margin-top: auto;
}

.news-main .entry-meta {
	color: var(--cc-teal-deep);
	font-size: 0.8rem;
	letter-spacing: 0.02em;
}

.news-main .entry-meta a {
	color: var(--cc-teal-deep);
}

.news-empty-state {
	position: relative;
	overflow: hidden;
	max-width: 820px;
	margin-inline: auto;
	padding: clamp(44px, 8vw, 78px);
	text-align: center;
	background: var(--cc-white);
	border: 1px solid var(--cc-border);
	border-radius: var(--cc-radius-lg);
	box-shadow: var(--cc-shadow);
}

.news-empty-state h2 {
	font-size: clamp(2.3rem, 5vw, 4.5rem);
}

.news-empty-state > p:last-child {
	max-width: 620px;
	margin-inline: auto;
	color: var(--cc-muted);
}

.news-empty-mark {
	position: absolute;
	right: -28px;
	bottom: -80px;
	color: rgba(8, 160, 168, 0.1);
	font-size: 16rem;
	font-weight: 900;
	line-height: 1;
	pointer-events: none;
}

.news-main .navigation.pagination {
	margin-top: 42px;
}

@media (max-width: 900px) {
	.news-hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(210px, 260px);
		min-height: 380px;
	}

	.news-featured-card {
		grid-template-columns: 1fr;
	}

	.news-featured-media {
		min-height: 340px;
	}

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

@media (max-width: 640px) {
	.news-hero-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		min-height: auto;
		padding-block: 52px;
	}

	.news-hero h1 {
		font-size: clamp(3rem, 17vw, 4.8rem);
	}

	.news-hero-mark {
		justify-self: start;
		width: min(74vw, 250px);
	}

	.news-category-nav {
		margin-inline: -14px;
		padding-inline: 14px;
	}

	.news-section-heading h2 {
		font-size: clamp(2rem, 10vw, 3rem);
	}

	.news-featured-card {
		min-height: 0;
	}

	.news-featured-media {
		min-height: 260px;
	}

	.news-featured-copy {
		padding: 28px 24px 30px;
	}

	.news-featured-copy h3 {
		font-size: clamp(1.8rem, 9vw, 2.6rem);
	}

	.news-card-grid {
		grid-template-columns: 1fr;
	}

	.news-card {
		grid-template-rows: 210px 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.news-featured-media img,
	.news-card-media img,
	.news-card,
	.news-read-link span {
		transition: none;
	}
}

/* Category archives use the News & Updates editorial layout. */
.news-category-description {
	max-width: 720px;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.news-category-description p:last-child {
	margin-bottom: 0;
}


/* Homepage News & Updates cards: use the stable editorial component without reveal hiding. */
.home-news-card-grid .news-card {
	opacity: 1;
	transform: none;
	visibility: visible;
}
