.main {
  width: 1000px;
  margin:0 auto;
  font-family: 'Open Sans', sans-serif;
  margin-top: 50px;
}
.main > * {
  display: inline-block;
  vertical-align: top;
  width: 300px;
  text-decoration: none;
}
a:nth-of-type(2) {
  margin:0 50px;
}
img {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
h2 {
  font-size: 18px;
  font-weight: 700;
  color:#051f3a;
}
article:hover h2 {
  color:#e1001a;
}
span {
  font-size: 13px;
  text-transform: uppercase;
  background:#eee;
  color:#686868;
  display: inline-block;
  padding:5px;
}

@media screen and (max-width:1000px) {
  .main {
    width: 50%;
  }
  .main > * {
    display: block;
  }
  a:nth-of-type(2) {
    margin:30px 0;
  }
  span {
    display: none;
  }
  article {
    position: relative;
  }
  h2 {
    position: absolute;
    z-index:1;
    bottom:0;
    font-size: 13px;
    font-weight: 500;
    color:#051f3a;
    width: 80%;
    background:white;
    padding:10px;
    border-radius:0 5px 5px 0;
    box-shadow:5px 0 5px rgba(0,0,0,0.15);
  }
}