/*
* BLOG CSS
*/
.blog-page {
    padding: 0 2rem;
}

.blog-title {
    font-family: 'Teodor Light';
    font-weight: 200;
    font-size: 108px;
    line-height: 108px;
    letter-spacing: -3%;
    vertical-align: middle;
    color: #7A6F5F;
}

.blog-post {
    display: flex;
    height: 400px;
    overflow: hidden;
    justify-content: space-between;
    margin-top: 32px;
}

.blog-post-left {
    width: 44%;
    border-top: 1px solid #C6C3B2;
    padding: 68px 10%;
}

.blog-post-left>h2 {
    font-size: 24px;
    line-height: 24px;
    letter-spacing: -0.5px;
    font-family: 'NeueMontreal normal';
    font-weight: 500;
    color: #313131;
    margin-bottom: 12px;
}

.blog-post-left a {
    text-decoration: none;
    color: inherit;
}

.entry-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.entry-excerpt>p {
    font-family: 'NeueMontreal normal';
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #6E6E6E;
    margin-top: 10px;
}

.blog-link {
    margin-top: 24px;
    border-bottom: 3px solid #105D5B;
    display: inline-block;
    padding-bottom: 9px;
}

.blog-link>a {
    font-size: 14px;
    line-height: 16px;
    font-family: 'NeueMontreal normal';
    font-weight: 500;
}

.blog-post-right {
    width: 55%;
    border-radius: 6px;
    overflow: hidden;
}

.size-post-thumbnail {
    width: 100%;
}

.pagination-post {
    padding-bottom: 140px;
}

@media (max-width: 768px) {
    .blog-post {
        height: initial;
        flex-direction: column-reverse;
    }

    .blog-post-left {
        padding:0;
        width: 100%;
    }

    .blog-post-right {

        width: 100%;
    }

    .entry-excerpt>p {
        display: none;
    }
}