.label-arrow{
  --bg:#d34119; 
  --h:20px;
    position: absolute;
    bottom: 10px;
    right: 10px;
  display:inline-block;
  background:var(--bg);
  color:#fff;
  font-size: 14px;
  line-height: 14px;
  padding: calc(var(--h)/3) 1rem calc(var(--h)/3) calc(var(--h) * .5);
  border-radius: 6px;
  z-index: 1;
}

.ui-card__image--ratio-1{position: relative;}
.label-arrow::before{
    content: "";
    position: absolute;
    top: 51%;
    left: 3px;
    width: 21px;
    height: 21px;
    background: var(--bg);
    transform: translate(-45%, -50%) rotate(45deg);
    border-radius: 7px;
    pointer-events: none;
    z-index: -1;

}
