
/**/

.pager {
	margin-top: 20px;
}


.pager a {
	display: inline-block;
	border: 1px solid #ddd;
	padding: 10px;
}

.pager a:hover {
	background: #f1f1f1;
}

.pager a:focus {
	background: #f1f1f1;
}

/**/

.articles {
	margin: -15px 0;
}

.article {
	border-left: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	
	-webkit-backface-visibility: hidden; /* Chrome, Safari, Opera */
    backface-visibility: hidden;
}

.article a {
	color: inherit;
	text-decoration: none;
}

.article .pic {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.article .pic:before {
	display: block;
	content: '';
	padding-bottom: 56.25%;
}

.article .pic-holder {
	position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

.article img {
	width: 100%;
	display: block;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
}

.article:hover img {
	-webkit-transform: scale3d(1.1,1.1,1);
	transform: scale3d(1.1,1.1,1);
}

.article figcaption {
	height: 200px;
	overflow: hidden;
	padding: 15px;
}

.article h2 {
	font-size: 1.2em;
	margin-bottom: 1rem;
	font-weight: bold;
}