/*
--------------------------------------------------------------
Sidebar
--------------------------------------------------------------
*/

.page-sidebar .single-widget {
	padding: 20px;
	margin-bottom: 30px;
	border-radius: 6px;
	box-shadow: 1px 1px 13px rgb(0 0 0 / 8%);
}

/*
 * Widget Heading
 */

.single-widget .title {
	margin-bottom: 15px;
}

.single-widget .title h4 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding-bottom: 10px;
	font-size: 16px;
	border-bottom: 1px solid;
}

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

.album-widget .title h4 {
	border-color: #ff9800;
}

.widget-artists .title h4 {
	border-color: #7b3ff2;
}

.widget-theme .title h4 {
	border-color: #009688;
}

.widget-category .title h4 {
	border-color: #3f51b5;
}

/*
 * Icons
 */

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

.album-widget .title i {
	color: #ff9800;
}

.widget-artists .title i {
	color: #7b3ff2;
}

.widget-theme .title i {
	color: #009688;
}

.widget-category .title i {
	color: #3f51b5;
}

/*
 * Widget Titles
 */

.artist-widget h5,
.album-widget h5 {
	margin: 0 0 20px;
	font-size: 18px;
}

/*
 * Stats & Description
 */

.artist-stats,
.artist-desc,
.album-widget .artist-stats {
	margin-bottom: 30px;
}

/*
 * Widget Links
 */

.artist-link a,
.widget-artists .view-all a {
	color: #bf1f2b;
	font-weight: 700;
}

.album-link a {
	color: #ff9800;
	font-weight: 700;
}

.widget-theme .view-all a {
	color: #009688;
	font-weight: 700;
}

.widget-category .view-all a {
	color: #3f51b5;
	font-weight: 700;
}

.hub-widget .view-all a {
	display: inline-block;
	margin-top: 20px;
}

/*
 * Related Lists
 */

.hub-widget .related-list li {
	padding: 5px 0;
}

.hub-widget .related-list li a::before {
	content: "›";
	display: inline-block;
	margin-right: 8px;
	font-size: 16px;
	font-weight: 700;
	color: #c62828;
	transition: transform .2s ease;
}

.hub-widget .related-list li a:hover::before {
	transform: translateX(3px);
}

.hub-widget.widget-artists .related-list li a::before {
	color: #7b3ff2;
}

.hub-widget.widget-theme .related-list li a::before {
	color: #009688;
}

.hub-widget.widget-category .related-list li a::before {
	color: #3f51b5;
}