[data-component-id='ecore_common:literature_item'] {
  display: flex;

  .lit-item__link {
    display: inline-flex;
    align-items: flex-start;
    color: #fff;
    text-decoration: none;
    font-family: Silka, sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    line-height: 1.4;
    padding-right: 22px;
    position: relative;
    transition: color 0.2s ease;

    &::after {
      content: '';
      position: absolute;
      right: 2px;
      top: 4px;
      width: 12.5px;
      height: 8px;
      background: url('../../assets/images/arrow-bullet-white.png') no-repeat center / contain;
      transition: transform 0.2s ease;
    }

    &:hover,
    &:focus {
      color: #002bff;

      &::after {
        transform: translateX(3px);
        background-image: url('../../assets/images/arrow-bullet.png');
      }
    }
  }
}
