* {
    box-sizing: border-box;
}

:root {
    font-family: 'Neue Haas Unica';

    line-height: 1.5;
    font-weight: 400;

    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-width: 320px;
}

a {
    text-decoration: none;
    color: inherit;
}

#main {
    overflow-x: hidden;
    margin: 0 auto;
    max-width: 1440px;

    padding: 0 48px;
    padding-bottom: 20px;

/*    background: green;*/
}

#header {
/*    background: red;*/
    display: flex;
    height: 80px;
    line-height: 80px;
    vertical-align: text-bottom;
    margin-bottom: 80px;
}

#header-left {
    height: 100%;
}

#header-right {
    flex-grow: 1;
    text-align: right;
}

#logo {
    display: inline-block;
    vertical-align: text-bottom;
    width: 142px;
    height: 24px;
    background-image: url('logo.svg');
}

.header-button {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */
    /*
    display: flex;
    align-items: center;
    text-align: center;*/

    /* Monochrome dark */

    color: #888888;

    margin-right: 48px;
}


#language {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    font-variant: small-caps;
    color: #888888;
}



#content {
    display: flex;
/*    background: blue;*/
}

#content-left {
    max-width: 570px;
    display: flex;
    flex-direction: column;
/*    background: yellow;*/
}

#content-right {
    flex-grow: 1;
}

#current {
    /* Body bold */
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;

    margin-bottom: 12px;

    /* identical to box height, or 150% */


    /* Primary */
    color: #222222;
}

#date {
    /* Body */
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */


    /* Primary */

    color: #222222;

    margin-bottom: 120px;
}

#exhibition-title {
    font-style: normal;
    font-weight: 300;
    font-size: 48px;
    line-height: 72px;
    /* or 150% */

    letter-spacing: 0.02em;

    /* Primary */

    color: #222222;

    margin-bottom: 32px;
}


#artist-name {
    /* Artist name */


    width: 432px;
    height: 36px;

    /* H4 */

    font-style: normal;
    font-weight: 350;
    font-size: 24px;
    line-height: 36px;
    /* identical to box height, or 150% */

    letter-spacing: 0.02em;

    /* Primary */

    color: #222222;
}

.read-more-mobile {
    display: flex;
}

.read-more-wrapper {
    display: flex;
}

.read-more-button {

    display: flex;
    margin-top: auto;

    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    /* identical to box height, or 150% */

    letter-spacing: 0.08em;
    text-transform: uppercase;

    /* Primary */

    color: #222222;


    /* Inside auto layout */

    flex: none;
    order: 0;
    flex-grow: 0;
}

.forward-arrow {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('arrow_forward.png');

/*    background: cyan;*/
}

#main-image {
    width: 100%;
}


.mobile-only {
    display: none;
}

@media only screen and (max-width: 1200px) {
    #content {
        flex-direction: column;
    }

    #date {
        margin-bottom: 32px;
    }

    #artist-name {
        margin-bottom: 80px;
    }

    .read-more-mobile {
        padding-top: 80px;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block;
    }

    #header-right { /* TODO */
        height: 100%;
    }
    #menu-button {
        display: inline-block;
        vertical-align: text-bottom;
        width: 24px;
        height: 24px;
        background-image: url('menu-button.svg');
    }
}
