/* Chrome v2 - scoped to header/footer wrappers only (no page leakage). */

.rh-header-v2,
.rh-prefooter,
.rh-footer-v2 {
	--rh-navy: #002244;
	--rh-blue: #0077cd;
	--rh-sky: #ebf3f9;
	--rh-topbar: #dcebf6;
	--rh-orange: #f47f31;
}

.rh-header-v2 .rh-hidden,
.rh-prefooter .rh-hidden,
.rh-footer-v2 .rh-hidden {
	display: none !important;
}

/* ---------- Header ---------- */
.rh-header-v2 {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fff;
	box-shadow: 0 1px 0 rgba(0, 34, 68, 0.08);
	transition: box-shadow 0.2s ease;
}

.rh-header-v2.is-scrolled {
	box-shadow: 0 6px 18px rgba(0, 34, 68, 0.1);
}

/*
 * The live theme reserves 118-147px on body.sticky for the old fixed header.
 * V3 is a true sticky header in normal document flow, so that legacy offset
 * creates a large blank gap. Reset it at every viewport size.
 */
body.has-rh-nav-v3.sticky {
	padding-top: 0;
}

body.has-rh-nav-v3.sticky #site-header.rh-header-v3 {
	position: sticky;
	left: auto;
	right: auto;
}

/* Condensed sticky: logo + CTAs only */
.rh-header-v2.is-scrolled .rh-utility-bar,
.rh-header-v2.is-scrolled .rh-nav-list,
.rh-header-v2.is-scrolled .rh-nav-toggle,
.rh-header-v2.is-scrolled .rh-primary-nav {
	display: none;
}

.rh-header-v2.is-scrolled .rh-header-ctas--bar {
	display: flex;
	margin-left: auto;
}

.rh-header-v2.is-scrolled .rh-main-bar-inner {
	min-height: 3.25rem;
}

/* Match live #top-bar */
.rh-header-v2 .rh-utility-bar {
	background-color: var(--rh-topbar);
	color: var(--rh-navy);
}

.rh-header-v2 .rh-utility-bar .container,
.rh-header-v2 .rh-utility-inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1.25rem;
}

.rh-header-v2 .rh-utility-links {
	display: flex;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0.35rem 0;
	font-size: 0.7rem;
}

.rh-header-v2 .rh-utility-links a {
	color: var(--rh-navy);
	font-weight: 500;
	text-decoration: none;
}

.rh-header-v2 .rh-utility-links a:hover,
.rh-header-v2 .rh-utility-links a:focus-visible {
	text-decoration: underline;
}

.rh-header-v2 .rh-utility-search {
	position: relative;
	display: flex;
	align-items: center;
}

.rh-header-v2 .rh-search-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.2rem;
	border: 0;
	background: transparent;
	color: var(--rh-navy);
	cursor: pointer;
	line-height: 1;
}

.rh-header-v2 .rh-search-toggle svg {
	width: 0.9rem;
	height: 0.9rem;
}

.rh-header-v2 .rh-search-toggle:hover,
.rh-header-v2 .rh-search-toggle[aria-expanded="true"] {
	color: var(--rh-blue);
}

.rh-header-v2 .rh-search-toggle:focus-visible {
	outline: 2px solid var(--rh-navy);
	outline-offset: 2px;
}

.rh-header-v2 .rh-search-panel {
	position: absolute;
	top: calc(100% + 0.35rem);
	right: 0;
	z-index: 30;
	min-width: 16rem;
	padding: 0.5rem;
	background: #fff;
	border: 1px solid rgba(0, 34, 68, 0.14);
	border-radius: 0.5rem;
	box-shadow: 0 10px 24px rgba(0, 34, 68, 0.1);
}

.rh-header-v2 .rh-search-panel[hidden] {
	display: none !important;
}

.rh-header-v2 .rh-search-form {
	display: flex;
	align-items: stretch;
	gap: 0;
	width: 100%;
}

.rh-header-v2 .rh-search-form input[type="search"] {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	padding: 0.45rem 0.65rem;
	border: 1px solid rgba(0, 34, 68, 0.18);
	border-right: 0;
	border-radius: 0.35rem 0 0 0.35rem;
	font: inherit;
	font-size: 0.8rem;
	color: var(--rh-navy);
	background: #fff;
}

.rh-header-v2 .rh-search-form input[type="search"]:focus {
	outline: 2px solid var(--rh-blue);
	outline-offset: -1px;
	z-index: 1;
}

.rh-header-v2 .rh-search-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 0.7rem;
	border: 1px solid rgba(0, 34, 68, 0.18);
	border-radius: 0 0.35rem 0.35rem 0;
	background: var(--rh-sky);
	color: var(--rh-navy);
	cursor: pointer;
}

.rh-header-v2 .rh-search-submit:hover {
	color: var(--rh-blue);
}

.rh-header-v2 .rh-search-form--mobile {
	display: none;
}

.rh-header-v2 .rh-main-bar-inner {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-height: 3.5rem;
	position: relative;
}

.rh-header-v2 .rh-logo {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	max-height: 2.25rem;
	transform: scale(0.95);
}

.rh-header-v2 .rh-logo img,
.rh-header-v2 .rh-logo svg {
	display: block;
	height: auto;
	max-height: 2.1rem;
	width: auto;
}

.rh-header-v2 .rh-nav-toggle {
	display: none;
	margin-left: auto;
	width: 2.25rem;
	height: 2.25rem;
	border: 1px solid rgba(0, 34, 68, 0.2);
	border-radius: 0.25rem;
	background: #fff;
	padding: 0;
	cursor: pointer;
}

.rh-header-v2 .rh-nav-toggle-icon,
.rh-header-v2 .rh-nav-toggle-icon::before,
.rh-header-v2 .rh-nav-toggle-icon::after {
	display: block;
	width: 1rem;
	height: 2px;
	margin: 0 auto;
	background: var(--rh-navy);
	content: "";
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.rh-header-v2 .rh-nav-toggle-icon::before {
	transform: translateY(-5px);
}

.rh-header-v2 .rh-nav-toggle-icon::after {
	transform: translateY(3px);
}

.rh-header-v2.is-nav-open .rh-nav-toggle-icon {
	background: transparent;
}

.rh-header-v2.is-nav-open .rh-nav-toggle-icon::before {
	transform: translateY(0) rotate(45deg);
}

.rh-header-v2.is-nav-open .rh-nav-toggle-icon::after {
	transform: translateY(-2px) rotate(-45deg);
}

.rh-header-v2 .rh-primary-nav {
	display: flex;
	align-items: center;
	flex: 0 1 auto;
	margin-left: auto;
	gap: 0.75rem;
}

.rh-header-v2 .rh-nav-list {
	display: flex;
	align-items: stretch;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 0;
}

.rh-header-v2 .rh-nav-item {
	position: relative;
}

.rh-header-v2 .rh-nav-trigger,
.rh-header-v2 .rh-nav-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	height: 100%;
	padding: 1.1rem 0.85rem;
	border: 0;
	background: transparent;
	color: var(--rh-navy);
	font: inherit;
	font-weight: 500;
	font-size: 0.8rem;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	position: relative;
}

.rh-header-v2 .rh-nav-trigger::before,
.rh-header-v2 .rh-nav-link::before {
	content: "";
	display: block;
	position: absolute;
	left: 0.85rem;
	right: 0.85rem;
	top: calc(50% + 0.7rem);
	height: 2px;
	width: 0;
	background-color: var(--rh-orange);
	transition: width 0.25s ease;
	pointer-events: none;
}

.rh-header-v2 .rh-nav-trigger:hover::before,
.rh-header-v2 .rh-nav-link:hover::before,
.rh-header-v2 .rh-nav-item.is-open > .rh-nav-trigger::before {
	width: calc(100% - 1.7rem);
}

.rh-header-v2 .rh-nav-trigger::after {
	content: "";
	display: inline-block;
	width: 0.4rem;
	height: 0.4rem;
	margin-top: -0.15rem;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	flex: 0 0 auto;
}

.rh-header-v2 .rh-nav-item.is-open > .rh-nav-trigger::after {
	margin-top: 0.15rem;
	transform: rotate(-135deg);
}

.rh-header-v2 .rh-nav-trigger:hover,
.rh-header-v2 .rh-nav-link:hover,
.rh-header-v2 .rh-nav-item.is-open > .rh-nav-trigger {
	color: var(--rh-blue);
}

.rh-header-v2 .rh-nav-trigger:focus-visible,
.rh-header-v2 .rh-nav-link:focus-visible,
.rh-header-v2 .rh-btn:focus-visible,
.rh-header-v2 .rh-panel a:focus-visible {
	outline: 2px solid var(--rh-navy);
	outline-offset: 2px;
}

.rh-header-v2 .rh-pricing-pending .rh-nav-link {
	opacity: 0.55;
	cursor: default;
}

.rh-header-v2 .rh-panel {
	--rh-panel-pad: 0.85rem;
	position: absolute;
	top: 100%;
	left: 0;
	box-sizing: border-box;
	min-width: 14rem;
	max-width: min(32rem, calc(100vw - 1.5rem));
	padding: 0.65rem 0 0; /* hover bridge only - not card padding */
	z-index: 20;
}

.rh-header-v2 .rh-panel::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 0.65rem;
}

.rh-header-v2 .rh-panel > .rh-panel-links,
.rh-header-v2 .rh-panel > .rh-mega-cols,
.rh-header-v2 .rh-panel > .rh-platform-sections {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	background: #fff;
	border: 1px solid rgba(0, 34, 68, 0.14);
	border-radius: 0.5rem;
	box-shadow: 0 10px 24px rgba(0, 34, 68, 0.1);
	padding: var(--rh-panel-pad);
	overflow: hidden;
}

.rh-header-v2 .rh-nav-item.is-open > .rh-panel {
	display: block;
}

.rh-header-v2 .rh-panel[hidden] {
	display: none !important;
}

.rh-header-v2 .rh-panel-list {
	width: max-content;
	min-width: 14rem;
	max-width: min(19rem, calc(100vw - 1.5rem));
}

.rh-header-v2 .rh-panel-platform {
	width: min(28rem, calc(100vw - 1.5rem));
	min-width: min(28rem, calc(100vw - 1.5rem));
	max-width: min(28rem, calc(100vw - 1.5rem));
}

.rh-header-v2 .rh-platform-sections {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 1.85rem;
	align-items: start;
}

.rh-header-v2 .rh-platform-col {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-width: 0;
}

.rh-header-v2 .rh-platform-section .rh-mega-heading {
	margin-bottom: 0.45rem;
}

.rh-header-v2 .rh-panel-mega {
	width: min(32rem, calc(100vw - 1.5rem));
	max-width: min(32rem, calc(100vw - 1.5rem));
}

.rh-header-v3 .rh-panel-mega--single {
	width: min(16rem, calc(100vw - 1.5rem));
	max-width: min(16rem, calc(100vw - 1.5rem));
}

.rh-header-v3 .rh-panel-mega--single .rh-mega-cols {
	grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 992px) {
	.rh-header-v2 .rh-primary-nav {
		position: relative;
	}

	/* Mega menus share the same left origin under the nav - no odd right-flip */
	.rh-header-v2 .rh-has-mega {
		position: static;
	}

	.rh-header-v2 .rh-has-mega > .rh-panel-mega {
		left: 0;
		right: auto;
	}

	/*
	 * V3 Resources is a compact single column. Keep it under its own trigger
	 * (like Company / Platform) instead of the shared mega left-origin.
	 */
	.rh-header-v3 .rh-nav-item.rh-nav-item--resources.rh-has-mega {
		position: relative;
	}

	.rh-header-v3 .rh-nav-item--resources > .rh-panel-mega {
		left: 0;
		right: auto;
	}
}

.rh-header-v2 .rh-mega-cols {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	column-gap: 1.15rem;
	align-items: start;
}

.rh-header-v2 .rh-mega-col {
	min-width: 0;
	overflow: hidden;
}

.rh-header-v2 .rh-mega-heading {
	margin: 0 0 0.7rem;
	padding: 0;
	font-size: 0.625rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(0, 34, 68, 0.72);
}

.rh-header-v2 .rh-panel-links {
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.rh-header-v2 .rh-panel-links > li {
	min-width: 0;
}

.rh-header-v2 .rh-panel-links > li + li {
	margin-top: 0.15rem;
}

.rh-header-v2 .rh-panel-links a {
	display: block;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	padding: 0.45rem 0.5rem;
	border-radius: 0.25rem;
	text-decoration: none;
	color: var(--rh-navy);
	white-space: normal;
	overflow-wrap: break-word;
	word-break: normal;
}

.rh-header-v2 .rh-panel-links a:hover,
.rh-header-v2 .rh-panel-links a:focus-visible {
	background: var(--rh-sky);
}

/* Title + description items (Platform, By organization, Evaluate) */
.rh-header-v2 .rh-link-label {
	display: block;
	font-weight: 500;
	font-size: 0.8rem;
	line-height: 1.3;
	color: var(--rh-navy);
	white-space: normal;
}

.rh-header-v2 .rh-link-desc {
	display: block;
	width: 100%;
	max-width: 100%;
	margin-top: 0.12rem;
	font-size: 0.65rem;
	font-weight: 400;
	line-height: 1.4;
	color: rgba(0, 34, 68, 0.62);
	white-space: normal;
	overflow-wrap: break-word;
	word-break: normal;
}

/* Specialty / industries list - labels only, no descriptors */
.rh-header-v2 .rh-panel-links-industries .rh-link-label {
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.35;
}

.rh-header-v2 .rh-panel-links-industries > li + li {
	margin-top: 0.22rem;
}

.rh-header-v2 .rh-panel-links-industries a {
	padding-top: 0.48rem;
	padding-bottom: 0.48rem;
}

.rh-header-v2 .rh-header-ctas {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex: 0 0 auto;
}

.rh-header-v2 .rh-header-ctas--nav {
	display: none;
}

/* Tablet / mid desktop: drop secondary CTA so nav + demo fit */
@media (max-width: 1199.98px) {
	.rh-header-v2 .rh-header-ctas--bar .rh-btn-assess {
		display: none;
	}
}

.rh-header-v2 .rh-btn,
.rh-prefooter .rh-btn,
.rh-footer-v2 .rh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 0.95rem;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	border: 2px solid transparent;
	transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.rh-header-v2 .rh-btn-assess,
.rh-prefooter .rh-btn-assess,
.rh-footer-v2 .rh-btn-assess {
	background: #fff !important;
	color: var(--rh-blue) !important;
	border-color: var(--rh-blue) !important;
}

.rh-header-v2 .rh-btn-assess:hover,
.rh-header-v2 .rh-btn-assess:focus-visible,
.rh-prefooter .rh-btn-assess:hover,
.rh-prefooter .rh-btn-assess:focus-visible,
.rh-footer-v2 .rh-btn-assess:hover,
.rh-footer-v2 .rh-btn-assess:focus-visible {
	background: var(--rh-sky) !important;
}

.rh-header-v2 .rh-btn-demo,
.rh-prefooter .rh-btn-demo,
.rh-footer-v2 .rh-btn-demo {
	background: var(--rh-orange) !important;
	color: #fff !important;
	border-color: var(--rh-orange) !important;
}

.rh-header-v2 .rh-btn-demo:hover,
.rh-header-v2 .rh-btn-demo:focus-visible,
.rh-prefooter .rh-btn-demo:hover,
.rh-prefooter .rh-btn-demo:focus-visible,
.rh-footer-v2 .rh-btn-demo:hover,
.rh-footer-v2 .rh-btn-demo:focus-visible {
	filter: brightness(0.95);
}

/* V3 live CTA: brand blue */
.rh-header-v3 .rh-btn-demo {
	background: #0077CD !important;
	border-color: #0077CD !important;
	color: #fff !important;
}

.rh-header-v3 .rh-btn-demo:hover,
.rh-header-v3 .rh-btn-demo:focus-visible {
	background: #0077cd !important;
	border-color: #0077cd !important;
	filter: none;
}

.rh-prefooter .rh-btn-assess-light,
.rh-footer-v2 .rh-btn-assess-light {
	background: transparent !important;
	color: #fff !important;
	border-color: #fff !important;
}

.rh-prefooter .rh-btn-assess-light:hover,
.rh-prefooter .rh-btn-assess-light:focus-visible,
.rh-footer-v2 .rh-btn-assess-light:hover,
.rh-footer-v2 .rh-btn-assess-light:focus-visible {
	background: rgba(255, 255, 255, 0.12) !important;
}

/* ---------- Pre-footer + footer ---------- */
.rh-prefooter {
	background: var(--rh-blue);
	color: #fff;
	padding: 2.25rem 0;
	text-align: center;
}

.rh-prefooter .rh-prefooter-heading {
	margin: 0 0 0.5rem;
	color: #fff;
	font-size: clamp(1.15rem, 2vw, 1.5rem);
	font-weight: 700;
}

.rh-prefooter .rh-prefooter-sub {
	margin: 0 0 1rem;
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.9rem;
}

.rh-prefooter .rh-prefooter-ctas {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem;
}

.rh-prefooter .rh-prefooter-tour {
	margin: 1rem 0 0;
	font-size: 0.9rem;
}

.rh-prefooter .rh-prefooter-tour a {
	color: #fff;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.rh-prefooter .rh-prefooter-tour a:hover,
.rh-prefooter .rh-prefooter-tour a:focus-visible {
	color: #fff;
	opacity: 0.9;
}

.rh-prefooter .rh-btn:focus-visible,
.rh-footer-v2 .rh-btn:focus-visible,
.rh-footer-v2 a:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.rh-footer-v2 {
	background: var(--rh-navy);
	color: #fff;
}

.rh-footer-v2 .rh-footer-columns {
	padding: 2.5rem 0 1.75rem;
}

.rh-footer-v2 .rh-footer-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.5rem;
}

.rh-footer-v2 .rh-footer-col-title {
	margin: 0 0 0.75rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.95);
}

.rh-footer-v2 .rh-footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rh-footer-v2 .rh-footer-col a {
	display: inline-block;
	padding: 0.25rem 0;
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
	font-size: 0.75rem;
	font-weight: 400;
}

.rh-footer-v2 .rh-footer-col a:hover,
.rh-footer-v2 .rh-footer-col a:focus-visible {
	color: #fff;
	text-decoration: underline;
}

.rh-footer-v2 .rh-footer-highlight a {
	font-weight: 500;
	color: rgba(255, 255, 255, 0.92);
}

.rh-footer-v2 .rh-footer-proof {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 1.25rem 0;
}

.rh-footer-v2 .rh-proof-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem 2rem;
}

.rh-footer-v2 .rh-proof-row--wide {
	grid-column: 1 / -1;
}

.rh-footer-v2 .rh-proof-label {
	margin: 0 0 0.4rem;
	font-size: 0.6rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

.rh-footer-v2 .rh-proof-items {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem 0.9rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.rh-footer-v2 .rh-proof-items a,
.rh-footer-v2 .rh-proof-items span {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.72rem;
	font-weight: 400;
	text-decoration: none;
}

.rh-footer-v2 .rh-proof-items a:hover {
	color: #fff;
	text-decoration: underline;
}

.rh-footer-v2 .rh-proof-badges {
	gap: 0.65rem 1.1rem;
}

.rh-footer-v2 .rh-proof-badges--g2 {
	margin-top: 0.75rem;
	gap: 0.55rem 0.75rem;
}

.rh-footer-v2 .rh-proof-badge a,
.rh-footer-v2 .rh-proof-badge .rh-proof-badge-wrap {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.rh-footer-v2 .rh-proof-badge--img a:hover,
.rh-footer-v2 .rh-proof-badge--img a:focus-visible {
	text-decoration: none;
	opacity: 0.92;
}

.rh-footer-v2 .rh-proof-badge-img {
	display: block;
	height: 2.1rem;
	width: auto;
	max-width: 12.5rem;
}

.rh-footer-v2 .rh-proof-badge--tall .rh-proof-badge-img {
	height: 4.25rem;
	max-width: 4.25rem;
}

.rh-footer-v2 .rh-proof-badge--g2 .rh-proof-badge-img {
	height: 4.5rem;
	width: auto;
	max-width: none;
}

.rh-footer-v2 .rh-proof-badge--on-light a,
.rh-footer-v2 .rh-proof-badge--on-light .rh-proof-badge-wrap {
	padding: 0.35rem 0.45rem;
	background: #fff;
	border-radius: 0.35rem;
}

.rh-footer-v2 .rh-proof-badge--on-light .rh-proof-badge-img {
	height: 1.85rem;
}

.rh-footer-v2 .rh-proof-badge:not(.rh-proof-badge--img) .rh-proof-badge-label {
	display: inline-block;
	padding: 0.2rem 0.55rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 0.25rem;
	font-size: 0.68rem;
	color: rgba(255, 255, 255, 0.82);
}

.rh-footer-v2 .rh-proof-badge--placeholder .rh-proof-badge-wrap {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.15rem;
}

.rh-footer-v2 .rh-proof-badge--placeholder .rh-proof-badge-label {
	border-style: dashed;
	opacity: 0.75;
}

.rh-footer-v2 .rh-proof-badge-note {
	font-size: 0.55rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

.rh-footer-v2 .rh-proof-badge:not(.rh-proof-badge--img) a:hover .rh-proof-badge-label {
	border-color: rgba(255, 255, 255, 0.5);
	color: #fff;
}

.rh-footer-v2 .rh-award-chip {
	display: inline-block;
	padding: 0.1rem 0.45rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	font-size: 0.65rem;
}

.rh-footer-v2 .rh-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 1.5rem 0 2rem;
	text-align: left;
}

.rh-footer-v2 .social-links {
	margin-bottom: 0.75rem;
	text-align: left;
}

.rh-footer-v2 .social-links img {
	max-height: 1.05rem;
	width: auto;
	opacity: 0.9;
}

.rh-footer-v2 .rh-footer-iso {
	margin: 0 0 1rem;
	font-size: 0.58rem;
	font-weight: 400;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.5);
	text-align: left;
	max-width: 52rem;
}

.rh-footer-v2 .rh-footer-address {
	margin: 0 0 0.85rem;
	font-size: 0.68rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.72);
	text-align: left;
}

.rh-footer-v2 .rh-footer-address a {
	color: inherit;
}

.rh-footer-v2 .rh-legal-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem 0.9rem;
	list-style: none;
	margin: 0;
	padding: 0;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rh-footer-v2 .rh-legal-links a,
.rh-footer-v2 .rh-legal-links span {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.62rem;
	font-weight: 400;
	text-decoration: none;
}

.rh-footer-v2 .rh-legal-links a:hover {
	color: #fff;
	text-decoration: underline;
}

/* ---------- Mobile (≤ lg / 992) ---------- */
@media (max-width: 991.98px) {
	.rh-header-v2 .rh-utility-bar {
		display: none;
	}

	.rh-header-v2 .rh-nav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.rh-header-v2 .rh-header-ctas--bar {
		display: none;
	}

	.rh-header-v2 .rh-nav-trigger::before,
	.rh-header-v2 .rh-nav-link::before {
		display: none;
	}

	.rh-header-v2 .rh-primary-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		background: #fff;
		border-bottom: 1px solid rgba(0, 34, 68, 0.08);
		box-shadow: 0 16px 24px rgba(0, 34, 68, 0.12);
		max-height: calc(100vh - 3.5rem);
		overflow: auto;
		padding: 0.5rem 1rem 1.1rem;
	}

	.rh-header-v2.is-nav-open .rh-primary-nav {
		display: flex;
	}

	.rh-header-v2 .rh-nav-list {
		flex-direction: column;
		width: 100%;
	}

	.rh-header-v2 .rh-nav-trigger,
	.rh-header-v2 .rh-nav-link {
		width: 100%;
		justify-content: space-between;
		padding: 0.85rem 0.25rem;
		border-bottom: 1px solid rgba(0, 34, 68, 0.08);
	}

	.rh-header-v2 .rh-panel {
		position: static;
		min-width: 0;
		max-width: none;
		width: 100%;
		padding: 0;
		box-shadow: none;
	}

	.rh-header-v2 .rh-panel-list {
		width: 100%;
		max-width: none;
	}

	.rh-header-v2 .rh-panel::before {
		display: none;
	}

	.rh-header-v2 .rh-panel > .rh-panel-links,
	.rh-header-v2 .rh-panel > .rh-mega-cols,
	.rh-header-v2 .rh-panel > .rh-platform-sections {
		border: 0;
		border-radius: 0;
		box-shadow: none;
		padding: 0.25rem 0 0.75rem 0.5rem;
		background: transparent;
		overflow: visible;
	}

	.rh-header-v2 .rh-panel-mega,
	.rh-header-v2 .rh-panel-platform {
		min-width: 0;
		width: 100%;
		max-width: none;
	}

	.rh-header-v2 .rh-mega-cols,
	.rh-header-v2 .rh-platform-sections {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.rh-header-v2 .rh-header-ctas--nav {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin-top: 0.85rem;
	}

	.rh-header-v2 .rh-header-ctas--nav .rh-btn {
		width: 100%;
	}

	.rh-header-v2 .rh-search-form--mobile {
		display: flex;
		width: 100%;
		margin-bottom: 0.35rem;
	}

	.rh-header-v2.is-scrolled .rh-header-ctas--bar {
		display: flex;
	}

	.rh-header-v2.is-scrolled .rh-header-ctas--bar .rh-btn-assess {
		display: none;
	}

	.rh-prefooter {
		padding: 2rem 0;
	}

	.rh-prefooter .rh-prefooter-ctas {
		flex-direction: column;
		align-items: stretch;
	}

	.rh-prefooter .rh-prefooter-ctas .rh-btn {
		width: 100%;
	}

	.rh-footer-v2 .rh-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.5rem 1.25rem;
	}

	.rh-footer-v2 .rh-proof-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.rh-footer-v2 .rh-legal-links {
		gap: 0.45rem 0.85rem;
	}
}

@media (max-width: 575.98px) {
	.rh-footer-v2 .rh-footer-grid {
		grid-template-columns: 1fr;
	}
}
