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

.pf_pfilm_template_production_single_awards {
	margin-bottom: var(--spacing-xl);
}

.pf_pfilm_template_production_single_awards_heading {
	font-size: var(--font-size-lg);
	font-weight: 600;
	margin: 0 0 var(--spacing-md);
	color: var(--color-text);
}

.pf_pfilm_template_production_single_awards_empty {
	margin: 0;
	font-size: var(--font-size-small);
	color: var(--color-text-secondary);
}

.pf_pfilm_template_production_single_awards_wrap {
	overflow-x: auto;
}

.pf_pfilm_template_production_single_awards_table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--font-size-base);
}

.pf_pfilm_template_production_single_awards_table th,
.pf_pfilm_template_production_single_awards_table td {
	padding: var(--spacing-sm) var(--spacing-md);
	text-align: left;
	border-bottom: 1px solid var(--color-border);
}

.pf_pfilm_template_production_single_awards_table th {
	font-weight: 600;
	background-color: var(--color-bg-surface-secondary);
	color: var(--color-text);
}

.pf_pfilm_template_production_single_awards_table tbody tr:hover {
	background-color: var(--color-bg-surface-secondary);
}

@media (max-width: 640px) {
	.pf_pfilm_template_production_single_awards_table thead {
		display: none;
	}

	.pf_pfilm_template_production_single_awards_table td {
		display: block;
		padding-left: 50%;
		position: relative;
	}

	.pf_pfilm_template_production_single_awards_table td::before {
		content: attr(data-label);
		position: absolute;
		left: var(--spacing-md);
		font-weight: 600;
		color: var(--color-text-secondary);
	}
}