.post__button {
   position: relative;
   padding: 6px 35px 6px 12px;
   background-color: #F1F3F8;
   border-radius: 10px;
   text-decoration: none;
   color: #004BCA;
   font-size: 15px;
   font-weight: 600;
   line-height: 18px;
   cursor: pointer;
   /* width: min-content; */

   & > img {
      position: absolute;
      width: 18px;
      height: 18px;
      top: 22%;
      right: 12px;
      object-fit: cover;
      object-position: center; 
      line-height: 18px;
      transition: all 150ms ease-out;

   }

   &:hover > img {
      right: 7px;
   }
}

.post__link {
   text-decoration: none;
}