.controls {
	text-align: center;
	margin-bottom: 80px;
}

.controls a { border: 2px solid #000; }

.articles:empty { display: none; }
.articles:not(:empty) ~ .no_articles { display: none; }

.no_articles {
	padding: 40px 20px;
	font-size: 20px;
	color: #777;
	text-align: center;
}

.articles {
	max-width: 1100px;
	padding-left: 20px;
	padding-right: 20px;
	margin: 0 auto 80px auto;
	
	width: calc(100% + 40px);
    -webkit-transform: translate(-20px, -20px);
	   -moz-transform: translate(-20px, -20px);
	    -ms-transform: translate(-20px, -20px);
	     -o-transform: translate(-20px, -20px);
	        transform: translate(-20px, -20px);
    font-size: 0;
}

.articles .thumb {
	display: block;
	padding-bottom: 50%;
	height: 0;
	margin-bottom: 20px;
	
	background: no-repeat center center;
	-webkit-background-size: contain;
	   -moz-background-size: contain;
	    -ms-background-size: contain;
	     -o-background-size: contain;
	        background-size: contain;
}

.articles article {
	margin: 20px;
	display: inline-block;
	vertical-align: top;
	width: calc(33.3333% - 40px);
}

@media (max-width: 768px) {
	.articles article { width: calc(50% - 40px); }
}

@media (max-width: 500px) {
	.content h1 { float: none !important; }
	.articles article { width: calc(100% - 40px); }
}

@media (min-width: 501px) {
	.articles article.noimage::before {
		content: '';
		display: block;
		width: 100%;
		height: 0;
		padding-bottom: 50%;
		margin-bottom: 20px;
	}
}

.articles article h2 {
	font-weight: bold;
	font-style: oblique;
	font-size: 1.1rem;
	line-height: 1.2;
	color: #67d2df;
	margin: 0 0 10px;
}

.articles article .date {
	font-size: 0.9rem;
	line-height: 1.2;
	margin-bottom: 20px;
}

.articles article p {
	font-size: 0.9rem;
	line-height: 1.2;
	margin-bottom: 10px;
}

.articles h2 a {
	position: relative;
	display: inline-block;
}

.articles h2 a:after {
	content: '';
	display: inline-block;
	position: absolute;
	bottom: -5px;
	height: 5px;
	width: 0%;
	left: 0;
	background-color: #e9e9e9;
	
	transition: width 300ms ease-in-out;
}

.articles h2 a:hover::after { width: 100%; }

.articles .more {
	font-size: 0.9rem;
	line-height: 1.2;
	color: #67d2df !important;
}

.articles .more::after { content: '...'; }

.articles .more:hover { text-decoration: underline; }