/* Tail box */

.tail-boxes {
	margin: 0 -15px;
	padding-bottom: 40px;
	overflow: hidden;
	background-color: #f3f3f3;
}
.tail-boxes__wrapper { overflow: hidden; margin: 0px 7px 7px 7px; }
.tail-boxes__item {
	position: relative;
	padding: 10px 15px;
}
.tail-boxes__headline {
	padding-bottom: 12px;
	margin-bottom: 12px;
	line-height: 1.15;
	font-size: 26px;
	font-weight: 200;
	border-bottom: 1px solid #222;
}
.tail-boxes__headline > * { font: inherit; }
.tail-boxes__headline__cut { display: block; }

/* Variants */
.tail-boxes--grid-3x .tail-boxes__item {
	float: left;
	width: 33.33333%;
}
.tail-boxes--grid-3x .tail-boxes__item:after {
	content: '';
	position: absolute;
	right: -3px; top: 0; bottom: -400px; 
	width: 6px;
	background-color: #fff;
}
.tail-boxes--grid-3x .tail-boxes__item:last-child:after { display: none; } 

@media only screen and (max-width: 820px) {
	.tail-boxes--grid-3x .tail-boxes__item {
		float: none;
		width: 100%;
		margin-bottom: 20px;
		border-bottom: 1px solid #fff;
	}
	.tail-boxes--grid-3x .tail-boxes__item:after { display: none; }
	.tail-boxes--grid-3x .tail-boxes__headline__cut {
		display: inline;
	}
}