/**
 * Trihead Capability Spec widget styles.
 * All visual properties here are sane defaults; colors, spacing, typography,
 * etc. are overridable from the Elementor Style tab.
 */

.trihead-cap-spec {
	background-color: #1a1a1a;
	border-radius: 6px;
	padding: 32px 36px;
	box-sizing: border-box;
}

.trihead-cap-spec * {
	box-sizing: border-box;
}

/* Eyebrow / heading */
.trihead-cap-spec__eyebrow {
	color: #d4561e;
	font-family: "Courier New", ui-monospace, monospace;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 24px;
}

/* Rows wrapper */
.trihead-cap-spec__rows {
	display: flex;
	flex-direction: column;
}

/* Single row */
.trihead-cap-spec__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trihead-cap-spec__row:last-child {
	border-bottom: none;
}

/* Label (left) */
.trihead-cap-spec__label {
	color: #9a9a9a;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.4;
}

/* Value (right) */
.trihead-cap-spec__value {
	color: #ffffff;
	font-family: "Courier New", ui-monospace, monospace;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.4;
	text-align: right;
}

/* Button */
.trihead-cap-spec__button-wrap {
	margin-top: 28px;
}

.trihead-cap-spec__button {
	display: block;
	width: 100%;
	background-color: #d4561e;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	padding: 18px 24px;
	border: none;
	border-radius: 2px;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.trihead-cap-spec__button:hover,
.trihead-cap-spec__button:focus {
	background-color: #b64816;
	color: #ffffff;
}

/* Responsive: stack label/value on very small screens */
@media (max-width: 480px) {
	.trihead-cap-spec__row {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.trihead-cap-spec__value {
		text-align: left;
	}
}
