/**
 * RTL-only compatibility overrides for iAmir.
 *
 * Most theme CSS uses logical properties and needs no RTL duplication. These
 * rules only correct WordPress's directional alignment semantics where float
 * fallbacks still use physical values for broad browser compatibility.
 */

.alignleft {
	float: right;
}

.alignright {
	float: left;
}

@media (max-width: 37.499rem) {
	.alignleft,
	.alignright {
		float: none;
	}
}
