/* ==========================================================================
   Blog styles — extends main.css, same color/type system, does not modify it
   Colors reused from main.css: #2a93d8 (blue), #60686b (text), #2d2d2d (headings)
   ========================================================================== */

.blog-container {
	background-color: #fff;
}

.blog-container .wrapper {
	padding-bottom: 100px;
}

/* Page intro under the header, same spirit as .callout */
.blog-intro {
	text-align: center;
	border-bottom: 1px solid #dadada;
	margin-bottom: 50px;
	padding: 30px 0;
}
.blog-intro h2 {
	margin-bottom: 10px;
}
.blog-intro p {
	font-size: 20px;
	font-weight: 300;
	color: #4d5356;
	line-height: 30px;
	margin: 0;
}

/* Listing grid */
.post-list {
	max-width: 800px;
	margin: 0 auto;
}
.post-list li {
	border-bottom: 1px solid #dadada;
	padding: 30px 0;
}
.post-list li:first-child {
	padding-top: 0;
}
.post-list h3 {
	margin: 0 0 10px;
}
.post-list h3 a {
	color: #2d2d2d;
}
.post-list h3 a:hover {
	color: #2a93d8;
}
.post-list .post-meta {
	color: #969ea1;
	font-size: 14px;
	margin-bottom: 12px;
	display: block;
}
.post-list p {
	color: #60686b;
	margin: 0 0 12px;
}
.post-list .read-more {
	color: #2a93d8;
	font-weight: bold;
	font-size: 14px;
}
.post-list .read-more:hover {
	color: #f35000;
}

/* Single article */
.article {
	max-width: 760px;
	margin: 0 auto;
}
.article .post-meta {
	color: #969ea1;
	font-size: 14px;
	display: block;
	margin-bottom: 10px;
}
.article h2 {
	margin-top: 0;
}
.article h3 {
	margin-top: 40px;
}
.article p {
	color: #4d5356;
}
.article ul, .article ol {
	margin: 0 0 20px;
}
.article ul li {
	list-style-type: disc;
	margin-left: 1.3em;
	padding: 3px 0;
	color: #4d5356;
}
.article .cta-box {
	background: #edeef0;
	border-radius: 4px;
	padding: 30px;
	text-align: center;
	margin: 50px 0 20px;
}
.article .cta-box p {
	font-size: 18px;
	margin-bottom: 5px;
}
.article .back-link {
	display: inline-block;
	margin-bottom: 30px;
	font-size: 14px;
	font-weight: bold;
	color: #b6bcbf;
}
.article .back-link:hover {
	color: #1a1a1a;
}

@media only screen and (max-width: 768px) {
	.blog-intro p {
		font-size: 18px;
		line-height: 26px;
	}
}
