.nav-dark .nav-panel-resources .nav-sub-card {
	color: #C5D6FF;
}

.nav-dark .nav-panel-resources .nav-sub-card .hs-form__ph-input {
	color: #fff;
}

.nav-dark .nav-panel-resources .nav-sub-card .hs-form__ph-label {
	opacity: 1;
}

.ct-body .ct-proof {
	min-width: 0;
}

.ct-logos,
.ct-logos-rail {
	min-width: 0;
	max-width: 100%;
}

.ct-logos-rail {
	position: relative;
	overflow: hidden;

	mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.ct-logos .ct-logos-track {
	--marquee-gap: 26px;
	display: flex;
	width: max-content;
	gap: 26px;
	align-items: center;

animation: ct-logos-marquee 60s linear infinite;
}

.ct-logos .ct-logos-track .ct-logo-cell {
	flex: 0 0 auto;
	width: auto;
	padding: 0 14px;
	min-width: 0;
}

.ct-logos-rail:hover .ct-logos-track,
.ct-logos-rail:focus-within .ct-logos-track {
	animation-play-state: paused;
}

@keyframes ct-logos-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-50% - var(--marquee-gap, 0px) / 2));
	}
}

@media (prefers-reduced-motion: reduce) {
	.ct-logos-rail {
		overflow: visible;
		mask-image: none;
		-webkit-mask-image: none;
	}

	.ct-logos .ct-logos-track {
		animation: none;
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 18px 22px;
		width: auto;
	}

	.ct-logos .ct-logos-track .ct-logo-cell {
		flex: 0 0 auto;
		width: auto;
	}

	.ct-logos .ct-logos-track .ct-logo-cell[aria-hidden="true"] {
		display: none;
	}
}

.nav-panel:has(> .nav-panel-cta-block:only-child) {
  justify-content: center;
}

.nav-panel-resources .nav-sus-rejilla {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 12px;
}

.nav-sus-card {

	min-width: 0;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 8px;
	text-decoration: none;
	transition: border-color .18s ease, background-color .18s ease;
}

.nav-dark .nav-sus-card {
	background: rgba(7, 7, 99, .35);
	border: 1px solid rgba(197, 214, 255, .1);
}
.nav-light .nav-sus-card {
	background: #fff;
	border: 1px solid rgba(7, 7, 99, .08);
}
.nav-dark .nav-sus-card:hover {
	background: rgba(7, 7, 99, .55);
	border-color: rgba(197, 214, 255, .26);
}
.nav-light .nav-sus-card:hover {
	background: #fff;
	border-color: rgba(7, 7, 99, .2);
}
.nav-sus-card:focus-visible {
	outline: 2px solid #C5D6FF;
	outline-offset: 2px;
}

.nav-sus-texto {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.nav-sus-title {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -.005em;
	line-height: 1.3;
}
.nav-dark .nav-sus-title { color: #fff; }
.nav-light .nav-sus-title { color: #070763; }

.nav-sus-body {
	font-size: 12.5px;
	line-height: 1.45;
}
.nav-dark .nav-sus-body { color: rgba(197, 214, 255, .72); }
.nav-light .nav-sus-body { color: rgba(7, 7, 99, .66); }

.nav-sus-flecha {
	flex: 0 0 auto;
	margin-left: auto;
	align-self: center;
	font-size: 15px;
	line-height: 1;
	transform: translateX(0);
	transition: transform .18s ease;
}
.nav-dark .nav-sus-flecha { color: rgba(197, 214, 255, .55); }
.nav-light .nav-sus-flecha { color: rgba(7, 7, 99, .45); }
.nav-sus-card:hover .nav-sus-flecha { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
	.nav-sus-card,
	.nav-sus-flecha { transition: none; }
	.nav-sus-card:hover .nav-sus-flecha { transform: none; }
}

@media (max-width: 1180px) {
	.nav-panel-resources .nav-sus-rejilla { grid-template-columns: 1fr; }
}

.nav-panel-resources:has(> .nav-sus-rejilla) {
	justify-content: center;
}
