.layout {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px
}

.layout__left {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.layout__right {
    width: 100%;
}


@media only screen and (min-width: 600px) {
    .layout {
        flex-wrap: nowrap;
    }

    .layout__left {
        /* flex-basis: 68%; */
        width: 68%;
    }
    
    .layout__right {
        width: calc(100% - 68% - 10px);
        padding-top: 10px;
    }
}




.archive .page-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.archive .page-header .page-title {
    text-align: center;
    position: relative;
    padding: 0 20px;
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    line-height: 33.6px;
    font-family: 'crete-round', 'Adjusted Times New Roman Fallback', serif;
    color: #666;
}

.archive .page-header .page-title:before {
    content: '';
    display: block;
    position: absolute;
    width: 36px;
    height: 1px;
    background: #707070;
    left: -36px;
    top: 50%;
}

.archive .page-header .page-title:after {
    content: '';
    display: block;
    position: absolute;
    width: 36px;
    height: 1px;
    background: #707070;
    right: -36px;
    top: 50%;
}

.box {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    margin-bottom: 0;
    width: 100%;
    padding: 1em;
}



@media only screen and (min-width: 450px) {
    .box {
        width: 50%;
    }   
}



@media only screen and (min-width: 600px) {
    .box {
        width: 33.33%;
    }   
}



.boxs {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /*padding: 20px 20px 75px 20px;*/
    padding: 20px 0px 75px 0px;
}

.box .post-thumbnail {
    margin-bottom: 1em;
    position: relative;
    width: 100%;
    text-decoration: none;
}

.box .post-thumbnail picture {
    width: 100%;
    height: 192px;
    display: block;
}

.box .post-thumbnail picture img {
    background-size: cover;
    background-position: center center;
    object-fit: cover;
    height: 190px;
}

@media only screen and (min-width: 600px) {
    .boxs .box:first-child, .boxs .box:nth-child(5) {
        flex-direction: row;
        align-items: center;
        width: 100%;
    }

    .boxs .box:first-child a.post-thumbnail, .boxs .box:nth-child(5) a.post-thumbnail {
        flex-basis: 50%;
        height: 100%;
    }
    
    .boxs .box:first-child a.post-thumbnail img, .boxs .box:nth-child(5) a.post-thumbnail img {
        height: 100%;
    }
    
    .boxs .box:first-child picture, .boxs .box:nth-child(5) picture {
        height: 100%;
    
    }
    
    .boxs .box:first-child .entry-header, .boxs .box:nth-child(5) .entry-header {
        flex-basis: 50%;
        background-color: #f6f6f6;
        padding: 20px 0;
    }

    .boxs .box:first-child .entry-header .entry-title a, .boxs .box:nth-child(5) .entry-header .entry-title a {
        padding: 48px 32px;
        background-color: #fff;
        position: relative;
        left: -20px;
        text-align: center;
        font-size: 36px;
        font-weight: 400;
        line-height: 50.4px;
    
    }

}


.box .entry-header .entry-title a {
    padding-top: 1em;
    display: block;
    text-align: center;
    font-size: 21px;
    line-height: 1.4;
    color: #1d1d1b;
    font-weight: 400;
    font-family: 'crete-round', 'Adjusted Times New Roman Fallback', serif;
}



.box .entry-meta {
    font-size: 11px;
    color: rgb(187,187,187);
    font-weight: 700;
    font-family: 'montserrat-bold',  arial, sans-serif;
    line-height: 18.7px;
    text-align: center;
}

.box .entry-meta a {
    color: rgb(187,187,187);
}