/**
 * ENRFO Power Services — module styles.
 */

.enrfo-segment-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 18px;
	background: var(--enrfo-surface);
	border: 1px solid var(--enrfo-border);
	border-radius: var(--enrfo-radius);
	box-shadow: var(--enrfo-shadow-sm);
}

.enrfo-segment-card header { display: flex; align-items: center; gap: 10px; }
.enrfo-segment-card h3 { margin: 0; font-size: 15.5px; }

.enrfo-segment-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(4, 43, 92, .07);
	color: var(--enrfo-primary);
}

.enrfo-segment-card footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--enrfo-border);
}

.enrfo-loadbar {
	height: 8px;
	border-radius: 999px;
	background: var(--enrfo-bg);
	overflow: hidden;
}

.enrfo-loadbar span {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--enrfo-secondary), var(--enrfo-accent));
}

.enrfo-loadbar--lg { height: 14px; margin: 10px 0 4px; }

.enrfo-asset-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.enrfo-asset-head .enrfo-card__title { margin-bottom: 6px; }
