/**
 * Portfolio Technical Specs Widget Styles
 *
 * Simplified styles for REPEATER-based specs display.
 * Only uses: spec-item, spec-label, spec-value
 *
 * @package Soma
 * @since 3.1.23
 */

/* ==========================================================================
   Container
   ========================================================================== */

.soma-portfolio-technical-specs {
	display: flex;
	flex-direction: column;
}

/* ==========================================================================
   Spec Item
   ========================================================================== */

.soma-portfolio-technical-specs .spec-item {
	display: flex;
	flex-direction: column;
	gap: var(--soma-spacing-xs, 4px);
}

/* ==========================================================================
   Spec Label & Value
   ========================================================================== */

.soma-portfolio-technical-specs .spec-label {
	font-family: var(--soma-font-family-primary);
	font-size: var(--soma-font-size-small);
	font-weight: 500;
	color: var(--soma-color-text-secondary);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.soma-portfolio-technical-specs .spec-value {
	font-family: var(--soma-font-family-primary);
	font-size: var(--soma-font-size-h4);
	font-weight: 700;
	color: var(--soma-color-text-primary);
	line-height: 1.2;
}

/* ==========================================================================
   Empty State (Elementor Editor only)
   ========================================================================== */

.soma-portfolio-technical-specs--empty {
	padding: var(--soma-spacing-xl);
	text-align: center;
	font-family: var(--soma-font-family-primary);
	font-size: var(--soma-font-size-body);
	color: var(--soma-color-text-secondary);
	background: var(--soma-bg-light);
	border-radius: var(--soma-border-radius);
}

/* ==========================================================================
   Responsive - Mobile
   ========================================================================== */

@media (max-width: 767px) {
	.soma-portfolio-technical-specs .spec-value {
		font-size: var(--soma-font-size-h5);
	}
}
