.artist-head {
  display: block;
  padding: 0;
}

.artist-head__image {
  margin: 0;
}

.artist-head__image img {
  width: 100%;
}

.artist-head__inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
  padding: 0;
}

.artist-head__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--light-neutral);
}

.artist-head__content {
  padding: 0;
  position: relative;
}

.artist-head__header {
  background: var(--primary-bg);
  color: var(--text-inner);
  padding: 1rem;
  position: relative;
}

.artist-head__header h1 {
  color: var(--secondary);
  margin: 0 0 1rem 0;
  font-weight: 500;
}
.artist-head__header h2 {
  font-weight: 300;
}

.artist-head__header dt {
  margin: 0 0 0.5rem 0;
  padding: 0;
  font-weight: 100;
  color: var(--white);
}

.artist-head__header dd {
  margin: 0;
  padding: 0;
  color: var(--secondary);
  font-weight: 500;
  font-size: 1.25rem;
}

.artist-head__performance {
  color: var(--primary);
  margin-block-end: 1rem;
}

.artist-head__editor {
  display: block;
  color: var(--white);
  padding: 1rem;
}

.artist-head__editor p {
  font-size: 1.2rem;
  margin-block-end: 3rem;
}

.video-wrapper {
  margin-top: 2rem;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-links li {
  margin: 0;
  padding: 0;
}

.social-links a {
  color: var(--secondary);
  font-weight: 500;
  text-decoration: underline;
}

.share-button {
  background-color: transparent;
  border: 0;
  position: absolute;
  bottom: 16px;
  right: 8px;
}

@media only screen and (min-width: 960px) {
  .artist-head {
    display: block;
    padding: 0 3rem;
  }
  .artist-head__inner {
    flex-direction: row;
    gap: 5rem;
  }

  .artist-head__info {
    flex-direction: row;
    gap: 3rem;
  }

  .artist-head__content {
    flex: 7;
  }
  .artist-head__image {
    flex: 5;
  }
  .artist-head__header {
    border-radius: 4px;
  }

  .artist-head__performance {
    color: var(--primary);
    margin-block-end: 2rem;
  }

  .artist-head__editor {
    text-align: justify;
    display: block;
    color: var(--white);
    padding-block: 0 2rem;
  }

  .share-button {
    top: 16px;
    bottom: auto;
  }

  .social-links {
    gap: 1rem;
    flex-wrap: wrap;
  }
}

.error-message {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--white);
}

.error-message h1 {
  margin-bottom: 1rem;
  color: var(--secondary);
}

.error-message p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.error-message .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--secondary);
  color: var(--primary-bg);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.error-message .btn:hover {
  background: var(--light-secondary);
}
