/**
 * Artist Lyrics
 *
 * Modern two-column lyric card layout.
 */

.artist-lyrics-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.artist-lyric-card {
	min-width: 0;
}

.artist-lyric-card__link {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 100%;
	padding: 10px;
	background: #fff;
	text-decoration: none;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}


.artist-lyric-card__link:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	transform: translateY(-1px);
}

.artist-lyric-card:nth-child(2n+1) .artist-lyric-card__link{
    background: #fff;
}

.artist-lyric-card:nth-child(4n) .artist-lyric-card__link,
.artist-lyric-card:nth-child(4n+1) .artist-lyric-card__link{
    background: #f5f5f5;
}

.artist-lyric-card__number {
	flex: 0 0 28px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	text-align: center;
}

.artist-lyric-card__image {
	flex: 0 0 58px;
	width: 58px;
	height: 58px;
	overflow: hidden;
}

.artist-lyric-card__image img,
.artist-lyric-card__image-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.artist-lyric-card__image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	font-size: 20px;
}

.artist-lyric-card__content {
	flex: 1 1 auto;
	min-width: 0;
}

.artist-lyric-card__artist,
.artist-lyric-card__title {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.artist-lyric-card__artist {
	margin-bottom: 2px;
	font-size: 13px;
	line-height: 18px;
	font-weight: 600;
}

.artist-lyric-card__title {
	margin: 0;
	padding: 0 0 20px 0;
	font-family: 'PT Sans', sans-serif !important;
	font-size: 15px;
	line-height: 20px;
	font-weight: 500;
}

.artist-lyric-card__link:hover .artist-lyric-card__title{
    color: #bf1f2b;
}

.artist-lyric-card__icon {
	flex: 0 0 auto;
	font-size: 12px;
}

@media (max-width: 767.98px) {

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

	.artist-lyric-card__link {
		padding: 10px;
	}

}