/*
 * ABD-4541: Text-color classes applied by the Tiptap Rich Text "Styles" menu
 * (App_Plugins/ABD/umbraco-package.json -> "ABD.Tiptap.StyleMenu", Text Color group).
 *
 * Single source of truth for these classes. Loaded in BOTH contexts:
 *   - the RTE editor canvas, via uSync/v17/DataTypes/RichtextEditor.config ("stylesheets")
 *   - the published site, via a <link> in Views/Shared/_Layout.cshtml
 * so a word tagged <span class="rte-dark-orange"> renders the same while editing
 * and when published.
 *
 * Hand-maintained (no SCSS source) so it is not overwritten by `npm run build`,
 * and committed directly since the deploy pipeline does not build front-end assets.
 *
 * Headings / Page Title / Page Subtitle are NOT here — those apply real <h1..h6>
 * (optionally .page-title/.page-subtitle) elements that the existing site CSS
 * (style.css) and editor stylesheet (rteditor.css) already style.
 */

.rte-blue { color: #23a1dd; }
.rte-dark-blue { color: #0070c0; }
.rte-orange { color: #f27439; }
.rte-dark-orange { color: #c45911; }
.rte-grey { color: #b0b0b0; }
.rte-dark-grey { color: #454545; }
.rte-black { color: #000; }

/* Image wrap-text (from the "Images" style group) */
.rte-img-left { float: left; margin: 10px 10px 0 0; }
.rte-img-right { float: right; margin: 10px 0 0 10px; }
