.related-tip-card {
  background-color: white;
  border-radius: 10px;

  display: flex;
  width: 100%;
  height: 180px;

  text-decoration: none;
  overflow: hidden;

}

.related-tip-card-image-container {
  width: 61.6%;
  height: 180px;
  object-fit: cover;
  margin: 0px;
  padding: 0px;
  overflow: hidden;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  
    margin: 0px;
    padding: 0px;
  }
}

.related-tip-card:hover .related-tip-card-image-container {
  img {
    transition: transform 0.3s ease;
    transform: scale(1.1);
  }
}

.related-tip-card-infos-container {
  width: 100%;
  height: 90px;

  margin: 0px;
  padding-top: 20px;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  align-items: center;
  flex-direction: column;

  row-gap: 5px;

  p {
    width: 100%;
    text-align: center;
    font-family: 'lobster';
    font-size: 25px;
    color: #094DA4;
    max-height: 60px;
    min-height: 60px;
    height: 60px;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

.related-tip-card-infos-container.text-white{
  p {
    color: white;
  }
}

.related-tip-card-date-container {
  color: #F49811;
  font-weight: 700;
  font-size: 13px;
}

@media screen and (min-width: 768px) {
  .related-tip-card {
    height: 150px;
  }

  .related-tip-card-image-container {
    width: 64%;
    height: 100%;
  }

  .related-tip-card-infos-container {
    padding-top: 33px;
    padding-left: 40px;
    padding-right: 40px;
  }
}