
.article-card {
    /* width: 350px;  220px;*/
    /* height: 15rem; */
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 300ms;
  }
  
  .article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  }
  
  .article-card .vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(transparent 50%, rgba(0, 0, 0, 0.692)); 
    filter: blur(50px);
  }
  
  .article-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .article-card .content {
    box-sizing: border-box;
    width: 100%;
    position: absolute;
    padding: 30px 20px 20px 20px;
    height: auto;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    z-index: 1;
    
    opacity: 0;
    transition: all 300ms;
    transform: translateY(20px);
  }
  
  @media (hover: hover) {
    /* when hover is supported */
    .article-card:hover .content {
      opacity: 1;
      transform: translateY(0px);
    }
  }
  @media (hover: none) {
    /* when hover is not supported */
    /* .article-card .content {
      opacity: 1;
      transform: translateY(0px);
    } */
  
      /* for mobile */
    .article-card .inview {
      opacity: 1;
      transform: translateY(0px);
    }
  }
  
  
  .article-card .date,
  .article-card .title {
    margin: 0;
  }
  
  .article-card .date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
  }
  
  .article-card .title {
    font-size: 17px;
    color: #fff;
  }