/**
 * Public single celebrity page styles (plugin-owned).
 *
 * Scoped under .tvc-celebrity-single — no theme overrides.
 */

.tvc-celebrity-single {
	box-sizing: border-box;
	max-width: 100%;
	overflow-x: hidden;
	padding: 1rem 1.25rem 2.5rem;
}

.tvc-celebrity-single *,
.tvc-celebrity-single *::before,
.tvc-celebrity-single *::after {
	box-sizing: inherit;
}

/* Breadcrumbs */

.tvc-celebrity-breadcrumbs {
	margin-bottom: 1.25rem;
}

.tvc-celebrity-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.875rem;
	line-height: 1.4;
}

.tvc-celebrity-breadcrumbs__item:not(:last-child)::after {
	content: "/";
	margin-left: 0.5rem;
	color: currentColor;
	opacity: 0.45;
}

.tvc-celebrity-breadcrumbs__link {
	text-decoration: none;
}

.tvc-celebrity-breadcrumbs__link:hover,
.tvc-celebrity-breadcrumbs__link:focus {
	text-decoration: underline;
}

/* Hero */

.tvc-celebrity__hero {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.tvc-celebrity__portrait {
	flex-shrink: 0;
	width: 100%;
	max-width: 140px;
}

.tvc-celebrity__portrait img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.tvc-celebrity__identity {
	min-width: 0;
}

.tvc-celebrity__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.5rem, 4vw, 2rem);
	line-height: 1.2;
	word-wrap: break-word;
}

.tvc-celebrity__professions {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	line-height: 1.45;
	opacity: 0.85;
}

.tvc-celebrity__aliases {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.9375rem;
	line-height: 1.45;
	opacity: 0.8;
}

.tvc-celebrity__alias + .tvc-celebrity__alias::before {
	content: "·";
	margin: 0 0.4rem;
	opacity: 0.6;
}

.tvc-celebrity__aliases .tvc-celebrity__alias {
	display: inline;
}

/* Lead */

.tvc-celebrity__lead {
	margin-bottom: 1.75rem;
	font-size: 1.0625rem;
	line-height: 1.6;
}

.tvc-celebrity__lead p:first-child {
	margin-top: 0;
}

.tvc-celebrity__lead p:last-child {
	margin-bottom: 0;
}

/* Section titles */

.tvc-celebrity__section-title {
	margin: 0 0 0.75rem;
	font-size: 1.25rem;
	line-height: 1.3;
}

/* Facts & family definition lists */

.tvc-celebrity__facts,
.tvc-celebrity__biography,
.tvc-celebrity__family,
.tvc-celebrity__related,
.tvc-celebrity__links {
	margin-bottom: 1.75rem;
}

.tvc-celebrity__biography-content p:first-child {
	margin-top: 0;
}

.tvc-celebrity__biography-content p:last-child {
	margin-bottom: 0;
}

.tvc-celebrity__facts-list,
.tvc-celebrity__family-list {
	display: grid;
	grid-template-columns: minmax(8rem, 11rem) 1fr;
	gap: 0.35rem 1rem;
	margin: 0;
}

.tvc-celebrity__fact-label,
.tvc-celebrity__family-label {
	margin: 0;
	font-weight: 600;
}

.tvc-celebrity__fact-value,
.tvc-celebrity__family-value {
	margin: 0;
	min-width: 0;
	word-wrap: break-word;
}

.tvc-celebrity__family-items {
	list-style: disc;
	margin: 0;
	padding-left: 1.25rem;
}

/* Related articles */

.tvc-celebrity__related-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.tvc-celebrity__related-item {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
}

.tvc-celebrity__related-thumb {
	flex-shrink: 0;
	width: 72px;
}

.tvc-celebrity__related-thumb img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 3px;
}

.tvc-celebrity__related-body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.tvc-celebrity__related-date {
	font-size: 0.8125rem;
	opacity: 0.7;
}

.tvc-celebrity__related-title {
	font-size: 1rem;
	line-height: 1.35;
	text-decoration: none;
	word-wrap: break-word;
}

.tvc-celebrity__related-title:hover,
.tvc-celebrity__related-title:focus {
	text-decoration: underline;
}

/* External links */

.tvc-celebrity__links-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tvc-celebrity__links-item + .tvc-celebrity__links-item {
	margin-top: 0.35rem;
}

.tvc-celebrity__links-item a {
	word-break: break-word;
}

/* Desktop layout */

@media (min-width: 640px) {
	.tvc-celebrity__hero {
		flex-direction: row;
		align-items: flex-start;
		gap: 1.5rem;
	}

	.tvc-celebrity__portrait {
		max-width: 240px;
		width: 35%;
	}

	.tvc-celebrity__related-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem 1.5rem;
	}

	.tvc-celebrity__related-thumb {
		width: 80px;
	}
}

@media (min-width: 960px) {
	.tvc-celebrity-single {
		max-width: 72rem;
		margin-left: auto;
		margin-right: auto;
	}

	.tvc-celebrity__portrait {
		max-width: 260px;
	}
}

/* Narrow mobile portrait sizing */

@media (max-width: 639px) {
	.tvc-celebrity__portrait {
		max-width: 128px;
	}

	.tvc-celebrity__facts-list,
	.tvc-celebrity__family-list {
		grid-template-columns: 1fr;
		gap: 0.15rem 0;
	}

	.tvc-celebrity__fact-label,
	.tvc-celebrity__family-label {
		margin-top: 0.5rem;
	}

	.tvc-celebrity__fact-label:first-child,
	.tvc-celebrity__family-label:first-child {
		margin-top: 0;
	}
}
