/**
 * VWT Artists – Öffentliche Einzelseite /kuenstlerin/{slug}/.
 *
 * Mobile-first: Portrait über Text; ab 768px Portrait + Text nebeneinander.
 * Die Übersichtsseite wird NICHT beeinflusst (eigene Klassen-Namespace).
 */

.vwt-artist-page-inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 24px 16px 48px;
}

/* Layout: mobile-first (gestapelt). */
.vwt-artist-single {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Portrait. */
.vwt-artist-portrait {
	flex-shrink: 0;
	width: 100%;
	max-width: 180px;
}

.vwt-artist-portrait img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.vwt-artist-portrait-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	max-width: 180px;
	border-radius: 12px;
	background: #f0f0f0;
	color: #bbb;
	font-size: 96px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

/* Textspalte. */
.vwt-artist-body {
	flex: 1 1 auto;
	min-width: 0;
}

.vwt-artist-name {
	margin: 0 0 12px;
	line-height: 1.15;
}

/* Badges (Pill-Stil, nachgebaut von der Übersicht). */
.vwt-artist-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 20px;
}

.vwt-artist-badge {
	display: inline-block;
	font-size: 13px;
	line-height: 1.4;
	padding: 4px 12px;
	border-radius: 12px;
	white-space: nowrap;
}

.vwt-artist-badge-instrument {
	background: #f3f4f6;
	color: #374151;
	border: 1px solid #e5e7eb;
}

/* Biografie – angenehme Lesebreite (~70 Zeichen). */
.vwt-artist-bio {
	max-width: 70ch;
	font-size: 16px;
	line-height: 1.65;
}

.vwt-artist-bio p {
	margin: 0 0 1em;
}

.vwt-artist-website {
	margin: 18px 0 0;
}

.vwt-artist-website a {
	text-decoration: none;
}

/* Kommende Auftritte. */
.vwt-artist-events {
	margin-top: 32px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.vwt-artist-events h2 {
	margin: 0 0 12px;
	font-size: 20px;
}

.vwt-artist-events ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vwt-artist-events li {
	margin: 0 0 6px;
}

.vwt-artist-events a {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 12px;
	text-decoration: none;
	padding: 8px 12px;
	border-radius: 8px;
	transition: background 0.15s ease;
}

.vwt-artist-events a:hover {
	background: #f6f7f9;
}

.vwt-artist-event-date {
	font-weight: 600;
	min-width: 130px;
}

.vwt-artist-event-title {
	opacity: 0.9;
}

/* Ab Tablet: Portrait + Text nebeneinander. */
@media (min-width: 768px) {
	.vwt-artist-single {
		flex-direction: row;
		align-items: flex-start;
		gap: 40px;
	}

	.vwt-artist-portrait {
		width: 40%;
		position: sticky;
		top: 24px;
	}
}
