/* PortalFilm Theme: estilos del componente production-single/production-masthead */

.pf_pfilm_template_production_single_masthead {
	position: relative;
	z-index: 1;
	margin-top: -8rem;
	margin-bottom: var(--spacing-xl);
	padding-top: var(--spacing-md);
}

@media (min-width: 768px) {
	.pf_pfilm_template_production_single_masthead {
		margin-top: -15rem;
	}
}

.pf_pfilm_template_production_single_masthead_content {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-lg);
	background-color: var(--color-bg-surface);
	border-radius: var(--border-radius);
	padding: var(--spacing-lg);
	box-shadow: 0 2px 12px var(--color-border);
}

/* Bloque superior: breadcrumbs, título, año y tipo (colores del tema) */
.pf_pfilm_template_production_single_masthead_header {
	display: flex;
	flex-direction: column;
	gap: var(--spacing-xs);
	margin-bottom: var(--spacing-lg);
}

.pf_pfilm_template_production_single_masthead_breadcrumbs {
	margin-bottom: 0;
}

.pf_pfilm_template_production_single_masthead_breadcrumbs .pf_pfilm_common_breadcrumbs {
	margin-bottom: 0;
}

.pf_pfilm_template_production_single_masthead_title {
	margin: 0;
	font-size: clamp(1.5rem, 4vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-text);
}

.pf_pfilm_template_production_single_masthead_meta_line {
	display: flex;
	flex-wrap: wrap;
	gap: var(--spacing-sm);
	font-size: var(--font-size-base);
	color: var(--color-text-secondary);
}

.pf_pfilm_template_production_single_masthead_year::after {
	content: '·';
	margin-left: var(--spacing-sm);
}

.pf_pfilm_template_production_single_masthead_year:last-child::after,
.pf_pfilm_template_production_single_masthead_type:last-child::after {
	display: none;
}

/* Grid: póster + metadatos */
.pf_pfilm_template_production_single_masthead_grid {
	display: grid;
	grid-template-columns: minmax(0, 200px) 1fr;
	gap: var(--spacing-xl);
	align-items: start;
}

@media (max-width: 640px) {
	.pf_pfilm_template_production_single_masthead_grid {
		grid-template-columns: 1fr;
	}
}

.pf_pfilm_template_production_single_masthead_poster {
	aspect-ratio: 2 / 3;
	background-color: var(--color-bg-surface-secondary);
	border-radius: var(--border-radius);
	overflow: hidden;
}

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

.pf_pfilm_template_production_single_masthead_meta {
	min-width: 0;
}

.pf_pfilm_template_production_single_masthead_dl {
	margin: 0 0 var(--spacing-lg);
}

.pf_pfilm_template_production_single_masthead_row {
	display: flex;
	gap: var(--spacing-sm);
	margin-bottom: var(--spacing-xs);
}

.pf_pfilm_template_production_single_masthead_row dt {
	margin: 0;
	font-weight: 600;
	color: var(--color-text-secondary);
	min-width: 6rem;
}

.pf_pfilm_template_production_single_masthead_row dd {
	margin: 0;
}

.pf_pfilm_template_production_single_masthead_genres {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--spacing-xs);
}

.pf_pfilm_template_production_single_masthead_genres li {
	margin: 0;
}

.pf_pfilm_template_production_single_masthead_genres li:not(:last-child)::after {
	content: ', ';
}

.pf_pfilm_template_production_single_masthead_actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--spacing-sm);
	align-items: center;
}

.pf_pfilm_template_production_single_masthead_action,
.pf_pfilm_template_production_single_masthead_trailer {
	padding: var(--spacing-sm) var(--spacing-md);
	font-size: var(--font-size-base);
	border-radius: var(--border-radius);
	cursor: pointer;
}

.pf_pfilm_template_production_single_masthead_trailer {
	background-color: var(--color-primary);
	color: var(--color-on-primary, #fff);
	border: none;
}

.pf_pfilm_template_production_single_masthead_trailer:hover,
.pf_pfilm_template_production_single_masthead_trailer:focus {
	opacity: 0.9;
}

.pf_pfilm_template_production_single_masthead_action {
	background-color: var(--color-bg-surface-secondary);
	color: var(--color-text);
	border: 1px solid var(--color-border);
}