.pageIntro {
    position: relative;
}

.pageIntro .contentWrapper {
    display: flex;
    width: 100%;
    margin-bottom: 0;
    padding-top: 7em;
}

.pageIntro__imageWrapper {
    width: 100%;
    background-size: cover;
}

.pageIntro__mask {
    position: absolute;
    right: -1%;
    bottom: -2px;
    left: -1%;
    display:  block;
    width: 102%;
    height: auto;
}

.pageIntro__image {
    width: 100%;
}

.pageIntro__content {
    margin-bottom: 1em;
    font-size: 1.1em;
    color: #fff;
    text-shadow: 0 1px 3px #000;
    padding: .8em 1em;
}

.pageIntro__content--right {
    margin-left: auto;
}

.pageIntro__title {
    font-size: 190%;
    margin: 0;
    color: inherit;
    word-break: break-word;
}

.pageIntro__bodyCell p {
    margin-bottom: 0;
}

.pageIntro__button {
    white-space: nowrap;
    background:  #dc0031;
    transition: all .2s ease-in-out;
}

.pageIntro__button:hover {
    background: #ff033b;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
}

@media screen and (min-height: 600px) and (min-width: 600px) {
    .pageIntro__imageWrapper {
        position: relative;
        display: flex;
        height: 30vw;
        min-height: 55vh;
        overflow: hidden;
        padding: 0;
    }

    .pageIntro__imageWrapper--hero {
        height: 80vh;
        max-height: 80vh;
    }

    .pageIntro__content {
        align-self: flex-end;
        /*flex: 0 65%;*/
        margin-bottom: 1em;
        max-width: 29em;
    }

    .pageIntro__bodyCell {
        font-weight: bold;
    }

    .pageIntro__content--left .pageIntro__body {
        display: table;
    }

    .pageIntro__content--inline .pageIntro__bodyCell {
        display: table-cell;
        vertical-align: bottom;
    }

    .pageIntro__content--inline .pageIntro__button--margin {
        margin-left: 1em;
    }

    .pageIntro__content--right .pageIntro__bodyCell:first-child {
        margin-bottom: 1em;
    }

    .body--hasSidebarRight .pageIntro__content--right {
        margin-bottom: 6em;
    }
}

@media screen and (min-width: 980px) {
    .pageIntro__content {
        font-size: 1.6vw;
    }
}

@media screen and (min-width: 1300px) {
    .pageIntro__content {
        font-size: 1.25em;
    }
}