/*!
 * MHB Hotspot Widget — Frontend Styles
 * ----------------------------------------------------------------------------
 * Layout pattern:
 *   .mhb-hotspot-wrapper                  ← data-tooltip-pos / -trigger / -anim (widget defaults)
 *     .mhb-hotspot-image-wrap             ← position: relative
 *       img.mhb-hotspot-image
 *       .mhb-hotspot-marker               ← position: absolute (left/top inline)
 *           [data-tooltip-pos]            ← optional per-hotspot position override
 *         .mhb-hotspot-tooltip            ← inline mode: child of marker (top/right/bottom/left)
 *       .mhb-hotspot-tooltip--free        ← free mode: SIBLING of marker, free X/Y %
 *           [data-tt-link]                ← pairs back to marker[data-tt-link]
 *           [data-tt-anchor]              ← which point of tooltip aligns to (X%, Y%)
 *       .mhb-iconbox.mhb-positioned       ← position: absolute (top/left vars)
 *       .mhb-counter.mhb-positioned       ← position: absolute (top/left vars)
 *
 * Tooltip resolution order:
 *   1. Marker-level data-tooltip-pos="free"   → tooltip rendered as sibling (free mode)
 *   2. Marker-level data-tooltip-pos="top|…"  → overrides direction for that hotspot only
 *   3. Wrapper-level data-tooltip-pos         → applies to markers without override
 *
 * Per-hotspot tooltip offset is emitted as CSS variables on the marker:
 *   --mhb-tt-ox-d / --mhb-tt-oy-d   (desktop)
 *   --mhb-tt-ox-t / --mhb-tt-oy-t   (tablet)
 *   --mhb-tt-ox-m / --mhb-tt-oy-m   (mobile)
 * The tooltip applies them via margin-left / margin-top so existing
 * absolute positioning is preserved and the offset just shifts the tooltip
 * from where it would naturally sit.
 *
 * Per-item iconbox/counter responsive positions emit:
 *   --mhb-top-d / --mhb-left-d  (desktop)
 *   --mhb-top-t / --mhb-left-t  (tablet)
 *   --mhb-top-m / --mhb-left-m  (mobile)
 * ----------------------------------------------------------------------------
 */

/* ------------------------------------------------------------------ */
/*  Wrapper + image                                                   */
/* ------------------------------------------------------------------ */

.mhb-hotspot-wrapper {
	width: 100%;
}

.mhb-hotspot-image-wrap {
	position: relative;
	width: 100%;
	display: block;
}

.mhb-hotspot-image {
	display: block;
	width: 100%;
	height: auto;
}

/* ------------------------------------------------------------------ */
/*  Hotspot markers                                                   */
/* ------------------------------------------------------------------ */

.mhb-hotspot-marker {
	position: absolute;
	transform: translate(-50%, -50%);
	color: #e3001b;
	z-index: 5;
	cursor: pointer;
	line-height: 1;
}

.mhb-hotspot-marker-link {
	color: inherit;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.mhb-hotspot-marker-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
}

.mhb-hotspot-marker:hover .mhb-hotspot-marker-icon {
	transform: scale(1.15);
}

/* Pulse animation — opt-in via class on marker. */
.mhb-hotspot-marker--pulse::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	background-color: currentColor;
	opacity: 0.5;
	transform: translate(-50%, -50%);
	animation: mhb-hotspot-pulse 1.6s ease-out infinite;
	z-index: -1;
	pointer-events: none;
}

@keyframes mhb-hotspot-pulse {
	0%   { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
	100% { opacity: 0;   transform: translate(-50%, -50%) scale(2.4); }
}

/* ------------------------------------------------------------------ */
/*  Tooltip — base (offsets applied via margin from inherited CSS vars) */
/* ------------------------------------------------------------------ */

.mhb-hotspot-tooltip {
	position: absolute;
	min-width: 160px;
	max-width: 320px;
	padding: 10px 14px;
	background-color: #002f6c;
	color: #ffffff;
	font-size: 13px;
	line-height: 1.4;
	border-radius: 6px;
	box-shadow: 0 6px 20px rgba(0, 47, 108, 0.25);
	opacity: 0;
	visibility: hidden;
	transition-property: opacity, visibility, transform;
	transition-duration: 500ms;
	transition-timing-function: ease;
	z-index: 10;
	pointer-events: none;
	text-align: left;

	/* Per-hotspot offset (CSS vars inherited from .mhb-hotspot-marker). */
	margin-left: var(--mhb-tt-ox-d, 0px);
	margin-top:  var(--mhb-tt-oy-d, 0px);
}

.mhb-hotspot-tooltip-title {
	font-weight: 600;
	margin-bottom: 4px;
}

/* Allow rich content from the WYSIWYG description. */
.mhb-hotspot-tooltip-desc > * { margin: 0; }
.mhb-hotspot-tooltip-desc > * + * { margin-top: 6px; }
.mhb-hotspot-tooltip-desc img { max-width: 100%; height: auto; border-radius: 4px; }
.mhb-hotspot-tooltip-desc strong, .mhb-hotspot-tooltip-desc b { color: inherit; }

/* Tooltip arrow — direction set by position rules below. */
.mhb-hotspot-tooltip::after {
	content: "";
	position: absolute;
	border: 6px solid transparent;
}

/* ------------------------------------------------------------------ */
/*  Tooltip positions                                                 */
/*                                                                    */
/*  Two layers of selectors:                                          */
/*    A) Marker-level override (highest specificity & priority)       */
/*    B) Wrapper-level default (only when marker has no override)     */
/* ------------------------------------------------------------------ */

/* === A) Marker-level override === */

.mhb-hotspot-marker[data-tooltip-pos="top"] > .mhb-hotspot-tooltip,
.mhb-hotspot-marker[data-tooltip-pos="top"] .mhb-hotspot-marker-link > .mhb-hotspot-tooltip {
	left: 50%;
	bottom: calc(100% + 12px);
	transform: translateX(-50%);
}
.mhb-hotspot-marker[data-tooltip-pos="top"] .mhb-hotspot-tooltip::after {
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	border-top-color: currentColor;
	border-bottom: 0;
}

.mhb-hotspot-marker[data-tooltip-pos="bottom"] > .mhb-hotspot-tooltip,
.mhb-hotspot-marker[data-tooltip-pos="bottom"] .mhb-hotspot-marker-link > .mhb-hotspot-tooltip {
	left: 50%;
	top: calc(100% + 12px);
	bottom: auto;
	transform: translateX(-50%);
}
.mhb-hotspot-marker[data-tooltip-pos="bottom"] .mhb-hotspot-tooltip::after {
	left: 50%;
	bottom: 100%;
	top: auto;
	transform: translateX(-50%);
	border-bottom-color: currentColor;
	border-top: 0;
}

.mhb-hotspot-marker[data-tooltip-pos="left"] > .mhb-hotspot-tooltip,
.mhb-hotspot-marker[data-tooltip-pos="left"] .mhb-hotspot-marker-link > .mhb-hotspot-tooltip {
	right: calc(100% + 12px);
	top: 50%;
	left: auto;
	bottom: auto;
	transform: translateY(-50%);
}
.mhb-hotspot-marker[data-tooltip-pos="left"] .mhb-hotspot-tooltip::after {
	left: 100%;
	top: 50%;
	right: auto;
	bottom: auto;
	transform: translateY(-50%);
	border-left-color: currentColor;
	border-right: 0;
}

.mhb-hotspot-marker[data-tooltip-pos="right"] > .mhb-hotspot-tooltip,
.mhb-hotspot-marker[data-tooltip-pos="right"] .mhb-hotspot-marker-link > .mhb-hotspot-tooltip {
	left: calc(100% + 12px);
	top: 50%;
	right: auto;
	bottom: auto;
	transform: translateY(-50%);
}
.mhb-hotspot-marker[data-tooltip-pos="right"] .mhb-hotspot-tooltip::after {
	right: 100%;
	top: 50%;
	left: auto;
	bottom: auto;
	transform: translateY(-50%);
	border-right-color: currentColor;
	border-left: 0;
}

/* === B) Wrapper-level default (skipped when marker has its own data-tooltip-pos) === */

.mhb-hotspot-wrapper[data-tooltip-pos="top"] .mhb-hotspot-marker:not([data-tooltip-pos]) .mhb-hotspot-tooltip {
	left: 50%;
	bottom: calc(100% + 12px);
	transform: translateX(-50%);
}
.mhb-hotspot-wrapper[data-tooltip-pos="top"] .mhb-hotspot-marker:not([data-tooltip-pos]) .mhb-hotspot-tooltip::after {
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	border-top-color: currentColor;
	border-bottom: 0;
}

.mhb-hotspot-wrapper[data-tooltip-pos="bottom"] .mhb-hotspot-marker:not([data-tooltip-pos]) .mhb-hotspot-tooltip {
	left: 50%;
	top: calc(100% + 12px);
	transform: translateX(-50%);
}
.mhb-hotspot-wrapper[data-tooltip-pos="bottom"] .mhb-hotspot-marker:not([data-tooltip-pos]) .mhb-hotspot-tooltip::after {
	left: 50%;
	bottom: 100%;
	transform: translateX(-50%);
	border-bottom-color: currentColor;
	border-top: 0;
}

.mhb-hotspot-wrapper[data-tooltip-pos="left"] .mhb-hotspot-marker:not([data-tooltip-pos]) .mhb-hotspot-tooltip {
	right: calc(100% + 12px);
	top: 50%;
	transform: translateY(-50%);
}
.mhb-hotspot-wrapper[data-tooltip-pos="left"] .mhb-hotspot-marker:not([data-tooltip-pos]) .mhb-hotspot-tooltip::after {
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	border-left-color: currentColor;
	border-right: 0;
}

.mhb-hotspot-wrapper[data-tooltip-pos="right"] .mhb-hotspot-marker:not([data-tooltip-pos]) .mhb-hotspot-tooltip {
	left: calc(100% + 12px);
	top: 50%;
	transform: translateY(-50%);
}
.mhb-hotspot-wrapper[data-tooltip-pos="right"] .mhb-hotspot-marker:not([data-tooltip-pos]) .mhb-hotspot-tooltip::after {
	right: 100%;
	top: 50%;
	transform: translateY(-50%);
	border-right-color: currentColor;
	border-left: 0;
}

/* ------------------------------------------------------------------ */
/*  Trigger: hover (default)                                          */
/* ------------------------------------------------------------------ */

.mhb-hotspot-wrapper[data-tooltip-trigger="hover"] .mhb-hotspot-marker:hover .mhb-hotspot-tooltip,
.mhb-hotspot-wrapper[data-tooltip-trigger="hover"] .mhb-hotspot-marker:focus-within .mhb-hotspot-tooltip {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* ------------------------------------------------------------------ */
/*  Trigger: click — JS toggles .is-active on the marker              */
/* ------------------------------------------------------------------ */

.mhb-hotspot-wrapper[data-tooltip-trigger="click"] .mhb-hotspot-marker.is-active .mhb-hotspot-tooltip {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* ------------------------------------------------------------------ */
/*  Animations (apply uniformly regardless of pos override)           */
/*  Note: animations move the tooltip in transform space; positioning */
/*  is set above. Animation rules use position info to slide toward   */
/*  the marker — we look at marker-level override first, then         */
/*  wrapper-level. Since we can't easily express "use whichever pos    */
/*  applies", we keep wrapper animations + an explicit fallback that   */
/*  works even when marker overrides position.                         */
/* ------------------------------------------------------------------ */

/* Wrapper-driven fade-by-direction (default). */
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"][data-tooltip-pos="top"] .mhb-hotspot-marker:not([data-tooltip-pos]) .mhb-hotspot-tooltip {
	transform: translateX(-50%) translateY(8px);
}
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"][data-tooltip-pos="top"] .mhb-hotspot-marker:not([data-tooltip-pos]):hover .mhb-hotspot-tooltip,
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"][data-tooltip-pos="top"] .mhb-hotspot-marker:not([data-tooltip-pos]).is-active .mhb-hotspot-tooltip {
	transform: translateX(-50%) translateY(0);
}

.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"][data-tooltip-pos="bottom"] .mhb-hotspot-marker:not([data-tooltip-pos]) .mhb-hotspot-tooltip {
	transform: translateX(-50%) translateY(-8px);
}
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"][data-tooltip-pos="bottom"] .mhb-hotspot-marker:not([data-tooltip-pos]):hover .mhb-hotspot-tooltip,
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"][data-tooltip-pos="bottom"] .mhb-hotspot-marker:not([data-tooltip-pos]).is-active .mhb-hotspot-tooltip {
	transform: translateX(-50%) translateY(0);
}

.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"][data-tooltip-pos="left"] .mhb-hotspot-marker:not([data-tooltip-pos]) .mhb-hotspot-tooltip {
	transform: translateY(-50%) translateX(8px);
}
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"][data-tooltip-pos="left"] .mhb-hotspot-marker:not([data-tooltip-pos]):hover .mhb-hotspot-tooltip,
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"][data-tooltip-pos="left"] .mhb-hotspot-marker:not([data-tooltip-pos]).is-active .mhb-hotspot-tooltip {
	transform: translateY(-50%) translateX(0);
}

.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"][data-tooltip-pos="right"] .mhb-hotspot-marker:not([data-tooltip-pos]) .mhb-hotspot-tooltip {
	transform: translateY(-50%) translateX(-8px);
}
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"][data-tooltip-pos="right"] .mhb-hotspot-marker:not([data-tooltip-pos]):hover .mhb-hotspot-tooltip,
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"][data-tooltip-pos="right"] .mhb-hotspot-marker:not([data-tooltip-pos]).is-active .mhb-hotspot-tooltip {
	transform: translateY(-50%) translateX(0);
}

/* Marker-driven fade-by-direction (when marker overrides pos). */
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"] .mhb-hotspot-marker[data-tooltip-pos="top"] .mhb-hotspot-tooltip {
	transform: translateX(-50%) translateY(8px);
}
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"] .mhb-hotspot-marker[data-tooltip-pos="top"]:hover .mhb-hotspot-tooltip,
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"] .mhb-hotspot-marker[data-tooltip-pos="top"].is-active .mhb-hotspot-tooltip {
	transform: translateX(-50%) translateY(0);
}

.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"] .mhb-hotspot-marker[data-tooltip-pos="bottom"] .mhb-hotspot-tooltip {
	transform: translateX(-50%) translateY(-8px);
}
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"] .mhb-hotspot-marker[data-tooltip-pos="bottom"]:hover .mhb-hotspot-tooltip,
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"] .mhb-hotspot-marker[data-tooltip-pos="bottom"].is-active .mhb-hotspot-tooltip {
	transform: translateX(-50%) translateY(0);
}

.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"] .mhb-hotspot-marker[data-tooltip-pos="left"] .mhb-hotspot-tooltip {
	transform: translateY(-50%) translateX(8px);
}
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"] .mhb-hotspot-marker[data-tooltip-pos="left"]:hover .mhb-hotspot-tooltip,
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"] .mhb-hotspot-marker[data-tooltip-pos="left"].is-active .mhb-hotspot-tooltip {
	transform: translateY(-50%) translateX(0);
}

.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"] .mhb-hotspot-marker[data-tooltip-pos="right"] .mhb-hotspot-tooltip {
	transform: translateY(-50%) translateX(-8px);
}
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"] .mhb-hotspot-marker[data-tooltip-pos="right"]:hover .mhb-hotspot-tooltip,
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"] .mhb-hotspot-marker[data-tooltip-pos="right"].is-active .mhb-hotspot-tooltip {
	transform: translateY(-50%) translateX(0);
}

/* slide animation — larger translate, both wrapper- and marker-driven. */
.mhb-hotspot-wrapper[data-tooltip-anim="slide"][data-tooltip-pos="top"] .mhb-hotspot-marker:not([data-tooltip-pos]) .mhb-hotspot-tooltip,
.mhb-hotspot-wrapper[data-tooltip-anim="slide"] .mhb-hotspot-marker[data-tooltip-pos="top"] .mhb-hotspot-tooltip {
	transform: translateX(-50%) translateY(20px);
}
.mhb-hotspot-wrapper[data-tooltip-anim="slide"][data-tooltip-pos="top"] .mhb-hotspot-marker:not([data-tooltip-pos]):hover .mhb-hotspot-tooltip,
.mhb-hotspot-wrapper[data-tooltip-anim="slide"][data-tooltip-pos="top"] .mhb-hotspot-marker:not([data-tooltip-pos]).is-active .mhb-hotspot-tooltip,
.mhb-hotspot-wrapper[data-tooltip-anim="slide"] .mhb-hotspot-marker[data-tooltip-pos="top"]:hover .mhb-hotspot-tooltip,
.mhb-hotspot-wrapper[data-tooltip-anim="slide"] .mhb-hotspot-marker[data-tooltip-pos="top"].is-active .mhb-hotspot-tooltip {
	transform: translateX(-50%) translateY(0);
}

.mhb-hotspot-wrapper[data-tooltip-anim="slide"][data-tooltip-pos="bottom"] .mhb-hotspot-marker:not([data-tooltip-pos]) .mhb-hotspot-tooltip,
.mhb-hotspot-wrapper[data-tooltip-anim="slide"] .mhb-hotspot-marker[data-tooltip-pos="bottom"] .mhb-hotspot-tooltip {
	transform: translateX(-50%) translateY(-20px);
}
.mhb-hotspot-wrapper[data-tooltip-anim="slide"][data-tooltip-pos="bottom"] .mhb-hotspot-marker:not([data-tooltip-pos]):hover .mhb-hotspot-tooltip,
.mhb-hotspot-wrapper[data-tooltip-anim="slide"][data-tooltip-pos="bottom"] .mhb-hotspot-marker:not([data-tooltip-pos]).is-active .mhb-hotspot-tooltip,
.mhb-hotspot-wrapper[data-tooltip-anim="slide"] .mhb-hotspot-marker[data-tooltip-pos="bottom"]:hover .mhb-hotspot-tooltip,
.mhb-hotspot-wrapper[data-tooltip-anim="slide"] .mhb-hotspot-marker[data-tooltip-pos="bottom"].is-active .mhb-hotspot-tooltip {
	transform: translateX(-50%) translateY(0);
}

/* none: no transform animation. */
.mhb-hotspot-wrapper[data-tooltip-anim="none"] .mhb-hotspot-tooltip {
	transition-duration: 0ms !important;
}

/* ------------------------------------------------------------------ */
/*  Free Position Mode                                                */
/*                                                                    */
/*  Tooltip is a sibling of marker (under .mhb-hotspot-image-wrap),   */
/*  positioned at arbitrary X/Y % of the wrap. The marker only carries*/
/*  data-tooltip-pos="free" and data-tt-link to pair with its tooltip.*/
/*                                                                    */
/*  Anchor controls which point of the tooltip aligns to (X%, Y%).    */
/*  Pixel offsets (margin) stack on top of the % position.            */
/* ------------------------------------------------------------------ */

.mhb-hotspot-tooltip--free {
	position: absolute;
	left: var(--mhb-tt-x-d, 50%);
	top:  var(--mhb-tt-y-d, 50%);
	/* Override the inline-mode default arrow direction; arrows hidden in free mode. */
	margin-left: var(--mhb-tt-ox-d, 0px);
	margin-top:  var(--mhb-tt-oy-d, 0px);
}

/* No arrow in free mode — tooltip is a free-floating card. */
.mhb-hotspot-tooltip--free::after {
	display: none;
}

/* Anchor → translate transforms (tooltip's named point lands on the X/Y %). */
.mhb-hotspot-tooltip--free[data-tt-anchor="top-left"]      { transform: translate(0, 0); }
.mhb-hotspot-tooltip--free[data-tt-anchor="top-center"]    { transform: translate(-50%, 0); }
.mhb-hotspot-tooltip--free[data-tt-anchor="top-right"]     { transform: translate(-100%, 0); }
.mhb-hotspot-tooltip--free[data-tt-anchor="center-left"]   { transform: translate(0, -50%); }
.mhb-hotspot-tooltip--free[data-tt-anchor="center"]        { transform: translate(-50%, -50%); }
.mhb-hotspot-tooltip--free[data-tt-anchor="center-right"]  { transform: translate(-100%, -50%); }
.mhb-hotspot-tooltip--free[data-tt-anchor="bottom-left"]   { transform: translate(0, -100%); }
.mhb-hotspot-tooltip--free[data-tt-anchor="bottom-center"] { transform: translate(-50%, -100%); }
.mhb-hotspot-tooltip--free[data-tt-anchor="bottom-right"]  { transform: translate(-100%, -100%); }

/* Visibility — JS toggles .is-active on the free tooltip directly
   (since it's a sibling of the marker, sibling selectors are unreliable). */
.mhb-hotspot-tooltip--free.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Slight fade-in animation for free tooltips (anchor-preserving). */
.mhb-hotspot-wrapper[data-tooltip-anim="fade"] .mhb-hotspot-tooltip--free,
.mhb-hotspot-wrapper[data-tooltip-anim="fade-by-direction"] .mhb-hotspot-tooltip--free,
.mhb-hotspot-wrapper[data-tooltip-anim="slide"] .mhb-hotspot-tooltip--free {
	transition-property: opacity, visibility;
}

/* ------------------------------------------------------------------ */
/*  Positioned items (icon boxes + counters)                          */
/* ------------------------------------------------------------------ */

.mhb-positioned {
	position: absolute;
	top: var(--mhb-top-d, 10%);
	left: var(--mhb-left-d, 5%);
	width: var(--mhb-width-d, 220px);
	z-index: 4;
	box-sizing: border-box;
}

/* ------------------------------------------------------------------ */
/*  Icon Boxes — MHB default styling                                  */
/* ------------------------------------------------------------------ */

.mhb-iconbox {
	color: #002f6c;
}

.mhb-iconbox-link {
	color: inherit;
	text-decoration: none;
	display: block;
}

.mhb-iconbox-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	color: #002f6c;
	line-height: 1;
}

.mhb-iconbox-icon i {
	font-size: 40px;
	color: inherit;
}

.mhb-iconbox-icon svg {
	width: 40px;
	height: 40px;
	fill: currentColor;
}

.mhb-iconbox-title {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 8px 0;
	color: #002f6c;
}

.mhb-iconbox-title a {
	color: inherit;
	text-decoration: none;
}

.mhb-iconbox-description {
	font-size: 13px;
	line-height: 1.5;
	color: #002f6c;
	margin: 0;
}

/* ------------------------------------------------------------------ */
/*  Counters — MHB default styling                                    */
/* ------------------------------------------------------------------ */

.mhb-counter {
	color: #002f6c;
}

.mhb-counter-title {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	margin: 0 0 4px 0;
	color: #002f6c;
}

.mhb-counter-number-wrap {
	display: inline-flex;
	align-items: baseline;
	gap: 2px;
	flex-wrap: wrap;
}

.mhb-counter-number,
.mhb-counter-prefix,
.mhb-counter-suffix {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.1;
	color: #002f6c;
	font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------------------ */
/*  Responsive — switch tablet / mobile vars for positions + offsets  */
/* ------------------------------------------------------------------ */

@media (max-width: 1024px) {
	.mhb-positioned {
		top: var(--mhb-top-t, var(--mhb-top-d, 10%));
		left: var(--mhb-left-t, var(--mhb-left-d, 5%));
		width: var(--mhb-width-t, var(--mhb-width-d, 200px));
	}

	.mhb-hotspot-tooltip {
		margin-left: var(--mhb-tt-ox-t, var(--mhb-tt-ox-d, 0px));
		margin-top:  var(--mhb-tt-oy-t, var(--mhb-tt-oy-d, 0px));
	}

	.mhb-hotspot-tooltip--free {
		left: var(--mhb-tt-x-t, var(--mhb-tt-x-d, 50%));
		top:  var(--mhb-tt-y-t, var(--mhb-tt-y-d, 50%));
	}
}

@media (max-width: 767px) {
	.mhb-positioned {
		top: var(--mhb-top-m, var(--mhb-top-t, var(--mhb-top-d, 10%)));
		left: var(--mhb-left-m, var(--mhb-left-t, var(--mhb-left-d, 5%)));
		width: var(--mhb-width-m, var(--mhb-width-t, var(--mhb-width-d, 160px)));
	}

	.mhb-hotspot-tooltip {
		margin-left: var(--mhb-tt-ox-m, var(--mhb-tt-ox-t, var(--mhb-tt-ox-d, 0px)));
		margin-top:  var(--mhb-tt-oy-m, var(--mhb-tt-oy-t, var(--mhb-tt-oy-d, 0px)));
	}

	.mhb-hotspot-tooltip--free {
		left: var(--mhb-tt-x-m, var(--mhb-tt-x-t, var(--mhb-tt-x-d, 50%)));
		top:  var(--mhb-tt-y-m, var(--mhb-tt-y-t, var(--mhb-tt-y-d, 50%)));
	}

	.mhb-iconbox-icon i,
	.mhb-iconbox-icon svg {
		font-size: 28px;
		width: 28px;
		height: 28px;
	}

	.mhb-iconbox-title { font-size: 12px; }
	.mhb-iconbox-description { font-size: 11px; }
	.mhb-counter-title { font-size: 11px; }

	.mhb-counter-number,
	.mhb-counter-prefix,
	.mhb-counter-suffix {
		font-size: 22px;
	}
}
