/*
 * Kukinas — widget "Stats Bar": barra de datos editoriales
 * (Experience Editorial Data de Nosotros).
 *
 * Geometría: flex row de celdas iguales, divisor vertical entre ítems
 * (pseudo-elemento, recortado para no tocar el borde del contenedor).
 * Los colores/tipografías se sobreescriben desde Estilo en Elementor.
 */

.kk-stats {
	--kk-stats-divider: rgba(255, 255, 255, 0.14);
	display: flex;
	flex-direction: row;
	align-items: stretch;
	width: 100%;
	box-sizing: border-box;
	background-color: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.17);
	border-radius: 16px;
	padding: 24px 20px;
}

.kk-stats__item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	flex: 1 1 0;
	gap: 10px;
	min-width: 0;
	box-sizing: border-box;
	padding: 8px 24px;
}

.kk-stats__item + .kk-stats__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 12%;
	bottom: 12%;
	width: 1px;
	background: var(--kk-stats-divider);
}

.kk-stats__visual {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	min-width: 0;
	width: 100%;
}

.kk-stats__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background-color: rgba(255, 255, 255, 0.08);
}

.kk-stats__badge svg,
.kk-stats__badge i {
	width: 16px;
	height: 16px;
	font-size: 16px;
	line-height: 1;
	color: #FFD0C8;
	fill: #FFD0C8;
}

.kk-stats__value {
	font-family: "Bricolage Grotesque", system-ui, sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.15;
	color: #FFFFFF;
	white-space: nowrap;
	min-width: 0;
}

.kk-stats__label {
	display: block;
	width: 100%;
	font-family: Montserrat, system-ui, sans-serif;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.6px;
	line-height: 1.45;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 767px) {
	.kk-stats {
		flex-direction: column;
		padding: 20px 16px;
	}

	.kk-stats__item {
		padding: 16px 12px;
	}

	.kk-stats__item + .kk-stats__item::before {
		left: 8%;
		right: 8%;
		top: 0;
		bottom: auto;
		width: auto;
		height: 1px;
	}
}
