/* [project]/src/components/marketplace/MasterReleaseView.module.css [app-client] (css) */
.MasterReleaseView-module__cSg-qa__heroInfo {
  flex: 1;
  grid-template-rows: 28px 80px 54px minmax(0, 1fr) 40px 80px;
  gap: 8px;
  min-width: 0;
  padding: 24px 0 0;
  display: grid;
}

.MasterReleaseView-module__cSg-qa__identity {
  min-width: 0;
  min-height: 0;
  overflow: auto;
}

.MasterReleaseView-module__cSg-qa__description {
  grid-template-rows: minmax(0, 1fr) 22px;
  gap: 6px;
  min-height: 0;
  display: grid;
}

.MasterReleaseView-module__cSg-qa__descriptionText {
  scrollbar-gutter: stable;
  min-height: 0;
  color: color-mix(in srgb, var(--foreground) 60%, transparent);
  white-space: pre-line;
  font-size: 12.5px;
  font-style: italic;
  line-height: 1.7;
  overflow-y: auto;
}

.MasterReleaseView-module__cSg-qa__actions, .MasterReleaseView-module__cSg-qa__pick {
  min-width: 0;
}

.MasterReleaseView-module__cSg-qa__pick > div {
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (min-width: 768px) {
  .MasterReleaseView-module__cSg-qa__heroInfo {
    height: clamp(320px, 42vw, 440px);
    padding: 0 0 0 28px;
    overflow-y: auto;
  }
}

@media (max-width: 767px) {
  .MasterReleaseView-module__cSg-qa__heroInfo {
    grid-template-rows: auto 90px auto 120px auto auto;
  }
}

/* [project]/src/components/marketplace/CurrentMarketPrice.module.css [app-client] (css) */
.CurrentMarketPrice-module___VeHQq__priceSlot {
  place-items: center end;
  min-width: 74px;
  min-height: 14px;
  display: grid;
}

.CurrentMarketPrice-module___VeHQq__skeleton {
  background: color-mix(in srgb, var(--foreground) 9%, transparent);
  border-radius: 3px;
  width: 44px;
  height: 10px;
  display: block;
  position: relative;
  overflow: hidden;
}

.CurrentMarketPrice-module___VeHQq__skeleton:after {
  content: "";
  background: linear-gradient(100deg, transparent, color-mix(in srgb, var(--foreground) 20%, transparent), transparent);
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
}

.CurrentMarketPrice-module___VeHQq__loading:after {
  animation: 1.6s ease-in-out infinite CurrentMarketPrice-module___VeHQq__priceShimmer;
}

.CurrentMarketPrice-module___VeHQq__reveal {
  animation: .24s ease-out both CurrentMarketPrice-module___VeHQq__priceReveal;
}

@keyframes CurrentMarketPrice-module___VeHQq__priceShimmer {
  0% {
    transform: translateX(-100%);
  }

  65%, 100% {
    transform: translateX(100%);
  }
}

@keyframes CurrentMarketPrice-module___VeHQq__priceReveal {
  from {
    opacity: 0;
    transform: translateY(2px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .CurrentMarketPrice-module___VeHQq__loading:after, .CurrentMarketPrice-module___VeHQq__reveal {
    animation: none;
  }
}

/*# sourceMappingURL=src_components_marketplace_0p5p.-x._.css.map*/