*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;    
  }
  
  
  .cards {
    padding: 3rem;  
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .card {
    display: flex;
    flex-direction: column;
    flex: 1 0 300px;
    max-width: 450px;
    background: #FAFAFA;
    color: #000000;
    border-radius: 25px;
    box-shadow: 2px 2px 5px rgba(0,0,0,.3);
    text-decoration: none;  
    font-size: 1rem;
    overflow: hidden;
    transition: transform 200ms, box-shadow 200ms;
  }
  
  
  
  .card .card__image {
    flex: 0 0 150px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  .card .content {
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .card .card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: .5rem;
  }
  
  .card .card__snippet {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: .5rem;
  }
  
  .card .card__readmore {
    text-transform: uppercase;  
    text-align: right;
    font-weight: 600;
    margin-top: auto;
  }
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 2px 2px 15px rgba(0,0,0,.3);
  }