.single-item__title span a {
    display: inline; /* Ensure the entire link, including 'Spotify' and the counter, stays on one line */
    white-space: nowrap; /* Prevent text wrapping */
}

.single-item__title .solocounter {
    display: inline; /* Keeps the counter inline */
    margin-left: 4px; /* Optional: Add a small space after the bullet */
}

@media screen and (max-width: 1300px) {
	.visualizer {
		display: none;
	}
}


@media screen and (max-width: 700px) {
	.lyrics {
		display: none;
	}
}


.genre {
	display: none;
}

@media screen and (max-width: 630px) {
	.genre {
		display: none;
	}
}


@media screen and (max-width: 600px) {
	.project {
		display: none;
	}
}


.pointer {
	cursor: pointer;
}

.banner {
	border-radius: 12px;
}

/*! CSS Used from: Embedded */
[tooltip] {
	position: relative;
}

[tooltip]::before,
[tooltip]::after {
	text-transform: none;
	font-size: .9em;
	line-height: 1;
	user-select: none;
	pointer-events: none;
	position: absolute;
	display: none;
	opacity: 0;
}

[tooltip]::before {
	content: '';
	border: 5px solid transparent;
	z-index: 1001;
}

[tooltip]::after {
	content: attr(tooltip);
	font-family: Helvetica, sans-serif;
	text-align: center;
	min-width: 3em;
	max-width: 21em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 1ch 1.5ch;
	border-radius: .3ch;
	box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
	background: #333;
	color: #fff;
	z-index: 1000;
}

[tooltip]:hover::before,
[tooltip]:hover::after {
	display: block;
}

[tooltip]:not([flow])::before {
	bottom: 100%;
	border-bottom-width: 0;
	border-top-color: #333;
}

[tooltip]:not([flow])::after {
	bottom: calc(100% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after {
	left: 50%;
	transform: translate(-50%, -.5em);
}

[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after {
	animation: tooltips-vert 300ms ease-out forwards;
}


@media screen and (max-width: 475px) {
	.single-item__export {
		display: none;
	}
}