/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.page,
.page__background,
.page__content {
	background: transparent;
}

.article-list {
	background: transparent
}
.article-list__article {
	border-bottom: solid 1px #e9e9e9;
	padding-left: 20px;
	background-color: white;
}
.article-list__article .ripple--material {
	z-index: 1;
}
.article-list__article > div.list-item__center {
	border: 0;
	background: transparent;
	max-width: 100%;
	padding: 20px 6px 18px 0;
}

.article-list__article:first-child > div.list-item__center {
	padding: 20px 20px 18px 0;
}
.article-list__wrap {
	display: flex;
	flex-direction: row;
	max-width: 100%;
	width: 100%;
	align-items: flex-start;
}

.article-list__article:first-child .article-list__wrap {
	flex-direction: column;
}

.article-list__wrap figure {
	flex: 0 1 36%;
	max-width: 174px;
	padding-top: 32%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.article-list__article:first-child .article-list__wrap figure {
	flex: 1 0 100%;
	width: 100%;
	max-width: 100%;
	height: auto;
	padding-top: 60%;
}
.article-list__wrap figure img {
	width: 100%;
	height: auto;
}
.article-list__content {
	flex: 1 1 64%;
	padding: 0 14px 0 14px;
}
.article-list__article:first-child .article-list__content {
	flex: 1 1 auto;
	padding: 18px 0 0;
}
.article-list__content h2 {
	font-weight: bold;
	line-height: normal;
	margin-top: 0;
}

.article-list__content p {
	overflow: hidden;
	position: relative;
	line-height: 1.2em;
	max-height: 3.6em;
	text-align: justify;
	margin-right: -1em;
	padding-right: 1em;
	color: #666;
}
/*.article-list__content p:before {*/
	/*content: '...';*/
	/*position: absolute;*/
	/*right: 0;*/
	/*bottom: 0;*/
/*}*/
/*.article-list__content p:after {*/
	/*content: '';*/
	/*position: absolute;*/
	/*right: 0;*/
	/*width: 1em;*/
	/*height: 1em;*/
	/*margin-top: 0.2em;*/
	/*background-color: white;*/
	/*z-index: 0;*/
/*}*/

.article-list__meta {
	margin-top: 14px;
	font-weight: bold;
	text-transform: uppercase;
	color: #666;
}

.article-list__meta a {
	color: #ff0033;
	text-decoration: none;
	display: inline-block;
}

.article-list__meta span {
	display: inline-block;
	margin-left: 10px;
}
.article-list__meta span::before {
	display: inline-block;
	width: 3px;
	height: 3px;
	content: "";
	border-radius: 50%;
	background: #666;
	margin-right: 10px;
	position: relative;
	top: -3px;
}

#loading-more {
	position: fixed;
	bottom: 0;
	width: 80px;
	height: 80px;
	left: 50%;
	margin-left: -40px;
}

@media (min-width: 600px) {
	.article-list {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.article-list__article {
		flex: 0 0 50%;
		position: relative;
	}
	.article-list__article:first-child {
		flex: 0 0 100%;
	}
	.article-list__article:nth-child(2n+1)::before {
		content: "";
		background: #e7e7e7;
		position: absolute;
		width: 1px;
		height: auto;
		left: 0;
		top: 20px;
		bottom: 20px;
	}
	.article-list__article > div.list-item__center {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		padding: 20px 18px 18px 0;
		max-width: 100%;
	}
	.article-list__wrap {
		display: block;
	}
	.article-list__wrap figure {
		width: 100%;
		max-width: 100%;
		padding-top: 60%;
		position: relative;
		overflow: hidden;
		flex: 1 1 auto;
	}
	.article-list__article:first-child .article-list__wrap figure {
		height: auto;
	}
	.article-list__wrap figure img {
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		width: auto;
		min-width: 100%;
	}
	.article-list__article:first-child .article-list__wrap figure img {
		height: auto;
		width: 100%;
		position: relative;
	}
	.article-list__content {
		flex: 1 1 auto;
		padding: 18px 0 0;
		text-align: center;
	}
	.article-list__content p {
		text-align: center;
	}
}

@media (min-width: 768px) {
	.article-list__article:first-child {
		flex: 0 0 50%;
		max-width: 50%;
	}
	.article-list__article:nth-child(2) {
		flex: 0 0 50%;
		border: 0;
		max-width: 50%;
	}
	.article-list__article {
		flex: 0 0 33%;
		max-width: 33%;
	}
	.article-list__article::before {
		content: "";
		background: #e7e7e7;
		position: absolute;
		width: 1px;
		height: auto;
		left: 0;
		top: 20px;
		bottom: 20px;
	}
	.article-list__article:nth-child(3n)::before {
		display: none;
	}
	.article-list__meta {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 100%;
		padding-right: 5px;
	}
}
