.mainComments{
    margin-bottom: 24px;
}
.mainComments h3{
    color: #75868e;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
}
.commentsHeader{
    font-size: 16px;
    color: #122E5B;
    display: flex;
    border-bottom: 1px solid #D6DEEB;
    width: 100%;
    margin-bottom: 24px;
}
.commentsHeader a{
    padding: 8px 12px;
}
.comment {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    margin-bottom: 24px;
}
.commentAva img{
    box-shadow: 0 .125rem .25rem #0000001a;
    border-radius: 50%;
    border: 2px solid #fff;
    width: 48px;
    height: 48px;
    background: #F0F2F3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.commentAva span{
    color: #B2B9BE;
    font-weight: 600;
    font-size: 19px;
}
.commentAuthor{
    font-size: 16px;
    color: #122E5B;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.commentAuthor::after{
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #75868e;
    display: block;
    margin-right: 4px;
}
.commentHeader {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.commentHeader span{
    font-size: 12px;
    color: #75868e;
}
.commentContent p{
    font-size: 16px;
    color: #2b3135;
    margin: 0;
}
.commentFooter{
    gap: 24px;
    justify-content: flex-end;
    display: flex;
    align-items: center;
}
.commentReply{
    font-size: 14px;
    color: #75868e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}
.commentReply img{
    width: 16px;
    height: 16px;
    margin: 0;
}
.commentOptions{
    font-size: 14px;
    color: #75868e;
    display: flex;
    align-items: center;
    gap: 4px;
}
.commentOptions img{
    width: 8px;
    height: 8px;
    margin: 0;
}
.commentLikes{
    display: flex;
    align-items: center;
}
.commentLikes span{
    padding: 8px;
    font-size: 14px;
}
.comLikes{
    color: #00691D;
    font-weight: 600;
}
.comDislikes{
    color: #C11B1B;
    font-weight: 600;
}
.comDivider{
    background: #B2B9BE;
    height: 18px;
    width: 1px;
}
.reply{
    margin-left: 52px;
}
@media screen and (max-width: 768px) {
    .comment{
        grid-template-columns: 32px 1fr;
        gap: 8px;

    }
    .commentAva img{
        width: 32px;
        height: 32px;
    }
    .commentAuthor{
        font-size: 14px;
    }
    .commentHeader span{
        font-size: 10px;
    }
    .commentContent p{
        font-size: 14px;
    }
    .commentLikes span, .commentOptions, .commentReply{
        font-size: 12px;
    }
    .reply{
        margin-left: 24px;
    }
}