body {
    background: #fff0eb;
}

#main {
    margin: 0 auto;
    max-width: 900px;
}

.blog-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 16px;
}

.blog-title {
    text-align: center;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 36px;
}


.blog-title:lang(he) {
    text-align: center;
    font-family: "Varela Round", sans-serif;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 36px;
}

ul,li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-list li:not(:last-child) {
    margin-bottom: 24px;
}

article {
    /*border: 1px solid #212529;*/
    /*border-radius: 8px;*/
    /*overflow: hidden;*/
    /*box-shadow: 0px 0px 8px 0px #0000003d;*/
}

article a,
article a:hover {
    color: #212529;
}

.post-block {
    background: #f5f1ee;
    border: 1px solid #212529;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

article a:hover .post-block {
    box-shadow: 0px 0px 8px 0px #0000003d;
}

.post-block-content {
    padding: 12px;
}

.post-block-content h2 {
    margin: 0;
    font-family: "Kumbh Sans", sans-serif;
    font-size: 28px;
    font-weight: 500;
}

.post-block-content h2:lang(he) {
    margin: 0;
    font-family: "Varela Round", sans-serif;
    font-size: 25px;
    font-weight: 500;
}

.author-date {
    gap: 8px;
    margin: 8px 0 12px;
    font-family: "Montserrat" , sans-serif;
}

.author-date:lang(he) {
    gap: 8px;
    margin: 8px 0 12px;
    font-family: "Varela Round", sans-serif;
}

time {
    color: #404649;
    font-family: "Montserrat" , sans-serif;
}

time:lang(he) {
    color: #404649;
    font-family: "Varela Round", sans-serif;
}

.block-author {
    text-transform: capitalize;
    font-weight: 500;
    margin: 0;
}

.block-content {
    font-size: 18px;
    line-height: 1.5;
    font-family: "Montserrat" , sans-serif;
}

.block-content:lang(he) {
    font-size: 18px;
    line-height: 1.7;
    font-family: "Varela Round", sans-serif;
}

.post-block-image {
    max-height: 300px;
}

.post-block-image img {
    object-fit: cover;
}


@media (min-width: 768px) {
    .post-block {
        flex-direction: row;
        height: 280px;
    }

    .post-block-content h2 {
        margin: 0;
        font-size: 28px;
        font-weight: 500;
    }

    .post-block-content h2:lang(he) {
        font-size: 25px;
        font-weight: 500;
    }

    .post-block-image {
        width: 35%;
    }

    .post-block-content {
        width: 65%;
    }

    .post-block-image {
        max-height: unset;
    }
}

@media (min-width: 1025px) {
    .blog-container {
        padding: 80px 16px 80px;
    }

    .blog-title {
        font-size: 36px;
        margin-bottom: 48px;
    }


    .post-block-content h2:lang(he) {
        font-size: 28px;
        font-weight: 500;
    }

    .post-list li:not(:last-child) {
        margin-bottom: 36px;
    }

    .post-block {
        height: 330px;
    }

}