/**
 * Artist Summary Sidebar
 *
 * Displays a concise summary of the current artist/category.
 */

/*.artist-summary {*/
/*	background: #fff;*/
/*	border: 1px solid #eee;*/
/*	border-radius: 6px;*/
/*	margin-bottom: 30px;*/
/*	overflow: hidden;*/
/*}*/


.artist-summary .title h4{
	border-color: #bf1f2b;
}

.artist-summary .title i {
	color: #bf1f2b;
}

.artist-summary__image {
	margin-bottom: 20px;
	text-align: center;
}

.artist-summary__image img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	display: block;
	aspect-ratio: 1 / 1;
}

.artist-summary__names{
    margin: 20px 0;
}

.artist-summary__name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.artist-summary__name-bn {
	font-size: 18px;
	line-height: 24px;
    text-align: center;
}

.artist-summary__stats {
    margin-top: 30px;
	border-top: 1px solid #eee;
}

.artist-summary__stat {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 5px 8px;
	padding: 12px 0;
	border-bottom: 1px solid #eee;
	font-size: 14px;
	line-height: 20px;
}

.artist-summary__stat:last-child {
	border-bottom: 0;
}

.artist-summary__stat i {
	width: 20px;
	text-align: center;
	color: #bf1f2b;
}

.artist-summary__stat span {
	flex: 1;
}

.artist-summary__stat strong {
	width: 100%;
	padding-left: 28px;
	font-weight: 600;
}