.comments-component{
    padding:32px 0;
    background-color:#272727!important;
}

.comments-component .comments-container{
    max-width:1200px;
    margin:0 auto;
}
.comments-component .comments-container .comment-item{
    color:hsla(0,0%,100%,.65)!important;
    font-size:12px;
    font-weight:400;
    line-height:16px;
    letter-spacing: -.02em;
}
.comments-component .comments-container .comment-item:nth-child(n+2){
    margin-top:8px;
}
.comments-component .comments-horizontal-line{
    width:1200px;
    margin:0 auto;
    position:relative;
    height:48px;
}
.comments-component .comments-horizontal-line:after{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

@media (max-width: 768px){
    .comments-component{
        padding:16px 24px;
    }
    .comments-component .comments-container{
        width: 100%;
    }
    .comments-component .comments-horizontal-line{
        width:100%;
    }
}