/*
 * Plugin-managed public home page.
 * All rules are scoped to the Tuserco home surface.
 */

body.tuserco-home-canvas {
	margin: 0;
	background: #f5f8fb;
	color: #10264f;
}

.tuserco-home-canvas .tuserco-home-template-shell,
.tuserco-home-canvas .tuserco-home {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

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

.tuserco-home {
	--tuserco-home-blue: #0da0e4;
	--tuserco-home-blue-dark: #087fba;
	--tuserco-home-navy: #10264f;
	--tuserco-home-green: #168767;
	--tuserco-home-yellow: #f5b700;
	--tuserco-home-ink: #263c55;
	--tuserco-home-muted: #617386;
	--tuserco-home-line: #dbe5ec;
	--tuserco-home-surface: #ffffff;
	width: 100%;
	overflow: clip;
	background: #f5f8fb;
	color: var(--tuserco-home-ink);
	font-family: inherit;
	line-height: 1.55;
}

.tuserco-home h1,
.tuserco-home h2,
.tuserco-home h3 {
	text-wrap: balance;
}

.tuserco-home p {
	text-wrap: pretty;
}

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

.tuserco-home a {
	color: inherit;
	text-decoration: none;
}

.tuserco-home-container {
	width: min(1280px, calc(100% - 48px));
	margin-right: auto;
	margin-left: auto;
}

.tuserco-home-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(590px, 72vh, 760px);
	overflow: hidden;
	background: #0b3150;
	color: #fff;
}

.tuserco-home-hero-media,
.tuserco-home-hero-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.tuserco-home-hero-media {
	object-fit: cover;
	object-position: center;
}

.tuserco-home-hero-overlay {
	background:
		linear-gradient(90deg, rgba(4, 22, 44, .83) 0%, rgba(4, 22, 44, .61) 48%, rgba(4, 22, 44, .28) 100%),
		linear-gradient(180deg, rgba(4, 22, 44, .08) 45%, rgba(4, 22, 44, .42) 100%);
}

.tuserco-home-hero-content {
	position: relative;
	z-index: 1;
	padding-top: 110px;
	padding-bottom: 110px;
}

.tuserco-home-eyebrow {
	margin: 0 0 14px;
	color: var(--tuserco-home-blue);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.3;
	text-transform: uppercase;
}

.tuserco-home-hero .tuserco-home-eyebrow {
	color: #7dd7ff;
}

.tuserco-home-hero h1 {
	max-width: 760px;
	margin: 0;
	color: #fff;
	font-size: clamp(48px, 6vw, 78px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	text-shadow: none;
}

.tuserco-home-hero-lead {
	max-width: 660px;
	margin: 24px 0 0;
	color: #edf8fd;
	font-size: 21px;
	line-height: 1.55;
}

.tuserco-home-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.tuserco-home-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 6px;
	font-size: 15px;
	font-weight: 900;
	line-height: 1.2;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.tuserco-home-button:hover,
.tuserco-home-button:focus {
	transform: translateY(-2px);
}

.tuserco-home .tuserco-home-button.tuserco-home-button-primary {
	background: var(--tuserco-home-yellow);
	color: #10264f;
}

.tuserco-home .tuserco-home-button.tuserco-home-button-primary:hover,
.tuserco-home .tuserco-home-button.tuserco-home-button-primary:focus {
	background: #ffd24a;
	color: #10264f;
}

.tuserco-home-button-light {
	border-color: rgba(255, 255, 255, 0.72);
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.tuserco-home-button-light:hover,
.tuserco-home-button-light:focus {
	background: #fff;
	color: var(--tuserco-home-navy);
}

.tuserco-home-facts {
	border-bottom: 1px solid var(--tuserco-home-line);
	background: #fff;
}

.tuserco-home-facts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	padding-top: 0;
	padding-bottom: 0;
}

.tuserco-home-facts-grid > div {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 106px;
	padding: 24px 34px;
	border-right: 1px solid var(--tuserco-home-line);
}

.tuserco-home-facts-grid > div:first-child {
	padding-left: 0;
}

.tuserco-home-facts-grid > div:last-child {
	border-right: 0;
}

.tuserco-home-facts strong {
	color: var(--tuserco-home-blue-dark);
	font-size: 38px;
	font-weight: 900;
	line-height: 1;
}

.tuserco-home-facts span {
	max-width: 150px;
	color: var(--tuserco-home-ink);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
}

.tuserco-home-section {
	padding: clamp(68px, 7vw, 96px) 0;
}

.tuserco-home-section-groups,
.tuserco-home-section-offers {
	background: #f5f8fb;
}

.tuserco-home-section-departures {
	border-top: 1px solid var(--tuserco-home-line);
	border-bottom: 1px solid var(--tuserco-home-line);
	background: #fff;
}

.tuserco-home-intro {
	background: #fff;
}

.tuserco-home-intro-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	align-items: start;
	gap: 80px;
}

.tuserco-home-intro h2,
.tuserco-home-faq h2 {
	margin: 0;
	color: var(--tuserco-home-navy);
	font-size: 42px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.08;
}

.tuserco-home-intro-copy > p {
	margin: 0;
	color: var(--tuserco-home-ink);
	font-size: 18px;
	line-height: 1.75;
}

.tuserco-home-intro-copy ul {
	display: grid;
	gap: 12px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.tuserco-home-intro-copy li {
	position: relative;
	padding-left: 28px;
	color: var(--tuserco-home-muted);
	font-weight: 700;
}

.tuserco-home-intro-copy li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--tuserco-home-green);
	font-weight: 900;
}

.tuserco-home-faq {
	border-top: 1px solid var(--tuserco-home-line);
	background: #fff;
}

.tuserco-home-faq-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
	align-items: start;
	gap: 70px;
}

.tuserco-home-faq header > p:last-child {
	margin: 18px 0 0;
	color: var(--tuserco-home-muted);
}

.tuserco-home-faq-list {
	display: grid;
	gap: 10px;
}

.tuserco-home-faq-list details {
	border: 1px solid var(--tuserco-home-line);
	border-radius: 6px;
	background: #fff;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.tuserco-home-faq-list details[open] {
	border-color: #aadbec;
	box-shadow: 0 14px 34px -30px rgba(16, 38, 79, .65);
}

.tuserco-home-faq-list summary {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	align-items: center;
	padding: 18px 20px;
	cursor: pointer;
	color: var(--tuserco-home-navy);
	font-weight: 900;
	list-style: none;
}

.tuserco-home-faq-list summary::-webkit-details-marker {
	display: none;
}

.tuserco-home-faq-list summary::after {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border: 1px solid #b8ddeb;
	border-radius: 50%;
	color: var(--tuserco-home-blue-dark);
	content: "+";
	font-size: 19px;
	line-height: 1;
}

.tuserco-home-faq-list details[open] summary::after {
	content: "−";
}

.tuserco-home-faq-list p {
	margin: 0;
	padding: 0 20px 20px;
	color: var(--tuserco-home-muted);
}

.tuserco-home-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
	align-items: end;
	gap: 40px;
	margin-bottom: 34px;
}

.tuserco-home-section-heading h2,
.tuserco-home-cta h2 {
	margin: 0;
	color: var(--tuserco-home-navy);
	font-size: 42px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.08;
}

.tuserco-home-section-heading > p {
	max-width: 520px;
	margin: 0;
	color: var(--tuserco-home-muted);
	font-size: 16px;
	line-height: 1.65;
}

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

.tuserco-home-offer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 400px));
	gap: 24px;
	justify-content: start;
}

.tuserco-home-group-card,
.tuserco-home-offer-card {
	min-width: 0;
	overflow: hidden;
	border: 0;
	border-radius: 8px;
	background: transparent;
	box-shadow: none;
	transition: transform 180ms ease;
}

.tuserco-home-group-card:hover,
.tuserco-home-offer-card:hover,
.tuserco-home-group-card:focus-within,
.tuserco-home-offer-card:focus-within {
	transform: translateY(-4px);
}

.tuserco-home-group-card {
	position: relative;
	min-height: 390px;
	background: var(--tuserco-home-navy);
}

.tuserco-home-group-card::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(5, 24, 48, .04) 18%, rgba(5, 24, 48, .46) 58%, rgba(5, 24, 48, .96) 100%);
	content: "";
	pointer-events: none;
}

.tuserco-home-group-media,
.tuserco-home-offer-media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #dcecf3;
}

.tuserco-home-group-media {
	position: absolute;
	inset: 0;
	aspect-ratio: auto;
}

.tuserco-home-offer-media {
	aspect-ratio: 16 / 10;
}

.tuserco-home-group-media img,
.tuserco-home-offer-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}

.tuserco-home-group-card:hover img,
.tuserco-home-offer-card:hover img {
	transform: scale(1.025);
}

.tuserco-home-group-media > span,
.tuserco-home-offer-media > span:not(.tuserco-home-offer-status) {
	color: #fff;
	font-size: 54px;
	font-weight: 900;
}

.tuserco-home-group-body,
.tuserco-home-offer-body {
	display: flex;
	flex-direction: column;
	min-height: 218px;
	padding: 24px;
}

.tuserco-home-group-body {
	position: relative;
	z-index: 2;
	justify-content: flex-end;
	min-height: 390px;
	padding: 30px;
	color: #fff;
}

.tuserco-home-card-kicker {
	margin: 0 0 8px;
	color: var(--tuserco-home-blue-dark);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.3;
	text-transform: uppercase;
}

.tuserco-home-group-body h3,
.tuserco-home-offer-body h3 {
	margin: 0;
	color: var(--tuserco-home-navy);
	font-size: 23px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.18;
}

.tuserco-home-group-body h3 {
	color: #fff;
	font-size: 27px;
}

.tuserco-home-group-body p {
	margin: 13px 0 20px;
	color: #dcebf4;
	font-size: 14px;
	line-height: 1.65;
}

.tuserco-home-group-body .tuserco-home-card-kicker,
.tuserco-home-group-body > a {
	color: #85dcff;
}

.tuserco-home-group-body > a,
.tuserco-home-card-action,
.tuserco-home-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	margin-top: auto;
	color: var(--tuserco-home-blue-dark);
	font-size: 14px;
	font-weight: 900;
}

.tuserco-home-text-link {
	justify-self: end;
	margin: 0;
}

.tuserco-home-departure-list {
	display: grid;
	gap: 0;
	border-top: 2px solid var(--tuserco-home-navy);
}

.tuserco-home-departure-row {
	display: grid;
	grid-template-columns: 190px minmax(220px, 1fr) auto 120px 120px;
	align-items: center;
	gap: 22px;
	min-width: 0;
	padding: 22px 4px;
	border: 0;
	border-bottom: 1px solid var(--tuserco-home-line);
	border-radius: 0;
	background: transparent;
	transition: background 160ms ease;
}

.tuserco-home-departure-row:hover {
	background: #f4fafc;
}

.tuserco-home-departure-row time {
	color: var(--tuserco-home-navy);
	font-size: 15px;
	font-weight: 900;
	line-height: 1.35;
}

.tuserco-home-departure-row h3 {
	margin: 0;
	color: var(--tuserco-home-navy);
	font-size: 18px;
	font-weight: 900;
	line-height: 1.25;
}

.tuserco-home-departure-row p {
	margin: 5px 0 0;
	color: var(--tuserco-home-muted);
	font-size: 13px;
	line-height: 1.45;
}

.tuserco-home-status,
.tuserco-home-offer-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: max-content;
	max-width: 100%;
	border-radius: 999px;
	background: #e2f5ec;
	color: #087052;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
}

.tuserco-home-status {
	padding: 7px 10px;
}

.tuserco-home-offer-status {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 7px 11px;
}

.tuserco-home-departure-row > strong {
	color: var(--tuserco-home-blue-dark);
	font-size: 17px;
	font-weight: 900;
	text-align: right;
}

.tuserco-home-row-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 10px 14px;
	border: 1px solid #9bcfe4;
	border-radius: 5px;
	color: var(--tuserco-home-blue-dark);
	font-size: 13px;
	font-weight: 900;
}

.tuserco-home-offer-meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	margin: 20px 0;
	padding: 16px 0;
	border-top: 1px solid var(--tuserco-home-line);
	border-bottom: 1px solid var(--tuserco-home-line);
}

.tuserco-home-offer-meta > span {
	display: grid;
	gap: 4px;
	padding: 0 14px;
	border-right: 1px solid var(--tuserco-home-line);
}

.tuserco-home-offer-meta > span:first-child {
	padding-left: 0;
}

.tuserco-home-offer-meta > span:last-child {
	border-right: 0;
}

.tuserco-home-offer-meta small {
	color: var(--tuserco-home-muted);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}

.tuserco-home-offer-meta strong {
	color: var(--tuserco-home-navy);
	font-size: 15px;
	font-weight: 900;
}

.tuserco-home-cta {
	padding: 80px 0;
	background: var(--tuserco-home-navy);
	color: #fff;
}

.tuserco-home-cta .tuserco-home-container {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 48px;
}

.tuserco-home-cta h2 {
	color: #fff;
}

.tuserco-home-cta p:not(.tuserco-home-eyebrow) {
	margin: 14px 0 0;
	color: #c8d9e8;
	font-size: 16px;
}

.tuserco-home-cta .tuserco-home-actions {
	justify-content: flex-end;
	margin: 0;
}

@media (max-width: 1024px) {
	.tuserco-home-hero {
		min-height: 570px;
	}

	.tuserco-home-hero h1 {
		font-size: clamp(46px, 7vw, 60px);
	}

	.tuserco-home-group-grid,
	.tuserco-home-offer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tuserco-home-offer-grid {
		grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 400px));
	}

	.tuserco-home-departure-row {
		grid-template-columns: 160px minmax(220px, 1fr) auto 110px;
	}

	.tuserco-home-departure-row .tuserco-home-row-action {
		grid-column: 2 / -1;
		justify-self: start;
	}
}

@media (max-width: 820px) {
	.tuserco-home-intro-grid,
	.tuserco-home-faq-layout {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.tuserco-home-container {
		width: min(100% - 32px, 1280px);
	}

	.tuserco-home-hero {
		min-height: 520px;
	}

	.tuserco-home-hero-content {
		padding-top: 84px;
		padding-bottom: 84px;
	}

	.tuserco-home-hero h1 {
		font-size: clamp(38px, 11vw, 48px);
	}

	.tuserco-home-hero-lead {
		font-size: 18px;
	}

	.tuserco-home-facts-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.tuserco-home-facts-grid > div,
	.tuserco-home-facts-grid > div:first-child {
		align-items: flex-start;
		flex-direction: column;
		gap: 6px;
		min-height: 96px;
		padding: 18px 12px;
		border-right: 1px solid var(--tuserco-home-line);
		border-bottom: 0;
	}

	.tuserco-home-facts-grid > div:last-child {
		border-right: 0;
	}

	.tuserco-home-facts strong {
		font-size: 30px;
	}

	.tuserco-home-section {
		padding: 64px 0;
	}

	.tuserco-home-section-heading {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 28px;
	}

	.tuserco-home-section-heading h2,
	.tuserco-home-cta h2 {
		font-size: 34px;
	}

	.tuserco-home-text-link {
		justify-self: start;
	}

	.tuserco-home-departure-row {
		grid-template-columns: 1fr auto;
		gap: 12px 18px;
		padding: 18px;
	}

	.tuserco-home-departure-row time,
	.tuserco-home-departure-row > div {
		grid-column: 1 / -1;
	}

	.tuserco-home-departure-row .tuserco-home-row-action {
		grid-column: 1 / -1;
	}

	.tuserco-home-cta .tuserco-home-container {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.tuserco-home-cta .tuserco-home-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 560px) {
	.tuserco-home-hero {
		min-height: 430px;
	}

	.tuserco-home-hero-content {
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.tuserco-home-hero h1 {
		font-size: 36px;
		line-height: 1.04;
	}

	.tuserco-home-hero-lead {
		margin-top: 16px;
		font-size: 16px;
		line-height: 1.5;
	}

	.tuserco-home-hero-overlay {
		background: linear-gradient(180deg, rgba(4, 22, 44, .44), rgba(4, 22, 44, .88));
	}

	.tuserco-home-actions,
	.tuserco-home-button {
		width: 100%;
	}

	.tuserco-home-actions {
		gap: 9px;
		margin-top: 22px;
	}

	.tuserco-home-button {
		min-height: 48px;
	}

	.tuserco-home-facts strong {
		font-size: 24px;
	}

	.tuserco-home-facts span {
		font-size: 12px;
		line-height: 1.3;
	}

	.tuserco-home-facts-grid > div,
	.tuserco-home-facts-grid > div:first-child {
		justify-content: center;
		min-height: 86px;
		padding: 15px 9px;
	}

	.tuserco-home-group-grid,
	.tuserco-home-offer-grid {
		grid-template-columns: 1fr;
	}

	.tuserco-home-group-body,
	.tuserco-home-offer-body {
		min-height: 0;
		padding: 18px 4px 26px;
	}

	.tuserco-home-group-card,
	.tuserco-home-group-body {
		min-height: 340px;
	}

	.tuserco-home-group-body {
		padding: 24px;
	}

	.tuserco-home-group-card,
	.tuserco-home-offer-card {
		border: 0;
		border-bottom: 1px solid var(--tuserco-home-line);
		border-radius: 0;
		box-shadow: none;
	}

	.tuserco-home-offer-media {
		border-radius: 7px;
	}

	.tuserco-home-section-heading h2,
	.tuserco-home-cta h2 {
		font-size: 30px;
	}
}

/* Mobile editorial layout: immersive sections and fewer framed surfaces. */
@media (max-width: 560px) {
	.tuserco-home-container {
		width: calc(100% - 36px);
	}

	.tuserco-home-hero {
		align-items: flex-end;
		min-height: min(610px, calc(100svh - 64px));
	}

	.tuserco-home-hero-media {
		object-position: 58% center;
	}

	.tuserco-home-hero-overlay {
		background: linear-gradient(180deg, rgba(4, 22, 44, .16) 12%, rgba(4, 22, 44, .58) 54%, rgba(4, 22, 44, .96) 100%);
	}

	.tuserco-home-hero-content {
		padding-top: 112px;
		padding-bottom: 38px;
	}

	.tuserco-home-hero h1 {
		max-width: 340px;
		font-size: clamp(38px, 11vw, 48px);
	}

	.tuserco-home-hero-lead {
		max-width: 330px;
	}

	.tuserco-home-hero .tuserco-home-actions {
		display: block;
	}

	.tuserco-home-hero .tuserco-home-button-primary {
		width: calc(100% - 72px);
	}

	.tuserco-home-hero .tuserco-home-button-light {
		display: none;
	}

	.tuserco-home-section {
		padding: 54px 0;
	}

	.tuserco-home-intro h2,
	.tuserco-home-faq h2,
	.tuserco-home-section-heading h2,
	.tuserco-home-cta h2 {
		font-size: 30px;
	}

	.tuserco-home-intro-copy > p {
		font-size: 16px;
		line-height: 1.7;
	}

	.tuserco-home-group-grid,
	.tuserco-home-offer-grid {
		display: flex;
		gap: 14px;
		margin-right: -18px;
		padding-right: 18px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.tuserco-home-group-grid::-webkit-scrollbar,
	.tuserco-home-offer-grid::-webkit-scrollbar {
		display: none;
	}

	.tuserco-home-group-card,
	.tuserco-home-offer-card {
		flex: 0 0 min(82vw, 340px);
		scroll-snap-align: start;
	}

	.tuserco-home-group-card,
	.tuserco-home-group-body {
		min-height: 318px;
	}

	.tuserco-home-group-card {
		border-radius: 7px;
	}

	.tuserco-home-group-body {
		padding: 24px;
	}

	.tuserco-home-offer-card {
		border-bottom: 0;
	}

	.tuserco-home-offer-body {
		padding: 18px 2px 24px;
	}

	.tuserco-home-departure-list {
		border-top-width: 1px;
	}

	.tuserco-home-departure-row {
		padding: 20px 0;
		background: transparent;
	}

	.tuserco-home-row-action {
		justify-self: start;
		min-height: 44px;
		padding-right: 0;
		padding-left: 0;
		border: 0;
		background: transparent;
	}

	.tuserco-home-faq-list {
		gap: 0;
		border-top: 1px solid var(--tuserco-home-line);
	}

	.tuserco-home-faq-list details,
	.tuserco-home-faq-list details[open] {
		border: 0;
		border-bottom: 1px solid var(--tuserco-home-line);
		border-radius: 0;
		box-shadow: none;
	}

	.tuserco-home-faq-list summary {
		padding: 18px 0;
	}

	.tuserco-home-faq-list p {
		padding: 0 0 20px;
	}

	.tuserco-home-cta {
		padding: 58px 0 calc(104px + env(safe-area-inset-bottom, 0px));
	}
}

@media (prefers-reduced-motion: reduce) {
	.tuserco-home *,
	.tuserco-home *::before,
	.tuserco-home *::after {
		scroll-behavior: auto;
		transition-duration: 0.01ms;
	}
}

/*
 * Home collections, 2026 refresh.
 * A single collection becomes an editorial feature instead of occupying one
 * small grid track and leaving the rest of the section empty.
 */
.tuserco-home .tuserco-home-section-groups {
	background: #fff;
}

.tuserco-home .tuserco-home-section-groups .tuserco-home-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
	margin-bottom: 42px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--tuserco-home-line);
}

.tuserco-home .tuserco-home-section-groups .tuserco-home-section-heading > div {
	max-width: 680px;
}

.tuserco-home .tuserco-home-section-groups .tuserco-home-section-heading > p {
	max-width: 440px;
}

.tuserco-home .tuserco-home-group-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 310px), 1fr));
	gap: 28px;
}

.tuserco-home .tuserco-home-group-card:only-child {
	display: grid;
	grid-template-columns: minmax(0, 1.42fr) minmax(340px, .58fr);
	grid-column: 1 / -1;
	min-height: 430px;
	overflow: hidden;
	border-top: 1px solid var(--tuserco-home-line);
	border-bottom: 1px solid var(--tuserco-home-line);
	border-radius: 0;
	background: #fff;
	color: var(--tuserco-home-navy);
}

.tuserco-home .tuserco-home-group-card:only-child:hover,
.tuserco-home .tuserco-home-group-card:only-child:focus-within {
	transform: none;
}

.tuserco-home .tuserco-home-group-card:only-child::after {
	display: none;
}

.tuserco-home .tuserco-home-group-card:only-child .tuserco-home-group-media {
	position: relative;
	inset: auto;
	min-height: 430px;
	background: #dcecf3;
}

.tuserco-home .tuserco-home-group-card:only-child .tuserco-home-group-body {
	justify-content: center;
	min-height: 430px;
	padding: clamp(42px, 6vw, 76px);
	background: #f5f9fc;
	color: var(--tuserco-home-navy);
}

.tuserco-home .tuserco-home-group-card:only-child .tuserco-home-group-body::before {
	width: 52px;
	height: 3px;
	margin-bottom: 24px;
	background: var(--tuserco-home-blue);
	content: "";
}

.tuserco-home .tuserco-home-group-card:only-child .tuserco-home-group-body h3 {
	color: var(--tuserco-home-navy);
	font-size: clamp(32px, 4vw, 50px);
	line-height: 1.02;
}

.tuserco-home .tuserco-home-group-card:only-child .tuserco-home-group-body p {
	max-width: 440px;
	margin: 20px 0 28px;
	color: var(--tuserco-home-muted);
	font-size: 16px;
	line-height: 1.75;
}

.tuserco-home .tuserco-home-group-card:only-child .tuserco-home-group-body > a {
	align-self: flex-start;
	min-height: 46px;
	margin-top: 0;
	padding-bottom: 3px;
	border-bottom: 2px solid currentColor;
	color: var(--tuserco-home-blue-dark);
}

@media (max-width: 820px) {
	.tuserco-home .tuserco-home-section-groups .tuserco-home-section-heading {
		display: grid;
		gap: 14px;
		margin-bottom: 30px;
		padding-bottom: 22px;
	}

	.tuserco-home .tuserco-home-group-card:only-child {
		grid-template-columns: 1fr;
	}

	.tuserco-home .tuserco-home-group-card:only-child .tuserco-home-group-media {
		min-height: 340px;
		aspect-ratio: 16 / 10;
	}

	.tuserco-home .tuserco-home-group-card:only-child .tuserco-home-group-body {
		min-height: 0;
		padding: 38px 34px 44px;
	}
}

@media (max-width: 560px) {
	.tuserco-home .tuserco-home-section-groups {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.tuserco-home .tuserco-home-section-groups .tuserco-home-section-heading {
		margin-bottom: 24px;
	}

	.tuserco-home .tuserco-home-group-grid {
		display: grid;
		margin-right: 0;
		padding-right: 0;
		overflow: visible;
	}

	.tuserco-home .tuserco-home-group-card:only-child {
		display: grid;
		flex-basis: auto;
		min-height: 0;
		border-top: 0;
	}

	.tuserco-home .tuserco-home-group-card:only-child .tuserco-home-group-media {
		min-height: 250px;
		border-radius: 7px;
	}

	.tuserco-home .tuserco-home-group-card:only-child .tuserco-home-group-body {
		padding: 28px 2px 32px;
		background: transparent;
	}

	.tuserco-home .tuserco-home-group-card:only-child .tuserco-home-group-body::before {
		margin-bottom: 18px;
	}

	.tuserco-home .tuserco-home-group-card:only-child .tuserco-home-group-body h3 {
		font-size: 32px;
	}
}

/* Editorial calendar gateway shown before the category carousel. */
.tuserco-home .tuserco-home-calendar-feature {
	background: #fff;
}

.tuserco-home .tuserco-home-calendar-feature-layout {
	position: relative;
	display: flex;
	min-height: clamp(460px, 47vw, 620px);
	overflow: hidden;
	border-radius: 6px;
	background: #092749;
}

.tuserco-home .tuserco-home-calendar-feature-media {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background: #092749;
}

.tuserco-home .tuserco-home-calendar-feature-media::after {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(4, 24, 48, .92) 0%, rgba(4, 24, 48, .74) 34%, rgba(4, 24, 48, .18) 68%, rgba(4, 24, 48, .08) 100%),
		linear-gradient(0deg, rgba(4, 24, 48, .42), transparent 48%);
	content: "";
	pointer-events: none;
}

.tuserco-home .tuserco-home-calendar-feature-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 58% center;
}

.tuserco-home .tuserco-home-calendar-feature-copy {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: min(610px, 58%);
	padding: clamp(46px, 6vw, 86px);
}

.tuserco-home .tuserco-home-calendar-feature-copy::before {
	display: none;
}

.tuserco-home .tuserco-home-calendar-feature-copy h2 {
	max-width: 600px;
	margin: 0;
	color: #fff;
	font-size: clamp(40px, 4.6vw, 66px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	text-wrap: balance;
}

.tuserco-home .tuserco-home-calendar-feature-copy .tuserco-home-eyebrow {
	margin-bottom: 18px;
	color: #7fd8ff;
}

.tuserco-home .tuserco-home-calendar-feature-copy > p:not(.tuserco-home-eyebrow) {
	max-width: 510px;
	margin: 24px 0 34px;
	color: rgba(255, 255, 255, .88);
	font-size: 18px;
	line-height: 1.65;
}

.tuserco-home .tuserco-home-calendar-feature-copy .tuserco-home-button {
	display: inline-flex;
	gap: 12px;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding-inline: 24px;
	border: 1px solid rgba(255, 255, 255, .26);
	background: #fff;
	color: #0a2d58;
	box-shadow: 0 16px 30px rgba(3, 17, 35, .22);
}

.tuserco-home .tuserco-home-calendar-feature-copy .tuserco-home-button:hover,
.tuserco-home .tuserco-home-calendar-feature-copy .tuserco-home-button:focus-visible {
	background: #ffbf00;
	color: #082345;
	transform: translateY(-2px);
}

@media (max-width: 900px) {
	.tuserco-home .tuserco-home-calendar-feature-layout {
		min-height: 520px;
	}

	.tuserco-home .tuserco-home-calendar-feature-copy {
		width: min(680px, 78%);
		padding: 52px 46px;
	}
}

@media (max-width: 560px) {
	.tuserco-home .tuserco-home-calendar-feature {
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.tuserco-home .tuserco-home-calendar-feature-layout {
		min-height: 510px;
		border-radius: 4px;
	}

	.tuserco-home .tuserco-home-calendar-feature-media {
		min-height: 0;
		border-radius: 0;
	}

	.tuserco-home .tuserco-home-calendar-feature-media::after {
		background:
			linear-gradient(0deg, rgba(4, 24, 48, .96) 0%, rgba(4, 24, 48, .78) 48%, rgba(4, 24, 48, .12) 100%);
	}

	.tuserco-home .tuserco-home-calendar-feature-media img {
		object-position: 58% center;
	}

	.tuserco-home .tuserco-home-calendar-feature-copy {
		justify-content: flex-end;
		width: 100%;
		padding: 32px 26px;
	}

	.tuserco-home .tuserco-home-calendar-feature-copy h2 {
		font-size: 36px;
	}

	.tuserco-home .tuserco-home-calendar-feature-copy > p:not(.tuserco-home-eyebrow) {
		margin: 18px 0 24px;
		font-size: 16px;
	}

	.tuserco-home .tuserco-home-calendar-feature-copy .tuserco-home-button {
		width: 100%;
	}
}

/* Public category carousel. */
.tuserco-home .tuserco-home-section-categories {
	overflow: hidden;
	background: #0d294d;
	color: #fff;
}

.tuserco-home .tuserco-home-category-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 34px;
}

.tuserco-home .tuserco-home-category-heading h2 {
	max-width: 720px;
	margin: 0;
	color: #fff;
	font-size: clamp(34px, 4vw, 50px);
	font-weight: 900;
	line-height: 1.06;
}

.tuserco-home .tuserco-home-category-heading .tuserco-home-eyebrow {
	color: #7dd7ff;
}

.tuserco-home .tuserco-home-carousel-controls {
	display: flex;
	gap: 9px;
	flex: 0 0 auto;
}

.tuserco-home .tuserco-home-carousel-controls button {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .38);
	border-radius: 50%;
	background: transparent;
	color: #fff;
	font: inherit;
	font-size: 20px;
	cursor: pointer;
	transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.tuserco-home .tuserco-home-carousel-controls button:hover,
.tuserco-home .tuserco-home-carousel-controls button:focus-visible {
	border-color: #7dd7ff;
	background: #fff;
	color: var(--tuserco-home-navy);
	outline: none;
}

.tuserco-home .tuserco-home-carousel-controls button:disabled {
	opacity: .32;
	cursor: default;
}

.tuserco-home .tuserco-home-category-viewport {
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
}

.tuserco-home .tuserco-home-section-categories.is-autoplaying .tuserco-home-category-viewport {
	scroll-behavior: auto;
	scroll-snap-type: none;
}

.tuserco-home .tuserco-home-category-viewport::-webkit-scrollbar {
	display: none;
}

.tuserco-home .tuserco-home-category-viewport:focus-visible {
	outline: 2px solid #7dd7ff;
	outline-offset: 6px;
}

.tuserco-home .tuserco-home-category-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(300px, 360px);
	gap: 22px;
	width: max-content;
	min-width: 100%;
}

.tuserco-home .tuserco-home-category-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding-bottom: 2px;
	scroll-snap-align: start;
	border: 0;
	background: transparent;
}

.tuserco-home .tuserco-home-category-media {
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border-radius: 7px;
	background: #17436d;
}

.tuserco-home .tuserco-home-category-media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(3, 19, 38, .28));
	content: "";
	pointer-events: none;
}

.tuserco-home .tuserco-home-category-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
}

.tuserco-home .tuserco-home-category-card:hover .tuserco-home-category-media img,
.tuserco-home .tuserco-home-category-card:focus-within .tuserco-home-category-media img {
	transform: scale(1.025);
}

.tuserco-home .tuserco-home-category-media > span {
	color: #fff;
	font-size: 54px;
	font-weight: 900;
}

.tuserco-home .tuserco-home-card-media-shell {
	position: relative;
	min-width: 0;
	overflow: hidden;
	border-radius: 7px;
	background: #17436d;
	isolation: isolate;
}

.tuserco-home .tuserco-home-card-media-slide {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 520ms ease;
}

.tuserco-home .tuserco-home-card-media-slide.is-active {
	z-index: 1;
	opacity: 1;
	pointer-events: auto;
}

.tuserco-home .tuserco-home-card-media-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tuserco-home .tuserco-home-card-media-placeholder {
	color: #fff;
	text-decoration: none;
}

.tuserco-home .tuserco-home-card-media-placeholder span {
	color: inherit;
	font-size: 54px;
	font-weight: 900;
}

.tuserco-home .tuserco-home-card-carousel-controls {
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 5px 7px;
	border: 1px solid rgba(255, 255, 255, .52);
	border-radius: 999px;
	background: rgba(5, 24, 48, .78);
	color: #fff;
	box-shadow: 0 8px 22px rgba(5, 24, 48, .18);
	backdrop-filter: blur(7px);
}

.tuserco-home .tuserco-home-card-carousel-controls button {
	display: grid;
	width: 28px;
	height: 28px;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: inherit;
	font: inherit;
	cursor: pointer;
}

.tuserco-home .tuserco-home-card-carousel-controls button:hover,
.tuserco-home .tuserco-home-card-carousel-controls button:focus-visible {
	background: #fff;
	color: #102f56;
}

.tuserco-home .tuserco-home-card-carousel-controls button:focus-visible {
	outline: 2px solid #7dd7ff;
	outline-offset: 2px;
}

.tuserco-home .tuserco-home-card-carousel-controls > span {
	min-width: 36px;
	color: inherit;
	font-size: 11px;
	font-weight: 800;
	text-align: center;
}

.tuserco-home .tuserco-home-offer-media {
	z-index: 0;
}

.tuserco-home .tuserco-home-offer-status {
	z-index: 3;
}

.tuserco-home .tuserco-home-category-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 22px 2px 0;
}

.tuserco-home .tuserco-home-category-body .tuserco-home-card-kicker {
	color: #7dd7ff;
}

.tuserco-home .tuserco-home-category-body h3 {
	margin: 0;
	color: #fff;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.18;
}

.tuserco-home .tuserco-home-category-body > p:not(.tuserco-home-card-kicker) {
	margin: 13px 0 22px;
	color: #c5d6e4;
	font-size: 14px;
	line-height: 1.65;
}

.tuserco-home .tuserco-home-category-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: auto;
	padding-top: 17px;
	border-top: 1px solid rgba(255, 255, 255, .18);
}

.tuserco-home .tuserco-home-category-footer > span {
	color: #9fb5c8;
	font-size: 13px;
	font-weight: 800;
}

.tuserco-home .tuserco-home-category-footer a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #7dd7ff;
	font-size: 14px;
	font-weight: 900;
}

.tuserco-home .tuserco-home-section-categories.is-static .tuserco-home-carousel-controls {
	visibility: hidden;
}

@media (max-width: 820px) {
	.tuserco-home .tuserco-home-category-heading {
		align-items: center;
		gap: 24px;
	}

	.tuserco-home .tuserco-home-category-heading h2 {
		font-size: 36px;
	}

	.tuserco-home .tuserco-home-category-track {
		grid-auto-columns: minmax(280px, 72vw);
	}
}

@media (max-width: 560px) {
	.tuserco-home .tuserco-home-section-categories {
		padding-top: 52px;
		padding-bottom: 54px;
	}

	.tuserco-home .tuserco-home-category-heading {
		align-items: flex-end;
		margin-bottom: 26px;
	}

	.tuserco-home .tuserco-home-category-heading h2 {
		font-size: 31px;
	}

	.tuserco-home .tuserco-home-carousel-controls {
		gap: 6px;
	}

	.tuserco-home .tuserco-home-carousel-controls button {
		width: 40px;
		height: 40px;
	}

	.tuserco-home .tuserco-home-category-viewport {
		margin-right: -18px;
		padding-right: 18px;
	}

	.tuserco-home .tuserco-home-category-track {
		grid-auto-columns: minmax(268px, 84vw);
		gap: 14px;
	}

	.tuserco-home .tuserco-home-category-media {
		aspect-ratio: 16 / 11;
	}
}

/* Responsive services hero. The artwork is only a background plate; all copy
 * and navigation remain real, accessible HTML. */
.tuserco-home .tuserco-home-hero.tuserco-home-services-hero {
	position: relative;
	display: block;
	width: 100%;
	min-height: 0;
	aspect-ratio: 1920 / 819;
	overflow: hidden;
	background: #fff;
	color: var(--tuserco-home-navy);
	isolation: isolate;
}

.tuserco-home .tuserco-home-hero-carousel {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.tuserco-home .tuserco-home-hero-slide {
	position: absolute;
	inset: 0;
	display: block;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 650ms ease, visibility 650ms ease;
}

.tuserco-home .tuserco-home-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.tuserco-home .tuserco-home-services-background {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.tuserco-home .tuserco-home-services-copy {
	position: absolute;
	z-index: 2;
	top: 9%;
	left: 50%;
	width: min(690px, 45vw);
	text-align: center;
	transform: translateX(-50%);
}

.tuserco-home .tuserco-home-hero-carousel-controls {
	position: absolute;
	top: 48%;
	right: clamp(14px, 2vw, 34px);
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 6px;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 10px 30px rgba(10, 40, 84, 0.18);
	color: var(--tuserco-home-navy);
	backdrop-filter: blur(10px);
	transform: translateY(-50%);
}

.tuserco-home .tuserco-home-hero-carousel-controls button {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: 17px;
	cursor: pointer;
}

.tuserco-home .tuserco-home-hero-carousel-controls button:hover,
.tuserco-home .tuserco-home-hero-carousel-controls button:focus-visible {
	background: var(--tuserco-home-blue);
	color: #fff;
}

.tuserco-home .tuserco-home-hero-carousel-controls button:focus-visible {
	outline: 2px solid var(--tuserco-home-yellow);
	outline-offset: 2px;
}

.tuserco-home .tuserco-home-hero-carousel-controls span {
	min-width: 46px;
	text-align: center;
	font-size: 11px;
	font-weight: 850;
}

.tuserco-home .tuserco-home-services-copy > p {
	margin: 0 0 clamp(12px, 1.2vw, 22px);
	color: var(--tuserco-home-blue);
	font-family: "Segoe Print", "Bradley Hand", cursive;
	font-size: clamp(18px, 1.65vw, 32px);
	font-weight: 700;
	line-height: 1.15;
}

.tuserco-home .tuserco-home-services-copy > p::after {
	content: "";
	display: block;
	width: clamp(80px, 7vw, 138px);
	height: 4px;
	margin: 14px auto 0;
	border-radius: 4px;
	background: var(--tuserco-home-blue);
	transform: rotate(-2deg);
}

.tuserco-home .tuserco-home-services-copy h1 {
	display: grid;
	gap: 0;
	margin: 0;
	color: var(--tuserco-home-navy);
	font-size: clamp(38px, 4.15vw, 80px);
	font-weight: 900;
	line-height: 0.98;
	letter-spacing: 0;
}

.tuserco-home .tuserco-home-services-copy h1 span,
.tuserco-home .tuserco-home-services-copy h1 strong {
	display: block;
}

.tuserco-home .tuserco-home-services-copy h1 strong {
	color: var(--tuserco-home-blue);
	font-family: "Segoe Print", "Bradley Hand", cursive;
	font-size: 1.05em;
	font-style: italic;
	font-weight: 700;
	line-height: 1;
}

.tuserco-home .tuserco-home-services-lead {
	max-width: 590px;
	margin: clamp(14px, 1.5vw, 26px) auto 0;
	color: #344f70;
	font-size: clamp(15px, 1.25vw, 24px);
	font-weight: 600;
	line-height: 1.4;
}

.tuserco-home .tuserco-home-service-sprite {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.tuserco-home .tuserco-home-services-toggle {
	display: none;
}

.tuserco-home .tuserco-home-services-nav {
	position: absolute;
	right: clamp(24px, 9vw, 180px);
	bottom: 3.2%;
	left: clamp(24px, 9vw, 180px);
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(10, minmax(0, 1fr));
	align-items: stretch;
}

.tuserco-home .tuserco-home-service-link {
	position: relative;
	display: grid;
	grid-template-rows: 1fr auto;
	place-items: center;
	gap: clamp(8px, .8vw, 14px);
	min-width: 0;
	min-height: clamp(110px, 8.8vw, 170px);
	padding: 10px clamp(8px, 1vw, 18px);
	color: var(--tuserco-home-navy);
	text-align: center;
	text-decoration: none;
	transition: color 180ms ease, transform 180ms ease;
}

.tuserco-home .tuserco-home-service-link + .tuserco-home-service-link {
	border-left: 1px solid #d4dce4;
}

.tuserco-home .tuserco-home-service-link svg {
	width: clamp(38px, 3.35vw, 64px);
	height: clamp(38px, 3.35vw, 64px);
	color: #0a8ed4;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: color 180ms ease, transform 180ms ease;
}

.tuserco-home .tuserco-home-service-link strong {
	max-width: 170px;
	color: inherit;
	font-size: clamp(12px, 1.05vw, 20px);
	font-weight: 900;
	line-height: 1.15;
	letter-spacing: 0;
}

.tuserco-home .tuserco-home-service-link > span {
	position: absolute;
	right: 12px;
	bottom: 10px;
	color: var(--tuserco-home-blue-dark);
	font-size: 17px;
	opacity: 0;
	transform: translateX(-5px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.tuserco-home .tuserco-home-service-link:hover,
.tuserco-home .tuserco-home-service-link:focus-visible {
	color: var(--tuserco-home-blue-dark);
	transform: translateY(-3px);
}

.tuserco-home .tuserco-home-service-link:hover svg,
.tuserco-home .tuserco-home-service-link:focus-visible svg {
	color: var(--tuserco-home-yellow);
	transform: scale(1.06);
}

.tuserco-home .tuserco-home-service-link:hover > span,
.tuserco-home .tuserco-home-service-link:focus-visible > span {
	opacity: 1;
	transform: translateX(0);
}

.tuserco-home .tuserco-home-service-link:focus-visible {
	outline: 3px solid var(--tuserco-home-yellow);
	outline-offset: -3px;
}

@media (max-width: 1100px) {
	.tuserco-home .tuserco-home-hero.tuserco-home-services-hero {
		min-height: 760px;
		aspect-ratio: auto;
		padding-top: 475px;
	}

	.tuserco-home .tuserco-home-services-background {
		height: 520px;
		object-position: center top;
	}

	.tuserco-home .tuserco-home-hero-carousel {
		height: 520px;
	}

	.tuserco-home .tuserco-home-services-copy {
		top: 52px;
		width: min(620px, calc(100% - 48px));
	}

	.tuserco-home .tuserco-home-services-copy h1 {
		font-size: clamp(42px, 7vw, 66px);
	}

	.tuserco-home .tuserco-home-services-nav {
		position: relative;
		inset: auto;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		width: min(980px, calc(100% - 40px));
		margin: 0 auto;
		padding: 6px 0 22px;
		background: #fff;
	}

	.tuserco-home .tuserco-home-service-link {
		min-height: 112px;
		padding: 14px 12px;
		border-bottom: 1px solid #e4ebf0;
	}

	.tuserco-home .tuserco-home-service-link:nth-child(6) {
		border-left: 0;
	}

	.tuserco-home .tuserco-home-service-link strong {
		font-size: 14px;
	}
}

@media (max-width: 720px) {
	.tuserco-home .tuserco-home-hero.tuserco-home-services-hero {
		min-height: 0;
		padding-top: clamp(245px, 50vw, 330px);
	}

	.tuserco-home .tuserco-home-services-background {
		height: clamp(265px, 54vw, 350px);
		object-position: 28% top;
	}

	.tuserco-home .tuserco-home-hero-carousel {
		height: clamp(265px, 54vw, 350px);
	}

	.tuserco-home .tuserco-home-hero-carousel-controls {
		top: auto;
		right: 12px;
		bottom: 12px;
		transform: none;
	}

	.tuserco-home .tuserco-home-services-copy {
		top: clamp(22px, 5vw, 36px);
		width: calc(100% - 32px);
	}

	.tuserco-home .tuserco-home-services-copy > p {
		margin-bottom: 10px;
		font-size: 14px;
	}

	.tuserco-home .tuserco-home-services-copy > p::after {
		width: 76px;
		height: 3px;
		margin-top: 10px;
	}

	.tuserco-home .tuserco-home-services-copy h1 {
		font-size: clamp(29px, 9vw, 36px);
		line-height: .98;
	}

	.tuserco-home .tuserco-home-services-copy h1 span {
		white-space: nowrap;
	}

	.tuserco-home .tuserco-home-services-lead {
		max-width: 290px;
		margin-top: 9px;
		font-size: 12.5px;
		line-height: 1.35;
	}

	.tuserco-home .tuserco-home-services-toggle {
		position: relative;
		z-index: 3;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
		width: calc(100% - 32px);
		min-height: 52px;
		margin: 12px auto 10px;
		padding: 12px 16px;
		border: 1px solid #c9dce9;
		border-radius: 4px;
		background: #fff;
		box-shadow: 0 8px 24px rgba( 16, 38, 79, .08 );
		color: var(--tuserco-home-navy);
		font: inherit;
		font-size: 14px;
		font-weight: 800;
		line-height: 1.2;
		text-align: left;
		cursor: pointer;
	}

	.tuserco-home .tuserco-home-services-toggle[hidden] {
		display: none;
	}

	.tuserco-home .tuserco-home-services-toggle-icon {
		flex: 0 0 auto;
		color: var(--tuserco-home-blue);
		font-size: 24px;
		font-weight: 700;
		line-height: 1;
		transition: transform 180ms ease;
	}

	.tuserco-home .tuserco-home-services-toggle[aria-expanded="true"] .tuserco-home-services-toggle-icon {
		transform: rotate(180deg);
	}

	.tuserco-home .tuserco-home-services-toggle:focus-visible {
		outline: 3px solid var(--tuserco-home-yellow);
		outline-offset: 2px;
	}

	.tuserco-home .tuserco-home-services-nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
		padding: 8px 16px 22px;
	}

	.tuserco-home .tuserco-home-services-hero.is-services-collapsible .tuserco-home-services-nav {
		max-height: 0;
		padding-top: 0;
		padding-bottom: 0;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: max-height 260ms ease, padding 260ms ease, opacity 180ms ease;
	}

	.tuserco-home .tuserco-home-services-hero.is-services-collapsible.is-services-open .tuserco-home-services-nav {
		max-height: 720px;
		padding-top: 8px;
		padding-bottom: 22px;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.tuserco-home .tuserco-home-service-link {
		grid-template-columns: 42px 1fr;
		grid-template-rows: auto;
		place-items: center start;
		gap: 12px;
		min-height: 68px;
		padding: 10px;
		text-align: left;
	}

	.tuserco-home .tuserco-home-service-link:nth-child(odd) {
		border-left: 0;
	}

	.tuserco-home .tuserco-home-service-link:nth-child(even) {
		border-left: 1px solid #e4ebf0;
	}

	.tuserco-home .tuserco-home-service-link svg {
		width: 36px;
		height: 36px;
	}

	.tuserco-home .tuserco-home-service-link strong {
		font-size: 13px;
		line-height: 1.25;
	}

	.tuserco-home .tuserco-home-service-link > span {
		display: none;
	}
}

@media (max-width: 430px) {
	.tuserco-home .tuserco-home-services-nav {
		padding-right: 10px;
		padding-left: 10px;
	}

	.tuserco-home .tuserco-home-service-link {
		grid-template-columns: 34px 1fr;
		gap: 8px;
		min-height: 55px;
		padding-top: 6px;
		padding-right: 7px;
		padding-bottom: 6px;
		padding-left: 7px;
	}

	.tuserco-home .tuserco-home-service-link svg {
		width: 29px;
		height: 29px;
	}

	.tuserco-home .tuserco-home-service-link strong {
		font-size: 11.5px;
	}
}

/* Shared mobile spacing rhythm. */
@media (max-width: 720px) {
	.tuserco-home .tuserco-home-hero.tuserco-home-services-hero {
		padding-top: clamp(215px, 52vw, 330px);
	}

	.tuserco-home .tuserco-home-services-background {
		height: clamp(235px, 56vw, 350px);
	}

	.tuserco-home .tuserco-home-hero-carousel {
		height: clamp(235px, 56vw, 350px);
	}

	.tuserco-home .tuserco-home-services-copy {
		top: clamp(16px, 4vw, 30px);
	}

	.tuserco-home .tuserco-home-services-copy > p {
		font-size: 13px;
	}

	.tuserco-home .tuserco-home-services-copy h1 {
		font-size: clamp(27px, 8vw, 34px);
	}

	.tuserco-home .tuserco-home-services-lead {
		max-width: 280px;
		margin-top: 7px;
		font-size: 12px;
	}

	.tuserco-home .tuserco-home-services-toggle {
		width: calc(100% - 24px);
		margin-top: 0;
		margin-bottom: 4px;
	}

	.tuserco-home .tuserco-home-section {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.tuserco-home .tuserco-home-cta {
		padding-top: 44px;
		padding-bottom: 64px;
	}
}

@media (max-width: 430px) {
	.tuserco-home .tuserco-home-section {
		padding-top: 34px;
		padding-bottom: 34px;
	}
}

/*
 * The services artwork contains its own white lower band. On narrow screens
 * that band was being counted twice: once inside the image and again by the
 * document flow before the packages toggle. Keep the artwork compact and crop
 * that decorative band without changing the desktop composition.
 */
@media (max-width: 720px) {
	.tuserco-home .tuserco-home-hero.tuserco-home-services-hero {
		padding-top: clamp(168px, 43vw, 220px);
	}

	.tuserco-home .tuserco-home-services-background {
		height: clamp(168px, 43vw, 220px);
		object-position: 30% top;
	}

	.tuserco-home .tuserco-home-hero-carousel {
		height: clamp(168px, 43vw, 220px);
	}

	.tuserco-home .tuserco-home-services-toggle {
		margin-top: 6px;
	}
}

@media (max-width: 480px) {
	.tuserco-home .tuserco-home-hero.tuserco-home-services-hero {
		padding-top: 164px;
	}

	.tuserco-home .tuserco-home-services-background {
		height: 164px;
		object-position: 30% top;
		transform: scale(1.32);
		transform-origin: 30% top;
	}

	.tuserco-home .tuserco-home-hero-carousel {
		height: 164px;
	}

	.tuserco-home .tuserco-home-hero-carousel-controls {
		right: 8px;
		bottom: 8px;
		padding: 4px;
	}

	.tuserco-home .tuserco-home-hero-carousel-controls button {
		width: 30px;
		height: 30px;
	}

	.tuserco-home .tuserco-home-services-toggle {
		margin-top: 2px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tuserco-home .tuserco-home-hero-slide,
	.tuserco-home .tuserco-home-service-link,
	.tuserco-home .tuserco-home-service-link svg,
	.tuserco-home .tuserco-home-service-link > span {
		transition: none;
	}
}

/*
 * Hero editorial: la imagen y la leyenda son superficies independientes.
 * Esto garantiza contraste estable aunque cambien las fotografías del carrusel.
 */
.tuserco-home .tuserco-home-hero.tuserco-home-hero--caption-below {
	display: grid;
	grid-template-rows: auto auto;
	min-height: 0;
	aspect-ratio: auto;
	padding: 0;
	overflow: visible;
	background: #fff;
	color: var(--tuserco-home-navy);
}

.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-hero-carousel {
	position: relative;
	inset: auto;
	width: 100%;
	height: clamp(320px, 38vw, 610px);
	overflow: hidden;
	background: #e9f0f5;
}

.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-services-background {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transform: none;
}

.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-services-copy {
	position: relative;
	inset: auto;
	z-index: 2;
	display: grid;
	grid-template-areas:
		"eyebrow lead"
		"title lead";
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
	align-items: center;
	column-gap: clamp(48px, 6vw, 96px);
	row-gap: 6px;
	width: min(1280px, calc(100% - 48px));
	margin: 0 auto;
	padding: clamp(24px, 2.2vw, 34px) 0 clamp(26px, 2.4vw, 38px);
	text-align: left;
	transform: none;
}

.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-services-copy > p {
	grid-area: eyebrow;
	justify-self: start;
	margin: 0;
	color: var(--tuserco-home-blue);
	font-size: clamp(17px, 1.35vw, 24px);
}

.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-services-copy > p::after {
	width: 80px;
	height: 3px;
	margin: 9px 0 0;
}

.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-services-copy h1 {
	grid-area: title;
	margin: 0;
	color: var(--tuserco-home-navy);
	font-size: clamp(38px, 3.5vw, 58px);
	line-height: 1;
	text-align: left;
}

.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-services-copy h1 strong {
	color: var(--tuserco-home-blue);
}

.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-services-lead {
	grid-area: lead;
	max-width: 540px;
	margin: 0;
	padding: 8px 0 8px clamp(28px, 3vw, 48px);
	border-left: 1px solid var(--tuserco-home-line);
	color: var(--tuserco-home-ink);
	font-size: clamp(16px, 1.1vw, 19px);
	line-height: 1.55;
}

@media (max-width: 900px) {
	.tuserco-home .tuserco-home-hero.tuserco-home-hero--caption-below {
		padding-top: 0;
	}

	.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-hero-carousel {
		height: clamp(240px, 48vw, 410px);
	}

	.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-services-copy {
		top: auto;
		grid-template-areas:
			"eyebrow"
			"title"
			"lead";
		grid-template-columns: minmax(0, 1fr);
		justify-items: center;
		gap: 0;
		width: min(720px, calc(100% - 40px));
		padding: 24px 0 30px;
		text-align: center;
	}

	.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-services-copy > p {
		justify-self: center;
		margin-bottom: 10px;
		font-size: 15px;
	}

	.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-services-copy > p::after {
		margin-right: auto;
		margin-left: auto;
	}

	.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-services-copy h1 {
		font-size: clamp(32px, 10vw, 44px);
		text-align: center;
	}

	.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-services-lead {
		max-width: 38rem;
		margin-top: 18px;
		padding: 17px 0 0;
		border-top: 1px solid var(--tuserco-home-line);
		border-left: 0;
		font-size: 15px;
	}
}

@media (max-width: 420px) {
	.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-hero-carousel {
		height: 180px;
	}

	.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-services-copy {
		width: calc(100% - 28px);
		padding: 20px 0 24px;
	}

	.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-services-copy h1 {
		font-size: 30px;
	}

	.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-services-lead {
		margin-top: 14px;
		padding-top: 14px;
		font-size: 14px;
	}
}

/* Full-bleed hero media: the carousel image must use the whole screen width. */
.tuserco-home .tuserco-home-hero.tuserco-home-hero--caption-below {
	width: 100%;
	max-width: none;
}

.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-hero-carousel {
	width: 100vw;
	max-width: none;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-services-background {
	width: 100%;
	max-width: none;
	object-fit: cover;
}

@media (max-width: 760px) {
	.tuserco-home .tuserco-home-hero--caption-below .tuserco-home-hero-carousel {
		height: clamp(220px, 62vw, 390px);
	}
}
