/* RTL adjustments — Tamkeen v3
 * Most RTL behavior now handled by CSS logical properties
 * (inset-inline-*, padding-inline-*, border-inline-*) and `.lang-ar` selectors
 * in style.css. This file holds the residual flips that can't be expressed
 * with logical properties: SVG icons, animation transform-origins, etc.
 */

/* Arrow icons inside buttons/links — flip horizontally for RTL */
[dir="rtl"] .center-card__link svg,
[dir="rtl"] .initiative-card__link svg,
[dir="rtl"] .ct-form__submit svg,
[dir="rtl"] .btn svg {
  transform: scaleX(-1);
}

/* Hero scroll indicator — center alignment unaffected, no change needed */

/* Submenu transform-origin (the underline animation on nav items) is set
 * inline in style.css via `.lang-ar` selector — no flip needed here.
 */

/* Read-more arrow flip on hover handled by `.lang-ar .read-more::after`
 * declaration in style.css.
 */
