.base {
  position: relative;
  display: flex;

  border-radius: inherit;
}

.img {
  min-width: 150px;
  height: 180px;
  border-radius: inherit;
  object-fit: contain;
}

.actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;

  opacity: 0;
  transition: all 0.2s;
}

/* Message overwrite */

.body {
  padding: 0;

  &:hover {
    .actions {
      opacity: 1;
    }
  }
}
