.profile {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 1rem;
  margin: 5rem 0 5rem 5rem;
  position: relative;
}

.profile .profile-picture img {
  /* left image and 20rem * 20rem */
  width: 20rem;
  height: 20rem;
}

.profile .profile-header {
  padding: 2rem 0;
}

.profile .profile-header h1 {
  text-align: left;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 700;
}

.profile .profile-header p.profile-bio {
  margin: 0.5rem;
}

.profile .profile-header .genre-tags {
  margin: 0.5rem;
  width: 70%;
  display: flex;
  gap: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

#approval-section {
  margin: 2rem;
  background-color: var(--oa-pink);
  text-align: center;
  padding: 20px;
  margin: 20px 0;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.unapproved-message {
  display: flex;
  justify-content: center;
}

.delete-social-link {
  cursor: pointer;
}

.add-social-link {
  position: relative;
}

#link-container {
  margin-top: 10px;
}

.link-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}

#upload-picture {
  display: none;
}

.profile-top-track {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--oa-text-dark);
  border-radius: 8px;
  grid-column: 2;
}

.top-track-container {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
  flex-direction: row;
}

.album-artwork {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 4px;
}

.track-details {
  flex: 1;
}

.track-details h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
}

.track-details audio {
  width: 100%;
  max-width: 300px;
  margin: 1rem 0;
}

.spotify-link {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
}

@media screen and (max-width: 1000px) {
  .profile {
    grid-template-columns: 1fr;
    margin: 5%;
  }

  .profile .profile-picture img {
    max-width: 25rem;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .gigs-section {
    width: 100% !important;
  }
}
