/* MASTER-PACK 0.7.63 — mobile catalogue title refinement.
 *
 * The original 46–68 px mobile minimum worked for short names but forced
 * long Ukrainian technical product names into abrupt letter-level wrapping.
 * Keep the strong editorial hierarchy while letting complete words read as
 * words on narrow screens. Scope this correction to catalogue/application
 * routes only; company pages keep their already-verified title treatment.
 */

@media (max-width: 640px) {
    .mp-catalog-request .mp-catalog-copy h1 {
        font-size: clamp(36px, 11vw, 46px);
        line-height: 0.98;
        letter-spacing: -0.04em;
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: auto;
    }
}
