.body--blogPost .pageTitle {
    display: none;
}

.body--blogPost .article_dynamic {
    max-width: 1130px;
}

.body--blogPost .contentWrapper--hasSubnav .article_dynamic {
    max-width: 890px;
}
.blogPost__title {
    max-width: 19em;
}
.blogPost__title a {
    text-decoration: none;
    color: inherit;
}

.blogPost__coverImage img {
    display: block;
}

.blogBody__intro {
    font-weight: 500;
}

@media screen and (min-width: 600px) {
    .blogPost__header {
        margin-bottom: 5em;
    }

    .blogPost--hasImage .blogPost__header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        align-items: stretch;
    }

    .blogPost__coverImage {
        flex: 0 40%;
        padding-top: 25%;
        background-size: cover;
    }

    .blogPost__coverImage img {
        display: none;
    }

    .blogPost--hasImage .blogPost__headerText {
        position: relative;
        flex: 0 60%;
        align-self: flex-end;
        margin-top: 1em;
        margin-bottom: 2em;
        padding-right: 1.5em;
    }

    .blogPost__title {
        margin-top: 0;
        font-size: calc(25px + (28 - 25)*(100vw - 600px)/(980 - 600)); /** a little smaller than normal H1 */
    }

    .blogPost__headerText:after {
        position: absolute;
        z-index: +1;
        top: 0;
        right: -.17em;
        bottom: 0;
        display: block;
        content: "";
        border-right: .35em solid #01718f;
    }

    .blogPost__meta {
        margin-bottom: 0;
    }
}


/**
 * Comments
 */

.blog__respond {
    margin: 3em auto;
}

label[for="leaveAComment"] {
    margin: 0 auto .2em;
    font-size: 1.35em;
    font-weight: 500;
    background: #f8f8f8;
    display: block;
    margin: 0 -20px;
    padding: 0 20px 10px;
    cursor: pointer;
}

.commentWrapper {
    display: none;
}

#leaveAComment:checked + .commentWrapper {
    display: block;
    margin: 0 -20px;
    padding: 20px 20px 0;
    background: #f8f8f8;
}

/**
 * comment list
 */

.blog_commentList {
    list-style: none;
    padding-left: 0;
}

/**
 * Leave a message
 */

.markdown-preview-content {
    background: #faffbd;
    padding: 15px 15px 0;
    overflow: auto;
}

#message-tutorial {
    margin-top: 1em;
}

#message-tutorial h3 {
    font-size: 1.1em;
}

@media screen and (min-width: 340px) {
    #message-tutorial h3 {
        float: left;
        width: 8em;
        clear: right;
    }

    #message-tutorial h3 + p,
    #message-tutorial h3 + p + p {
        float: right;
        width: calc(100% - 9em);
        margin-bottom: 1em;
    }
}

@media screen and (min-width: 600px) {
    #message {
        float: left;
        width: 60% !important;
    }

    .markdown-preview-title {
        width: calc(40% - 15px);
        float: right;
        margin-left: 15px;
    }

    .markdown-preview-content {
        float: right;
        width: 40%;
    }

    #message-tutorial {
        clear: both;
    }
}

.blog__section {
    padding-top: 2em;
}

.blog__attachmentList {
    padding: 0;
    list-style: none;
    margin: 0 0 4em;
}

.blog__attachment {
    margin: .6em 0;
}

.blog__attachmentLink {
    display: block;
    padding: .6em 1em;
    font-weight: 500;
    border-radius: 5px;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    text-decoration: none;
    color: #01718f;
    background: #ecf1f1;
}

.blog__attachmentLink:hover {
    box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.7);
}

.blog__attachmentLink:before {
font-family: "icons", sans-serif;
width: 2em;
display: inline-block;
text-align: center;
margin-right: .5em;
}

.blog__attachmentLink[href*=".doc"]:before {
content: "\1f5ce";
}

.blog__attachmentLink[href*=".pdf"]:before {
content: "\1f5cf";
}

.blog__attachmentLink[href*=".jpg"]:before,
.blog__attachmentLink[href*=".png"]:before {
content: "\26f0";
}

.blog__attachmentLink[href*=".xls"]:before {
content: "\2211";
}

/**
* Navigation next prev
*/

.blog__nav {
    display: block;
    padding: 0 2px;
}

@media screen and (min-width: 460px) {
    .blog__nav {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}

.blog__nav a {
    -webkit-box-flex: 0 46%;
    -webkit-flex: 0 46%;
    -ms-flex: 0 46%;
    flex: 0 46%;
    position: relative;
    margin-bottom: 2em;
    padding: 1em;
    text-decoration: none;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    box-shadow: 0 1px 1px 0 rgba(60,64,67,.08), 0 1px 3px 1px rgba(60,64,67,.16);
}

.blog__nav a:after {
    position: absolute;
    right: .3em;
    top: 0;
    transform: rotate(-45deg);
    content: "\e801";
    font-family: "icons", sans-serif;
}

.blog__nav a:hover {
    background-color: #fafafa;
    box-shadow: 0 1px 3px 1px rgba(60,64,67,.2), 0 2px 8px 4px rgba(60,64,67,.1);
}

.blog__navText {
    white-space: nowrap;
    font-size: .85em;
    display:  block;
    width: 100%;
    color: #000;
}

/**
* Related posts
* .blog__relatedList
*/

.blog__relatedList {
    padding: 0;
    list-style: none;
    margin: 0;
}

.blog__relatedItem {
    margin: .4em 0 0;
}