/*
 * Shared desktop shell width.
 * Bootstrap 3 caps .container at 1170px. Expand it progressively while
 * preserving the existing 15px viewport gutters, then stop at 1300px.
 */
@media (min-width: 1200px) {
    .container {
        width: calc(100% - 30px);
        max-width: 1300px;
    }

    /* The legacy header adds .jz.container with its own 1400px cap. */
    .navbar .jz.container {
        width: calc(100% - 30px);
        max-width: 1300px;
    }
}
