/* Diffreng — Text-Farbverlauf fuer Absatz/Ueberschrift */

/* Frontend: Farbverlauf wird ueber eine CSS-Variable (--debs-text-
   gradient) am Block-Wrapper gesetzt (siehe render_block-Filter in
   includes/diffreng-text-gradient.php). background-clip:text schneidet
   den Hintergrund-Verlauf auf die Textform zu, waehrend color:transparent
   dafuer sorgt, dass die eigentliche (Voll-)Textfarbe nicht mehr
   durchscheint -- so entsteht der Verlauf-Text-Effekt, den die reine
   CSS-Eigenschaft "color" von sich aus nicht kann. */
.debs-text-gradient {
	background-image: var(--debs-text-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

/* ── Block-Editor: Hinweistext im Panel ────────────────────────────── */
.debs-text-gradient-hint {
	font-size: 12px;
	color: #757575;
	margin: 0 0 10px;
}
.debs-text-gradient-picker-label {
	display: block;
	margin-bottom: 8px;
}
