.artist-profile {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin: 0 0 34px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf7;
}

.track-back {
  margin: 0 0 20px;
}

.track-back a,
.track-terms a,
.track-not-found a {
  color: var(--accent);
  font-weight: 700;
}

.track-hero {
  margin-bottom: 24px;
}

.track-content {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.track-information,
.track-not-found {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.track-information h2 {
  margin-top: 0;
}

.track-facts {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  margin: 0 0 22px;
}

.track-facts dt {
  font-weight: 700;
}

.track-facts dd {
  margin: 0;
  color: var(--muted);
}

.track-terms {
  margin: 18px 0 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .track-content {
    grid-template-columns: 1fr;
  }
}

.artist-profile-icon {
  width: 112px;
  height: 112px;
  flex: 0 0 112px;
  border-radius: 50%;
  background: #fff;
}

.artist-profile-label {
  margin: 0 0 2px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
}

.artist-profile h2 {
  margin: 0;
  font-size: 1.45rem;
}

.artist-profile-description {
  margin: 8px 0 0;
  color: var(--muted);
}

.scratch-profile-link {
  display: inline-flex;
  margin-top: 14px;
  padding: 7px 11px;
  border-radius: 5px;
  background: var(--accent);
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.scratch-profile-link:hover,
.scratch-profile-link:focus-visible {
  background: #234d34;
  color: #fff;
}

.artist-summary-section {
  margin: 0 0 38px;
}

.artist-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.artist-summary {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf7;
}

.artist-summary-icon {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 50%;
  background: #fff;
}

.artist-summary h3 {
  margin: 0;
  font-size: 1.08rem;
}

.artist-summary p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.artist-summary-link {
  display: inline-block;
  margin-top: 9px;
  color: var(--accent);
  font-size: .9rem;
  font-weight: 700;
}

@media (max-width: 520px) {
  .artist-profile {
    gap: 16px;
    padding: 20px;
  }

  .artist-profile-icon {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
  }
}
