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

.ss-artist-followers__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	min-height: 42px;
	min-width: 112px;
	padding: 0 4px;
	border: 0;
	border-radius: 999px;
	background: #ffffff;
    color: #232323;
	font-size: 14px;
	font-weight: 850;
	line-height: 1;
	letter-spacing: 0;
	box-shadow: none;
	cursor: pointer;
	overflow: hidden;
	position: relative;
	transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
	will-change: transform;
}

.ss-artist-followers__button:hover,
.ss-artist-followers__button:focus-visible {
	outline: 0;
	transform: translateY(-1px);
}

.ss-artist-followers__button.is-active {
	color: #ffffff;
    background: #242424;
}

.ss-artist-followers__button-text {
	position: relative;
	z-index: 1;
	transition: transform 0.2s ease;
	white-space: nowrap;
}

.ss-artist-followers__button.is-hover-follow,
.ss-artist-followers__button:not(.is-active):hover,
.ss-artist-followers__button:not(.is-active):focus-visible {
	color: #1d1d1f;
}

.ss-artist-followers__button.is-hover-unfollow,
.ss-artist-followers__button.is-active:hover,
.ss-artist-followers__button.is-active:focus-visible {
	color: #ff9a9a;
}

.ss-artist-followers__button.is-busy {
	opacity: 0.58;
	pointer-events: none;
}

.ss-artist-followers__button.is-busy .ss-artist-followers__button-text {
	animation: ssArtistFollowersTextPulse 0.72s ease-in-out infinite;
}

.ss-artist-followers__count-wrap {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #eee;
	font-size: 14px;
	font-weight: 600;
}

.ss-artist-followers__count,
.ss-artist-followers__count-label,
.ss-artist-card__meta,
.ss-artist-card__meta [data-ss-artist-count] {
	color: #eee;
}

.ss-artist-followers-page {
	--ss-artist-followers-grid-max: 1760px;
	--ss-artist-followers-card-min: 132px;
	--ss-artist-followers-card-max: 160px;
	--ss-artist-followers-media-size: clamp(122px, 37vw, 150px);
	--ss-artist-followers-grid-row-gap: 26px;
	--ss-artist-followers-grid-column-gap: 14px;
	padding: 20px 0 40px;
}

.ss-artist-followers-page__shell {
	width: 100%;
	margin: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
	border: 0;
	border-radius: 0;
}

.ss-artist-followers-page__header {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 28px;
	text-align: right;
	direction: ltr;
}

.ss-artist-followers-page__title-wrap {
	display: flex;
	justify-content: flex-end;
	width: 100%;
}

.ss-artist-followers-page__title {
	display: inline-flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 14px;
	margin: 0;
	color: #fff;
	font-size: clamp(18px, 1.4vw, 30px);
	font-weight: 800;
	letter-spacing: 0;
}

.ss-artist-followers-page__title-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: rgba(255, 214, 79, 0.08);
	border: 1px solid rgba(255, 214, 79, 0.14);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ss-artist-followers-page__title-icon-inner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(180deg, #f7d55d 0%, #e0ab10 100%);
	color: #1f1f1f;
	font-size: 20px;
	box-shadow: 0 8px 24px rgba(224, 171, 16, 0.22);
}

.ss-artist-followers-page__title-text {
	color: #fff;
}

.ss-artist-followers-page__title-count {
	color: rgba(238, 238, 238, 0.66);
	font-weight: 400;
}

.ss-artist-followers-page__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(var(--ss-artist-followers-card-min), 1fr));
	justify-content: center;
	gap: var(--ss-artist-followers-grid-row-gap) var(--ss-artist-followers-grid-column-gap);
	align-items: start;
	width: min(100%, var(--ss-artist-followers-grid-max));
	margin-inline: auto;
}

.ss-artist-card {
	box-sizing: border-box;
	display: grid;
	justify-self: center;
	justify-items: center;
	gap: 14px;
	width: 100%;
	max-width: var(--ss-artist-followers-card-max);
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	text-align: center;
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.ss-artist-card:hover {
	transform: translateY(-3px);
}

.ss-artist-card.is-removing {
	opacity: 0;
	transform: scale(0.98);
}

.ss-artist-card__media-wrap {
	width: 100%;
	display: grid;
	place-items: center;
	min-width: 0;
}

.ss-artist-card__media {
	box-sizing: border-box;
	display: grid;
	place-items: center;
	width: min(var(--ss-artist-followers-media-size), 100%);
	max-width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	background: #2a2a2a;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
	color: inherit;
	line-height: 1;
	text-decoration: none !important;
}

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

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

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

.ss-artist-card__placeholder {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: rgba(255, 255, 255, 0.36);
	font-size: clamp(58px, 8vw, 82px);
	line-height: 1;
	text-decoration: none !important;
}

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

.ss-artist-card__body {
	display: grid;
	justify-items: center;
	gap: 10px;
	width: 100%;
	padding: 0;
}

.ss-artist-card__title {
	margin: 0;
	max-width: 100%;
	font-size: clamp(18px, 1.8vw, 20px);
	font-weight: 600;
	line-height: 1.35;
}

.ss-artist-card__title a {
	display: block;
	max-width: 100%;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ss-artist-card__title a:hover {
	color: #eee;
	text-decoration: none;

}
.ss-artist-card__meta {
	margin: 0;
	color: rgba(238, 238, 238, 0.52);
	font-size: 14px;
	font-weight: 600;
}

.ss-artist-followers__button--card {
	width: auto;
	min-width: 112px;
	padding-inline: 4px;
}

.ss-artist-followers-page__loader {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 28px auto 0;
	padding: 10px 0;
	color: rgba(238, 238, 238, 0.78);
}

.ss-artist-followers-page__loader .ss-shared-loader {
	--ss-loader-size: 24px;
	--ss-loader-thickness: 4px;
	--ss-loader-accent: #fbcb07;
	color: rgba(238, 238, 238, 0.78);
	font-size: 13px;
	font-weight: 700;
}

.ss-artist-followers-page__sentinel {
	width: 100%;
	height: 2px;
}

.ss-artist-followers-page__empty {
	margin: 28px 0 0;
	padding: 24px;
	border: 1px dashed rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	color: rgba(238, 238, 238, 0.72);
	text-align: center;
	background: rgba(255, 255, 255, 0.02);
}

.ss-artist-followers-login-prompt,
.ss-artist-followers-login-prompt * {
	box-sizing: border-box;
}

.ss-artist-followers-login-prompt .ss-player-login-prompt__text a {
	white-space: nowrap;
}

.ss-artist-followers-toast {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 99999;
	max-width: 320px;
	padding: 14px 16px;
	border-radius: 18px;
	background: rgba(15, 23, 42, 0.94);
	color: #fff;
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.2);
	transition: opacity 0.24s ease, transform 0.24s ease;
}

.ss-artist-followers-toast a {
	color: inherit;
	text-decoration: none;
}

.ss-artist-followers-toast--status {
	right: 50%;
	bottom: calc(86px + env(safe-area-inset-bottom, 0px));
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: max-content;
	max-width: calc(100vw - 32px);
	min-height: 44px;
	padding: 10px 14px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 14px;
	background: #fff;
	color: #1d1d1f;
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.8;
	text-align: right;
	transform: translate(50%, 8px);
	opacity: 0;
}

.ss-artist-followers-toast--status.is-visible {
	opacity: 1;
	transform: translate(50%, 0);
}

.ss-artist-followers-toast--status.is-hidden {
	opacity: 0;
	transform: translate(50%, 8px);
}

.ss-artist-followers-toast__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	min-width: 24px;
	height: 24px;
	border-radius: 50%;
	font-size: 13px;
	line-height: 1;
}

.ss-artist-followers-toast--status.is-success .ss-artist-followers-toast__icon {
	background: rgba(22, 163, 74, 0.12);
	color: #16a34a;
}

.ss-artist-followers-toast--status.is-remove .ss-artist-followers-toast__icon {
	background: rgba(225, 29, 72, 0.1);
	color: #e11d48;
}

.ss-artist-followers-toast__text {
	white-space: nowrap;
}

.ss-artist-followers-toast.is-hidden {
	opacity: 0;
	transform: translateY(8px);
}

.ss-artist-followers-toast.ss-artist-followers-toast--status.is-hidden {
	opacity: 0;
	transform: translate(50%, 8px);
}

.ss-artist-followers__button.is-animating-follow {
	animation: ssArtistFollowersFollow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.ss-artist-followers__button.is-animating-unfollow {
	animation: ssArtistFollowersUnfollow 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.ss-artist-followers__button.is-pulse {
	animation: ssArtistFollowersPulse 0.44s ease-out;
}

@keyframes ssArtistFollowersFollow {
	0% {
		transform: translateY(0);
	}
	42% {
		transform: translateY(1px);
	}
	74% {
		transform: translateY(-2px);
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes ssArtistFollowersUnfollow {
	0% {
		transform: translateX(0);
	}
	28% {
		transform: translateX(-2px);
	}
	58% {
		transform: translateX(2px);
	}
	100% {
		transform: translateX(0);
	}
}

@keyframes ssArtistFollowersPulse {
	0% {
		opacity: 0.76;
	}
	100% {
		opacity: 1;
	}
}

@keyframes ssArtistFollowersTextPulse {
	50% {
		opacity: 0.55;
	}
}

@media (max-width: 767px) {
	.ss-artist-followers-page__grid {
		justify-content: stretch;
	}

	.ss-artist-followers-page__shell {
		padding: 0;
	}

	.ss-artist-followers-page__header {
		margin-bottom: 20px;
	}

	.ss-artist-followers-page__title {
		gap: 10px;
		font-size: 24px;
	}

	.ss-artist-followers-page__title-icon {
		width: 46px;
		height: 46px;
	}

	.ss-artist-followers-page__title-icon-inner {
		width: 36px;
		height: 36px;
		font-size: 17px;
	}

	.ss-artist-card__media {
		width: min(var(--ss-artist-followers-media-size), 100%);
	}

	.ss-artist-card__title {
		font-size: 16px;
	}

	.ss-artist-followers__button--card {
		min-width: 0;
		width: auto;
		padding-inline: 16px;
		font-size: 13px;
	}
}

@media (max-width: 360px) {
	.ss-artist-followers-page {
		--ss-artist-followers-card-min: 126px;
		--ss-artist-followers-card-max: 148px;
		--ss-artist-followers-media-size: clamp(116px, 37vw, 136px);
		--ss-artist-followers-grid-row-gap: 24px;
		--ss-artist-followers-grid-column-gap: 12px;
	}
}

@media (min-width: 480px) {
	.ss-artist-followers-page {
		--ss-artist-followers-card-min: 138px;
		--ss-artist-followers-card-max: 168px;
		--ss-artist-followers-media-size: clamp(132px, 29vw, 158px);
		--ss-artist-followers-grid-row-gap: 28px;
		--ss-artist-followers-grid-column-gap: 16px;
	}
}

@media (min-width: 768px) {
	.ss-artist-followers-page {
		--ss-artist-followers-card-min: 150px;
		--ss-artist-followers-card-max: 184px;
		--ss-artist-followers-media-size: 164px;
		--ss-artist-followers-grid-row-gap: 32px;
		--ss-artist-followers-grid-column-gap: 20px;
	}
}

@media (min-width: 1024px) {
	.ss-artist-followers-page {
		--ss-artist-followers-card-min: 160px;
		--ss-artist-followers-card-max: 190px;
		--ss-artist-followers-media-size: 172px;
		--ss-artist-followers-grid-row-gap: 34px;
		--ss-artist-followers-grid-column-gap: 22px;
	}
}

@media (min-width: 1280px) {
	.ss-artist-followers-page {
		--ss-artist-followers-card-min: 170px;
		--ss-artist-followers-card-max: 200px;
		--ss-artist-followers-media-size: 184px;
		--ss-artist-followers-grid-row-gap: 36px;
		--ss-artist-followers-grid-column-gap: 24px;
	}
}

@media (min-width: 1680px) {
	.ss-artist-followers-page {
		--ss-artist-followers-card-min: 180px;
		--ss-artist-followers-card-max: 208px;
		--ss-artist-followers-media-size: 190px;
		--ss-artist-followers-grid-row-gap: 38px;
		--ss-artist-followers-grid-column-gap: 28px;
	}
}
