/* About Page */

.page-subtitle {
  text-align: center;
  font-size: 1rem;
}



.about-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.about-artist-img {
  width: auto;
  max-width: 90vw;
  height: auto;
  margin: 0 auto;
}

.about-artist-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-container {
  max-width: 600px;
  text-align: left;
  margin: 0 0.75rem;  
}

@media (min-width: 768px) {
  .about-section {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    padding: 2.5rem 3rem;
  }

  .about-container {
    flex: 1;
    text-align: left;
  }

  .about-container > :first-child {
    margin-top: 0;
  }

  .about-artist-img {
    flex-shrink: 0;
    max-width: 25vw;
    margin-right: 8vw;
    
  }

  .about-artist-img img {
    width: 100%;
    height: auto;
    
  }
}
