/*
 * International font fallbacks for myhotelbird (CCS-6986).
 *
 * Greek and Cyrillic are already covered by the Latin families the theme uses
 * (Open Sans, Helvetica Neue, Helvetica, Arial, Roboto all ship those scripts),
 * but none of them contains CJK glyphs. Without an explicit fallback the browser
 * silently substitutes whatever it likes for Simplified Chinese, which differs per
 * machine and can end up with missing-glyph boxes on stripped-down systems.
 *
 * Each rule below repeats the leading families of the theme rule it overrides and
 * only appends CJK-capable system fonts in front of the generic `sans-serif`, so
 * Latin, Greek and Cyrillic text keeps rendering exactly as before. The CJK list
 * covers macOS (PingFang SC / Hiragino Sans GB), Windows (Microsoft YaHei) and
 * Linux (Noto Sans CJK SC / Source Han Sans SC / WenQuanYi Micro Hei); all are
 * local system fonts, so no external font request is made.
 *
 * This file must stay the last stylesheet in cms/layouts/template.blade.php, it
 * relies on source order to win against inspinia-custom/css/style.css.
 */

body {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", "WenQuanYi Micro Hei", sans-serif;
}

body.md-skin {
    font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", "WenQuanYi Micro Hei", sans-serif;
}

body.landing-page {
    font-family: "Open Sans", helvetica, arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", "WenQuanYi Micro Hei", sans-serif;
}

.md-skin .landing-page {
    font-family: "Roboto", helvetica, arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", "WenQuanYi Micro Hei", sans-serif;
}

/* Status labels and badges render configured, translatable content as well. */
.label,
.badge {
    font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", "Source Han Sans SC", "WenQuanYi Micro Hei", sans-serif;
}
