/**
 * @author Valentin Alisch, Off Office <hallo@valentinalisch.de>
 * @version 1.0
 *
 * Rettberg View: Artist
 */

#artist {}



#artist__sections {
	margin-top: var( --outer-spacing );
	margin-bottom: calc( var( --spacing--large ) - var( --spacing--tiny ) );
}

.artist-section {
	margin-bottom: var( --spacing--tiny );
}

.artist-section__title {
	cursor: pointer;
	display: flex;
	align-items: center;

	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

/*.artist-section__title:hover,
.artist-section__title:active {
	color: var( --gray );
}*/

	.artist-section__title .icon {
		margin-right: var( --spacing--tiny );
	}

.artist-section__lists {
	padding-top: var( --spacing--tiny );
	display: none;
}



.artist-list {}

.artist-list__title {
	margin-bottom: var( --spacing--tiny );
}

.artist-list:not( :first-child ) .artist-list__title {
	margin-top: calc( var( --spacing--tiny ) * 1 );
}

.artist-list__entries {}

.artist-list-entry:not( :last-child ) {
	margin-bottom: var( --spacing--tiny );
}



/* ------------------------ */
@media ( max-width: 899px ) {

	#artist grid-row > .title-section {
		margin-bottom: var( --spacing--medium );
	}
}

@media ( min-width: 900px ) {

	.artist-list-entry__label {
		min-width: 8.5em;
	}

	.artist-list-entry__content {
		min-width: calc( 100% - 8.5em );
	}
}