.acm-dashboard-home {
	max-width: 900px;
	margin: 0 auto;
}

.acm-dashboard-welcome {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.acm-dashboard-welcome img {
	border-radius: 50%;
	width: 64px;
	height: 64px;
	object-fit: cover;
	flex-shrink: 0;
}

.acm-dashboard-welcome h2 {
	margin: 0;
}

.acm-dashboard-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.acm-dashboard-stat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	padding: 1.25rem 1rem;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	text-decoration: none;
	text-align: center;
	transition: border-color 0.15s;
}

.acm-dashboard-stat-card:hover {
	border-color: var(--e-global-color-primary, #2455ac);
}

.acm-dashboard-stat-card-highlight {
	border-color: var(--e-global-color-primary, #2455ac);
	border-width: 2px;
}

.acm-dashboard-stat-number {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
}

.acm-dashboard-stat-label {
	font-size: 0.85rem;
	opacity: 0.75;
}

.acm-dashboard-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.acm-dashboard-action-button {
	display: inline-block;
	padding: 0.6rem 1.25rem;
	border-radius: 6px;
	background: var(--e-global-color-primary, #2455ac);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition: opacity 0.15s;
}

.acm-dashboard-action-button:hover {
	opacity: 0.85;
	color: #fff;
}

.acm-dashboard-capability-status p {
	margin: 0 0 0.5rem;
}

/* Responsive: matches the standing breakpoint requirement for all
   ACM frontend output, per the master spec's Section 21.x layout. */
@media (max-width: 768px) {
	.acm-dashboard-stats {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 480px) {
	.acm-dashboard-stats {
		grid-template-columns: 1fr;
	}

	.acm-dashboard-welcome {
		flex-direction: column;
		text-align: center;
	}
}
