/* Current displays */
@media only screen and (min-width: 992px) and (max-width: 1141px) {
}

/* Old desktops */
@media only screen and (max-width: 991px) {
    :root {
        --page-wrapper: 90vw;
        --article-wrapper: 80vw;
    }

    .menu-main {
        display: none;
    }

    .bars-rwd {
        display: inherit
    }
}

/* Tablet */
@media only screen and (max-width: 768px) {
    :root {
        --cover-height: 40vh;
        --maps-height: 30vh;
    }

    article h1 {
        font-size: var(--double);
    }

    article p {
        font-size: var(--regular-quarter);
    }


}

/* Mobile */
@media only screen and (max-width: 479px) {
}