/* LEDfix Builder — front-end styles for blocks not already in the theme */

.lb-columns {
	display: grid;
	grid-template-columns: repeat(var(--cols, 2), 1fr);
	gap: 22px;
}
.lb-column {
	background: var(--panel-2);
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 26px;
}
.lb-column h3 { margin-bottom: 10px; }
.lb-column p { color: var(--muted); margin: 0 0 10px; }

.lb-testimonials {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 22px;
}
.lb-testimonial {
	background: var(--panel-2);
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 28px;
	margin: 0;
}
.lb-testimonial blockquote {
	margin: 0 0 16px;
	font-size: 1.05rem;
	color: var(--text);
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.5;
}
.lb-testimonial figcaption strong { display: block; color: var(--led-glow); font-size: 0.92rem; }
.lb-testimonial figcaption span { color: var(--muted); font-size: 0.85rem; }

.lb-faq { max-width: 780px; }
.lb-faq__item {
	background: var(--panel-2);
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 6px 20px;
	margin-bottom: 12px;
}
.lb-faq__item summary {
	cursor: pointer;
	font-family: var(--font-display);
	font-weight: 600;
	padding: 14px 0;
	list-style: none;
	position: relative;
	padding-right: 28px;
}
.lb-faq__item summary::-webkit-details-marker { display: none; }
.lb-faq__item summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 12px;
	color: var(--led-glow);
	font-size: 1.3rem;
	transition: transform 0.2s ease;
}
.lb-faq__item[open] summary::after { transform: rotate(45deg); }
.lb-faq__item div { color: var(--muted); padding-bottom: 16px; }
.lb-faq__item div p { margin: 0; }

.lb-media-placeholder {
	border: 2px dashed rgba(111, 214, 255, 0.35);
	border-radius: 18px;
	padding: 60px 24px;
	text-align: center;
	color: var(--muted);
	font-size: 0.95rem;
	background: rgba(111, 214, 255, 0.04);
}
