.hhab {
	position: relative;
	z-index: 18;
	background: var(--hhab-bg, #5a344a);
	color: var(--hhab-text, #fff);
}

.hhab__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(10px, 1.5vw, 20px);
	width: min(1240px, 100%);
	min-height: 42px;
	margin: 0 auto;
	padding: 8px clamp(18px, 3vw, 38px);
}

.hhab__icon {
	display: grid;
	flex: 0 0 auto;
	width: 25px;
	height: 25px;
	place-items: center;
	border: 1px solid color-mix(in srgb, var(--hhab-accent, #d6a85b) 58%, transparent);
	border-radius: 50%;
	color: var(--hhab-accent, #d6a85b);
}

.hhab__icon svg,
.hhab__dismiss svg {
	width: 15px;
	height: 15px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.hhab__message {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 9px;
	min-width: 0;
	color: inherit;
	font: 600 12px/1.4 Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	text-align: center;
}

.hhab__message strong {
	flex: 0 0 auto;
	color: var(--hhab-accent, #d6a85b);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.hhab__message--linked {
	border-radius: 6px;
	color: inherit !important;
	text-decoration: none;
}

.hhab__message--linked:hover,
.hhab__message--linked:focus-visible {
	color: inherit !important;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.hhab__arrow {
	color: var(--hhab-accent, #d6a85b);
	font-weight: 850;
}

.hhab__cta {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 7px;
	padding: 6px 11px;
	border: 1px solid color-mix(in srgb, var(--hhab-text, #fff) 45%, transparent);
	border-radius: 999px;
	color: inherit !important;
	font: 800 9px/1.15 Inter, system-ui, sans-serif;
	letter-spacing: .09em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background .18s ease, color .18s ease, transform .18s ease;
}

.hhab__cta:hover,
.hhab__cta:focus-visible {
	background: var(--hhab-text, #fff);
	color: var(--hhab-bg, #5a344a) !important;
	transform: translateY(-1px);
}

.hhab__dismiss {
	display: grid;
	flex: 0 0 auto;
	width: 29px;
	height: 29px;
	margin: 0;
	padding: 0;
	place-items: center;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: inherit;
	cursor: pointer;
	opacity: .72;
}

.hhab__dismiss:hover,
.hhab__dismiss:focus-visible {
	background: color-mix(in srgb, var(--hhab-text, #fff) 14%, transparent);
	opacity: 1;
}

.hhab[hidden] {
	display: none !important;
}

@media (max-width: 767px) {
	.hhab--hide-mobile {
		display: none;
	}

	.hhab__inner {
		justify-content: flex-start;
		gap: 10px;
		min-height: 0;
		padding: 10px 13px;
	}

	.hhab__icon {
		width: 27px;
		height: 27px;
	}

	.hhab__message {
		display: block;
		flex: 1;
		text-align: left;
	}

	.hhab__message strong {
		display: block;
		margin-bottom: 2px;
	}

	.hhab__cta {
		padding: 7px 9px;
	}

	.hhab__cta > span {
		display: none;
	}
}

@media (max-width: 420px) {
	.hhab__cta {
		max-width: 88px;
		text-align: center;
		white-space: normal;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hhab *,
	.hhab *::before,
	.hhab *::after {
		transition-duration: .01ms !important;
	}
}
