.listA .container{
    display: flex;
    flex-wrap: wrap;
  }
  
  .listA article{
    flex: 1 1 250px;
    display: flex;
  }
  
  .listA h2 {
    font-size: 18px;
  }
  
  .listA p {
    font-size: 14px;
    opacity: 0.8;
  }
  
  .listA .photo {
    min-height: 150px;
    background-position: center;
    background-size: cover;
  }
  
  .listA a {
    flex: 1;
    margin: 10px;
    display: block;
    border: solid 1px #ddd;
    color: inherit;
    text-decoration: none;
  }
  
  .listA a:hover {
    opacity: 0.8;
  }
  
  .listA .text {
    margin: 10px;
  }