.uca-wrap {
	align-items: center !important;
	background: var(--uca-bg) !important;
	box-sizing: border-box !important;
	color: var(--uca-text) !important;
	display: inline-flex !important;
	font-family: var(--uca-font) !important;
	font-size: var(--uca-desktop-font) !important;
	font-weight: var(--uca-weight) !important;
	gap: var(--uca-gap) !important;
	line-height: 1.25 !important;
	padding: var(--uca-spacing) !important;
	text-decoration: none !important;
	transition: color 0.2s ease !important;
	background: transparent !important;
	border: none !important;
}

.uca-wrap:hover,
.uca-wrap:focus {
	color: var(--uca-hover) !important;
	outline-offset: 3px !important;
}

.uca-icon {
	color: var(--uca-icon) !important;
	display: inline-flex !important;
	flex: 0 0 auto !important;
	transition: color 0.2s ease !important;
}

.uca-wrap:hover .uca-icon,
.uca-wrap:focus .uca-icon {
	color: var(--uca-icon-hover) !important;
}

.uca-icon svg {
	display: block !important;
	height: var(--uca-desktop-icon) !important;
	width: var(--uca-desktop-icon) !important;
}

.uca-auth {
	display: inline-flex !important;
	flex-direction: column !important;
	align-items: flex-start !important;
	width: auto !important;
	min-width: 0 !important;
	position: relative !important;
}

.uca-auth-toggle {
	appearance: none !important;
	background-color: transparent !important;
	border: none !important;
	box-shadow: none !important;
	color: var(--uca-text) !important;
	cursor: pointer !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	width: auto !important;
	padding: 0.25rem 0.5rem !important;
	text-align: left !important;
	font: inherit !important;
	line-height: 1 !important;
	outline: none !important;
	background: transparent !important;
}

.uca-auth-toggle::after {
	content: '▾' !important;
	margin-left: 0.75rem !important;
	transition: transform 0.2s ease !important;
}

.uca-auth-toggle[aria-expanded="true"]::after {
	transform: rotate(180deg) !important;
}

.uca-auth-panel {
	max-height: 0 !important;
	overflow: hidden !important;
	opacity: 0 !important;
	transition: max-height 0.24s ease, opacity 0.24s ease !important;
	background: transparent !important;
	border-top: none !important;
	width: 100% !important;
	padding-top: 0.35rem !important;
}

.uca-auth-panel.open {
	max-height: 240px !important;
	opacity: 1 !important;
}

.uca-auth-panel a {
	display: block !important;
	width: 100% !important;
	padding: 0.4rem 0 !important;
	text-decoration: none !important;
	color: inherit !important;
	border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.uca-auth-panel a:hover,
.uca-auth-panel a:focus {
	color: var(--uca-hover) !important;
}

.uca-auth-links {
	display: none;
}

.uca-auth a {
	color: inherit;
	text-decoration: none;
}

.uca-auth a:hover,
.uca-auth a:focus {
	color: var(--uca-hover);
}

.uca-mobile-only {
	display: none;
}

@media (max-width: 1024px) {
	.uca-wrap {
		font-size: var(--uca-tablet-font);
	}

	.uca-icon svg {
		height: var(--uca-tablet-icon);
		width: var(--uca-tablet-icon);
	}

	.uca-desktop-only {
		display: none;
	}

	.uca-mobile-only {
		display: inline-flex;
	}
}

@media (max-width: 767px) {
	.uca-wrap {
		font-size: var(--uca-mobile-font);
		width: 100%;
	}

	.uca-icon svg {
		height: var(--uca-mobile-icon);
		width: var(--uca-mobile-icon);
	}
}