.article-list a {
    color: inherit;
    text-decoration: none;
}

.article-list a:hover{
    color: #6c757d;
}

.article-list h2{
    font-weight: 400;
}

.article-list .info{
    font-size: 12px;
    display: flex;
    justify-content: flex-start;
}

.article-list .info > div{
    margin-right: 20px;
}

.article-list .info > div:last-child{
    margin-right: 0;
}

.article-list .intro{
    display: flex;
    justify-content: flex-start;
}

.article-list .intro img{
    height: 200px;
}

.article-list .content img{
    height: 400px;
}


.article-detail h2{
    font-weight: 400;
}
    
.article-detail .info{
    font-size: 12px;
    display: flex;
    justify-content: flex-start;
}

.article-detail .info > div{
    margin-right: 20px;
}

.article-detail .info > div:last-child{
    margin-right: 0;
}

.article-detail .info a{
    color: inherit;
}

.article-detail .descr .descr-image{
    height: 400px;
    width: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .article-detail .descr .descr-image{
        height: 300px;
        width: auto;
    }
    .article-list .intro{
        display: block;
    }
    .article-list .intro img{
        width: 100%;
        height: auto;
        margin-bottom: 10px;
        object-fit: cover;
    }
}

.article-detail .photos{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.article-detail .photos img{
    object-fit: cover;
    height: 150px;
    margin: 5px;
}

.commentForm, .commentForm .form-control{
    font-size: 12px;
}

.comment{
    font-size: 14px;
    padding: 5px;
}

.comment + .comment{
    margin-top: 5px;
    border-top: 1px solid #eeeeee;
}

.comment > .comment-user{
    font-weight: 600;
}

.comment > .comment-info{
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    color: #5a5a5a;
}

.comment > .comment-info > div{
    margin-right: 10px;
}

.comment > .comment-info > div:last-child{
    margin-right: 0;
}

.comment > .comment-content{
    display: block;
    margin: 5px 0;
    padding: 10px;
    width: 100%;
    border: 1px solid #efefef;
    font-size: 12px;
    background-color: rgba(255, 255, 255, 0.5);
}

.comment > div.comment-content, .comment > textarea.comment-content:focus{
    background-color: #ffffff;
}

.comment > .comment-save-btn,
.comment > .comment-delete-btn,
.comment > .reply-btn{
    font-size: 12px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.comment > .comment-save-btn, .comment > .comment-delete-btn{
    margin-right: 20px;
}

.comment > .comment-save-btn:hover,
.comment > .comment-delete-btn:hover,
.comment > .reply-btn:hover{
    opacity: 0.8;
}

.comment > .comment-save-btn.disabled,
.comment > .comment-delete-btn.disabled,
.comment > .reply-btn.disabled{
    opacity: 0.5;
}

.comment > .replied-comments{
    margin-top: 15px;
    border-left: 2px solid #eeeeee;
    padding-left: 40px;
    background-color: rgba(0, 0, 0, 0.01);
}