body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f4ec;
    color: #2b2b2b;
    margin: 0;
    padding: 0;
  }
  .profile-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
  }
  .composer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
  }
  .composer-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0 auto;
    text-align: center;
    flex-grow: 1;
  }
  .composer-image {
    margin-left: 2rem;
    flex-shrink: 0;
  }
  .composer-image img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .composer-bio {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    display: block;
  }
  .composer-bio p a {
    transition: text-decoration 0.5s ease-in-out;
    background-color: #fbf7f0;
  }
  .composer-bio p a:hover {
    text-decoration: underline;
  }
  .composer-media {
    margin-top: 2rem;
  }
  .composer-media h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }
  .video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }