/* Fix uppercase / ligatures issue */
.media-text h2 {
    font-feature-settings: normal; /* disables unwanted ligature setting */
    font-variant-ligatures: none; /* removes fancy ligatures */
    text-transform: none; /* stops auto-uppercase if needed */
    letter-spacing: normal;
}

/* Prevent TM ligature in buttons */
.button {
    font-feature-settings: "liga" 0, "clig" 0;
    font-variant-ligatures: none;
}


        