/* [project]/app/artist/[id]/artist-detail.css [app-client] (css) */
.artist-name-primary {
  text-transform: uppercase;
  color: #50ccff;
  letter-spacing: -.02em;
  font-family: AvenirNext, Helvetica, Arial, sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: .9;
}

.artist-name-secondary {
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: #0000;
  -webkit-text-stroke: 2px #ffffff80;
  text-shadow: none;
  font-family: AvenirNext, Helvetica, Arial, sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: .9;
}

.achievement-bar {
  white-space: nowrap;
  background-color: #15191b;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
  display: flex;
  overflow-x: auto;
}

.achievement-item {
  flex-shrink: 0;
  align-items: center;
  gap: .75rem;
  display: flex;
}

.achievement-icon {
  color: #50ccff;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.achievement-text {
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #50ccff;
  font-family: AvenirNext, Helvetica, Arial, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.3;
}

.biography-section {
  color: #e0e0e0;
  background-color: #15191b;
  position: relative;
}

.biography-text {
  color: silver;
  white-space: pre-line;
  font-size: 1.125rem;
  line-height: 1.8;
}

.biography-text.collapsed {
  max-height: 200px;
  position: relative;
  overflow: hidden;
}

.biography-text.collapsed:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(#0000, #15191b);
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.read-more-btn {
  color: #50ccff;
  text-transform: uppercase;
  letter-spacing: .15em;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: .5rem;
  padding: 1rem 0;
  font-family: AvenirNext, Helvetica, Arial, sans-serif;
  font-size: .875rem;
  font-weight: 700;
  transition: opacity .3s;
  display: inline-flex;
}

.read-more-btn:hover {
  opacity: .7;
}

.obtain-license-cta {
  background-color: #50ccff;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
  display: flex;
}

.obtain-license-cta h2 {
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  font-family: AvenirNext, Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
}

.obtain-license-cta p {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #ffffffe6;
  margin-bottom: 2rem;
  font-family: AvenirNext, Helvetica, Arial, sans-serif;
  font-size: .85rem;
  font-weight: 700;
}

.obtain-license-btn {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
  background-color: #15191b;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-family: AvenirNext, Helvetica, Arial, sans-serif;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
}

.obtain-license-btn:hover {
  background-color: #2a2f33;
  transform: translateY(-1px);
}

.artist-info-tag {
  color: #50ccff;
  text-transform: uppercase;
  letter-spacing: .05em;
  background-color: #50ccff1a;
  border: 1px solid #50ccff40;
  border-radius: 20px;
  padding: .35rem .85rem;
  font-size: .8rem;
  font-weight: 600;
  display: inline-block;
}

.social-link {
  color: #ffffffb3;
  border: 1px solid #ffffff4d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.social-link:hover {
  color: #50ccff;
  background-color: #50ccff1a;
  border-color: #50ccff;
}

.hero-gradient {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

.hero-image-overlay {
  z-index: 1;
  background: linear-gradient(to top, #15191b 0%, #15191bd9 25%, #15191b80 50%, #15191b4d 75%, #15191b26 100%);
  position: absolute;
  inset: 0;
}

@media (max-width: 768px) {
  .hero-gradient {
    min-height: 50vh;
  }

  .artist-name-primary, .artist-name-secondary {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .artist-name-secondary {
    -webkit-text-stroke: 1.5px #ffffff80;
  }

  .obtain-license-cta {
    padding: 2rem 1.5rem;
  }

  .obtain-license-cta h2 {
    font-size: 1.5rem;
  }

  .achievement-bar {
    gap: 1.5rem;
    padding: .75rem 1rem;
  }
}

/*# sourceMappingURL=app_artist_%5Bid%5D_artist-detail_06c3ca11.css.map*/