img[alt^="banner"]{
  width: 100%;
  /* height: 170px; */
  height: 200px;
  object-fit: cover!important;

}


img[alt^="avatar"]{
  width: 120px!important;
  /* max-width: 94px; */
  height: 120px!important;
  object-fit: cover!important;
  overflow: hidden;

}

.ic-app-header__menu-list-link {
  /*transition: background-color 0.3s, padding 0.3s;*/
 
  &:hover {
    &::after {
      transform: scaleX(1);
      transform-origin: bottom left;
    }
  }
 
  &::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 4px;
    bottom: 0;
    left: 0;
    background-color: #E5007D;
    transform-origin: bottom right;
    /*transition: transform 0.25s ease-out;*/
  }
}