/*
 * Production hotfix: native Artistpage release titles must never be clipped.
 * The durable component fix is already present in DEV; this isolated overlay
 * keeps the current production bundle otherwise byte-identical.
 */
.release-detail .release-detail__title {
  display: block !important;
  max-inline-size: 100% !important;
  overflow: visible !important;
  -webkit-box-orient: initial !important;
  -webkit-line-clamp: unset !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  hyphens: auto;
  text-wrap: balance;
}

/*
 * Native themed and Iron-Core detail views place their close control outside
 * the title flow. The old shared component nevertheless reserved 2.5rem on
 * the right and could cut off the final character (for example WOLKENFLUG).
 * The generic detail dialog keeps its safety spacing for the close control.
 */
[data-release-detail-template] .release-detail__title,
[data-artist-release-dialog="true"]:has(.ic-release-visual--expanded) .release-detail__title {
  padding-right: 0 !important;
}

@media (max-width: 639px) {
  .release-detail .release-detail__title {
    line-height: 1.12 !important;
  }
}
