/***
Archive 
*/

.blog-post {
    background-color: #fff;
}

.blog-post {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-bottom {
    background-color: #fff;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-post-title {
    font-size: 20px;
    font-weight: bold;
    color: black;
}

.blog-post-text {
    font-size: 15px;
    position: relative;
    overflow: hidden;
    color: black;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-post-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-color: #fff;
    position: relative;
    background-position: center center;
}

.blog-read-more {
    border: 0px;
    font-size: 15px;
    color: var(--accent);
}

@media only screen and (max-width: 769px) {
    mobile:nth-child(2),
    mobile:nth-child(3) {
        visibility: hidden;
    }
}

@media only screen and (min-width: 769px) {
    .blog-bottom {
        max-height: 375px;
        height: 100%;
    }
}