.ss-artist-archive {
  --ss-artist-surface: rgba(24, 24, 27, 0.92);
  --ss-artist-surface-soft: rgba(255, 255, 255, 0.04);
  --ss-artist-border: rgba(255, 255, 255, 0.08);
  --ss-artist-muted: #a1a1aa;
  --ss-artist-text: #f5f5f7;
  --ss-artist-accent: #f8c63d;
  --ss-artist-accent-soft: rgba(248, 198, 61, 0.16);
  --ss-artist-radius: 28px;
  color: var(--ss-artist-text);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.ss-artist-archive__wrap {
  padding: 26px 0 46px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.ss-artist-hero {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "media"
    "content";
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
  padding: 5px;
}

.ss-artist-hero__content {
  grid-area: content;
  min-width: 0;
  text-align: right;
}

.ss-artist-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(245, 245, 247, 0.58);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.ss-artist-hero__eyebrow i {
  display: none;
}

.ss-artist-hero__title {
  margin: 0;
  font-size: clamp(24px, 4vw, 40px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0;
}

.ss-artist-hero__title small {
  display: inline;
  margin-right: 8px;
  color: #c9c9cf;
  font-size: 0.64em;
  font-weight: 600;
}

.ss-artist-hero__follow {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ss-artist-hero__follow .ss-artist-followers {
  display: inline-flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  margin-top: 0;
}

.ss-artist-hero__follow .ss-artist-followers__button {
  min-height: 46px;
}

.ss-artist-hero__follow .ss-artist-followers__count-wrap {
  display: none;
}

.ss-artist-hero__follow .ss-artist-followers__count {
  color: #ccc;
  font-weight: 500;
}

.ss-artist-hero__stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: 46px;
  color: #d4d4d8;
  font-size: 14px;
  font-weight: 500;
  flex-wrap: nowrap;
  margin-top: 0;
}

.ss-artist-share {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.ss-artist-share.is-open {
  z-index: auto;
}

.ss-artist-share__backdrop {
  content: "";
  position: fixed;
  inset: 0;
  z-index: var(--ss-action-sheet-backdrop-z, 10070);
  background: rgba(8, 8, 8, .62);
  pointer-events: auto;
}

.ss-artist-share__toggle {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .74);
  cursor: pointer;
  transition: color .18s ease, opacity .18s ease;
}

.ss-artist-share__toggle:hover,
.ss-artist-share__toggle:focus-visible,
.ss-artist-share__toggle[aria-expanded="true"] {
  background: transparent;
  color: rgba(255, 255, 255, .94);
  outline: 0;
}

.ss-artist-share.is-open .ss-artist-share__toggle {
  opacity: 0;
  pointer-events: none;
}

.ss-artist-share__menu,
.ss-artist-share__menu[data-ss-artist-share-portal] {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: var(--ss-action-sheet-panel-z, 10071);
  display: grid;
  width: min(88vw, 360px);
  max-height: min(72vh, 620px);
  gap: 8px;
  overflow-y: auto;
  padding: 12px 12px 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  background: #121316;
  box-shadow: 0 24px 68px rgba(0, 0, 0, .38);
  direction: rtl;
  text-align: right;
  transform: translate3d(-50%, -50%, 0);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .16) transparent;
}

.ss-artist-share__menu.ss-action-surface--anchored,
.ss-artist-share__menu[data-ss-artist-share-portal].ss-action-surface--anchored {
  border-radius: 16px;
  transform: none;
  transform-origin: 100% 0;
}

.ss-artist-share__menu[hidden],
.ss-artist-share__menu[data-ss-artist-share-portal][hidden] {
  display: none !important;
}

.ss-artist-share__menu::-webkit-scrollbar,
.ss-artist-share__menu[data-ss-artist-share-portal]::-webkit-scrollbar {
  width: 4px;
}

.ss-artist-share__menu::-webkit-scrollbar-track,
.ss-artist-share__menu[data-ss-artist-share-portal]::-webkit-scrollbar-track {
  background: transparent;
}

.ss-artist-share__menu::-webkit-scrollbar-thumb,
.ss-artist-share__menu[data-ss-artist-share-portal]::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.ss-artist-share__head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 36px;
  grid-template-areas: "cover meta close";
  align-items: center;
  gap: 10px;
  padding: 2px 2px 8px;
  direction: ltr;
}

.ss-artist-share__cover {
  display: inline-flex;
  grid-area: cover;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, .065);
  color: rgba(255, 255, 255, .78);
}

.ss-artist-share__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ss-artist-share--myplaylist .ss-artist-share__cover {
  border-radius: 4px;
  background: #282828;
}

.ss-artist-share--myplaylist .ss-artist-share__playlist-cover {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.ss-artist-share--myplaylist .ss-artist-share__playlist-cover.ss-my-music-card__collage {
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.ss-artist-share--myplaylist .ss-artist-share__playlist-cover .ss-my-music-card__tile {
  min-height: 0;
  overflow: hidden;
}

.ss-artist-share--myplaylist .ss-artist-share__playlist-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ss-artist-share__cover-fallback {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .07);
}

.ss-artist-share__cover-fallback i {
  font-size: 17px;
}

.ss-artist-share__meta {
  display: grid;
  grid-area: meta;
  min-width: 0;
  gap: 2px;
  direction: ltr;
  text-align: left;
  unicode-bidi: plaintext;
}

.ss-artist-share__meta strong {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ss-artist-share__meta small {
  min-width: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 650;
  line-height: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ss-artist-share__close {
  display: inline-flex;
  grid-area: close;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .86);
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.ss-artist-share__close:hover,
.ss-artist-share__close:focus-visible {
  background: rgba(255, 255, 255, .085);
  color: #fff;
  outline: 0;
  transform: translateY(-1px);
}

.ss-artist-share__option {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, .065);
  border-radius: 14px;
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .88);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 20px;
  direction: rtl;
  text-align: right;
  text-decoration: none !important;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.ss-artist-share__option::after {
  content: "\f053";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .34);
  font-family: 'Font Awesome 5 Pro';
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  transition: color .18s ease, transform .18s ease;
}

.ss-artist-share__copy::after {
  content: none;
}

.ss-artist-share__option:hover,
.ss-artist-share__option:focus-visible {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .075);
  color: #fff;
  text-decoration: none !important;
  outline: 0;
  transform: translateY(-1px);
}

.ss-artist-share__option:hover::after,
.ss-artist-share__option:focus-visible::after {
  color: rgba(255, 255, 255, .68);
  transform: translateX(-2px);
}

.ss-artist-share__option i {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .74);
  font-size: 16px;
}

.ss-artist-share__option:hover i,
.ss-artist-share__option:focus-visible i {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .9);
}

.ss-artist-share__option--telegram:hover i,
.ss-artist-share__option--telegram:focus-visible i {
  background: rgba(34, 158, 217, .14);
  color: #2aabee;
}

.ss-artist-share__option--whatsapp:hover i,
.ss-artist-share__option--whatsapp:focus-visible i {
  background: rgba(37, 211, 102, .14);
  color: #25d366;
}

.ss-artist-share__copy:hover i,
.ss-artist-share__copy:focus-visible i {
  background: rgba(148, 197, 255, .14);
  color: #9cc8ff;
}

.ss-artist-share__option span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none !important;
  white-space: nowrap;
}

.ss-artist-share__status {
  min-height: 18px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 650;
  line-height: 18px;
  text-align: center;
}

.ss-artist-share__status.is-error {
  color: rgba(255, 190, 120, .86);
}

.ss-artist-share__manual-link {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .86);
  font-family: inherit;
  font-size: 12px;
  font-weight: 650;
  direction: ltr;
  text-align: left;
  outline: 0;
}

.ss-artist-share__manual-link:focus {
  border-color: rgba(251, 203, 7, .32);
  background: rgba(255, 255, 255, .075);
}

.single-post .ss-single-shell .ss-single-player-more {
  position: relative;
  z-index: 60;
}

.single-post .ss-single-shell .ss-single-player-more.is-open {
  z-index: var(--ss-action-sheet-open-z, 10072);
}

.single-post .ss-single-shell .ss-single-player-more__trigger {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, .74);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: color .18s ease, transform .18s ease;
}
.single-post .ss-single-shell .ss-single-player-more__trigger:hover,
.single-post .ss-single-shell .ss-single-player-more__trigger:focus-visible,
.single-post .ss-single-shell .ss-single-player-more.is-open .ss-single-player-more__trigger {
  background: transparent;
  color: #fbcb07;
  outline: 0;
  transform: translateY(-1px);
}

.single-post .ss-single-shell .ss-single-player-more.is-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: var(--ss-action-sheet-backdrop-z, 10070);
  background: rgba(8, 8, 8, .72);
  pointer-events: auto;
}

.single-post .ss-single-shell .ss-single-player-more__menu {
  position: fixed;
  top: 50%;
  left: 50%;
  right: auto;
  z-index: var(--ss-action-sheet-panel-z, 10071);
  display: grid;
  width: min(390px, calc(100vw - 32px));
  min-width: 0;
  max-width: none;
  max-height: min(72vh, 620px);
  gap: 8px;
  overflow-y: auto;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 26px;
  background: #121316;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  direction: rtl;
  text-align: right;
  transform: translate3d(-50%, -50%, 0);
  transform-origin: center;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .16) transparent;
}

.single-post .ss-single-shell .ss-single-player-more__menu[hidden] {
  display: none !important;
}

.single-post .ss-single-shell .ss-single-player-more__menu::-webkit-scrollbar {
  width: 4px;
}

.single-post .ss-single-shell .ss-single-player-more__menu::-webkit-scrollbar-track {
  background: transparent;
}

.single-post .ss-single-shell .ss-single-player-more__menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.single-post .ss-single-shell .ss-single-player-more__head {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 36px;
  grid-template-areas: "cover meta close";
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 6px;
  padding: 2px 2px 10px;
  border-bottom: 0;
  direction: ltr;
  text-align: left;
}

.single-post .ss-single-shell .ss-single-player-more__head .ss-track-sheet-head__cover {
  display: inline-flex;
  grid-area: cover;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
  background: #282828;
  color: rgba(255, 255, 255, .78);
}

.single-post .ss-single-shell .ss-single-player-more__head .ss-track-sheet-head__cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post .ss-single-shell .ss-single-player-more__head .ss-track-sheet-head__cover-fallback {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .07);
}

.single-post .ss-single-shell .ss-single-player-more__head .ss-track-sheet-head__meta {
  display: grid;
  grid-area: meta;
  min-width: 0;
  gap: 2px;
  direction: ltr;
  text-align: left;
  unicode-bidi: plaintext;
}

.single-post .ss-single-shell .ss-single-player-more__head .ss-track-sheet-head__meta strong,
.single-post .ss-single-shell .ss-single-player-more__head .ss-track-sheet-head__meta small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.single-post .ss-single-shell .ss-single-player-more__head .ss-track-sheet-head__meta strong {
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  line-height: 20px;
}

.single-post .ss-single-shell .ss-single-player-more__head .ss-track-sheet-head__meta small {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 650;
  line-height: 16px;
}

.single-post .ss-single-shell .ss-single-player-more__head .ss-track-sheet-head__close {
  display: inline-flex;
  grid-area: close;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .86);
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.single-post .ss-single-shell .ss-single-player-more__head .ss-track-sheet-head__close:hover,
.single-post .ss-single-shell .ss-single-player-more__head .ss-track-sheet-head__close:focus-visible {
  background: rgba(255, 255, 255, .085);
  color: #fff;
  outline: 0;
  transform: translateY(-1px);
}

.single-post .ss-single-shell .ss-single-player-more__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, .065);
  border-radius: 14px;
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .88);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.5;
  direction: rtl;
  text-align: right;
  text-decoration: none;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.single-post .ss-single-shell .ss-single-player-more__item i {
  display: inline-flex;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
  transition: background-color .18s ease, color .18s ease;
}

.single-post .ss-single-shell .ss-single-player-more__item::after {
  content: "\f053";
  display: inline-flex;
  flex: 0 0 18px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .34);
  font-family: 'Font Awesome 5 Pro';
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  transition: color .18s ease, transform .18s ease;
}

.single-post .ss-single-shell .ss-single-player-more__item span {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.single-post .ss-single-shell .ss-single-player-more__item:hover,
.single-post .ss-single-shell .ss-single-player-more__item:focus-visible {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .075);
  color: #fff;
  outline: 0;
  transform: translateY(-1px);
}

.single-post .ss-single-shell .ss-single-player-more__item:hover i,
.single-post .ss-single-shell .ss-single-player-more__item:focus-visible i {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .9);
}

.single-post .ss-single-shell .ss-single-player-more__item:hover::after,
.single-post .ss-single-shell .ss-single-player-more__item:focus-visible::after {
  color: rgba(255, 255, 255, .68);
  transform: translateX(-2px);
}

.single-post .ss-single-shell .ss-single-player-more__queue:hover i,
.single-post .ss-single-shell .ss-single-player-more__queue:focus-visible i {
  background: rgba(56, 189, 248, .14);
  color: #67d8ff;
}

.single-post .ss-single-shell .ss-single-player-more__artist:hover i,
.single-post .ss-single-shell .ss-single-player-more__artist:focus-visible i {
  background: rgba(167, 139, 250, .14);
  color: #b8a5ff;
}

.single-post .ss-single-shell .ss-artist-share--single {
  display: block;
  width: 100%;
}

.single-post .ss-single-shell .ss-artist-share--single .ss-artist-share__toggle.ss-single-player-more__item {
  width: 100%;
  height: auto;
  min-height: 50px;
  justify-content: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .88);
}

.single-post .ss-single-shell .ss-artist-share--single .ss-artist-share__toggle.ss-single-player-more__item:hover i,
.single-post .ss-single-shell .ss-artist-share--single .ss-artist-share__toggle.ss-single-player-more__item:focus-visible i {
  background: rgba(96, 165, 250, .14);
  color: #8ec5ff;
}

.ss-artist-share__menu.ss-artist-share--single .ss-artist-share__cover {
  border-radius: 4px;
  background: #282828;
}

.ss-artist-hero__stat {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.ss-artist-hero__stat::before {
  content: "|";
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.3);
}

.ss-artist-hero__media {
  grid-area: media;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.ss-artist-hero__media.is-default-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #222;
  box-shadow: none;
}

.ss-artist-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 100%;
}

.ss-artist-hero__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.34);
  font-size: clamp(66px, 9vw, 104px);
  line-height: 1;
  text-decoration: none !important;
}

.ss-artist-hero--text {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "content";
  padding-left: 0;
  padding-right: 0;
}

.ss-artist-hero--text .ss-artist-hero__content {
  text-align: right;
}

.ss-artist-hero__term-head {
  margin-bottom: 12px;
}

.ss-artist-hero--text .ss-artist-hero__eyebrow {
  margin-bottom: 12px;
}

.ss-artist-hero--text .ss-artist-hero__term-head .ss-artist-hero__eyebrow {
  margin-bottom: 0;
}

.ss-artist-hero__title-row {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
}

.ss-artist-hero__title-row .ss-artist-hero__title {
  flex: 0 1 auto;
  min-width: 0;
  margin: 0;
}

.ss-artist-share--term {
  flex: 0 0 auto;
  margin-inline-start: 0;
}

.ss-artist-share--term .ss-artist-share__toggle {
  width: 38px;
  height: 38px;
}

.ss-artist-sections {
  display: grid;
  gap: 22px;
  min-width: 0;
}
.ss-artist-about {
  padding: 6px 0 0;
  margin-top: 30px;
}
.ss-artist-section,
.ss-artist-view,
.ss-artist-popular,
.ss-artist-related {
  padding: 6px 0 0;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.ss-artist-section__head,
.ss-artist-about__head,
.ss-artist-view__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.ss-artist-section__head {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.ss-artist-section__title,
.ss-artist-about__title,
.ss-artist-view__title {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 800;
  line-height: 1.35;
}

.ss-artist-section__count {
display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 400;
    color: #9d9d9d;
}

.ss-artist-section__title i,
.ss-artist-about__title i,
.ss-artist-view__title i,
.ss-artist-popular__title i {
  display: none;
}

.ss-artist-section__more,
.ss-artist-view__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.ss-artist-section__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ss-artist-section__more:hover,
.ss-artist-view__back:hover {
  color: #fff;
  text-decoration: none;
}

/* Shared horizontal rails:
 * native touch scroll on mobile, mouse drag handled in scripts.js. */
.ss-artist-rail {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  direction: rtl;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0;
  padding: 2px 0 10px;
  white-space: nowrap;
  box-sizing: border-box;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: auto;
}

.ss-artist-rail .ss-artist-archive__item {
  float: none;
  flex: 0 0 clamp(180px, 23vw, 236px);
  max-width: clamp(180px, 23vw, 236px);
  padding: 0 8px;
  white-space: normal;
  direction: rtl;
  min-width: 0;
}

.ss-artist-archive__item .postbox-i {
  width: 100%;
  margin-bottom: 0;
}

.ss-artist-rail::-webkit-scrollbar {
  display: none;
}

.ss-artist-collection {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ss-artist-collection .ss-artist-archive__item {
  float: none;
  width: auto;
  max-width: none;
  padding: 0;
}

.ss-artist-view__body {
  display: grid;
  gap: 18px;
}

.ss-artist-load-more-wrap {
  display: flex;
  justify-content: center;
}

.ss-artist-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 196px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  transition: opacity 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.ss-artist-load-more.is-loading {
  opacity: 1;
}

.ss-artist-load-more.is-error {
  border-color: rgba(255, 107, 107, 0.28);
  background: rgba(255, 107, 107, 0.08);
}

.ss-artist-load-more .ss-shared-loader {
  min-height: 44px;
}

.ss-artist-empty {
  padding: 22px 18px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: var(--ss-artist-surface-soft);
  color: var(--ss-artist-muted);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.ss-artist-about__body {
  color: #b6b6b6;
    font-size: 15px;
    direction: rtl;
    line-height: 2.05;
    text-align: right;
}

.ss-artist-about__body p:last-child {
  margin-bottom: 0;
}

.ss-artist-popular {
  padding: 10px 0 0;
}

.ss-artist-popular__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}

.ss-artist-popular__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.35;
}

.ss-artist-popular__controls {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  direction: ltr;
}

.ss-artist-popular__control,
.ss-artist-popular__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d4d4d8;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.ss-artist-popular__control:hover,
.ss-artist-popular__control:focus-visible,
.ss-artist-popular__action:hover,
.ss-artist-popular__action:focus-visible {
  color: #fff;
  text-decoration: none;
}

.ss-artist-popular__control--play {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd529, #f8c63d);
  color: #121212;
}

.ss-artist-popular__control--play:hover,
.ss-artist-popular__control--play:focus-visible {
  color: #121212;
  transform: translateY(-1px);
}

.ss-artist-popular__control--play i {
  font-size: 22px;
}

.ss-artist-popular__control--play.is-playing i {
  font-size: 19px;
}

.ss-artist-popular__control--play.is-loading {
  background: transparent;
  box-shadow: none;
  cursor: progress;
  pointer-events: none;
}

.ss-artist-popular__control--play.is-loading i {
  opacity: 0;
}

.ss-artist-popular__control--play.is-loading::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 2px solid rgba(255, 255, 255, .28);
  border-top-color: #fbcb07;
  border-radius: 50%;
  animation: ssMiniButtonSpin .8s linear infinite;
}

.ss-artist-popular__control--shuffle {
  position: relative;
  width: 42px;
  height: 42px;
}

.ss-artist-popular__control--shuffle i {
  font-size: 24px;
}

.ss-artist-popular__control--shuffle.is-loading {
  cursor: progress;
  pointer-events: none;
}

.ss-artist-popular__control--shuffle.is-loading i {
  opacity: 0;
}

.ss-artist-popular__control--shuffle.is-loading::before {
  content: "";
  position: absolute;
  inset: 11px;
  border: 2px solid rgba(255, 255, 255, .28);
  border-top-color: #fbcb07;
  border-radius: 50%;
  animation: ssMiniButtonSpin .8s linear infinite;
}

.ss-artist-popular__grid {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  direction: ltr;
  overflow-x: auto;
  overflow-y: hidden;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  padding: 0 0 8px;
  cursor: grab;
  white-space: nowrap;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  scrollbar-width: none;
}

.ss-artist-popular__column {
  display: grid;
  gap: 16px;
  box-sizing: border-box;
  flex: 0 0 clamp(286px, 82vw, 320px);
  width: clamp(286px, 82vw, 320px);
  min-width: 0;
  overflow: hidden;
  direction: rtl;
  white-space: normal;
}

.ss-artist-popular__grid.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.ss-artist-popular__grid::-webkit-scrollbar {
  display: none;
}

.ss-artist-popular__item {
  display: grid;
  width: 100%;
  grid-template-columns: 96px minmax(0, 1fr) 64px 28px;
  grid-template-areas: "actions meta cover index";
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.ss-artist-popular__index {
  grid-area: index;
  color: #d4d4d8;
  font-size: 17px;
  font-weight: 500;
  text-align: right;
}

.ss-artist-popular__cover {
  grid-area: cover;
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  min-width: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.ss-artist-popular__cover img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 3px;
}

.ss-artist-popular__cover-indicator {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  opacity: 0;
  transition: opacity 180ms ease;
}

.ss-artist-popular__cover-indicator i {
  font-size: 18px;
}

.ss-artist-popular__meta {
  grid-area: meta;
  min-width: 0;
  display: grid;
  gap: 4px;
  direction: ltr;
}

.ss-artist-popular__name,
.ss-artist-popular__artist,
.ss-artist-popular__artist span,
.ss-artist-popular__artist a {
  text-decoration: none;
}

.ss-artist-popular__name {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f5f5f7;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.ss-artist-popular__artist,
.ss-artist-popular__artist span,
.ss-artist-popular__artist a {
  color: #8d8d93;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
}

.ss-artist-popular__artist {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ss-artist-popular__actions {
  grid-area: actions;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  width: 96px;
  min-width: 96px;
      direction: ltr;
  flex-shrink: 0;
}

.ss-artist-popular__item.is-current .ss-artist-popular__name {
  color: #facb38
}

.ss-artist-popular__item.is-current .ss-artist-popular__index {
  color: #fff;
}

.ss-artist-popular__item.is-current .ss-artist-popular__cover-indicator {
  opacity: 1;
}

.ss-artist-popular__item.is-loading .ss-artist-popular__cover-indicator {
  background: transparent;
  opacity: 1;
}

.ss-artist-popular__item.is-loading .ss-artist-popular__cover-indicator i {
  display: none;
}

.ss-artist-popular__item.is-loading .ss-artist-popular__cover-indicator::before {
  content: "";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, .28);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ssMiniButtonSpin .8s linear infinite;
}

.ss-artist-popular__action {
  width: 24px;
  height: 24px;
}

.ss-artist-popular__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.ss-artist-popular__action i {
  font-size: 20px;
}

@media (max-width: 1279.98px) {
  .ss-artist-popular__item {
    grid-template-columns: 24px minmax(0, 1fr) 64px 28px;
  }

  .ss-artist-popular__actions {
    width: 24px;
    min-width: 24px;
    gap: 0;
  }

  .ss-artist-popular__actions [data-ss-popular-track-download],
  .ss-artist-popular__actions [data-ss-popular-track-add] {
    display: none !important;
  }
}

.ss-artist-related {
  padding: 8px 0 0;
}

.ss-artist-related__rail {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  direction: rtl;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0;
  padding: 2px 0 10px;
  box-sizing: border-box;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: auto;
}

.ss-artist-related__rail::-webkit-scrollbar {
  display: none;
}

.ss-artist-related__card {
  flex: 0 0 clamp(148px, 20vw, 192px);
  max-width: clamp(148px, 20vw, 192px);
  padding: 0 10px;
  text-align: center;
  min-width: 0;
}

.ss-artist-related__media {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 12px;
  border-radius: 50%;
  overflow: hidden;
  color: inherit;
  line-height: 1;
  text-decoration: none !important;
}

.ss-artist-related__media:hover,
.ss-artist-related__media:focus-visible {
  text-decoration: none !important;
}

.ss-artist-related__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.ss-artist-related__media.is-placeholder {
  background: #222;
  box-shadow: none;
}

.ss-artist-related__placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.34);
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1;
  text-decoration: none !important;
}

.ss-artist-related__placeholder i {
  text-decoration: none !important;
}

.ss-artist-related__name {
  display: block;
  color: #f5f5f7;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.ss-artist-related__name:hover,
.ss-artist-related__name:focus-visible {
  color: #fff;
  text-decoration: none;
}

.ss-artist-related__followers {
  display: block;
  margin-top: 6px;
  color: #98989d;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.ss-single-shell,
.ss-single-shell__inner {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.ss-single-shell {
  direction: rtl;
}

.ss-single-shell__inner {
  padding: 0 clamp(16px, 3.4vw, 30px);
}

@media (max-width: 760px) {
  body.single-post.ss-single-visual-theme-ready {
    --ss-single-status-scrim-opacity: 0;
    background-color: #1a1a1a;
  }

  body.single-post.ss-single-visual-theme-ready.ss-single-visual-theme-immersive {
    --ss-chrome-mobile-safe-surface: transparent;
  }

  body.single-post.ss-single-visual-theme-ready.ss-single-visual-theme-immersive #header {
    background: transparent;
    overflow: visible;
    pointer-events: none;
    z-index: var(--ss-chrome-contextual-z, 10130);
  }

  body.single-post.ss-single-visual-theme-ready.ss-single-visual-theme-immersive #header::before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 0;
    height: calc(env(safe-area-inset-top, 0px) + 44px);
    pointer-events: none;
    opacity: var(--ss-single-status-scrim-opacity, 0);
    background:
      linear-gradient(
        180deg,
        rgba(16, 16, 16, .96) 0%,
        rgba(16, 16, 16, .92) calc(env(safe-area-inset-top, 0px) + 2px),
        rgba(16, 16, 16, .58) calc(env(safe-area-inset-top, 0px) + 24px),
        rgba(16, 16, 16, 0) 100%
      );
    transition: opacity 80ms linear;
  }

  body.single-post.ss-single-visual-theme-ready.ss-single-visual-theme-immersive .wrapper,
  body.single-post.ss-single-visual-theme-ready:not(.ss-single-visual-theme-immersive) .ss-single-shell {
    position: relative;
    isolation: isolate;
    background-color: #1a1a1a;
  }

  body.single-post.ss-single-visual-theme-ready.ss-single-visual-theme-immersive .wrapper::before,
  body.single-post.ss-single-visual-theme-ready:not(.ss-single-visual-theme-immersive) .ss-single-shell::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 0;
    height: calc(env(safe-area-inset-top, 0px) + clamp(248px, 46vw + 48px, 292px));
    pointer-events: none;
    background:
      radial-gradient(circle at 50% 0%, rgba(var(--ss-single-surface-rgb, 26, 26, 26), .32) 0, rgba(var(--ss-single-surface-rgb, 26, 26, 26), 0) 46%),
      linear-gradient(
        180deg,
        rgba(var(--ss-single-ambient-rgb, 26, 26, 26), .86) 0%,
        rgba(var(--ss-single-ambient-rgb, 26, 26, 26), .72) 24%,
        rgba(var(--ss-single-ambient-rgb, 26, 26, 26), .44) 52%,
        rgba(var(--ss-single-ambient-rgb, 26, 26, 26), .12) 82%,
        rgba(26, 26, 26, 0) 100%
      );
  }

  body.single-post.ss-single-visual-theme-ready.ss-single-visual-theme-immersive #ss-pjax-container {
    position: relative;
    z-index: 1;
  }

  body.single-post.ss-single-visual-theme-ready.ss-single-visual-theme-immersive.ss-single-more-open .wrapper,
  body.single-post.ss-single-visual-theme-ready.ss-single-visual-theme-immersive.ss-single-more-open #ss-pjax-container {
    z-index: var(--ss-action-surface-root-z, 10131);
  }

  body.single-post.ss-single-visual-theme-ready.ss-single-visual-theme-immersive #ss-pjax-container,
  body.single-post.ss-single-visual-theme-ready.ss-single-visual-theme-immersive .ss-single-shell,
  body.single-post.ss-single-visual-theme-ready:not(.ss-single-visual-theme-immersive) .ss-single-shell {
    background-color: transparent;
  }

  body.single-post.ss-single-visual-theme-ready .ss-single-shell {
    position: relative;
  }

  body.single-post.ss-single-visual-theme-ready .ss-single-shell__inner {
    display: flow-root;
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 759.98px) {
  .single-post .ss-single-shell .postbox-single > .row {
    margin-right: 0;
    margin-left: 0;
  }

  .single-post .ss-single-shell .postbox-single > .row > .col,
  .single-post .ss-single-shell .postbox-single > .row > .col-12 {
    padding-right: 0;
    padding-left: 0;
  }
}

.ss-single-shell .postbox-single,
.ss-single-shell .e-content,
.ss-single-shell .post-tags,
.ss-single-shell .commentarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* Single hero lives next to legacy single-page rules in style.css.
 * Keep this scope narrow and strong so the modern layout stays isolated. */
.single-post .ss-single-shell .ss-single-hero {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: clamp(16px, 2.8vw, 32px);
  direction: ltr !important;
}

.ss-single-hero__content,
.ss-single-hero__media {
  min-width: 0;
}

.single-post .ss-single-shell .ss-single-hero__content.info-s {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  direction: ltr;
  text-align: left;
  flex: 1 1 0% !important;
  min-width: 0 !important;
  padding-right: 0;
  padding-left: 0;
}

.single-post .ss-single-shell .ss-single-hero__media {
  flex: 0 0 auto !important;
  width: clamp(180px, 28vw, 300px) !important;
  max-width: clamp(180px, 28vw, 300px) !important;
  min-width: clamp(180px, 28vw, 300px) !important;
}

.single-post .ss-single-shell .ss-single-hero__media .pic-s {
  width: 100%;
  margin: 0;
}

.single-post .ss-single-shell .ss-single-hero__media .pic-s img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.single-post .ss-single-shell .ss-single-hero__content .T-N-T-Si {
  margin-top: auto;
  position: static;
  left: auto;
  bottom: auto;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  overflow: hidden;
  text-overflow: initial;
}

.single-post .ss-single-shell .ss-single-hero__content .AR-Si,
.single-post .ss-single-shell .ss-single-hero__content .genre-Si,
.single-post .ss-single-shell .ss-single-hero__content .mood-Si,
.single-post .ss-single-shell .ss-single-hero__content .instrument-Si {
  float: none;
  width: 100%;
  max-width: 100%;
}

.single-post .ss-single-shell .ss-single-hero__content .postnameinsingle,
.single-post .ss-single-shell .ss-single-hero__content .TSale-txt-single,
.single-post .ss-single-shell .ss-single-hero__content .AL-Si {
  width: 100%;
  text-align: left;
  align-self: flex-start;
}

.ss-single-promo {
  margin-top: 10px;
}

.ss-single-promo__link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-width: 0;
  padding: 10px 14px;
  border-radius: 28px;
  background: rgba(222, 17, 45, 0.09);
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
}

.ss-single-promo__content {
  display: block;
  min-width: 0;
}

.ss-single-promo__title {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  text-align: right;
}

.ss-single-promo__sub {
  display: block;
  margin-top: 3px;
  color: #888;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  text-align: right;
}

.ss-single-promo__logo {
  display: block;
  width: 55px;
  min-width: 55px;
  height: 55px;
  padding: 3px;
  border: 2px solid #888;
  border-radius: 999px;
  object-fit: cover;
  box-sizing: border-box;
}

.ss-single-related,
.ss-single-recommended-artists {
  margin-top: 22px;
  padding-top: 4px;
}

.ss-single-related__rail {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  direction: rtl;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0;
  padding: 2px 0 10px;
  box-sizing: border-box;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  touch-action: auto;
}

.ss-single-related__rail::-webkit-scrollbar {
  display: none;
}

.ss-single-related__card {
  flex: 0 0 clamp(160px, 19vw, 214px);
  max-width: clamp(160px, 19vw, 214px);
  padding: 0 10px;
  min-width: 0;
}

.ss-single-related__media {
  display: block;
  width: 100%;
  margin-bottom: 12px;
}

.ss-single-related__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.ss-single-related__meta {
  min-width: 0;
}

.ss-single-related__name {
  display: -webkit-box;
  color: #f5f5f7;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.ss-single-related__name:hover,
.ss-single-related__name:focus-visible {
  color: #fff;
  text-decoration: none;
}

.ss-single-related__artists {
  display: block;
  margin-top: 6px;
  color: #a1a1aa;
  font-size: 13px;
  line-height: 1.6;
}

.ss-single-related__artists a {
  color: inherit;
  text-decoration: none;
}

.ss-single-related__artists a:hover,
.ss-single-related__artists a:focus-visible {
  color: #fff;
}

.ss-single-related__date {
  display: block;
  margin-top: 7px;
  color: #8a8a91;
  font-size: 12px;
  line-height: 1.4;
}

@media (min-width: 760px) {
  .single-post .ss-single-shell .ss-single-hero {
    gap: clamp(18px, 2.6vw, 32px);
  }

  .single-post .ss-single-shell .ss-single-hero__media {
    width: clamp(220px, 24vw, 340px) !important;
    max-width: clamp(220px, 24vw, 340px) !important;
    min-width: clamp(220px, 24vw, 340px) !important;
  }

  .ss-artist-hero {
    direction: rtl;
    grid-template-columns: clamp(170px, 18vw, 260px) minmax(0, 1fr);
    grid-template-areas: "media content";
  }

  .ss-artist-hero__follow {
    align-items: center;
    margin-top: 18px;
    gap: 14px;
  }

  .ss-artist-hero__follow .ss-artist-followers,
  .ss-artist-hero__stats {
    margin-top: 0;
  }

  .ss-artist-hero.ss-artist-hero--text {
    direction: rtl;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "content";
  }

  .ss-artist-popular__grid {
    gap: 20px 18px;
  }

  .ss-artist-popular__column {
    flex-basis: clamp(318px, 44vw, 372px);
    width: clamp(318px, 44vw, 372px);
  }

  .ss-artist-collection {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ss-artist-related__card {
    flex-basis: clamp(158px, 18vw, 206px);
    max-width: clamp(158px, 18vw, 206px);
  }

  .ss-single-related__card {
    flex-basis: clamp(172px, 17vw, 220px);
    max-width: clamp(172px, 17vw, 220px);
  }
}

@media (min-width: 1280px) {
  .ss-artist-popular__grid {
    gap: 26px 22px;
  }

  .ss-artist-popular__column {
    flex: 0 0 clamp(360px, 24vw, 430px);
    width: clamp(360px, 24vw, 430px);
    min-width: clamp(360px, 24vw, 430px);
  }

  .ss-artist-popular__item {
    grid-template-columns: 100px minmax(0, 1fr) 64px 30px;
    gap: 14px;
  }

  .ss-artist-popular__meta {
    gap: 5px;
  }
}

@media (min-width: 992px) {
  .ss-artist-collection {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .ss-artist-collection {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1540px) {
  .ss-artist-collection {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 1800px) {
  .ss-artist-collection {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

@media (min-width: 2066px) {
  .ss-artist-collection {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

@media (max-width: 759.98px) {
  .single-post .ss-single-shell .ss-single-hero {
    gap: 16px;
  }

  .single-post .ss-single-shell .ss-single-hero__media {
    width: min(43vw, 220px) !important;
    max-width: min(43vw, 220px) !important;
    min-width: min(43vw, 220px) !important;
  }

  .ss-single-shell__inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .ss-artist-archive__wrap {
    padding-top: 18px;
  }

  .ss-artist-hero {
    padding: 18px;
    text-align: center;
  }

  .ss-artist-hero__content {
    text-align: center;
  }

  .ss-artist-hero__eyebrow,
  .ss-artist-hero__follow,
  .ss-artist-hero__follow .ss-artist-followers,
  .ss-artist-hero__stats {
    justify-content: center;
  }

  .ss-artist-hero__follow {
    margin-top: 18px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .ss-artist-hero__follow .ss-artist-followers {
    justify-content: center;
  }

  .ss-artist-hero__stats {
    display: inline-flex;
    flex-basis: 100%;
    justify-content: center;
    margin-top: 0;
  }

  .single-post .ss-single-shell .ss-single-player-more__menu {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-width: 0;
    max-width: none;
    max-height: var(--ss-action-sheet-mobile-max-height, min(70vh, 520px));
    padding: var(--ss-action-sheet-mobile-padding, 16px 16px calc(18px + env(safe-area-inset-bottom)));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: var(--ss-action-sheet-mobile-radius, 22px 22px 0 0);
    transform: translate3d(0, 0, 0);
    transform-origin: 50% 100%;
  }

  body.ss-mobile-tabbar-enabled .single-post .ss-single-shell .ss-single-player-more__menu {
    bottom: 0;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }

  .ss-artist-share__menu,
  .ss-artist-share__menu[data-ss-artist-share-portal] {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    max-height: var(--ss-action-sheet-mobile-max-height, min(70vh, 520px));
    padding: var(--ss-action-sheet-mobile-padding, 16px 16px calc(18px + env(safe-area-inset-bottom)));
    border-width: 1px 0 0;
    border-radius: var(--ss-action-sheet-mobile-radius, 22px 22px 0 0);
    transform: translate3d(0, 0, 0);
    transform-origin: 50% 100%;
  }

  .ss-artist-share__menu.ss-action-surface--mobile-sheet,
  .ss-artist-share__menu[data-ss-artist-share-portal].ss-action-surface--mobile-sheet {
    transform: translate3d(0, 0, 0);
  }

  body.ss-mobile-tabbar-enabled .ss-artist-share__menu,
  body.ss-mobile-tabbar-enabled .ss-artist-share__menu[data-ss-artist-share-portal] {
    bottom: 0;
    padding-bottom: calc(18px + env(safe-area-inset-bottom));
  }

  .ss-artist-hero__media {
    max-width: 220px;
    margin: 0 auto;
  }

  .ss-artist-section,
  .ss-artist-about,
  .ss-artist-view {
    padding: 18px 0;
  }
  .ss-artist-rail .ss-artist-archive__item {
    flex-basis: min(74vw, 220px);
    max-width: min(74vw, 220px);
  }

  .ss-artist-related__card {
    flex-basis: min(46vw, 186px);
    max-width: min(46vw, 186px);
  }

  .ss-single-related__card {
    flex-basis: min(58vw, 206px);
    max-width: min(58vw, 206px);
  }

  .ss-artist-hero.is-default-hero {
    display: block;
    margin: 0 0 24px;
    padding: 18px 0 8px;
    text-align: center;
  }

  .ss-artist-hero.is-default-hero .ss-artist-hero__content {
    text-align: center;
  }

  .ss-artist-hero.is-default-hero .ss-artist-hero__eyebrow,
  .ss-artist-hero.is-default-hero .ss-artist-hero__follow,
  .ss-artist-hero.is-default-hero .ss-artist-hero__follow .ss-artist-followers,
  .ss-artist-hero.is-default-hero .ss-artist-hero__stats {
    justify-content: center;
  }

  .ss-artist-hero.is-default-hero .ss-artist-hero__follow {
    align-items: center;
    margin-top: 14px;
  }

  .ss-artist-hero.is-default-hero .ss-artist-hero__stats {
    flex-wrap: wrap;
    gap: 0;
    line-height: 1.8;
  }

}

@media (min-width: 480.02px) and (max-width: 759.98px) {
  .ss-artist-hero {
    direction: rtl;
    grid-template-columns: clamp(96px, 22vw, 132px) minmax(0, 1fr);
    grid-template-areas: "media content";
    gap: 14px 16px;
    text-align: right;
  }

  .ss-artist-hero:not(.is-default-hero) {
    grid-template-areas:
      "media eyebrow"
      "media title"
      "follow follow";
  }

  .ss-artist-hero__content {
    text-align: right;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__content {
    display: contents;
  }

  .ss-artist-hero__media {
    width: clamp(96px, 22vw, 132px);
    max-width: clamp(96px, 22vw, 132px);
    margin: 0;
  }

  .ss-artist-hero__media img {
    width: 100%;
  }

  .ss-artist-hero__eyebrow,
  .ss-artist-hero__follow,
  .ss-artist-hero__follow .ss-artist-followers,
  .ss-artist-hero__stats {
    justify-content: flex-start;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__eyebrow {
    grid-area: eyebrow;
    align-self: end;
    justify-self: center;
    margin-bottom: 0;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__title {
    grid-area: title;
    align-self: start;
    justify-self: center;
    text-align: center;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__follow {
    grid-area: follow;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1.5vw, 14px);
    width: 100%;
    min-width: 0;
    margin-top: 4px;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-followers {
    flex: 0 0 auto;
    margin-top: 0;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-followers__button {
    min-width: 96px;
    min-height: 38px;
    font-size: 13px;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__stats {
    flex: 0 1 auto;
    flex-wrap: nowrap;
    min-width: 0;
    margin-top: 0;
    font-size: clamp(12px, 2.3vw, 13px);
    line-height: 1.6;
    white-space: nowrap;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__stat::before {
    margin: 0 6px;
  }

  .ss-artist-hero.is-default-hero .ss-artist-hero__content {
    grid-area: content;
    text-align: right;
  }

  .ss-artist-hero.is-default-hero .ss-artist-hero__media {
    grid-area: media;
    display: grid;
    width: clamp(96px, 22vw, 132px);
    max-width: clamp(96px, 22vw, 132px);
    margin: 0;
  }

  .ss-artist-hero.is-default-hero .ss-artist-hero__eyebrow,
  .ss-artist-hero.is-default-hero .ss-artist-hero__follow,
  .ss-artist-hero.is-default-hero .ss-artist-hero__follow .ss-artist-followers,
  .ss-artist-hero.is-default-hero .ss-artist-hero__stats {
    justify-content: flex-start;
  }

  .ss-artist-hero.is-default-hero {
    display: grid;
    direction: rtl;
    grid-template-columns: clamp(96px, 22vw, 132px) minmax(0, 1fr);
    grid-template-areas: "media content";
    align-items: center;
    gap: 18px;
    margin: 0 0 24px;
    padding: 18px;
    text-align: right;
  }
}

@media (min-width: 480.02px) and (max-width: 1100px) {
  .ss-artist-hero:not(.is-default-hero) {
    grid-template-areas:
      "media eyebrow"
      "media title"
      "follow follow";
  }

  .ss-artist-hero.is-default-hero {
    display: grid;
    grid-template-areas:
      "media eyebrow"
      "media title"
      "follow follow";
    align-items: center;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__content,
  .ss-artist-hero.is-default-hero .ss-artist-hero__content {
    display: contents;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__eyebrow,
  .ss-artist-hero.is-default-hero .ss-artist-hero__eyebrow {
    grid-area: eyebrow;
    align-self: end;
    justify-self: start;
    margin-bottom: 0;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__title,
  .ss-artist-hero.is-default-hero .ss-artist-hero__title {
    grid-area: title;
    align-self: start;
    justify-self: stretch;
    text-align: right;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__follow,
  .ss-artist-hero.is-default-hero .ss-artist-hero__follow {
    grid-area: follow;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1.5vw, 14px);
    width: auto;
    min-width: 0;
    max-width: 100%;
    justify-self: center;
    margin-top: 4px;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-followers,
  .ss-artist-hero.is-default-hero .ss-artist-followers {
    flex: 0 0 auto;
    min-width: 0;
    margin-top: 0;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-followers__button,
  .ss-artist-hero.is-default-hero .ss-artist-followers__button {
    min-width: 96px;
    min-height: 38px;
    font-size: 13px;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__stats,
  .ss-artist-hero.is-default-hero .ss-artist-hero__stats {
    display: inline-flex;
    flex: 0 1 auto;
    flex-wrap: nowrap;
    justify-content: center;
    min-width: 0;
    max-width: 100%;
    margin-top: 0;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    font-size: clamp(12px, 1.55vw, 13px);
    line-height: 1.6;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__stats::-webkit-scrollbar,
  .ss-artist-hero.is-default-hero .ss-artist-hero__stats::-webkit-scrollbar {
    display: none;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__stat,
  .ss-artist-hero.is-default-hero .ss-artist-hero__stat {
    flex: 0 0 auto;
  }

  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__stat::before,
  .ss-artist-hero.is-default-hero .ss-artist-hero__stat::before {
    margin: 0 6px;
  }

  .ss-artist-hero.ss-artist-hero--text {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "content";
    align-items: start;
    gap: 0;
    min-height: 0;
  }

  .ss-artist-hero.ss-artist-hero--text .ss-artist-hero__content {
    display: block;
    grid-area: content;
    text-align: right;
  }

  .ss-artist-hero.ss-artist-hero--text .ss-artist-hero__eyebrow,
  .ss-artist-hero.ss-artist-hero--text .ss-artist-hero__title {
    grid-area: auto;
    align-self: auto;
    justify-self: auto;
  }

  .ss-artist-hero.ss-artist-hero--text .ss-artist-hero__eyebrow {
    justify-content: flex-start;
    margin-bottom: 10px;
  }

  .ss-artist-hero.ss-artist-hero--text .ss-artist-hero__title {
    text-align: right;
  }
}

@media (max-width: 480px) {
  .single-post .ss-single-shell .ss-single-hero {
    gap: 14px;
  }
.ss-artist-popular__title {
  margin-top: 15px;
}
  .single-post .ss-single-shell .ss-single-hero__media {
    width: min(42vw, 180px) !important;
    max-width: min(42vw, 180px) !important;
    min-width: min(42vw, 180px) !important;
  }

  .ss-single-shell__inner {
    padding-right: 12px;
    padding-left: 12px;
  }

  .ss-single-promo__link {
    gap: 12px;
    padding: 10px 12px;
    border-radius: 24px;
  }

  .ss-single-promo__title {
    font-size: 15px;
  }

  .ss-single-promo__sub {
    font-size: 12px;
  }

  .ss-artist-popular__head {
    align-items: flex-start;
  }

  .ss-artist-popular__grid {
    gap: 18px;
  }

  .ss-artist-popular__item {
    grid-template-columns: 24px minmax(0, 1fr) 58px 24px;
    grid-template-areas: "actions meta cover index";
    gap: 12px;
  }

  .ss-artist-popular__cover,
  .ss-artist-popular__cover img {
    width: 58px;
    min-width: 58px;
    height: 58px;
  }

  .ss-artist-popular__controls {
    gap: 12px;
  }

  .ss-artist-popular__actions {
    gap: 0;
    width: 24px;
    min-width: 24px;
  }

  .ss-artist-popular__name {
    font-size: 15px;
  }

  .ss-artist-related__card {
    flex-basis: min(56vw, 174px);
    max-width: min(56vw, 174px);
  }

  .ss-single-related__card {
    flex-basis: min(72vw, 220px);
    max-width: min(72vw, 220px);
  }

  .ss-artist-archive__wrap {
    padding-top: 0;
  }

  .ss-artist-hero {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px 24px;
    padding: 0;
    min-height: min(440px, 100vw);
    overflow: hidden;
  }

  .ss-artist-hero__media,
  .ss-artist-hero__media img {
    width: 100%;
    max-width: none;
  }

  .ss-artist-hero__media {
    margin: 0;
  }

  .ss-artist-hero__media.is-default-media {
    background: #1a1a1a;
  }

  .ss-artist-hero__media.is-default-media {
    display: none;
  }

  .ss-artist-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0.34) 62%, rgba(26, 26, 26, 0.94) 86%, #1a1a1a 100%);
    pointer-events: none;
  }

  .ss-artist-hero__media img {
    height: min(440px, 100vw);
    border-radius: 0;
    box-shadow: none;
  }

  .ss-artist-hero__media.is-default-media img {
    opacity: 0;
  }

  .ss-artist-hero__content {
    position: absolute;
    right: 0;
    bottom: -4px;
    left: 0;
    z-index: 1;
    padding: 18px 18px 12px;
    text-align: center;
  }

  .ss-artist-hero__title {
    font-size: clamp(16px, 8vw, 24px);
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ss-artist-hero__title::-webkit-scrollbar {
    display: none;
  }
  .ss-artist-hero__title small {
    white-space: nowrap;
  }
  .ss-artist-hero__follow {
    margin-top: 0;
  }
  .ss-artist-hero__eyebrow,
  .ss-artist-hero__follow,
  .ss-artist-hero__follow .ss-artist-followers,
  .ss-artist-hero__stats {
    justify-content: center;
  }
  .ss-artist-hero__follow {
    gap: 6px;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    margin-top: 14px;
  }
  .ss-artist-hero__stats {
    font-size: 13px;
    min-height: auto;
    margin: 8px 0 0;
    flex-wrap: nowrap;
    justify-content: center;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ss-artist-hero__stats::-webkit-scrollbar {
    display: none;
  }
  .ss-artist-hero__stat {
    flex: 0 0 auto;
  }
  .ss-artist-hero__stat::before {
    margin: 0 8px;
  }
  .ss-artist-hero__eyebrow {
    margin-bottom: 3px;
  }

  .ss-artist-hero--text {
    width: auto;
    min-height: 0;
    margin: 0 0 24px;
    padding: 18px 0 0;
    overflow: visible;
  }

  .ss-artist-hero--text .ss-artist-hero__content {
    position: static;
    padding: 0;
    text-align: right;
  }

  .ss-artist-hero--text .ss-artist-hero__eyebrow {
    justify-content: flex-start;
    margin-bottom: 10px;
  }

  .ss-artist-hero.is-default-hero {
    width: auto;
    min-height: 0;
    margin: 0 0 24px;
    padding: 16px 0 8px;
    overflow: visible;
  }

  .ss-artist-hero.is-default-hero .ss-artist-hero__media {
    display: none;
  }

  .ss-artist-hero.is-default-hero .ss-artist-hero__content {
    position: static;
    padding: 0;
    text-align: center;
  }

  .ss-artist-hero.is-default-hero .ss-artist-hero__follow {
    align-items: center;
    margin-top: 12px;
  }

  .ss-artist-hero.is-default-hero .ss-artist-hero__eyebrow,
  .ss-artist-hero.is-default-hero .ss-artist-hero__follow,
  .ss-artist-hero.is-default-hero .ss-artist-hero__follow .ss-artist-followers,
  .ss-artist-hero.is-default-hero .ss-artist-hero__stats {
    justify-content: center;
  }

  .ss-artist-hero.is-default-hero .ss-artist-hero__eyebrow {
    margin-bottom: 10px;
  }

  .ss-artist-hero.is-default-hero .ss-artist-hero__title {
    text-align: center;
  }

  .ss-artist-hero.is-default-hero .ss-artist-hero__stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 12px auto 0;
    line-height: 1.8;
  }

  .ss-artist-hero.is-default-hero .ss-artist-hero__stats::-webkit-scrollbar {
    display: none;
  }

}

@media (max-width: 479.98px) {
  .ss-artist-hero__follow,
  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__follow,
  .ss-artist-hero.is-default-hero .ss-artist-hero__follow {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    row-gap: 0;
  }

  .ss-artist-hero__follow::-webkit-scrollbar,
  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__follow::-webkit-scrollbar,
  .ss-artist-hero.is-default-hero .ss-artist-hero__follow::-webkit-scrollbar {
    display: none;
  }

  .ss-artist-hero__follow .ss-artist-followers,
  .ss-artist-hero:not(.is-default-hero) .ss-artist-followers,
  .ss-artist-hero.is-default-hero .ss-artist-followers,
  .ss-artist-share {
    flex: 0 0 auto;
  }

  .ss-artist-hero__stats,
  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__stats,
  .ss-artist-hero.is-default-hero .ss-artist-hero__stats {
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    max-width: none;
    justify-content: flex-start;
    overflow: visible;
    white-space: nowrap;
    margin: 0;
  }
}

@media (min-width: 480.02px) and (max-width: 759.98px) {
  .ss-artist-hero__follow,
  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__follow,
  .ss-artist-hero.is-default-hero .ss-artist-hero__follow {
    flex-wrap: nowrap;
    gap: clamp(6px, 1.2vw, 10px);
    row-gap: 0;
  }

  .ss-artist-hero__follow .ss-artist-followers,
  .ss-artist-hero:not(.is-default-hero) .ss-artist-followers,
  .ss-artist-hero.is-default-hero .ss-artist-followers,
  .ss-artist-share {
    flex: 0 0 auto;
  }

  .ss-artist-hero__stats,
  .ss-artist-hero:not(.is-default-hero) .ss-artist-hero__stats,
  .ss-artist-hero.is-default-hero .ss-artist-hero__stats {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    max-width: none;
    margin: 0;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .ss-artist-hero__stats::-webkit-scrollbar,
  .ss-artist-hero.is-default-hero .ss-artist-hero__stats::-webkit-scrollbar {
    display: none;
  }

  .ss-artist-hero.ss-artist-hero--no-eyebrow,
  .ss-artist-hero:not(.is-default-hero):not(:has(.ss-artist-hero__eyebrow)),
  .ss-artist-hero.is-default-hero:not(:has(.ss-artist-hero__eyebrow)) {
    grid-template-areas:
      "media title"
      "follow follow";
  }

  .ss-artist-hero.ss-artist-hero--no-eyebrow .ss-artist-hero__title,
  .ss-artist-hero:not(:has(.ss-artist-hero__eyebrow)) .ss-artist-hero__title {
    align-self: center;
  }
}
