/* Ledmax – produktspecifikationer */

.lmps {
	--lmps-cols: 3;
	--text: #0b0f14;
	--muted: rgba(11, 15, 20, .70);
	font-family: var(--lm-font);
	color: var(--text);
}

.lmps .lmps-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 14px;
}

.lmps .lmps-title {
	margin: 0;
	font-weight: 900;
	letter-spacing: -.02em;
	font-size: clamp(18px, 2.2vw, 24px);
	line-height: 1.15;
}

.lmps .lmps-sub {
	margin: 6px 0 0;
	color: var(--muted);
	font-weight: 600;
	line-height: 1.6;
	font-size: 14px;
	max-width: 70ch;
}

.lmps .lmps-grid {
	display: grid;
	grid-template-columns: repeat(var(--lmps-cols), minmax(0, 1fr));
	gap: 12px;
}

.lmps .lmps-card {
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, .08);
	background: var(--lm-accent);
	color: #fff;
	padding: 14px 14px 12px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 14px 40px rgba(255, 77, 0, .18);
	transition: transform .18s ease, filter .18s ease;
}

.lmps .lmps-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, .10);
	opacity: 0;
	transition: opacity .18s ease;
	pointer-events: none;
}

@media (hover: hover) {
	.lmps .lmps-card:hover {
		transform: translateY(-2px);
		filter: brightness(1.02);
	}

	.lmps .lmps-card:hover::before { opacity: 1; }
}

.lmps .lmps-label {
	position: relative;
	z-index: 1;
	display: block;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .8px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .88);
	margin-bottom: 6px;
}

.lmps .lmps-value {
	position: relative;
	z-index: 1;
	display: block;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: .2px;
	color: #fff;
	word-break: break-word;
	line-height: 1.3;
}

@media (max-width: 900px) {
	.lmps .lmps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
	.lmps .lmps-grid { grid-template-columns: 1fr; }
}
