.article-tile {
	background-color: #333;
	display: inline-block;
	position: relative;
	width:100%;
}

.article-tile:after {
	content: '';
	position: absolute;
	transition: ease 500ms;
	background-color: rgba(154,65,186, 0.75);
	height: 0%;
	width: 100%;
	bottom: 0;
	left: 0;
	mix-blend-mode: hard-light;
}

.article-tile:hover:after, .article-tile:focus:after {
	height: 100%;
}

.article-tile__content {
	padding: 0 18px 0 20px;
	position: absolute;
	bottom: 25px;
	z-index: 2;
	min-height: 150px;
}

.article-tile__title {
	color: #fff;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1;
	margin: 3rem 0 0;
	text-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
	text-transform: uppercase;
}

.article-title__category {
	background-color: rgba(0, 0, 0, 0.25);
	color: rgba(255, 255, 255, 0.75);
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.1;
	padding: 5px 15px 4px;
	margin-top: 3px;
	text-transform: uppercase;
}

.article-tile__image {
	filter: brightness(90%);
	overflow: hidden;
	transition: ease 500ms;
	width: 100%;
}

a:hover .article-tile__image,
  a:focus .article-tile__image {
	filter: brightness(50%);
}

a.article-tile--blur:hover .article-tile__image,
  a.article-tile--blur:focus .article-tile__image {
	filter: brightness(50%) blur(5px) grayscale(100%);
}

body {
	font-family: sans-serif;
}