.artist-page {
	--artist-accent: #1aa97a;
	--artist-red: #e24032;
	--artist-ink: #102b33;
	display: block;
	min-width: 0;
}

.artist-hero {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 34px;
	align-items: center;
	padding: 34px;
	border: 1px solid #dce9e3;
	border-radius: 30px;
	background: #fff;
	box-shadow: 0 14px 42px rgba(21, 54, 58, .07);
}

.artist-hero__image {
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 24px;
	background: #f2f7f5;
}

.artist-hero__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.artist-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	color: var(--artist-accent);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.artist-hero h1,
.artist-directory h1 {
	margin: 0;
	color: var(--artist-ink);
	font-size: clamp(34px, 5vw, 56px);
	line-height: 1.08;
}

.artist-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin-top: 18px;
	color: #718087;
	font-size: 14px;
}

.artist-hero__stats b { color: var(--artist-ink); }

.artist-hero__description {
	max-width: 760px;
	margin-top: 20px;
	color: #53676e;
	font-size: 15px;
	line-height: 1.72;
}

.artist-hero__description-content { position: relative; }

.artist-hero__description.is-collapsible:not(.is-expanded) .artist-hero__description-content {
	max-height: 132px;
	overflow: hidden;
}

.artist-hero__description.is-collapsible:not(.is-expanded) .artist-hero__description-content::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 54px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 88%);
	pointer-events: none;
}

.artist-hero__description-toggle {
	display: inline-flex;
	align-items: center;
	margin-top: 9px;
	padding: 0 0 3px;
	border: 0;
	border-bottom: 1px dotted currentColor;
	background: none;
	color: var(--artist-accent);
	font: inherit;
	line-height: 1.2;
	cursor: pointer;
}

.artist-hero__description-toggle:hover { color: var(--artist-ink); }
.artist-hero__description-toggle[hidden] { display: none; }

.artist-tracks { margin-top: 28px; }

.artist-section-title {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.artist-section-title h2 { margin: 0; color: var(--artist-ink); font-size: 30px; }
.artist-section-title p { margin: 5px 0 0; color: #88969b; }
.artist-section-title > a { color: var(--artist-accent); white-space: nowrap; }
.artist-tracks .track__subtitle a { color: inherit; }
.artist-tracks .track__subtitle a:hover { color: var(--artist-accent); }

.artist-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 26px;
}

.artist-pagination a,
.artist-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid #dce9e3;
	border-radius: 14px;
	background: #fff;
	color: #53676e;
}

.artist-pagination span,
.artist-pagination a:hover { border-color: var(--artist-accent); background: var(--artist-accent); color: #fff; }

.artist-directory__head {
	margin-bottom: 24px;
	padding: 28px 30px;
	border: 1px solid #dce9e3;
	border-radius: 26px;
	background: #fff;
}

.artist-directory__head p { margin: 12px 0 0; color: #718087; }

.artist-directory__controls {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) 240px auto auto;
	gap: 10px;
	margin-bottom: 14px;
}

.artist-directory__controls input,
.artist-directory__controls select,
.artist-directory__controls button,
.artist-directory__controls > a {
	min-height: 46px;
	border: 1px solid #dce9e3;
	border-radius: 14px;
	background: #fff;
	color: #53676e;
}

.artist-directory__controls input,
.artist-directory__controls select { padding: 0 15px; }
.artist-directory__controls button { padding: 0 20px; border-color: var(--artist-accent); background: var(--artist-accent); color: #fff; cursor: pointer; }
.artist-directory__controls > a { display: inline-flex; align-items: center; justify-content: center; padding: 0 18px; }

.artist-alphabet {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 20px;
}

.artist-alphabet a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border: 1px solid #dce9e3;
	border-radius: 11px;
	background: #fff;
	color: #53676e;
}

.artist-alphabet a:hover,
.artist-alphabet a.is-active { border-color: var(--artist-accent); background: var(--artist-accent); color: #fff; }

.artist-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.artist-card {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	padding: 14px;
	border: 1px solid #e0ebe6;
	border-radius: 20px;
	background: #fff;
	color: var(--artist-ink);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.artist-card:hover {
	transform: translateY(-2px);
	border-color: #bedfd1;
	box-shadow: 0 10px 28px rgba(21, 54, 58, .08);
}

.artist-card__image {
	flex: 0 0 68px;
	width: 68px;
	height: 68px;
	overflow: hidden;
	border-radius: 17px;
	background: #f2f7f5;
}

.artist-card__image img { width: 100%; height: 100%; object-fit: cover; }
.artist-card > span:last-child { min-width: 0; }
.artist-card strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.artist-card small { display: block; margin-top: 5px; color: #8b999e; }
.artist-empty { padding: 24px; border: 1px solid #e0ebe6; border-radius: 20px; background: #fff; color: #718087; }

@media (max-width: 900px) {
	.artist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.artist-hero { grid-template-columns: 170px minmax(0, 1fr); gap: 24px; padding: 26px; }
	.artist-directory__controls { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
	.artist-hero { grid-template-columns: 1fr; padding: 18px; border-radius: 22px; }
	.artist-hero__image { width: min(68vw, 230px); margin: 0 auto; }
	.artist-hero h1 { font-size: 34px; text-align: center; }
	.artist-hero__eyebrow {
		display: flex;
		width: 100%;
		justify-content: center;
		text-align: center;
	}
	.artist-hero__stats { justify-content: center; }
	.artist-hero__description { text-align: center; }
	.artist-hero__description-toggle { margin-right: auto; margin-left: auto; }
	.artist-section-title { align-items: flex-start; flex-direction: column; }
	.artist-section-title h2 { font-size: 25px; }
	.artist-grid { grid-template-columns: 1fr; }
	.artist-directory__head { padding: 22px 20px; }
	.artist-directory__controls { grid-template-columns: 1fr; }
}
