/**
 * phpBB prosilver Russian language stylesheet
 * Mobile optimization: increase base font size for Yandex mobile-friendly compliance
 *
 * prosilver sets body { font-size: 10px } in common.css and uses em units.
 * On mobile, this results in text below 12px — flagged by Yandex/Google.
 * Increasing body font-size to 12px scales all em-based elements proportionally.
 */

@media only screen and (max-width: 700px) {
    body {
        font-size: 12px;
    }

    /* Code blocks: prevent horizontal overflow, allow wrapping */
    .codebox code {
        word-wrap: break-word;
        white-space: pre-wrap;
    }
}
