.mldp-visit-counter {
	display: flex;
	align-items: baseline;
	gap: .5em;
	justify-content: center;
	flex-wrap: wrap;
}
.mldp-visit-counter__num {
	font-variant-numeric: tabular-nums;
	font-size: 1.5em;
	font-weight: 700;
	/* Shares MLDP Suite -> Stile's accent color with the player (falls back
	   to this counter's own original shade when nothing's customized). */
	color: var( --mldp-suite-accent, #b8924f );
}
.mldp-visit-counter__label {
	font-size: .8em;
	text-transform: uppercase;
	letter-spacing: .06em;
}

/* Sidebar placement: sits inside the same panel as the other widgets. */
.mldp-visit-counter--sidebar {
	padding-bottom: 1.4em;
	margin-bottom: 1.4em;
	border-bottom: 1px solid var(--theme-color-bd_color, #E3D6D3);
}
.mldp-visit-counter--sidebar .mldp-visit-counter__label {
	color: var(--theme-color-text_light, #988F8A);
}

/* Footer placement: light text on the footer's dark navy background. */
.mldp-visit-counter--footer .mldp-visit-counter__label {
	color: rgba(255, 255, 255, .55);
}
.mldp-visit-counter--footer {
	padding-bottom: 1.2em;
}

/* Shortcode placement: a self-contained pill, safe to drop into any post
   or page content regardless of the surrounding background. */
.mldp-visit-counter--inline {
	display: inline-flex;
	padding: .5em 1.1em;
	border-radius: 999px;
	background: rgba( 184, 146, 79, .08 );
	border: 1px solid rgba( 184, 146, 79, .3 );
}
