article {
	padding: 0;
	position: relative;
	margin: 0;
}
article:not(:last-of-type) {
	margin-bottom: 40px;
}
article img {
	width: 40%;
	display: inline-block;
}
article .info {
	display: inline-block;
	box-sizing: border-box;
	padding: 40px;
	width: 59%;
	position: absolute;
}
article h3 {
	font-family: 'Montserrat', sans-serif;
	margin-bottom: 10px;
}
article .excerpt {
	line-height: 1.5;
}
button {
    border: none;
    padding: 10px 20px;
    background: #2355a4;
    color: #fff;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 0.8em;
    font-family: 'montserrat', sans-serif;
    font-weight: normal;
}
button a {
	color: #fff;
}
button a:hover {
	color: #000;
}
@media only screen and (max-width: 1100px) {
  article .excerpt {
  	font-size: 0.8em;
  }
  article .info {
  	padding: 30px;
  }
}
@media only screen and (max-width: 950px) {
    article {
    	background: #eee;
    }
    article img {
    	width: 100%;
    	display: block;
    }
    article .info {
    	display: block;
    	position: relative;
    	width: 100%;
    }
}