/**
 * FP BuddyBoss Photos — panneau EXIF + histogramme dans la sidebar du theatre.
 * La sidebar BuddyBoss est blanche (#fff) → styles clairs.
 */

.fp-bbp-panel {
	padding: 16px 20px 14px;
	border-bottom: 1px solid #e7e9ec;
	background: #fff;
	/* La sidebar est scrollable : le panneau reste en tête, au-dessus des commentaires. */
}

.fp-bbp-panel .fp-bbp-title {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7a8596;
	margin: 0 0 8px;
}

/* ---- Histogramme ---- */

.fp-bbp-histo-wrap {
	margin-bottom: 16px;
}

.fp-bbp-panel canvas.fp-bbp-histo {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 6px;
	background: #f1f2f4;
}

.fp-bbp-histo-axis {
	display: flex;
	justify-content: space-between;
	margin-top: 4px;
	font-size: 10px;
	color: #9aa3b0;
}

/* ---- Réglages (EXIF) ---- */

.fp-bbp-panel dl.fp-bbp-exif {
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 12px;
}

.fp-bbp-panel .fp-bbp-row {
	margin: 0;
	min-width: 0;
}

.fp-bbp-panel .fp-bbp-row dt {
	margin: 0;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #9aa3b0;
	font-weight: 500;
}

.fp-bbp-panel .fp-bbp-row dd {
	margin: 1px 0 0;
	font-size: 14px;
	font-weight: 600;
	color: #212e40;
	/* Les noms d'objectif sont longs : on coupe proprement plutôt que de déborder. */
	overflow-wrap: anywhere;
	line-height: 1.3;
}

.fp-bbp-panel .fp-bbp-empty {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 13px;
	color: #9aa3b0;
	font-style: italic;
}

/* Sur petit écran, la sidebar passe pleine largeur : on garde 2 colonnes lisibles. */
@media screen and (max-width: 800px) {
	.fp-bbp-panel {
		padding: 12px 16px;
	}

	.fp-bbp-panel .fp-bbp-row dd {
		font-size: 13px;
	}
}
