/* Table of Contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Article Grid (container for article-blocks)
- Article Block
- Border Article Block
- Pull-Quote Article Block
- Color-Tile Article Block
- List Article Block
- Full-Bleed Article Block
- Text-Only Article Block
- List-Item Article Block
- Split Article Block (unfinished)
- Article Block with Video Icon in Title
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* Article Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.article-grid {}


/* Article Grid Row
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.article-grid .row {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}


/* Article Block
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.article-block {
	position: relative;
	/*background: pink;*/
	display: flex;
	flex: 0 0 auto;
	margin-top: 1.5rem;
	margin-bottom: 1.5rem;
}
.article-block__inner {
	width: 100%;
	position: relative;
	padding-bottom: 1.5rem;
}
.article-block__image {
	background-color: #efefef;
	/*background-color: #fafafa;*/
	height: 0px;
	width: 100%;
	padding-bottom: 50%;
	position: relative;
	background-size: cover;
	background-blend-mode: multiply;
	z-index: 2;
}
.article-block__image > a {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	cursor: pointer;
	z-index: 3;
}
.article-block .article-block__image:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0);
	transition: background-color .3s;
}
.article-block__image:hover:after {
	background-color: rgba(0,0,0,0.2);
	transition: background-color .3s;
}
.article-block__meta {
	margin-top: 1.5rem;
}
.article-block__category {
	display: block;
	text-transform: uppercase;
	line-height: 1;
	font-size: 1rem;
	letter-spacing: 0.5px;
	font-family: "VistaMedium", "Vista Sans OT", sans-serif;
	font-weight: 500;
	margin-bottom: 2px;
	color: #333;
	transition: color .2s;
	position: relative;
	z-index: 2;
	cursor: default;
}
.article-block__category:hover {
	/*cursor: pointer;*/
	/*color: #333;*/
	/*color: #CFB67A;*/
	transition: color .2s;
}
.article-block__title {
	font-size: 2rem;
	margin: 1rem 0 0.6666666667rem;
	font-family: "CaeciliaBold", "Caecilia LT Std", Georgia, serif;
	font-weight: bold;
	line-height: 1.25;
	color: #333;
	transition: color .2s;
	position: relative;
	z-index: 2;
}
.article-block__title i, .article-block__title em {
	font-family: "CaeciliaItalic", "Caecilia LT Std", Georgia, serif;
}
.article-block__title:hover {
	color: #CFB67A;
	transition: color .2s;
	cursor: pointer;
}
.article-block__title > a {
	color: inherit;
	text-decoration: inherit;
}
.article-block--large-headline .article-block__title {
	font-size: 2rem;
	margin: 1rem 0 0.6666666667rem;
	line-height: 1.25;
}
@media (min-width: 640px) {
	.article-block--large-headline .article-block__title {
		font-size: 3rem;
		margin: 1.25rem 0 1rem;
		line-height: 1.1;
		letter-spacing: -0.5px;
	}
}
@media (min-width: 1024px) {
	.article-block--large-headline .article-block__title {
		font-size: 4rem;
	}
}
.article-block__summary {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.4;
	font-family: "CaeciliaItalic", "Caecilia LT Std", Georgia, serif;
	font-style: italic;
	color: #666;
}
.article-block__byline {
	font-size: 1rem;
	color: #afafaf;
	margin: 1rem 0 0 0;
	display: none;

	font-family: "VistaRegular", "Vista Sans OT", sans-serif;
}
.article-block__link-overlay {
	/*display: none;*/
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
}


/* Border Article Block
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.article-block--border:after {
	content: "";
	display: block;
	width: calc(100% - 3rem);
	margin-left: 1.5rem;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1.5rem;
	border-bottom: 1px solid hsl(0, 0%, 92%);
}
.article-block--border:last-child:after {
	display: none;
}
@media (max-width: 1023px) {
	.article-block--border.sm-half-width {
		border-right: 1px solid hsl(0, 0%, 92%);
	}
	.article-block--border.sm-half-width:nth-child(2n+2) {
		border-right: none;
	}
	.article-block--border.sm-half-width:last-child:after {
		display: block;
	}
}
@media (min-width: 400px) and (max-width: 639px) {
	.article-block--border:after {
		width: calc(100% - 4rem);
		margin-left: 2rem;
	}
}
@media (min-width: 640px) {
	.article-block--border:after {
		width: calc(100% - 3rem);
		margin-left: 1.5rem;
	}
}
@media (min-width: 640px) and (max-width: 1023px) {
	.article-block--border {
		border-right: 1px solid hsl(0, 0%, 92%);
	}
	.article-block--border:nth-child(2n+2) {
		border-right: none;
	}
	.article-block--border.med-full-width {
		border-right: none;
	}
	.article-block--border:last-child:after {
		display: block;
	}
}
@media (min-width: 1024px) {
	.article-block--border {
		border-right: 1px solid hsl(0, 0%, 92%);
	}
	.article-block--border:after {
		display: none;
	}
	.article-block--border:last-child {
		border-right: none;
	}
}


/* Pull-Quote Article Block
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.article-block--pull-quote {}
.article-block--pull-quote .article-block__image {
	display: none;
}
.article-block__pull-quote > q, .article-block__pull-quote > span {
	font-size: 2rem;
	line-height: 1.4;
	font-family: "CaeciliaItalic", "Caecilia LT Std", Georgia, serif;
	font-style: italic;
	color: #CFB67A;
}
.med-full-width .article-block__pull-quote > q, .med-full-width .article-block__pull-quote > span {
	font-size: 4rem;
	line-height: 1.2;
}
@media (min-width: 1024px) {
	.article-block__pull-quote > q {
		font-size: 2rem;
		line-height: 1.4;
	}
	.article-block__pull-quote {
		padding: 0.26rem 0;
	}
	/* 6 Column */
	.article-block--pull-quote.col-6 .article-block__pull-quote {
		padding: 1rem 0;
	}
	.article-block--pull-quote.col-6 .article-block__pull-quote > q {
		font-size: 4rem;
		line-height: 1.2;
	}
	/* 9 Column */
	.article-block--pull-quote.col-9 .article-block__pull-quote {
		padding: 1.27rem 0;
	}
	.article-block--pull-quote.col-9 .article-block__pull-quote > q {
		font-size: 5rem;
		line-height: 1.2;
	}
}


/* Color-Tile Article Block
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.article-block--color-tile {
	padding-bottom: 0 !important;
}
.article-block--color-tile .article-block__inner {
	box-sizing: border-box;
	background-color: #CFB67A;
	padding: 1.5rem 1.5rem 3rem;
	flex: 1;
}
.article-block--color-tile .article-block__image {
	display: none;
}
.article-block--color-tile .article-block__meta {
	margin-top: 0;
}
.article-block--color-tile .article-block__category,
.article-block--color-tile .article-block__title,
.article-block--color-tile .article-block__summary {
	color: #fff;
}
.article-block--color-tile:not(.sm-half-width) {
	min-height: 18rem;
}
.article-block--color-tile .article-block__title {
	font-size: 2.5rem;
	line-height: 1.1;
}
@media (min-width: 640px) {
	.article-block--color-tile .article-block__title {
		font-size: 3rem;
		line-height: 1.1;
	}
}
@media (min-width: 1024px) {
	.article-block--color-tile.col-6 .article-block__title {
		font-size: 4rem;
		line-height: 1.1;
	}
}

/* List Article Block
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.article-block--list > .article-block__inner {
	background-color: hsl(0, 0%, 95%);
	overflow: hidden;
	padding: 2rem;
	box-sizing: border-box;
}
.article-block--list__title {
	font-size: 1.166666667rem;
	font-family: "VistaMedium", "Vista Sans OT", sans-serif;
	font-weight: 500;
	text-transform: uppercase;
	color: #999;
	margin: 0;
	margin-top: 1rem;
	margin-left: 4.5rem;
}
.article-block__article-list {
	margin-top: 1rem;
	overflow: hidden;
	list-style-type: none;
	margin-left: 0;
	margin-bottom: 0;
}
.article-block__article-list:first-child {
  counter-reset: customlistcounter;
}
.article-block__article-list > li {
	border-bottom: 1px solid hsl(0, 0%, 89%);
	counter-increment: customlistcounter;
	margin-bottom: 0;
	margin-left: 4.5rem;
}
.article-block__article-list > li:last-child {
	border-bottom: none;
}
/*.article-block__article-list > li:before {
  content: counter(customlistcounter) " ";
  float: left;
  width: 4rem;
  margin-left: 1rem;
  margin-bottom: 2rem;
  font-family: "VistaRegular", "Vista Sans OT", sans-serif;
  font-weight: 400;
  font-size: 4rem;
  line-height: 0.6;
  color: #CFB67A;
}*/
.article-block__article-list > li:before {
	content: counter(customlistcounter) " ";
	position: absolute;
	width: 4rem;
	margin-left: -4rem;
	/*margin-bottom: 2rem;*/
	font-family: "VistaRegular", "Vista Sans OT", sans-serif;
	font-weight: 400;
	font-size: 4rem;
	line-height: 0.6;
	color: #CFB67A;
}
.article-list__title {
	font-size: 1.666666667rem;
	margin-top: 2rem;
	margin-bottom: 0;
	transition: color .2s;
}
.article-list__title i, .article-list__title em {
	font-family: "CaeciliaItalic", "Caecilia LT Std", Georgia, serif;
}
.article-block__article-list > li.with-video-icon .article-list__title:after {
	content: " \f03d"; /* video camera */
	content: " \f01d"; /* play button in circle */
	content: " \f144"; /* play button in filled circle */
	font: normal normal normal 17px/1 FontAwesome;
	display: inline-block;
	margin-left: 1rem;
	color: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.article-list__title:hover {
	color: #CFB67A;
	transition: color .2s;
	cursor: pointer;
}
.article-list__summary {
	font-size: 1.33rem;
	line-height: 1.4;
	font-family: "CaeciliaItalic", "Caecilia LT Std", Georgia, serif;
	font-style: italic;
	color: #666;
}
@media (min-width: 1024px) and (max-width: 1299px) {
	.article-block--list__title {
		margin-left: 3rem;
	}
	.article-block__article-list {
		margin-top: 0;
	}
	.article-block__article-list > li {
		margin-left: 3rem;
		clear: both;
		padding-bottom: 2rem;
	}
	.article-block__article-list > li:before {
		width: 3rem;
		margin-left: -3.5rem;
		font-size: 3.5rem;
	}
	.article-list__title {
		font-size: 1.5rem;
	}
	.article-list__summary {
		display: none;
	}
}


/* Full-Bleed Article Block
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.article-block--full-bleed .article-block__inner {
	position: absolute;
	top: 0;
	bottom: 0;
}
.article-block--full-bleed .article-block__inner {
	width: calc(100% - 3rem);
}
@media (min-width: 400px) {
	.article-block--full-bleed .article-block__inner {
		width: calc(100% - 6rem);
	}
}
@media (min-width: 640px) {
	.article-block--full-bleed .article-block__inner {
		width: calc(100% - 3rem);
	}
}
.article-block--full-bleed .article-block__image {
	position: absolute;
	z-index: 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.article-block--full-bleed .article-block__image:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 40%,rgba(0,0,0,0.7) 100%);
	transition: background .2s;
}
.article-block--full-bleed .article-block__meta {
	position: absolute;
	bottom: 2rem;
	left: 2rem;
	right: 2rem;
}
@media (min-width: 640px) {
	.article-block--full-bleed .article-block__meta {
		bottom: 2rem;
	}
}
.article-block--full-bleed .article-block__category,
.article-block--full-bleed .article-block__title,
.article-block--full-bleed .article-block__summary,
.article-block--full-bleed .article-block__byline {
	color: #fff;
	transition: color .3s;
}

.article-block--full-bleed:hover .article-block__image:after {
	background-color: rgba(0,0,0,0.2);
	transition: background-color .3s;
}
/*.article-block--full-bleed .article-block__category:hover,*/
.article-block--full-bleed .article-block__title:hover {
	color: #CFB67A;
	transition: color .3s;
}


/* Text-Only Article Block
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.article-block--text-only .article-block__image {
	display: none;
}
.article-block--text-only .article-block__meta {
	margin-top: 0;
}


/* List-Item Article Block
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.article-block--list-item > .article-block__inner {
	border-bottom: 1px solid hsl(0, 0%, 92%);
}
.article-block--list-item .article-block__image {
	display: none;
}
.article-block--list-item .article-block__meta {
	margin-top: 0;
}


/* Split Article Block
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.article-block--split {}


/* Article Block with Video Icon in Title
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.article-block--with-video-icon .article-block__title:after {
	content: " \f03d"; /* video camera */
	content: " \f01d"; /* play button in circle */
	content: " \f144"; /* play button in filled circle */
	font: normal normal normal 21px/1 FontAwesome;
	display: inline-block;
	margin-left: 1rem;
	color: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
