.guns-paragraph {
  position: relative;
  overflow: hidden;
  margin-bottom: 1em;
  transition: all 0.2s;
  /* stylelint-disable-next-line selector-class-pattern */
}
.guns-paragraph .guns-icon {
  padding: 0.3em;
  border-radius: 3px;
  box-sizing: content-box;
  vertical-align: bottom;
  transition: background-color 0.2s;
  cursor: pointer;
}
.guns-paragraph .guns-icon:hover {
  background-color: var(--bgColor3);
}
.guns-paragraph .guns-paragraph__more {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  color: rgb(var(--pcolor));
  background-color: var(--bgColor1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.guns-paragraph .guns-paragraph__more::before {
  content: '';
  position: absolute;
  left: -150%;
  display: inline-block;
  width: 150%;
  height: 100%;
  background-color: var(--bgColor1);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 75%);
          mask-image: linear-gradient(90deg, transparent, #000 75%);
  pointer-events: none;
}
