﻿.blog-header {
    position: relative;
    display: flex;
    flex-grow: 1;
    padding-bottom: 5vh;
}

.blog-header {
    height: 65vh;
}

.imageLink {
    width: 100%;
}

.blog-header img {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
}

.blog-header .caption {
    position: absolute;
    display: block;
    bottom: 12.5vh;
    left: 5vw;
    font-weight: bold;
    width: calc(100% - 10vw);
}

.caption, .blog_title {
    text-transform: uppercase;
    margin-bottom: 2vh;
}

    .caption h1 {
        color: #FFF;
        letter-spacing: .2em;
        margin-bottom: 2vh;
    }

.blog_title * {
    line-height: 1.65;
    letter-spacing: .2em;
    font-size: 1.1em;
    height: 100%;
    text-align: left;
    font-weight: bold;
}

.blog_content {
    position: relative;
    margin: 0 1.5vw;
}

.blog_desc {
    font-family: 'Nunito Sans', sans-serif;
    letter-spacing: normal;
}

    .blog_desc p {
        text-align: left;
        line-height: 1.65;
    }


.ReadMoreBTN {
    font-family: 'Nunito Sans';
    letter-spacing: .1em;
    font-weight: 500;
    text-decoration: underline;
}

.moreBTN {
    border: 2px solid white;
    background: #FFF;
    color: #000;
    padding: 1vh 2vh;
    position: absolute;
}

@media screen and (max-width: 916px) {
    .blogContent {
        margin-left: 2vw;
        margin-right: 2vw;
        width: calc(100% - 4vw);
    }

    .blog-header {
        height: 60vh;
    }
}

@media screen and (max-width: 500px) {
    .blog-header {
        height: 45vh;
    }
}


