Есть кнопка с псевдоэлементом (стрелочка). Нужно, чтобы курсор cursor pointer срабатывал и при наведении на псевдоэлемент в том числе. Как это можно сделать?
<li class="menu-bottom__item">
              <button class="menu-bottom__btn btn-reset">Реализм</button>
              <ul class="menu-bottom__drop-list list-reset drop-list">
.menu-bottom__btn {
  position: relative;
  color: white;
  cursor: pointer;
}
.menu-bottom__btn::after {
  content: "";
  position: absolute;
  top: 30%;
  left: calc(100% + 5px);
  z-index: 2;
  width: 7px;
  height: 7px;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  border-top: none;
  border-left: none;
  pointer-events: none;
  transform: rotate(45deg);
}