:root {
	--kp-accent: #ff4b00;
	--kp-surface: #f2f2f2;
	--kp-surface-hover: #e5e5e5;
	--kp-border: rgba(0, 0, 0, 0.12);
	--kp-muted: #606060;
	--kp-radius: 12px;
	--kp-pill-radius: 999px;
	--kp-content-width: 1600px;
}

.dark {
	--kp-surface: #272727;
	--kp-surface-hover: #3f3f3f;
	--kp-border: rgba(255, 255, 255, 0.16);
	--kp-muted: #aaa;
}

.kadenceplay-child *,
.kadenceplay-child *::before,
.kadenceplay-child *::after {
	box-sizing: border-box;
}

.kadenceplay-child button,
.kadenceplay-child a {
	-webkit-tap-highlight-color: transparent;
}

/* Video cards */
.kp-video-card {
	min-width: 0;
}

.kp-card-thumbnail {
	position: relative;
	width: 100%;
	margin: 0 0 12px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: var(--kp-radius);
	background: #181818;
}

.kp-card-thumbnail .post-thumbnail-inner,
.kp-short-thumbnail .post-thumbnail-inner {
	display: block;
	width: 100%;
	height: 100%;
}

.kp-card-image,
.kp-card-thumbnail .post-thumbnail-inner > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 180ms ease;
}

.kp-video-card:hover .kp-card-image {
	transform: scale(1.02);
}

.kp-thumbnail-placeholder,
.post-thumbnail-inner.is-image-missing {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #282828, #111);
}

.kp-thumbnail-placeholder::after,
.post-thumbnail-inner.is-image-missing::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 42px;
	height: 30px;
	transform: translate(-50%, -50%);
	border-radius: 8px;
	background: var(--kp-accent);
}

.kp-thumbnail-placeholder::before,
.post-thumbnail-inner.is-image-missing::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	width: 0;
	height: 0;
	transform: translate(-35%, -50%);
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 11px solid #fff;
}

.kp-card-thumbnail .entry-badge {
	position: absolute;
	right: 6px;
	bottom: 6px;
	z-index: 3;
}

.kp-card-thumbnail .entry-badge > * {
	padding: 2px 5px;
	border-radius: 4px;
	color: #fff;
	background: rgba(0, 0, 0, 0.78);
	font-size: 12px;
	font-weight: 600;
}

.kp-card-header {
	display: grid !important;
	grid-template-columns: 40px minmax(0, 1fr) auto;
	gap: 12px;
	align-items: start !important;
	min-width: 0;
}

.kp-card-avatar,
.kp-card-avatar img,
.kp-card-avatar > span {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.kp-card-avatar img {
	object-fit: cover;
}

.kp-card-avatar > span,
.kp-artist-avatar > span,
.kp-artist-profile-photo > span {
	display: grid;
	place-items: center;
	color: #fff;
	background: #555;
	font-weight: 700;
}

.kp-card-header .entry-header-inner {
	min-width: 0;
}

.kp-card-header .entry-title {
	display: -webkit-box;
	margin: 0 0 5px;
	overflow: hidden;
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.kp-card-header .entry-title a {
	color: inherit;
}

.kp-video-card .kp-card-meta,
.kp-card-stats {
	display: block;
	color: var(--kp-muted);
	font-size: 0.86rem;
	line-height: 1.45;
}

.kp-video-card .kp-card-artists,
.kp-video-card .kp-card-stats {
	display: block;
}

.kp-card-artists a,
.kp-secondary-artists a {
	color: inherit;
}

.kp-card-artists a:hover,
.kp-secondary-artists a:hover {
	color: inherit;
	text-decoration: underline;
}

/* Single video */
.single-station .site-content {
	--content-width: var(--kp-content-width);
}

.single-station #plyr-playlist {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	max-height: calc(100svh - var(--navbar-height, 64px));
	overflow: hidden;
	background: #000;
}

.single-station #plyr-playlist .plyr,
.single-station #plyr-playlist video,
.single-station #plyr-playlist iframe {
	width: 100%;
	height: 100%;
}

.single-station #plyr-playlist video {
	object-fit: contain;
}

.single-station .header-station-thumbnail {
	aspect-ratio: 16 / 9;
	height: auto;
	max-height: calc(100svh - var(--navbar-height, 64px));
}

.single-station .entry-content {
	width: calc(100% - (2 * var(--x-gap)));
	max-width: var(--kp-content-width);
	margin: 0 auto;
}

.single-station .header-station {
	width: calc(100% - (2 * var(--x-gap))) !important;
	max-width: var(--kp-content-width) !important;
	margin: 0 auto;
	padding-top: 18px;
	padding-bottom: 12px;
}

.single-station .header-station > .entry-header {
	min-width: 0;
}

.single-station .header-station .entry-title {
	margin: 0 0 12px;
	font-size: clamp(1.25rem, 2vw, 1.65rem);
	font-weight: 700;
	line-height: 1.3;
}

.single-station .header-station .entry-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
}

.kp-artist-channel {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 250px;
	margin-right: auto;
}

.kp-artist-avatar,
.kp-artist-avatar img,
.kp-artist-avatar > span {
	flex: 0 0 auto;
	width: 44px;
	height: 44px;
	border-radius: 50%;
}

.kp-artist-avatar img {
	object-fit: cover;
}

.kp-artist-channel-info {
	display: flex;
	flex-direction: column;
	min-width: 0;
	line-height: 1.25;
}

.kp-artist-channel-name {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 0.96rem;
	font-weight: 700;
}

.kp-artist-channel-name a {
	color: inherit;
}

.kp-artist-channel-followers,
.kp-secondary-artists,
.kp-video-stats {
	color: var(--kp-muted);
	font-size: 0.78rem;
}

.kp-secondary-artists {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.kp-video-stats {
	flex: 0 0 100%;
	order: -1;
	margin-bottom: 2px;
}

.kp-action-button,
.kp-labeled-action,
.single-station .header-station .btn-playlist,
.single-station .header-station .btn-more,
.kp-follow-button,
.kp-artist-follow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 36px;
	padding: 0 15px;
	border: 0;
	border-radius: var(--kp-pill-radius);
	color: inherit;
	background: var(--kp-surface);
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background-color 120ms ease;
}

.kp-action-button:hover,
.kp-labeled-action:hover,
.single-station .header-station .btn-playlist:hover,
.single-station .header-station .btn-more:hover,
.kp-follow-button:hover,
.kp-artist-follow:hover {
	color: inherit;
	background: var(--kp-surface-hover);
}

.kp-follow-button:not(.is-following),
.kp-artist-follow:not(.is-following) {
	color: #fff;
	background: #0f0f0f;
}

.dark .kp-follow-button:not(.is-following),
.dark .kp-artist-follow:not(.is-following) {
	color: #0f0f0f;
	background: #fff;
}

.kp-channel-follow .kp-follow-count,
.kp-profile-follow .kp-follow-count {
	display: none;
}

.kp-labeled-action {
	padding-left: 12px;
	padding-right: 12px;
}

.kp-labeled-action > [class*="btn-"] {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.kp-labeled-action svg,
.kp-action-button svg {
	width: 20px;
	height: 20px;
}

.kp-share-status:empty {
	display: none;
}

.kp-share-status:not(:empty) {
	position: absolute;
	top: calc(100% + 8px);
	left: 50%;
	z-index: 20;
	width: max-content;
	max-width: 240px;
	padding: 8px 12px;
	transform: translateX(-50%);
	border-radius: 5px;
	color: #fff;
	background: rgba(0, 0, 0, 0.88);
	font-size: 12px;
}

.kp-share-button {
	position: relative;
}

.single-station .entry-content-inner .station-content,
.single-station .entry-content-inner .entry-info,
.kp-artist-about {
	max-width: none;
	margin: 12px 0 24px;
	padding: 14px 16px;
	border-radius: var(--kp-radius);
	background: var(--kp-surface);
}

.single-station .station-content a,
.single-station .entry-info a {
	font-weight: 600;
}

/* Recommendation rail */
.kp-recommendations {
	--loop-columns: 1;
	--loop-grid-gap: 12px;
}

.kp-recommendations .kp-video-card {
	display: grid;
	grid-template-columns: minmax(150px, 168px) minmax(0, 1fr);
	gap: 8px;
	margin-bottom: 8px;
}

.kp-recommendations .kp-card-thumbnail {
	width: 100%;
	min-width: 0;
	margin: 0;
	border-radius: 8px;
}

.kp-recommendations .kp-card-header {
	display: block !important;
	width: 100%;
	min-width: 0;
}

.kp-recommendations .kp-card-avatar,
.kp-recommendations .kp-card-header > .btn-more,
.kp-recommendations .kp-card-thumbnail .entry-action {
	display: none;
}

.kp-recommendations .kp-card-header .entry-title {
	margin-bottom: 4px;
	font-size: 0.9rem;
}

.kp-recommendations .kp-card-meta,
.kp-recommendations .kp-card-stats {
	font-size: 0.75rem;
}

/* Player recovery */
.kp-player-notice {
	position: absolute;
	inset: 0;
	z-index: 15;
	display: grid;
	place-content: center;
	justify-items: center;
	gap: 12px;
	padding: 24px;
	color: #fff;
	text-align: center;
	background: rgba(0, 0, 0, 0.78);
}

.kp-player-notice p {
	margin: 0;
}

.kp-player-notice button {
	padding: 9px 18px;
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: var(--kp-pill-radius);
	color: #fff;
	background: transparent;
	font-weight: 600;
	cursor: pointer;
}

/* Artist profile */
.kp-artist-page {
	width: calc(100% - (2 * var(--x-gap)));
	max-width: var(--kp-content-width);
	margin: 0 auto;
	padding-bottom: 48px;
}

.kp-artist-hero {
	margin-bottom: 26px;
	border-radius: var(--kp-radius);
}

.kp-artist-banner {
	position: relative;
	width: 100%;
	aspect-ratio: 6 / 1;
	min-height: 190px;
	overflow: hidden;
	border-radius: var(--kp-radius);
	background: linear-gradient(135deg, #181818, #555);
}

.kp-artist-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 42%, rgba(0, 0, 0, 0.18));
	pointer-events: none;
}

.kp-artist-banner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kp-artist-banner.is-default {
	background:
		radial-gradient(circle at 16% 28%, rgba(255, 75, 0, 0.52), transparent 34%),
		linear-gradient(135deg, #101827, #243042 46%, #111827);
}

.kp-artist-banner-default {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: rgba(255, 255, 255, 0.18);
	font-size: clamp(4rem, 13vw, 9rem);
	font-weight: 900;
	text-transform: uppercase;
}

.kp-artist-profile {
	display: flex;
	align-items: flex-end;
	gap: 24px;
	margin-top: -76px;
	padding: 0 28px;
	position: relative;
	z-index: 2;
}

.kp-artist-profile-photo,
.kp-artist-profile-photo img,
.kp-artist-profile-photo > span {
	width: 148px;
	height: 148px;
	border-radius: 50%;
}

.kp-artist-profile-photo {
	flex: 0 0 auto;
	padding: 4px;
	background: var(--body-bg-color, #fff);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.kp-artist-profile-photo img {
	object-fit: cover;
}

.kp-artist-profile-copy {
	min-width: 0;
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, 0.76);
	border-radius: 22px;
	color: #0f172a;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 16px 44px rgba(15, 23, 42, 0.15);
	backdrop-filter: blur(12px);
}

.dark .kp-artist-profile-copy {
	border-color: rgba(255, 255, 255, 0.18);
	color: #fff;
	background: rgba(16, 16, 16, 0.86);
}

.kp-artist-kicker {
	margin-bottom: 3px;
	color: var(--kp-muted);
	font-size: 0.86rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.kp-artist-profile h1 {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 6px;
	font-size: clamp(2rem, 4vw, 3.6rem);
	line-height: 1.08;
}

.kp-artist-profile h1 .user-verified {
	flex: 0 0 auto;
	font-size: 0.62em;
	color: var(--kp-accent);
}

.kp-artist-facts {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
	margin-bottom: 12px;
	color: var(--kp-muted);
}

.kp-artist-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.kp-artist-secondary-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 16px;
	border: 1px solid var(--kp-border);
	border-radius: var(--kp-pill-radius);
	color: inherit;
	background: var(--kp-surface);
	font-weight: 800;
	text-decoration: none;
}

.kp-artist-secondary-action:hover,
.kp-artist-secondary-action:focus-visible {
	border-color: currentColor;
	color: inherit;
}

.kp-artist-about h2,
.kp-artist-videos h2,
.kp-artist-shorts h2,
.kp-artist-playlists h2,
.kp-artist-platforms h2 {
	margin: 0 0 14px;
	font-size: 1.35rem;
}

.kp-artist-bio.is-collapsed {
	position: relative;
	max-height: 180px;
	overflow: hidden;
}

.kp-artist-bio.is-collapsed::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 48px;
	background: linear-gradient(transparent, var(--kp-surface));
}

.kp-collapse-toggle {
	margin-top: 10px;
	padding: 0;
	border: 0;
	background: transparent;
	font-weight: 700;
	cursor: pointer;
}

.kp-artist-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 28px;
}

.kp-artist-links a {
	padding: 8px 14px;
	border: 1px solid var(--kp-border);
	border-radius: var(--kp-pill-radius);
	color: inherit;
	font-size: 0.88rem;
	font-weight: 600;
}

.kp-video-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px 16px;
}

/* Shorts */
.kp-short-card {
	min-width: 0;
}

.kp-short-thumbnail {
	position: relative;
	width: 100%;
	margin: 0 0 10px;
	aspect-ratio: 9 / 16;
	overflow: hidden;
	border-radius: var(--kp-radius);
	background: #111;
}

.kp-short-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kp-short-header .entry-title {
	display: -webkit-box;
	margin: 0 0 4px;
	overflow: hidden;
	font-size: 0.98rem;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.kp-short-header .entry-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	font-size: 0.82rem;
}

.kp-short-actions {
	position: absolute;
	right: 8px;
	bottom: 8px;
	z-index: 4;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.kp-short-actions > * {
	color: #fff;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(6px);
}

@media (min-width: 992px) {
	.single-station .entry-content-wrap {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) minmax(330px, 400px);
		gap: 24px;
	}

	.single-station .entry-content-inner {
		width: auto !important;
		min-width: 0;
	}

	.single-station .entry-content-wrap > .sidebar {
		width: auto;
		margin: 0;
	}

	.single-station .entry-content-wrap > .sidebar .sidebar-inner {
		padding-top: 12px;
	}
}

@media (max-width: 1199px) {
	.kp-video-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.single-station .entry-content-wrap > .sidebar {
		width: 100%;
		margin: 0;
	}

	.kp-recommendations .kp-video-card {
		grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
	}

	.kp-artist-content-grid {
		grid-template-columns: 1fr;
	}

	.kp-artist-sidecard {
		padding: 18px;
		border: 1px solid var(--kp-border);
		border-radius: 18px;
		background: var(--kp-surface);
	}
}

@media (max-width: 781px) {
	.single-station .header-station .entry-meta {
		align-items: center;
		overflow-x: auto;
		padding-bottom: 4px;
		scrollbar-width: none;
	}

	.single-station .header-station .entry-meta::-webkit-scrollbar {
		display: none;
	}

	.kp-artist-channel {
		flex: 0 0 100%;
		min-width: 0;
		margin-bottom: 4px;
	}

	.kp-video-stats {
		order: -1;
	}

	.kp-action-button,
	.kp-labeled-action,
	.single-station .header-station .btn-playlist,
	.single-station .header-station .btn-more {
		flex: 0 0 auto;
	}

	.kp-video-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.kp-artist-profile {
		align-items: center;
		margin-top: -38px;
		padding: 0 16px;
	}

	.kp-artist-profile-photo,
	.kp-artist-profile-photo img,
	.kp-artist-profile-photo > span {
		width: 112px;
		height: 112px;
	}
}

@media (max-width: 599px) {
	.single-station .entry-content,
	.single-station .header-station,
	.kp-artist-page {
		width: calc(100% - 24px) !important;
	}

	.single-station #plyr-playlist,
	.single-station .header-station-thumbnail {
		max-height: none;
	}

	.single-station .header-station {
		padding-top: 12px;
	}

	.single-station .header-station .entry-title {
		font-size: 1.2rem;
	}

	.kp-recommendations .kp-video-card {
		grid-template-columns: minmax(150px, 168px) minmax(0, 1fr);
	}

	.kp-recommendations .kp-card-header .entry-title {
		-webkit-line-clamp: 2;
	}

	.kp-artist-banner {
		min-height: 116px;
		aspect-ratio: 3 / 1;
	}

	.kp-artist-profile {
		align-items: flex-end;
		gap: 12px;
		margin-top: -30px;
		padding: 0 8px;
	}

	.kp-artist-actions {
		gap: 8px;
	}

	.kp-artist-secondary-action,
	.kp-artist-profile .kp-profile-follow {
		min-height: 36px;
		padding-right: 13px;
		padding-left: 13px;
	}

	.kp-artist-profile-photo,
	.kp-artist-profile-photo img,
	.kp-artist-profile-photo > span {
		width: 88px;
		height: 88px;
	}

	.kp-artist-profile h1 {
		font-size: 1.6rem;
	}

	.kp-artist-facts {
		font-size: 0.82rem;
	}

	.kp-video-grid {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.block-loop-short .kp-short-card,
	.kp-short-card {
		width: min(100%, 390px) !important;
		max-width: 100%;
		margin-right: auto;
		margin-left: auto;
	}
}

@media (max-width: 420px) {
	.kp-recommendations .kp-video-card {
		grid-template-columns: 43% minmax(0, 1fr);
	}

	.kp-recommendations .kp-card-artists,
	.kp-recommendations .kp-card-stats {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.kp-labeled-action > span:last-child {
		display: none;
	}
}

/* Card navigation and dedicated mini-player control */
[data-kp-card-url] {
	cursor: pointer;
}

.kp-video-card .entry-action,
.kp-short-card .entry-action {
	justify-content: center;
}

.kp-card-play-link {
	position: relative;
	z-index: 4;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-width: 48px;
	min-height: 48px;
	padding: 0 16px;
	border-radius: var(--kp-pill-radius);
	color: #fff;
	background: transparent;
	font-size: 0.86rem;
	font-weight: 700;
	backdrop-filter: none;
}

.kp-card-play-link:hover {
	color: #fff;
	background: transparent;
}

.kp-card-play-link svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.kp-video-card .entry-action .kp-card-mini-player,
.kp-short-card .entry-action .kp-card-mini-player {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 5;
	width: 36px;
	height: 36px;
	min-width: 36px;
	margin: 0;
	padding: 8px;
	border: 0;
	border-radius: 8px;
	color: #fff;
	background: rgba(0, 0, 0, 0.72);
	box-shadow: none;
	backdrop-filter: blur(5px);
}

.kp-card-mini-player svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
	pointer-events: none;
}

.kp-card-mini-player::before,
.kp-card-mini-player::after {
	display: none !important;
}

/* Watch page: one player instance, embedded or floating */
.kp-single-player-trigger {
	display: none !important;
}

.single-station .kp-watch-page {
	width: calc(100% - (2 * var(--x-gap)));
	max-width: var(--kp-content-width);
	margin: 20px auto 0;
}

.single-station .kp-watch-grid {
	align-items: start;
}

.kp-player-tools {
	display: none;
	position: absolute;
	top: auto;
	bottom: 54px;
	right: 10px;
	z-index: 30;
	align-items: center;
	gap: 8px;
	pointer-events: auto;
}

.single-station #plyr-playlist.kp-player-enhanced .kp-player-tools {
	display: flex;
}

.kp-player-tool {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 9px;
	border: 0;
	border-radius: 8px;
	color: #fff;
	background: transparent;
	box-shadow: none;
	cursor: pointer;
	backdrop-filter: none;
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.85));
}

.kp-player-tool:hover,
.kp-player-tool:focus-visible {
	color: #fff;
	background: rgba(0, 0, 0, 0.18);
}

.kp-player-tool svg {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.kp-player-close {
	display: none;
}

.single-station #plyr-playlist.kp-player-floating,
.open-player .single-station #plyr-playlist.kp-player-floating {
	position: fixed !important;
	top: auto !important;
	right: 20px !important;
	bottom: 20px !important;
	left: auto !important;
	z-index: 9998;
	width: min(420px, calc(100vw - 40px)) !important;
	height: auto !important;
	aspect-ratio: 16 / 9;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 12px;
	box-shadow: 0 14px 42px rgba(0, 0, 0, 0.42);
}

.single-station #plyr-playlist.kp-player-floating .kp-player-close {
	display: inline-grid;
}

.single-station .site-header {
	color: #111 !important;
	background-color: #fff !important;
	--sub-menu-color: #fff;
}

.single-station .site-header .search-form,
.dark.single-station .site-header .search-form {
	color: #111;
	background-color: #f2f2f2 !important;
}

.single-station .site-header .search-form input {
	color: #111;
}

.block-loop-hero .kp-hero-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.single-station .kp-watch-main > .header-station {
	width: 100% !important;
	max-width: none !important;
	margin: 0;
	padding: 16px 0 10px;
}

.single-station .kp-watch-main > .station-content,
.single-station .kp-watch-main > .entry-info {
	width: 100%;
	max-width: none;
}

/* Artist channel sections */
.kp-artist-intro {
	max-width: 760px;
	margin: 0 0 12px;
	color: var(--kp-muted);
	line-height: 1.5;
}

.kp-artist-tabs {
	position: sticky;
	top: var(--navbar-height, 64px);
	z-index: 20;
	display: flex;
	gap: 26px;
	margin: 0 0 28px;
	padding: 0 4px;
	overflow-x: auto;
	border-bottom: 1px solid var(--kp-border);
	background: var(--body-bg-color, #fff);
	scrollbar-width: none;
}

.kp-artist-tabs::-webkit-scrollbar {
	display: none;
}

.kp-artist-tabs a {
	flex: 0 0 auto;
	padding: 14px 2px 12px;
	border-bottom: 2px solid transparent;
	color: inherit;
	font-weight: 700;
}

.kp-artist-tabs a:hover,
.kp-artist-tabs a:focus-visible {
	border-bottom-color: currentColor;
}

.kp-artist-tabs a.is-active,
.kp-artist-tabs a[aria-selected="true"] {
	border-bottom-color: var(--kp-accent);
	color: inherit;
}

.kp-artist-section {
	margin-bottom: 42px;
	scroll-margin-top: calc(var(--navbar-height, 64px) + 60px);
}

.kp-artist-section[hidden] {
	display: none !important;
}

.kp-artist-section > h2 {
	margin: 0 0 16px;
	font-size: 1.35rem;
}

.kp-artist-content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
	gap: 26px;
	align-items: start;
}

.kp-artist-main-panel {
	min-width: 0;
}

.kp-artist-sidecard {
	display: grid;
	gap: 18px;
	padding-left: 24px;
	border-left: 1px solid var(--kp-border);
}

.kp-artist-sidecard section {
	padding-bottom: 18px;
	border-bottom: 1px solid var(--kp-border);
}

.kp-artist-sidecard section:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.kp-artist-sidecard h3 {
	margin: 0 0 9px;
	font-size: 1rem;
}

.kp-artist-sidecard p {
	margin: 0;
	color: var(--kp-muted);
	line-height: 1.55;
}

.kp-artist-stats {
	margin: 0;
}

.kp-artist-stats div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 5px 0;
}

.kp-artist-stats dt,
.kp-artist-stats dd {
	margin: 0;
}

.kp-artist-stats dt {
	color: var(--kp-muted);
}

.kp-artist-stats dd {
	font-weight: 800;
}

.kp-social-grid,
.kp-streaming-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.kp-social-pill,
.kp-streaming-pills a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	padding: 0 12px;
	border: 1px solid var(--kp-border);
	border-radius: var(--kp-pill-radius);
	color: inherit;
	background: var(--kp-surface);
	font-size: 0.84rem;
	font-weight: 800;
	text-decoration: none;
}

.kp-social-pill .kp-platform-icon,
.kp-streaming-pills .kp-platform-icon {
	width: 20px;
	height: 20px;
}

.kp-social-pill:hover,
.kp-social-pill:focus-visible,
.kp-streaming-pills a:hover,
.kp-streaming-pills a:focus-visible {
	border-color: rgba(255, 75, 0, 0.5);
	color: inherit;
}

.kp-artist-empty {
	margin: 0;
	padding: 22px;
	border: 1px solid var(--kp-border);
	border-radius: 18px;
	color: var(--kp-muted);
	background: var(--kp-surface);
}

.kp-smarturl-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	max-width: 900px;
}

.kp-platform-group {
	margin-bottom: 26px;
}

.kp-platform-group:last-child {
	margin-bottom: 0;
}

.kp-platform-group h3 {
	margin: 0 0 12px;
	font-size: 0.95rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.kp-smarturl-card {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr) 20px;
	gap: 14px;
	align-items: center;
	padding: 14px;
	border: 1px solid var(--kp-border);
	border-radius: 18px;
	color: inherit;
	background: var(--kp-surface);
	text-decoration: none;
	transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.kp-smarturl-card:hover,
.kp-smarturl-card:focus-visible {
	border-color: rgba(255, 75, 0, 0.5);
	box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
	transform: translateY(-1px);
}

.kp-smarturl-logo {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 16px;
	color: #fff;
	background: linear-gradient(135deg, #ff4b00, #ff7a2f);
	font-size: 0.86rem;
	font-weight: 900;
	letter-spacing: 0.04em;
}

.kp-platform-icon {
	display: inline-grid;
	place-items: center;
	width: 26px;
	height: 26px;
	color: currentColor;
	line-height: 1;
}

.kp-platform-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.kp-platform-icon-fallback {
	border-radius: 50%;
	font-size: 0.78rem;
	font-weight: 900;
}

.kp-smarturl-logo .kp-platform-icon {
	width: 28px;
	height: 28px;
}

.kp-smarturl-spotify .kp-smarturl-logo { background: #1db954; }
.kp-smarturl-apple_music .kp-smarturl-logo { background: #111827; }
.kp-smarturl-deezer .kp-smarturl-logo { background: #a238ff; }
.kp-smarturl-boomplay .kp-smarturl-logo { background: #18a058; }
.kp-smarturl-audiomack .kp-smarturl-logo { background: #ffb000; color: #111; }
.kp-smarturl-youtube_music .kp-smarturl-logo { background: #ff0033; }
.kp-smarturl-youtube .kp-smarturl-logo { background: #ff0033; }
.kp-smarturl-tiktok .kp-smarturl-logo { background: #030712; }
.kp-smarturl-instagram .kp-smarturl-logo { background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #515bd4); }
.kp-smarturl-facebook .kp-smarturl-logo { background: #1877f2; }
.kp-smarturl-x .kp-smarturl-logo { background: #111; }

.kp-smarturl-copy {
	min-width: 0;
}

.kp-smarturl-copy strong,
.kp-smarturl-copy small {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.kp-smarturl-copy small,
.kp-smarturl-arrow {
	color: var(--kp-muted);
}

.kp-smarturl-arrow {
	font-size: 1.4rem;
	line-height: 1;
}

.kp-short-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 26px 16px;
}

/* Search discovery */
.kp-search-page {
	width: calc(100% - (2 * var(--x-gap)));
	max-width: var(--kp-content-width);
	margin: 0 auto;
	padding-bottom: 48px;
}

.kp-search-header {
	margin: 24px 0;
	padding: 22px;
	border: 1px solid var(--kp-border);
	border-radius: 22px;
	background: var(--kp-surface);
}

.kp-search-header > span {
	display: block;
	margin-bottom: 6px;
	color: var(--kp-muted);
	font-size: 0.86rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.kp-search-header h1 {
	margin: 0 0 16px;
	font-size: clamp(1.5rem, 3vw, 2.35rem);
	line-height: 1.15;
}

.kp-search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	max-width: 760px;
}

.kp-search-form input {
	width: 100%;
	min-height: 44px;
	padding: 0 16px;
	border: 1px solid var(--kp-border);
	border-radius: var(--kp-pill-radius);
	color: inherit;
	background: var(--body-bg-color, #fff);
}

.kp-search-form button {
	min-height: 44px;
	padding: 0 18px;
	border: 0;
	border-radius: var(--kp-pill-radius);
	color: #fff;
	background: #0f0f0f;
	font-weight: 800;
	cursor: pointer;
}

.kp-search-section {
	margin-bottom: 34px;
}

.kp-search-section h2 {
	margin: 0 0 14px;
	font-size: 1.25rem;
}

.kp-search-artist-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.kp-search-artist-card {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	gap: 13px;
	align-items: center;
	min-width: 0;
	padding: 12px;
	border: 1px solid var(--kp-border);
	border-radius: 18px;
	color: inherit;
	background: var(--kp-surface);
	text-decoration: none;
}

.kp-search-artist-card:hover,
.kp-search-artist-card:focus-visible,
.kp-search-video-row:hover,
.kp-search-video-row:focus-within {
	border-color: rgba(255, 75, 0, 0.45);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.kp-search-artist-avatar,
.kp-search-artist-avatar img,
.kp-search-artist-avatar > span {
	width: 64px;
	height: 64px;
	border-radius: 50%;
}

.kp-search-artist-avatar img {
	display: block;
	object-fit: cover;
}

.kp-search-artist-avatar > span {
	display: grid;
	place-items: center;
	color: #fff;
	background: #555;
	font-weight: 900;
}

.kp-search-artist-copy,
.kp-search-video-copy {
	min-width: 0;
}

.kp-search-artist-copy strong,
.kp-search-artist-copy small,
.kp-search-artist-copy > span {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.kp-search-artist-copy strong {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 1rem;
}

.kp-search-artist-copy small,
.kp-search-artist-copy > span {
	color: var(--kp-muted);
	font-size: 0.86rem;
	line-height: 1.45;
}

.kp-search-result-list {
	display: grid;
	gap: 12px;
}

.kp-search-video-row {
	display: grid;
	grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	padding: 12px;
	border: 1px solid transparent;
	border-radius: 18px;
	color: inherit;
	background: transparent;
	transition: box-shadow 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.kp-search-video-row:hover,
.kp-search-video-row:focus-within {
	background: var(--kp-surface);
}

.kp-search-thumb {
	position: relative;
	width: 100%;
	margin: 0;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 12px;
	background: #181818;
}

.kp-search-thumb a,
.kp-search-thumb img,
.kp-search-thumb .kp-thumbnail-placeholder {
	display: block;
	width: 100%;
	height: 100%;
}

.kp-search-thumb img {
	object-fit: cover;
}

.kp-search-thumb .entry-badge {
	position: absolute;
	right: 6px;
	bottom: 6px;
	z-index: 2;
}

.kp-search-thumb .entry-badge > * {
	padding: 2px 5px;
	border-radius: 4px;
	color: #fff;
	background: rgba(0, 0, 0, 0.78);
	font-size: 12px;
	font-weight: 700;
}

.kp-search-video-copy h3 {
	display: -webkit-box;
	margin: 0 0 7px;
	overflow: hidden;
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.3;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.kp-search-video-copy h3 a {
	color: inherit;
}

.kp-search-video-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 9px;
	margin-bottom: 7px;
	color: var(--kp-muted);
	font-size: 0.88rem;
	line-height: 1.4;
}

.kp-search-video-meta > span {
	min-width: 0;
}

.kp-search-video-copy p {
	display: -webkit-box;
	max-width: 780px;
	margin: 0;
	overflow: hidden;
	color: var(--kp-muted);
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.kp-search-empty {
	margin: 0;
	padding: 24px;
	border: 1px solid var(--kp-border);
	border-radius: 18px;
	color: var(--kp-muted);
	background: var(--kp-surface);
}

.kp-artist-short-card {
	display: block;
	width: auto;
	height: auto;
}

.kp-artist-short-card .kp-short-header {
	position: static;
	width: 100%;
	padding: 0;
	color: inherit;
	background: none;
}

.kp-artist-short-card .kp-short-header .entry-meta {
	margin-top: 0;
}

@media (min-width: 992px) {
	.single-station .kp-watch-grid {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) minmax(340px, 402px);
		gap: 24px;
	}

	.single-station .kp-watch-main {
		width: auto !important;
		min-width: 0;
	}

	.single-station .kp-watch-grid > .sidebar {
		width: auto;
		min-width: 0;
		margin: 0;
	}

	.single-station .kp-watch-grid > .sidebar .sidebar-inner {
		padding-top: 0;
	}

	.single-station .kp-recommendations .block-loop-title {
		display: none;
	}
}

@media (max-width: 1199px) {
	.kp-short-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 991px) {
	.single-station .kp-watch-page {
		margin-top: 12px;
	}

	.single-station .kp-watch-grid {
		display: block !important;
	}

	.single-station .kp-watch-grid > .sidebar {
		width: 100%;
		margin: 24px 0 0;
	}

	.kp-short-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 781px) {
	.kp-artist-tabs {
		gap: 20px;
	}

	.kp-short-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 599px) {
	.single-station .kp-watch-page {
		width: 100% !important;
		margin-top: 0;
	}

	.single-station .kp-watch-main > .header-station,
	.single-station .kp-watch-main > .station-content,
	.single-station .kp-watch-main > .entry-info,
	.single-station .kp-watch-main > .station-release,
	.single-station .kp-watch-main > .entry-term,
	.single-station .kp-watch-grid > .sidebar {
		width: calc(100% - 24px) !important;
		margin-right: auto;
		margin-left: auto;
	}

	.single-station #plyr-playlist.kp-player-floating,
	.open-player .single-station #plyr-playlist.kp-player-floating {
		right: 12px !important;
		bottom: calc(var(--mobile-menu-height, 56px) + 12px) !important;
		width: min(360px, calc(100vw - 24px)) !important;
		border-radius: 10px;
	}

	.kp-player-tools {
		top: auto;
		bottom: 48px;
		right: 8px;
	}

	.kp-player-tool {
		width: 34px;
		height: 34px;
		padding: 8px;
	}

	.kp-short-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 22px 10px;
	}

	.kp-artist-short-card {
		width: auto !important;
	}
}

@media (hover: none) {
	.kp-video-card .entry-action,
	.kp-short-card:not(.block-loop-short-item) .entry-action {
		opacity: 1;
		pointer-events: none;
		background: transparent;
	}

	.kp-video-card .kp-card-play-link,
	.kp-short-card:not(.block-loop-short-item) .kp-card-play-link {
		display: none;
	}

	.kp-video-card .kp-card-mini-player,
	.kp-short-card:not(.block-loop-short-item) .kp-card-mini-player {
		pointer-events: auto;
	}
}

/* 1.2.0 stability and card polish */
.kp-card-header {
	grid-template-columns: 40px minmax(0, 1fr) 32px !important;
	width: 100% !important;
	max-width: none !important;
}

.kp-card-header > .entry-header-inner {
	display: block !important;
	width: auto !important;
	max-width: none !important;
	min-width: 0 !important;
}

.kp-card-header > .btn-more {
	width: 32px;
	min-width: 32px;
	padding: 6px;
}

.kp-card-header .entry-title,
.kp-card-header .entry-title a,
.kp-card-artists,
.kp-card-stats {
	max-width: 100%;
	word-break: normal !important;
	overflow-wrap: break-word;
	hyphens: none;
}

.kp-card-header .entry-title {
	-webkit-line-clamp: 2;
}

.kp-card-artists,
.kp-card-stats {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.kp-card-artists .user-verified {
	vertical-align: -0.15em;
}

.kp-card-play-link {
	width: 48px;
	height: 48px;
	min-width: 48px;
	min-height: 48px;
	padding: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.52);
	backdrop-filter: blur(2px);
}

.kp-card-play-link:hover,
.kp-card-play-link:focus-visible {
	background: rgba(0, 0, 0, 0.68);
}

.kp-card-play-link svg {
	width: 24px;
	height: 24px;
}

.kp-video-card .entry-action .kp-card-mini-player,
.kp-short-card .entry-action .kp-card-mini-player {
	top: auto;
	right: 8px;
	bottom: 8px;
	width: 34px;
	height: 34px;
	min-width: 34px;
	padding: 7px;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(2px);
}

.kp-video-card .entry-action .kp-card-mini-player:hover,
.kp-short-card .entry-action .kp-card-mini-player:hover {
	background: rgba(0, 0, 0, 0.38);
}

.kp-card-thumbnail .entry-badge {
	right: auto;
	bottom: 6px;
	left: 6px;
}

.single-station #plyr-playlist.kp-player-floating,
.open-player .single-station #plyr-playlist.kp-player-floating {
	margin: 0 !important;
	transition: none !important;
	will-change: auto;
}

.kp-player-placeholder {
	width: 100%;
	height: 0;
	margin: 0;
	padding: 0;
}

.kp-artist-profile-copy {
	flex: 1;
}

.kp-artist-profile .kp-profile-follow {
	width: max-content;
}

@media (hover: none) {
	.kp-video-card .kp-card-play-link,
	.kp-short-card:not(.block-loop-short-item) .kp-card-play-link {
		display: inline-flex;
		pointer-events: auto;
	}
}

@media (max-width: 781px) {
	.open-player .single-station #plyr-playlist:not(.kp-player-floating) {
		position: sticky !important;
		top: var(--navbar-height, 56px) !important;
		z-index: 900;
	}

	.single-station .kp-watch-grid > .sidebar {
		margin-top: 18px;
	}

	.single-station .kp-recommendations .block-loop-title {
		display: block;
		margin: 0 0 14px;
	}

	.kp-recommendations .block-loop-items {
		display: block !important;
	}

	.kp-recommendations .kp-video-card {
		display: grid !important;
		grid-template-columns: minmax(132px, 42%) minmax(0, 1fr) !important;
		gap: 12px;
		align-items: start;
		margin: 0 0 14px;
	}

	.kp-recommendations .kp-card-thumbnail {
		margin: 0;
		border-radius: 8px;
	}

	.kp-recommendations .kp-card-header {
		display: block !important;
		padding: 1px 0 0 !important;
	}

	.kp-recommendations .kp-card-header .entry-title {
		min-height: 0;
		margin: 0 0 5px;
		font-size: 0.94rem;
		line-height: 1.3;
	}

	.kp-recommendations .kp-card-artists,
	.kp-recommendations .kp-card-stats {
		display: block;
		font-size: 0.78rem;
		line-height: 1.45;
		white-space: nowrap;
	}

	.kp-recommendations .kp-card-thumbnail .entry-action {
		display: flex;
		background: transparent;
	}

	.kp-recommendations .kp-card-play-link {
		display: none;
	}

	.kp-recommendations .kp-card-mini-player {
		display: inline-grid !important;
	}
}

@media (max-width: 599px) {
	.single-station .kp-watch-grid > .sidebar {
		width: calc(100% - 24px) !important;
	}

	.kp-artist-hero {
		margin-bottom: 18px;
	}

	.kp-artist-profile {
		align-items: center;
		padding: 0 4px;
	}

	.kp-artist-profile-copy {
		padding-bottom: 0;
	}

	.kp-artist-profile h1 {
		font-size: 1.45rem;
	}

	.kp-artist-intro {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.kp-smarturl-grid {
		grid-template-columns: 1fr;
	}

	.kp-smarturl-card {
		border-radius: 14px;
	}
}

@media (max-width: 991px) {
	.kp-search-artist-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.kp-search-video-row {
		grid-template-columns: minmax(170px, 34%) minmax(0, 1fr);
	}
}

@media (max-width: 781px) {
	.kp-search-page {
		width: calc(100% - 24px);
	}

	.kp-search-header {
		margin-top: 14px;
		padding: 18px;
	}

	.kp-search-artist-grid {
		grid-template-columns: 1fr;
	}

	.kp-search-video-row {
		grid-template-columns: minmax(136px, 42%) minmax(0, 1fr);
		gap: 12px;
		padding: 8px 0;
		border-radius: 0;
	}

	.kp-search-video-row:hover,
	.kp-search-video-row:focus-within {
		background: transparent;
		box-shadow: none;
	}

	.kp-search-video-copy p {
		display: none;
	}
}

@media (max-width: 599px) {
	.kp-artist-profile-copy {
		padding: 12px;
		border-radius: 16px;
	}

	.kp-artist-kicker {
		font-size: 0.7rem;
	}

	.kp-artist-profile h1 {
		align-items: center;
		gap: 5px;
		max-width: 100%;
		overflow-wrap: anywhere;
	}

	.kp-artist-facts {
		gap: 4px 9px;
		margin-bottom: 9px;
	}

	.kp-search-form {
		grid-template-columns: 1fr;
	}

	.kp-search-form button {
		width: 100%;
	}

	.kp-search-thumb {
		border-radius: 10px;
	}

	.kp-search-video-copy h3 {
		margin-bottom: 5px;
		font-size: 0.96rem;
	}

	.kp-search-video-meta {
		display: block;
		font-size: 0.78rem;
	}

	.kp-search-video-meta > span {
		display: block;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

@media (max-width: 420px) {
	.kp-artist-profile {
		display: grid;
		grid-template-columns: 72px minmax(0, 1fr);
		gap: 10px;
	}

	.kp-artist-profile-photo,
	.kp-artist-profile-photo img,
	.kp-artist-profile-photo > span {
		width: 72px;
		height: 72px;
	}

	.kp-search-video-row {
		grid-template-columns: 43% minmax(0, 1fr);
	}
}

/* Pre-launch polish: default identities, artist hero, stable home hero */
.kp-follow-button:not(.is-following),
.kp-artist-follow:not(.is-following),
.dark .kp-follow-button:not(.is-following),
.dark .kp-artist-follow:not(.is-following) {
	color: #fff;
	background: var(--kp-accent);
}

.kp-follow-button:not(.is-following):hover,
.kp-artist-follow:not(.is-following):hover {
	color: #fff;
	background: #e64500;
}

.avatar[class*="avatar-"],
.kp-card-avatar > span,
.kp-artist-avatar > span,
.kp-artist-profile-photo > span,
.kp-search-artist-avatar > span {
	position: relative;
	overflow: hidden;
	color: #fff;
	background:
		radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.42), transparent 24%),
		linear-gradient(135deg, #ff4b00 0%, #ff7a2f 42%, #111827 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
	text-transform: uppercase;
}

.avatar[class*="avatar-"]::before,
.kp-card-avatar > span::before,
.kp-artist-avatar > span::before,
.kp-artist-profile-photo > span::before,
.kp-search-artist-avatar > span::before {
	content: "";
	position: absolute;
	inset: -36%;
	background:
		linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.22) 36%, transparent 52%),
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 12px);
	transform: rotate(8deg);
}

.avatar[class*="avatar-"] .avatar-name,
.kp-card-avatar > span,
.kp-artist-avatar > span,
.kp-artist-profile-photo > span,
.kp-search-artist-avatar > span {
	isolation: isolate;
}

.entry.user.single .header-user {
	position: relative;
	margin: 12px 0 18px;
	padding: clamp(18px, 3vw, 34px);
	border-radius: 28px;
	background:
		radial-gradient(circle at 11% 28%, rgba(255, 75, 0, 0.16), transparent 34%),
		linear-gradient(135deg, rgba(255, 75, 0, 0.08), rgba(15, 23, 42, 0.05));
}

.entry.user.single .header-user .avatar {
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.entry.user.single .block-loop-item {
	min-width: 0;
}

.entry.user.single .kp-card-header {
	grid-template-columns: minmax(0, 1fr) 32px !important;
	gap: 8px;
	padding: 0 2px;
}

.entry.user.single .kp-card-header .entry-avatar,
.entry.user.single .kp-card-header .kp-card-avatar {
	display: none !important;
}

.entry.user.single .kp-card-header .entry-title {
	max-width: 100%;
	font-size: 1rem;
	line-height: 1.28;
}

.entry.user.single .kp-card-artists,
.entry.user.single .kp-card-stats {
	display: block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.kp-thumbnail-placeholder,
.post-thumbnail-inner.is-image-missing {
	background:
		radial-gradient(circle at 22% 20%, rgba(255, 75, 0, 0.46), transparent 32%),
		linear-gradient(135deg, #111827, #273244 48%, #0f0f0f);
}

.kp-artist-profile {
	align-items: center;
	margin-top: 18px;
	padding: 0 4px;
}

.kp-artist-profile-copy,
.dark .kp-artist-profile-copy {
	padding: 0;
	border: 0;
	color: inherit;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

.kp-artist-kicker {
	display: none;
}

.kp-artist-profile h1 {
	color: inherit;
}

.block-loop-hero .post-thumbnail,
.block-loop-hero .post-thumbnail-inner {
	background-attachment: scroll !important;
	background-position: center !important;
	transform: none !important;
	will-change: auto !important;
}

.block-loop-hero .kp-hero-image,
.block-loop-hero .post-thumbnail-inner > img {
	transform: none !important;
	will-change: auto !important;
}

@media (max-width: 599px) {
	.entry.user.single .header-user {
		border-radius: 20px;
	}

	.kp-artist-profile {
		margin-top: 12px;
		padding: 0;
	}
}

/* Discreet network bridge in the native settings area */
.site-sidebar .kp-sidebar-bridge {
	display: flex;
	align-items: center;
	gap: var(--side-menu-item-grid-gap, 0.75rem);
	clear: both;
	width: 100%;
	min-height: var(--side-menu-item-height, 1.5rem);
	padding: 0.375rem 0;
	color: inherit;
	text-decoration: none;
}

.site-sidebar .kp-sidebar-bridge:hover,
.site-sidebar .kp-sidebar-bridge:focus {
	color: var(--kp-accent);
	text-decoration: none;
}

.site-sidebar .kp-sidebar-bridge i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--side-icon-width, 1.5rem);
	height: var(--side-icon-height, 1rem);
	color: var(--kp-accent);
	font-style: normal;
	flex: 0 0 auto;
}

.site-sidebar .kp-sidebar-bridge i::before {
	content: "";
	width: 0.72rem;
	height: 0.72rem;
	border: 2px solid currentColor;
	border-radius: 50%;
	box-shadow: 0.35rem -0.22rem 0 -0.18rem currentColor;
}
