/** Shopify CDN: Minification failed

Line 63:24 Expected identifier but found whitespace
Line 63:25 Unexpected "2px"
Line 63:30 Unexpected "{"
Line 63:39 Expected ":"
Line 126:21 Expected identifier but found whitespace
Line 126:23 Unexpected "{"
Line 126:32 Expected ":"

**/
  

  .single-artist-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
  }

  /* Header elements */
  .sa-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
  }
  .sa-number {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
  }
  .sa-number span {
    font-size: 1rem;
    font-weight: normal;
    vertical-align: super;
  }
  .sa-close {
    font-size: 2rem;
    line-height: 1;
    color: #000;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.3s;
  }
  .sa-close:hover {
    opacity: 1;
  }

  /* Big Neon Text */
  .sa-neon-title {
    position: absolute;
    top: -20px;
    left: 40%;
    transform: translateX(-50%);
    font-size: 8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px {{ section.settings.neon_color }};
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
    letter-spacing: 2px;
  }
.sa-book-btn {
    margin-top: 30px;
    width: fit-content;
}
  .sa-book-btn:hover {
    opacity: 0.8;
  }
  @media (max-width: 992px) {
    .sa-neon-title {
      font-size: 5rem;
      top: 0;
      left: 50%;
    }
  }
  @media (max-width: 768px) {
    .sa-neon-title {
      font-size: 3.5rem;
    }
  }

  /* Grid Layout */
  .sa-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    position: relative;
    z-index: 5;
  }
  @media (max-width: 992px) {
    .sa-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Left Column (Main Image + Player) */
  .sa-left-col {
    position: relative;
    display: flex;
    align-items: center;
  }
  .sa-main-img-wrapper {
    width: 100%;
    position: relative;
  }
  .sa-main-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  /* "Now Playing" Widget */
  .sa-player-widget {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: {{ section.settings.neon_color }};
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 15;
    min-width: 380px;
  }
  @media (max-width: 768px) {
    .sa-player-widget {
      left: 0;
      bottom: 0;
      width: 100%;
      min-width: unset;
      box-sizing: border-box;
    }
  }
  .sa-player-cover {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,0.1);
  }
  .sa-player-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .sa-player-track {
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    margin: 0;
    line-height: 1.2;
  }
  .sa-player-album {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.7);
    margin: 4px 0 8px;
    line-height: 1.2;
  }
  .sa-player-controls {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .sa-player-pause-icon {
    width: 12px;
    height: 14px;
    display: flex;
    gap: 4px;
  }
  .sa-player-pause-icon::before, .sa-player-pause-icon::after {
    content: '';
    width: 4px;
    height: 100%;
    background-color: #000;
  }
  .sa-player-progress-bar {
    flex: 1;
    height: 2px;
    background-color: rgba(0,0,0,0.2);
    position: relative;
  }
  .sa-player-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 45%; 
    background-color: #000;
  }
  .sa-player-time {
    font-size: 0.75rem;
    font-weight: 700;
    color: #000;
  }

  /* Right Column Structure */
  .sa-right-col {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    padding-top: 40px;
  }
  @media (max-width: 768px) {
    .sa-right-col {
      grid-template-columns: 1fr;
    }
  }

  /* Small Secondary Images */
  .sa-secondary-imgs {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .sa-small-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  /* Text & Metadata Area */
  .sa-text-content {
    display: flex;
    flex-direction: column;
  }
  .sa-artist-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.1;
  }
  /* .sa-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
  } */
  .sa-read-more {
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    font-size: 0.8rem;
    text-decoration: underline;
    display: inline-block;
    margin-top: 10px;
  }

  /* Metadata Grid */
  .sa-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 20px;
    margin-bottom: 30px;
  }
  /* .sa-meta-item h4 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(0,0,0,0.4);
    margin: 0 0 10px;
  } */
 .sa-meta-item p {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 5px;
    color: #000;
    line-height: 1.4;
}
  .sa-meta-item p span.sa-year {
    font-weight: normal;
    color: rgba(0,0,0,0.5);
    margin-left: 5px;
  }

  /* Social Icons */
  .sa-socials {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
  }
  .sa-socials a {
    color: #000;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sa-socials a:hover {
    opacity: 0.6;
  }
  .sa-socials svg {
    width: 24px;
    height: 24px;
  }