.card-trip {
    overflow: hidden;
    background: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    width: 30%;
    margin: 50px 25px;
    color: black;
    transition: all 500ms ease;
  }
  
  .card-trip img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }
  
  .card-trip h2 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
  }
  
  .card-trip a {
    font-size: 12px;
    opacity: .7;
    margin: 0;
    color: black;
    text-decoration: none;
    transition: all 500ms ease;
  }

  .card-trip a:hover {
    font-size: 12px;
    opacity: 1;
    margin: 0;
    color: black;
    text-decoration: none;
  }

  .card-trip:hover {
    transform: scale(1.1);
  }
  
  
  .card-trip .card-trip-infos {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
  }

  .card-trip .card-trip-infos p {
    width: 8%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .card-trip-infos .card-trip-user {
    position: absolute;
    right: 16px;
    top: -20px;
    width: 40px;
  }
  