Flex align-content layout problem

 .item{
    border: 1px solid -sharp6094e3;
    position: relative;
    display: flex;
    align-content: space-between;
    flex-direction: column;
    p{
      padding: 15px 10px 0 10px;
      line-height: 1.8;
    }
    .label{
      width: 100%;
      font-size: 26px;
      color: -sharp6094e3;
      background-image: -webkit-linear-gradient( left, rgba(133, 174, 237, 1) 50%, rgba(87, 142, 224, 1));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  }

clipboard.png

clipboard.png

but not aligned

Apr.01,2021

should be justify-content:space-between

Menu