/* BlueWave Stat Bar — scope: .bw-stat-bar */
/* Make sure the Elementor widget container itself spans the full width of its
   parent so the stat-bar inside it can stretch edge-to-edge. */
.elementor-widget-bluewave_stat_bar,
.elementor-widget-bluewave_stat_bar > .elementor-widget-container {
	width: 100%;
}
.bw-stat-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 36px;
	margin: 0;
	width: 100%;
	box-sizing: border-box;
}
.bw-stat-bar__cell {
	min-width: 0;
}

/* Full-width mode: stats fill the container as an even grid with a
   viewport-responsive gap. Overrides the inline-row/columns layout. */
.bw-stat-bar-fw--yes .bw-stat-bar {
	display: grid !important;
	grid-template-columns: repeat(var(--bw-stat-bar-count, auto-fit), minmax(0, 1fr));
	gap: clamp(16px, 3.5vw, 48px) !important;
	width: 100%;
	max-width: 100% !important;
	align-items: start;
	justify-content: stretch;
}
@media (max-width: 1024px) {
	.bw-stat-bar-fw--yes .bw-stat-bar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 540px) {
	.bw-stat-bar-fw--yes .bw-stat-bar {
		grid-template-columns: 1fr;
	}
}
.bw-stat-bar__number {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	font-family: var(--display, "Stack Sans Headline", "Helvetica Neue", Arial, sans-serif);
	font-weight: 700;
	font-size: 40px;
	line-height: 1;
	color: #023c5a;
}
.bw-stat-bar__suffix {
	font-size: 17px;
	font-weight: 700;
	color: #88b4c8;
	line-height: 1;
}
.bw-stat-bar__label {
	display: block;
	margin-top: 6px;
	font-size: 12.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #5b6b75;
	max-width: 28ch;
}

/* Per-stat responsive hide (driven by the repeater "Hide" switcher). */
@media (min-width: 1025px) {
	.bw-stat-bar__cell--hide-desktop { display: none !important; }
}
@media (max-width: 1024px) and (min-width: 768px) {
	.bw-stat-bar__cell--hide-tablet { display: none !important; }
}
@media (max-width: 767px) {
	.bw-stat-bar__cell--hide-mobile { display: none !important; }
}
