/**
 * Taxonomy Header Styles
 *
 * Styles for musicartist and musiclabel archive pages.
 * Design v3: Image LEFT, info RIGHT (real name, country, profile, social links)
 */

/* Main container */
.yoyaku-taxonomy-header {
	margin-bottom: 30px;
	padding: 0;
}

/* Flexbox layout: image LEFT, info RIGHT */
.taxonomy-header-content {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 24px;
}

/* Left side: image */
.taxonomy-header-image {
	flex-shrink: 0;
	width: 140px;
	height: 140px;
}

.taxonomy-header-image .taxonomy-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
}

/* Right side: info block */
.taxonomy-header-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* Real name (aka) */
.taxonomy-real-name {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.6);
	font-style: italic;
}

/* Country tag - improved visibility */
.taxonomy-country {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	color: #fff;
	padding: 5px 12px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 3px;
	width: fit-content;
}

/* Profile/bio text */
.taxonomy-profile {
	font-size: 14px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	max-width: 550px;
}

.taxonomy-profile p {
	margin: 0;
}

/* Aliases (Also known as) */
.taxonomy-aliases {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 2px;
}

.taxonomy-aliases strong {
	color: rgba(255, 255, 255, 0.6);
	font-weight: 500;
}

/* Social links row */
.taxonomy-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.taxonomy-social-links .social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	color: rgba(255, 255, 255, 0.7);
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	transition: all 0.2s ease;
}

.taxonomy-social-links .social-link:hover {
	color: var(--theme-palette-color-1, #febc2c);
	border-color: var(--theme-palette-color-1, #febc2c);
	transform: translateY(-2px);
}

.taxonomy-social-links .social-link svg {
	width: 16px;
	height: 16px;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
	.taxonomy-header-content {
		flex-direction: column;
		gap: 16px;
	}

	.taxonomy-header-image {
		width: 100px;
		height: 100px;
	}

	.taxonomy-profile {
		max-width: 100%;
	}
}
