.kg-lista-wrap {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	width: 100%;
	margin: 30px 0;
}
.kg-lista-row {
	display: flex;
	align-items: center;
	gap: 18px;
	background: #0b0b0f;
	border: 1.5px solid rgba(217,169,78,0.35);
	border-radius: 12px;
	padding: 12px 20px;
	text-decoration: none;
	color: #ffffff;
	transition: transform 0.15s ease, border-color 0.15s ease;
}
.kg-lista-row:hover {
	transform: translateY(-2px);
	border-color: rgba(217,169,78,0.7);
	color: #ffffff;
}
.kg-lista-logo {
	flex: 0 0 130px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.kg-lista-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.kg-lista-logo-fallback {
	font-weight: 800;
	font-size: 15px;
	text-align: center;
}
.kg-lista-stats {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.kg-lista-amount {
	font-size: 18px;
	font-weight: 800;
	color: #ffffff;
}
.kg-lista-extra {
	font-size: 12.5px;
	color: #a79cb0;
}
.kg-lista-middle {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	text-align: center;
	min-width: 0;
}
.kg-lista-badge {
	background: rgba(124,43,212,0.3);
	color: #dcbdf7;
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 7px;
	white-space: nowrap;
}
.kg-lista-toptext {
	font-size: 13px;
	font-weight: 700;
	color: #d9a94e;
	white-space: nowrap;
}
.kg-lista-cta {
	flex: 0 0 auto;
	background: linear-gradient(135deg, #8fd13f, #6ea61e);
	color: #ffffff;
	font-weight: 700;
	font-size: 13px;
	padding: 10px 16px;
	border-radius: 9px;
	white-space: nowrap;
}
@media (max-width: 700px) {
	.kg-lista-wrap {
		width: 100%;
		margin: 20px 0;
	}
	.kg-lista-middle {
		display: none;
	}
	.kg-lista-stats {
		flex: 1 1 auto;
	}
	.kg-lista-row {
		gap: 12px;
		padding: 10px 14px;
	}
	.kg-lista-logo {
		flex: 0 0 96px;
		height: 38px;
	}
	.kg-lista-amount {
		font-size: 17px;
	}
	.kg-lista-cta {
		font-size: 12px;
		padding: 9px 14px;
	}
}

