/*
 * ApexClinic footer - RTL overrides.
 * Loaded instead of footer-ltr.css when is_rtl() is true (see functions.php).
 * The base footer layout in apexclinic-modern.css already uses CSS Grid and
 * Flexbox, which mirror automatically from a single `direction` declaration -
 * these rules just make the direction (and the reading-direction-dependent
 * gradient angle) explicit for RTL languages.
 */

.ac-site-footer {
	direction: rtl;
	text-align: right;
}

.ac-site-footer__contact {
	text-align: right;
}

.ac-site-footer::before {
	background: linear-gradient(270deg, var(--ac-color-primary), var(--ac-color-accent));
}
