.wrap {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    gap: 24px;
    padding: 24px;
    flex-wrap: wrap;
  }
  
  .box {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    position: relative;
    background: #fff;
    box-sizing: border-box;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  }

  .box:hover {
    transform: translateY(-10px);
  }
  
  .box-top {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 12px;
    margin-bottom: 36px;
    padding: 24px 15px;
  }
  
  .box-image {
    width: 100%;
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
  }
  .box:hover .box-image{
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
  }
  
  .title-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .box-title {
    text-align: center;
    display: block;
    width: 100%;
    margin: 0;
  }
  .wrap .description {
    text-transform: none;
    font-style: italic;
    color: #84847C;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 2px;
    margin: 0;
  }

  .wrap ul {
    margin: 0 0 15px 0px !important;
    text-align: left;
    list-style: none;
  }
  .wrap ul i {
    margin-right: 5px;
  }
  
  .user-follow-info {
    color: hsl(0, 0%, 60%);
  }
  
  .wrap .button {
    color: #4d504a;
    text-decoration: none;
    display: inline-block;
    position: relative;
    width: auto;
    padding: 5px 0;
  }

  .wrap .button span {
    position: relative;
  }

  .wrap .button span:before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background-color: currentColor;
    bottom: 0;
    right: 0;
    bottom: -2px;
    -webkit-transition: width .4s;
    transition: width .4s;
}

.box:hover .button span:before {
    width: 100%;
    left: 0;
}
  
  .wrap .button:hover {
    background: var(--purple);
  }
  
  .fill-one {
    background: var(--light-bg);
  }
  
  .fill-two {
    background: var(--pink);
  }
  
  /* RESPONSIVE QUERIES */
  
  @media (min-width: 320px) {
    .title-flex {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: start;
    }
    .user-follow-info {
      margin-top: 6px;
    }
  }
  
  @media (min-width: 460px) {
    .title-flex {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: start;
    }
    .user-follow-info {
      margin-top: 6px;
    }
  }
  
  @media (min-width: 640px) {
    .box {
      flex-basis: calc(50% - 12px);
    }
    .title-flex {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: start;
    }
    .user-follow-info {
      margin-top: 6px;
    }
  }
  
  @media (min-width: 840px) {
    .title-flex {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: start;
    }
    .user-follow-info {
      margin-top: 6px;
    }
  }
  
  @media (min-width: 1024px) {
    .box {
      flex-basis: calc(33.3% - 16px);
    }
    .title-flex {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: start;
    }
    .user-follow-info {
      margin-top: 6px;
    }
  }
  
  @media (min-width: 1100px) {
    .box {
      flex-basis: 33%;
    }
  }
  