article#post .post-title{
    font-size: 2.2em;
}
.post-date{
    color: #858585;
    margin-bottom: 1em;
}
.post-categories{
    margin: 1em 0 3em;
}
.post-categories a:hover{
    text-decoration: underline;
}
.post-tags{
    display: flex;
    margin: 1em 0;
}
.post-tags .post-tags_list{
    display: flex;
    gap: 20px;
    margin: 0;
    padding-left: 1em;
}
.post-tags .post-tags_list li{
    list-style: none;
    text-decoration: underline;
}
section.comments{
    padding: 80px 0;
}
#comments ul.comment-list li{
    list-style: none;
}
#comments .comment-list .comment-body{
    margin-bottom: 50px;
}
#comments .comment-list .comment-body .comment_head .comment-author{
    font-size: 20px;
    color: #333;
}
[data-theme="dark"] #comments .comment-list .comment-body .comment_head .comment-author{
    color: #f1f1f1
}
#comments .comment-list .comment-body .comment_head img.avatar{
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    top: 7px;
}
#comments .comment-list .comment-body .comment_head .comment_date{
    display: block;
    font-size: 17px;
    color: #8e8e8e;
    font-weight: 300;
    margin-top: 14px;
}
#comments .comment-list .comment-body .reply a{
    text-decoration: underline;
}
#comments .comment-list li.comment .comment-reply-title small{
    display: block;
    margin-top: 15px;
    text-decoration: underline;
}
#comments form#commentform{
    max-width: 800px;
}
#comments form#commentform .comment-form-comment{
    display: flex;
    flex-direction: column;
}
#comments form#commentform .field_group{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#comments form#commentform .field_group .comment-form-author,
#comments form#commentform .field_group .comment-form-email{
    display: flex;
    flex-direction: column;
    width: 47%;
}
#comments form#commentform label{
    margin-bottom: 10px;
}
#comments form#commentform .comment-form-comment textarea#comment,
#comments form#commentform .field_group input{
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    font-size: 19px;
}
[data-theme="dark"] #comments form#commentform .comment-form-comment textarea#comment,
[data-theme="dark"] #comments form#commentform .field_group input{
    background-color: var(--dark-bg);
    color: var(--dark-text);
}
#comments form#commentform .form-submit #submit{
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 1.2em;
}
[data-theme="dark"] #comments form#commentform .form-submit #submit{
    background-color: var(--dark-btn-bg);
    color: var(--light-text);
}
[data-theme="light"] #comments form#commentform .form-submit #submit{
    background-color: rgb(28 25 23);
    color: var(--dark-text);
}
#comments form#commentform .form-submit #submit:hover{
    cursor: pointer;
    background-color: #a1a1a1;
}
@media (max-width: 680px) {
    #comments form#commentform .field_group .comment-form-author,
    #comments form#commentform .field_group .comment-form-email{
        width: 100%;
    }
}