/*
 * Race Car Registry — Mission navigation compatibility
 *
 * The existing main stylesheet hides navigation links 3 and 4 at <= 760px.
 * With Mission statement inserted between Home and Registry:
 *
 *   1 Home
 *   2 Mission statement
 *   3 Registry
 *   4 About
 *   5 Contribute
 *
 * Keep Registry visible; hide About + Contribute on narrow screens.
 */

@media (max-width: 760px) {
    .main-nav > a:nth-child(3) {
        display: inline;
    }

    .main-nav > a:nth-child(4),
    .main-nav > a:nth-child(5) {
        display: none;
    }
}
