/*
 * Fix Tailwind v3/v4 gradient incompatibility for Hyvä CMS.
 *
 * Hyvä CMS compiles per-page CSS with Tailwind v3, which sets:
 *   --tw-gradient-from: #dc2626 var(--tw-gradient-from-position)
 * (color + position combined).
 *
 * Tailwind v4 registers @property --tw-gradient-from { syntax: "<color>" }
 * which rejects the combined value as invalid (not a pure color).
 *
 * These @property overrides use syntax: "*" to accept any value,
 * restoring compatibility with Tailwind v3 gradient utilities.
 */
@property --tw-gradient-from {
    syntax: "*";
    inherits: false;
}
@property --tw-gradient-via {
    syntax: "*";
    inherits: false;
}
@property --tw-gradient-to {
    syntax: "*";
    inherits: false;
}
