.article .readmore .mores {
    --hue: 121;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
    color: #6495ED;
    text-decoration: none;
    text-transform: uppercase;
    background-color: hsl(219, 79%, 66%);
    outline: transparent;
    overflow: hidden;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    white-space: nowrap;
    transition: 0.25s;
    background-color: transparent;
  }
  .readmore .mores:hover {
    background: hsl(219, 79%, 60%);
  }
  .readmore .mores-primary {
    --hue: 187;
  }
  .readmore .mores-ghost {
    color: hsl(219, 79%, 66%);
    background-color: hsl(219, 79%, 60%);
    border-color: hsl(219, 79%, 66%);
  }
  .readmore .mores-ghost:hover {
    color: white;
    background: hsl(219, 79%, 60%);
  }
  .readmore .mores-shine::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, hsla(219, 79%, 66%, 0.5), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
  }
  .readmore .mores-shine:hover {
    background: hsl(219, 79%, 66%);
    box-shadow: 0 0 20px 10px hsla(219, 79%, 66%, 0.5);
  }
  .readmore .mores-shine:hover::before {
    transform: translateX(100%);
  }
