/*
Theme Name:  ColorMag Child
Theme URI:   
Description: Child theme of ColorMag. Adds RTL layout fixes and the Uyghur (Arabic-script) font, loaded only for right-to-left languages (Uyghur Traditional). Survives ColorMag updates.
Author:      
Author URI:  
Template:    colormag
Version:     1.0.2
Text Domain: colormag-child
*/

/* -------------------------------------------------------------
   GLOBAL CSS (applies to ALL languages).
   The Uyghur font + RTL-only rules live in rtl.css, loaded
   conditionally from functions.php. Rules here affect every
   language, so keep them language-neutral.
   ------------------------------------------------------------- */

/* FIX: oversized ColorMag SVG icons ---------------------------
   ColorMag renders menu arrows, meta icons, etc. as inline
   <svg class="cm-icon">. When unconstrained they blow up to fill
   their container (e.g. 432x432). Constrain them site-wide.      */
.cm-icon,
svg.cm-icon {
	width: 16px;
	height: 16px;
	max-width: 16px;
	max-height: 16px;
	display: inline-block;
	vertical-align: middle;
	flex: none;
}

/* Slightly larger for the mobile menu toggle, if present. */
.cm-mobile-nav .cm-icon,
.cm-menu-toggle .cm-icon {
	width: 24px;
	height: 24px;
	max-width: 24px;
	max-height: 24px;
}
