.cm-painel-artista-wrap {
	max-width: 1120px;
	margin: 0 auto;
	padding: 24px 16px;
}

.cm-painel-artista {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.cm-panel-card,
.cm-panel-section,
.cm-stat-card,
.cm-hero-card {
	background: #ffffff;
	border: 1px solid #e3e7eb;
	border-radius: 16px;
	box-shadow: 0 4px 18px rgba(16, 24, 40, 0.04);
}

.cm-hero-card {
	padding: 24px;
	display: grid;
	grid-template-columns: 120px minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
}

.cm-hero-card__media img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid #e3e7eb;
}

.cm-hero-card__placeholder {
	width: 120px;
	height: 120px;
	border-radius: 12px;
	background: #f3f4f6;
	border: 1px solid #e3e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: #6b7280;
	text-align: center;
	padding: 12px;
}

.cm-hero-card__title {
	margin: 0 0 8px;
	font-size: 32px;
	line-height: 1.15;
	color: #111827;
}

.cm-hero-card__subtitle {
	margin: 0 0 16px;
	color: #4b5563;
	font-size: 15px;
}

.cm-hero-card__meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 20px;
}

.cm-info-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cm-info-item__label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6b7280;
}

.cm-info-item__value {
	font-size: 15px;
	line-height: 1.5;
	color: #111827;
}

.cm-hero-card__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: stretch;
}

.cm-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border-radius: 10px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.2s ease;
	border: 1px solid transparent;
}

.cm-btn:hover,
.cm-btn:focus {
	opacity: 0.92;
	text-decoration: none;
}

.cm-btn-primary {
	background: #111827;
	color: #ffffff;
}

.cm-btn-secondary {
	background: #ffffff;
	color: #111827;
	border-color: #d1d5db;
}

.cm-btn-danger {
	background: #b42318;
	color: #ffffff;
}

.cm-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.cm-stat-card {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cm-stat-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.cm-stat-card__title {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #6b7280;
}

.cm-stat-card__value {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	color: #111827;
}

.cm-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.cm-badge--success {
	background: #dcfce7;
	color: #166534;
}

.cm-badge--warning {
	background: #fef3c7;
	color: #92400e;
}

.cm-badge--neutral {
	background: #e5e7eb;
	color: #374151;
}

.cm-panel-section {
	padding: 24px;
}

.cm-panel-section__title {
	margin: 0 0 16px;
	font-size: 22px;
	line-height: 1.2;
	color: #111827;
}

.cm-panel-section__content p {
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
	color: #374151;
}

.cm-ficha-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 24px;
}

.cm-jornada-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.cm-jornada-item {
	border: 1px solid #e5e7eb;
	border-radius: 14px;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: #fafafa;
}

.cm-jornada-item__header {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}

.cm-jornada-item__header h3 {
	margin: 0;
	font-size: 18px;
	line-height: 1.2;
	color: #111827;
}

.cm-jornada-item__content p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #4b5563;
}

@media (max-width: 900px) {
	.cm-hero-card {
		grid-template-columns: 1fr;
	}

	.cm-hero-card__actions {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.cm-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.cm-hero-card__meta,
	.cm-stats-grid,
	.cm-ficha-grid {
		grid-template-columns: 1fr;
	}

	.cm-jornada-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.cm-hero-card__title {
		font-size: 26px;
	}
    .cm-artista-layout {
	max-width: 1120px;
	margin: 0 auto;
	padding: 24px 16px;
    }

    .cm-artista-stack {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
}