/* WECHANGE PROJECTS */
.wechange-tiles {
	display: flex !important;
	width: 100%;
}
.wechange-tiles article {
	flex: 1;
    padding: 19px;
    border: 1px solid #d8d8d8;
    background-color: #fff;
    word-wrap: break-word;
	display: block;
	float: left;
	margin: 0;
	position: relative;
	margin-bottom: 0;
	margin-left: -1px;
}
.wechange-tiles article:first-child {
	margin-left: 0;
}
.wechange-tiles article .box-shadow-overlay {
	box-shadow: inset 0px 0px 18px 0px rgba(0,0,0,0.3);
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.wechange-tiles article:hover .box-shadow-overlay {
	visibility: visible;
}
.wechange-tiles article h2 {
	font-size: 16px;
}

.wechange-tiles.grid {
	flex-wrap: wrap;
}
.wechange-tiles.row article {
	display: none;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
	.wechange-tiles.row article:nth-child(-n+3) {
		display: block;
	}
	.wechange-tiles.grid article {
		flex: 1 0 100%;
	}
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
	.wechange-tiles.row article:nth-child(-n+3){
		display: block;
	}
	.wechange-tiles.grid article {
		flex: 1 0 100%;
	}
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	.wechange-tiles.row article:nth-child(-n+4){
		display: block;
	}
	.wechange-tiles.grid article {
		flex: 1 0 25%;
	}
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
	.wechange-tiles.row article:nth-child(-n+5){
		display: block;
	}
	.wechange-tiles.grid article {
		flex: 1 0 20%;
	}
}