/*---------------------------Blog---------------------------*/

body.post-template-default #comments {
    max-width: 1320px;
    margin: auto;
    margin-bottom: 48px;
}

body.post-template-default #comments .form-submit {
    margin-top: 12px;
}

body.post-template-default #comments .form-submit input[type=submit]:focus,
body.post-template-default #comments #comment:focus,
body.post-template-default #commentform>p>input:focus {
    outline: none !important;
}

body.post-template-default #comments .comment-form-comment {
    margin-top: 16px;
}

body.post-template-default #comments #comment {
    margin-top: 8px;
}

body.post-template-default .required {
    color: red !important;
}

body.post-template-default #comments #cancel-comment-reply-link {
    font-size: 14px;
    margin-left: 16px;
}

body.post-template-default #comments .comment-list {
    margin-bottom: 32px;
}

body.post-template-default #comments .comment-content {
    font-size: 14px;
}

body.post-template-default #comments .reply a,
body.post-template-default #comments .comment-metadata {
    font-size: 12px;
}

body.post-template-default #comments .comment-body {
    padding: 24px 0px;
    padding-left: 60px;
}

body.post-template-default #commentform>p {
    margin-top: 16px;
}

body.post-template-default .comment-form-cookies-consent {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

body.post-template-default #wp-comment-cookies-consent {
    margin-right: 8px;
}

body.post-template-default #commentform>p>label {
    margin-bottom: 8px;
}

@media (max-width: 1319px) {
    body.post-template-default #comments {
        padding: 0px 16px;
    }
}

@media (max-width: 767px) {
    body.post-template-default #comments .comment-body {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 479px) {
    body.post-template-default #comments .comment-body {
        padding-left: 0px;
        padding-right: 0px;
    }
}


/*---------------------------Blog Category---------------------------*/

body.category-blog #content,
body.category-blog-category #content,
body.blog #content {
    padding: 0px;
}

body.category-blog .page-content,
body.category-blog-category .page-content,
body.blog .page-content {
    margin: 64px 0px !important;
    padding: 0px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

body.category-blog article.post,
body.category-blog-category article.post,
body.blog article.post {
    width: calc(50% - 16px);
    display: inline-grid;
    grid-template-areas: 'img' 'title' 'content';
    margin-top: 32px;
}

body.category-blog article.post>h2,
body.category-blog-category article.post>h2,
body.blog article.post>h2 {
    grid-area: title;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
}

body.category-blog article.post>h2>a,
body.category-blog-category article.post>h2>a,
body.blog article.post>h2>a {
    font-size: 16px;
    line-height: 24px;
    font-family: 'Optima-Bold';
    font-weight: 400;
    color: #332e20;
}

body.category-blog article.post>a,
body.category-blog-category article.post>a,
body.blog article.post>a {
    grid-area: img;
}

body.category-blog article.post>p,
body.category-blog-category article.post>p,
body.blog article.post>p {
    grid-area: content;
    font-size: 14px;
}

@media (max-width: 767px) {
    body.category-blog article.post,
    body.category-blog-category article.post,
    body.blog article.post {
        width: 100%;
        margin-top: 0px;
    }
    body.category-blog article.post+article.post,
    body.category-blog-category article.post+article.post,
    body.blog article.post+article.post {
        margin-top: 32px;
    }
    body.category-blog article.post>h2,
    body.category-blog-category article.post>h2,
    body.blog article.post>h2 {
        font-size: 18px;
        line-height: 24px;
    }
}