.artist-workspace-content {
  padding: 34px 38px 42px;
}

.artist-workspace-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.artist-workspace-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.artist-workspace-kicker {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artist-workspace-head h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

.artist-workspace-head p {
  margin: 12px 0 0;
  max-width: 760px;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.6;
}

.artist-workspace-head-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.artist-workspace-link {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #d8dde6;
  border-radius: 12px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.artist-workspace-link.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.artist-workspace-warning,
.artist-workspace-note {
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 600;
}

.artist-workspace-warning {
  background: #fff1f1;
  color: #a52020;
  border: 1px solid #f1c3c3;
}

.artist-workspace-warning a {
  color: inherit;
  text-decoration: underline;
}

.artist-workspace-note {
  background: #eef5ff;
  color: #264091;
  border: 1px solid #cfe0ff;
}

.artist-workspace-note.is-error {
  background: #fff1f1;
  color: #a52020;
  border-color: #f1c3c3;
}

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

.artist-stat-card,
.artist-card {
  background: #ffffff;
  border: 1px solid #dde3ec;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(15, 23, 40, 0.06);
}

.artist-stat-card {
  padding: 20px 22px;
}

.artist-stat-label {
  display: block;
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artist-stat-value {
  display: block;
  margin-top: 12px;
  color: #172033;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
}

.artist-stat-meta {
  display: block;
  margin-top: 10px;
  color: #6a778b;
  font-size: 0.92rem;
  line-height: 1.5;
}

.artist-earnings-chart-card {
  overflow: hidden;
}

.artist-earnings-chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  min-height: 260px;
  padding-top: 8px;
}

.artist-earnings-chart-bar {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.artist-earnings-chart-amount {
  color: #172033;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
}

.artist-earnings-chart-track {
  height: 168px;
  padding: 10px 0 0;
  display: flex;
  align-items: flex-end;
  border-radius: 18px 18px 14px 14px;
  background: linear-gradient(180deg, rgba(238, 242, 255, 0.86) 0%, rgba(246, 248, 253, 0.7) 100%);
  border: 1px solid #e5eaf2;
}

.artist-earnings-chart-fill {
  width: 100%;
  min-height: 10px;
  border-radius: 14px 14px 12px 12px;
  background: linear-gradient(180deg, #7b78ff 0%, #5a67ff 54%, #3948ff 100%);
  box-shadow: 0 18px 30px rgba(89, 86, 214, 0.18);
}

.artist-earnings-chart-fill.is-zero {
  background: linear-gradient(180deg, #d7dfec 0%, #c7d0df 100%);
  box-shadow: none;
  opacity: 0.8;
}

.artist-earnings-chart-label {
  color: #66758a;
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.artist-workspace-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.artist-card {
  padding: 22px;
}

.artist-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.artist-card-head h2 {
  margin: 0;
  font-size: 1.25rem;
}

.artist-card-head p {
  margin: 8px 0 0;
  color: #64748b;
  line-height: 1.55;
}

.artist-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3844c2;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.artist-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.artist-action-link {
  min-height: 96px;
  padding: 16px;
  border: 1px solid #e3e8ef;
  border-radius: 18px;
  background: #fbfcfe;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.artist-action-link:hover {
  border-color: #7b78ff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(89, 86, 214, 0.12);
}

.artist-action-link.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.artist-action-link strong {
  display: block;
  font-size: 1rem;
  color: #172033;
}

.artist-action-link span {
  color: #66758a;
  font-size: 0.9rem;
  line-height: 1.5;
}

.artist-step-list {
  display: grid;
  gap: 12px;
}

.artist-requirements-list {
  display: grid;
  gap: 12px;
}

.artist-requirement-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e4e8ef;
  border-radius: 18px;
  background: #fbfcfe;
}

.artist-requirement-item.is-met {
  background: #f1f8f3;
  border-color: #cde7d4;
}

.artist-requirement-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff1f1;
  color: #b42318;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex: 0 0 auto;
}

.artist-requirement-item.is-met .artist-requirement-icon {
  background: #eaf8ef;
  color: #166534;
}

.artist-requirement-copy strong {
  display: block;
  color: #172033;
  font-size: 0.95rem;
}

.artist-requirement-copy span {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 0.88rem;
}

.artist-step-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid #e4e8ef;
  border-radius: 18px;
  background: #fbfcfe;
}

.artist-step-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #edf1f7;
  color: #5e6a7f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.artist-step-item.is-complete .artist-step-badge {
  background: #eaf8ef;
  color: #166534;
}

.artist-step-copy strong {
  display: block;
  color: #172033;
  font-size: 0.98rem;
}

.artist-step-copy p {
  margin: 6px 0 0;
  color: #66758a;
  line-height: 1.5;
  font-size: 0.9rem;
}

.artist-listing-grid,
.artist-royalty-grid,
.artist-placeholder-grid {
  display: grid;
  gap: 14px;
}

.artist-listing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.artist-placeholder-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.artist-listing-card,
.artist-royalty-card,
.artist-placeholder-card {
  border: 1px solid #e4e8ef;
  border-radius: 18px;
  background: #fbfcfe;
  overflow: hidden;
}

.artist-listing-media,
.artist-royalty-media {
  aspect-ratio: 1 / 1;
  background: #eef2f7;
}

.artist-listing-media img,
.artist-royalty-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist-listing-copy,
.artist-royalty-copy,
.artist-placeholder-card {
  padding: 16px;
}

.artist-listing-copy strong,
.artist-royalty-copy strong {
  display: block;
  color: #172033;
  font-size: 1rem;
}

.artist-listing-copy p,
.artist-royalty-copy p,
.artist-placeholder-card p {
  margin: 8px 0 0;
  color: #66758a;
  line-height: 1.5;
  font-size: 0.9rem;
}

.artist-listing-meta,
.artist-royalty-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.artist-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3844c2;
  font-size: 0.82rem;
  font-weight: 700;
}

.artist-status-badge[data-status="published"] {
  background: #eaf8ef;
  color: #166534;
}

.artist-status-badge[data-status="pending_review"] {
  background: #fff7ed;
  color: #b45309;
}

.artist-status-badge[data-status="rejected"] {
  background: #fff1f1;
  color: #b42318;
}

.artist-inline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: #3844c2;
  font-size: 0.88rem;
  font-weight: 700;
}

.artist-balance-note {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f6f8ff 0%, #fff8f3 100%);
  border: 1px solid #e5e9f4;
  color: #31415e;
  line-height: 1.6;
}

.artist-withdrawal-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.artist-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.artist-field span {
  color: #172033;
  font-size: 0.9rem;
  font-weight: 700;
}

.artist-field input,
.artist-field textarea,
.artist-field select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #d7dce5;
  border-radius: 14px;
  background: #ffffff;
  color: #172033;
  font: inherit;
}

.artist-field input:focus,
.artist-field textarea:focus,
.artist-field select:focus {
  outline: none;
  border-color: #5a67ff;
  box-shadow: 0 0 0 3px rgba(90, 103, 255, 0.12);
}

.artist-transaction-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.artist-transaction-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid #e4e8ef;
  border-radius: 18px;
  background: #fbfcfe;
}

.artist-transaction-copy strong {
  display: block;
  color: #172033;
  font-size: 0.96rem;
}

.artist-transaction-copy p {
  margin: 6px 0 0;
  color: #66758a;
  line-height: 1.5;
  font-size: 0.9rem;
}

.artist-transaction-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.artist-transaction-amount {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  text-align: right;
}

.artist-transaction-amount strong {
  color: #172033;
  font-size: 1rem;
}

.artist-transaction-amount strong.is-credit {
  color: #166534;
}

.artist-transaction-amount strong.is-debit {
  color: #b42318;
}

.artist-transaction-date {
  color: #66758a;
  font-size: 0.84rem;
  font-weight: 700;
}

.artist-empty {
  padding: 18px;
  border: 1px dashed #d7dce5;
  border-radius: 18px;
  background: #fbfcfe;
  color: #64748b;
  line-height: 1.6;
}

.artist-license-list {
  display: grid;
  gap: 16px;
}

.artist-license-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid #e4e8ef;
  border-radius: 20px;
  background: #fbfcfe;
}

.artist-license-media {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: #eef2f7;
}

.artist-license-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist-license-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.artist-license-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.artist-license-head h3 {
  margin: 0;
  color: #172033;
  font-size: 1.08rem;
}

.artist-license-head p {
  margin: 8px 0 0;
  color: #66758a;
  line-height: 1.5;
  font-size: 0.9rem;
}

.artist-license-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.artist-license-detail-grid,
.artist-license-fee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.artist-license-detail-card,
.artist-license-fee-card,
.artist-license-note-card {
  padding: 14px 16px;
  border: 1px solid #e4e8ef;
  border-radius: 18px;
  background: #ffffff;
}

.artist-license-detail-card span,
.artist-license-fee-card span,
.artist-license-note-card span {
  display: block;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artist-license-detail-card strong,
.artist-license-fee-card strong {
  display: block;
  margin-top: 8px;
  color: #172033;
  font-size: 0.96rem;
  line-height: 1.45;
}

.artist-license-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.artist-license-note-card p {
  margin: 8px 0 0;
  color: #66758a;
  font-size: 0.9rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

.artist-license-response-box {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #e4e8ef;
  background: linear-gradient(135deg, #f6f8ff 0%, #fff8f3 100%);
}

.artist-license-response-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 14px;
}

.artist-license-response-note textarea {
  min-height: 112px;
  padding: 14px;
}

.artist-license-response-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

@media (max-width: 1180px) {
  .artist-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artist-workspace-grid,
  .artist-listing-grid,
  .artist-placeholder-grid,
  .artist-royalty-grid,
  .artist-license-detail-grid,
  .artist-license-fee-grid,
  .artist-license-note-grid,
  .artist-license-response-grid {
    grid-template-columns: 1fr;
  }

  .artist-license-card {
    grid-template-columns: 1fr;
  }

  .artist-earnings-chart {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .artist-workspace-content {
    padding: 22px 18px 28px;
  }

  .artist-workspace-head,
  .artist-card-head {
    flex-direction: column;
  }

  .artist-summary-grid,
  .artist-action-grid {
    grid-template-columns: 1fr;
  }

  .artist-earnings-chart {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artist-transaction-row {
    grid-template-columns: 1fr;
  }

  .artist-transaction-amount {
    align-items: flex-start;
    text-align: left;
  }

  .artist-license-head {
    flex-direction: column;
  }
}
