/* STS Sticky Conference Pass CTA */
:root {
	--sts-confcta-height: 64px;
	--sts-confcta-safe: env(safe-area-inset-bottom, 0px);
}

body.sts-confcta--reserve-space {
	padding-bottom: calc(var(--sts-confcta-height) + var(--sts-confcta-safe));
}

.sts-confcta,
.sts-confcta * {
	box-sizing: border-box;
}

.sts-confcta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 8800;

	width: 100%;
	padding-bottom: var(--sts-confcta-safe);

	background: #12313A;
	border-top: 1px solid rgba(22, 199, 232, 0.35);
	box-shadow: 0 -10px 30px rgba(0,0,0,.28);

color: #ffffff;
	font-family: "Inter", Arial, Helvetica, sans-serif;

	opacity: 0;
	visibility: hidden;
	transform: translateY(105%);

	transition: transform 220ms ease, opacity 180ms ease, visibility 180ms ease;
}

.sts-confcta.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sts-confcta__inner {
	display: grid;
	grid-template-columns: minmax(175px,.8fr) minmax(360px,1.5fr) auto;
	align-items: center;
	gap: clamp(18px,3vw,46px);

	width: min(100%,1480px);
	min-height: var(--sts-confcta-height);
	margin: 0 auto;
	padding: 8px clamp(18px,3vw,42px);
}

.sts-confcta__brand,
.sts-confcta__details {
	min-width: 0;
}

.sts-confcta__eyebrow {
	display: block;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .13em;
	line-height: 1.2;
	text-transform: uppercase;
	white-space: nowrap;
}

.sts-confcta__details {
	display: flex;
	align-items: center;
	gap: 18px;
	white-space: nowrap;
}

.sts-confcta__meta {
	color: #b7bcc3;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .035em;
	line-height: 1.25;
	text-transform: uppercase;
}

.sts-confcta__divider {
	flex: 0 0 1px;
	width: 1px;
	height: 22px;
	background: rgba(255,255,255,.18);
}

.sts-confcta__price {
	color: #fff;
	font-size: 15px;
	font-weight: 750;
	line-height: 1.25;
}

.sts-confcta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 46px;
	padding: 11px 22px;

	background: #e30613;
	border: 1px solid #e30613;
	border-radius: 4px;

	color: #ffffff !important;
	font-size: 13px;
	font-weight: 850;
	letter-spacing: .035em;
	line-height: 1.1;
	text-decoration: none !important;
	text-transform: uppercase;
	white-space: nowrap;

	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.sts-confcta__button:hover {
	background: #52d9f0;
	border-color: #52d9f0;
	color: #001216 !important;
	transform: translateY(-1px);
}

.sts-confcta__button:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.sts-confcta__button-mobile {
	display: none;
}

@media (max-width: 1100px) {
	.sts-confcta__inner {
		grid-template-columns: auto minmax(0,1fr) auto;
		gap: 16px;
	}
	.sts-confcta__details {
		justify-content: center;
		gap: 12px;
	}
	.sts-confcta__meta { font-size: 12px; }
	.sts-confcta__price { font-size: 14px; }
	.sts-confcta__button {
		padding-left: 18px;
		padding-right: 18px;
	}
}

@media (max-width: 760px) {
	:root { --sts-confcta-height: 60px; }

	.sts-confcta__inner {
		grid-template-columns: minmax(0,1fr) auto;
		gap: 10px;
		min-height: var(--sts-confcta-height);
		padding: 7px 12px;
	}

	.sts-confcta__brand { display: none; }

	.sts-confcta__details {
		display: block;
		min-width: 0;
		white-space: normal;
	}

	.sts-confcta__meta,
	.sts-confcta__divider {
		display: none;
	}

	.sts-confcta__price {
		display: block;
		overflow: hidden;
		color: #fff;
		font-size: 13px;
		font-weight: 800;
		letter-spacing: .025em;
		line-height: 1.25;
		text-overflow: ellipsis;
		text-transform: uppercase;
		white-space: nowrap;
	}

	.sts-confcta__price::before {
		content: "CONFERENCE PASSES · ";
		color: #9da5ad;
		font-weight: 650;
	}

	.sts-confcta__button {
		min-height: 44px;
		padding: 10px 14px;
		font-size: 12px;
	}

	.sts-confcta__button-desktop { display: none; }
	.sts-confcta__button-mobile { display: inline; }
}

@media (max-width: 420px) {
	:root { --sts-confcta-height: 58px; }

	.sts-confcta__inner {
		gap: 8px;
		padding-left: 10px;
		padding-right: 10px;
	}

	.sts-confcta__price { font-size: 11.5px; }
	.sts-confcta__price::before { content: "PASSES · "; }

	.sts-confcta__button {
		min-height: 42px;
		padding: 9px 11px;
		font-size: 11px;
	}
}

@media (max-width: 350px) {
	.sts-confcta__price { font-size: 11px; }
	.sts-confcta__price::before { content: ""; }
	.sts-confcta__button {
		padding-left: 9px;
		padding-right: 9px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sts-confcta,
	.sts-confcta__button {
		transition: none;
	}
}

@media print {
	.sts-confcta { display: none !important; }
	body.sts-confcta--reserve-space { padding-bottom: 0 !important; }
}
