.grid {
	display: flex;
	flex-wrap: wrap;
	margin: -5px;
	list-style: none;
	padding: 0;
}
	.grid__item {
		box-sizing: border-box;
		padding: 5px;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}
	.grid--5 .grid__item {
		flex: 0 0 20%;
		max-width: 20%;
	}

.beat-box {
	display: block;
	width: 100%;
	position: relative;
	text-decoration: none;
}
	.beat-box__img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: center/cover no-repeat;
	}
	.beat-box__info {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 30px 10px;
		position: relative;
		z-index: 1;
		background: rgba(0,0,0,.2);
		transition: background .3s ease;
	}
		.beat-box__info h4 {
			color: #FFF;
			text-transform: uppercase;
			text-align: center;
			font-size: 16px;
			font-family: Century Gothic;
			margin: 0;
		}
		.beat-box__info h4 small {
			font-size: 12px;
		}
	.beat-box:hover .beat-box__info {background: rgba(0,0,0,.33);}
		.beat-box:hover .beat-box__info h4 {text-decoration: underline;}
