/* START: News article styling */
.article {
	/*margin-top: 100px;*/
	margin-bottom: 2em;
}

.article h1 {
	text-align: center;
	margin-bottom: 1em;
}
.article .article-intro {
	font-size: 1.5em;
	font-style: italic;
	line-height: 1.292em;
	font-weight: 500;
	text-align: center;
	color: var(--colour-dark-navy);
}

.article .article-byline {
	margin-bottom: 18px;
	color: var(--colour-dark-navy);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	font-style: italic;
	text-align: center;
}

.article .article-byline .author-name {
	border-right: 2px solid var(--colour-dark-navy);
	padding-right: 10px;
	font-weight: 500;
	font-style: normal;
	text-transform: uppercase;

}

.article .article-byline .date {
	padding-left: 10px;
	font-weight: 500;
	font-style: normal;
}

.article .share-article-widget {
	margin-bottom: 43px;
	text-align: center;
	display: flex;
	justify-content: center;
}

.article .share-article-widget .a2a_dd {
	display: none;
}

.article .share-article-widget .a2a_default_style a {
	padding: 0 6px;
}

.article .share-article-widget .a2a_svg.a2a_s__default.a2a_s_twitter {
	background-color: var(--colour-dark-navy) !important;
	border-radius: 100%;
	padding: 3px;
}

.article .share-article-widget .a2a_svg.a2a_s__default.a2a_s_linkedin {
	background-color: var(--colour-dark-navy) !important;
	border-radius: 100%;
	padding: 3px;
}

.article .share-article-widget .a2a_svg.a2a_s__default.a2a_s_facebook {
	background-color: var(--colour-dark-navy) !important;
	border-radius: 100%;
	padding: 3px;
}

.article .share-article-widget .a2a_svg.a2a_s__default.a2a_s_email {
	background-color: var(--colour-dark-navy) !important;
	border-radius: 100%;
	padding: 3px;
}

.article .share-article-widget .a2a_svg.a2a_s__default.a2a_s_instagram {
	background-color: var(--colour-dark-navy) !important;
	border-radius: 100%;
	padding: 3px;
}

.article .article-hero-image-wrap {
	margin-bottom: 40px;
	position: relative;
	/*padding-bottom: var(--asr-65);*/
	width: 100%;
	/*height: 0;*/
	/*overflow: hidden;*/
	max-width: 100%;
}

.article .article-hero-image-wrap .absolute-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.article .article-hero-image-wrap .absolute-fill > div.frame {
	height: 100%;
}

.article .article-hero-image-wrap .ce-outer,
.article .article-hero-image-wrap .ce-inner,
.article .article-hero-image-wrap .ce-row,
.article .article-hero-image-wrap .ce-column {
	width: 100%;
}

.article .article-hero-image-wrap img {
	/*display: none;*/
	width: 100%;
	max-width: 100%;
	height: auto;
}

.article .article-hero-image-wrap figcaption {
	margin-top: .6em;
	font-style: italic;
	font-size: .9em;
}

.article .main-content {
	font-size: 1.1em;
	line-height: 1.55em;
	font-weight: 400;
}

.article .blockqoute-wrapper {
	margin: 30px 0;
	padding: 5px 0;
	border-top: 1px solid #EEECE4;
	border-bottom: 1px solid #EEECE4;
}

.article blockquote {
	border-radius: 3px;
	position: relative;
	text-align: center;
	padding: 1rem 1.2rem;
	width: 70%;
	color: var(--colour-dark-navy);
	margin: 40px auto 40px;
}

.article blockquote p:last-child {
	margin-bottom: 0;
}

/* -- create the quotation marks -- */
.article blockquote:before,
.article blockquote:after {
	position: absolute;
}

.article blockquote:before {
	content: url(../images/icons/icon-quote-mark.svg);
	left: 50%;
	transform: translateX(-50%);
	top: -25px;
}

.article blockquote:after {
	content: url(../images/icons/icon-quote-mark-inverted.svg);
	left: 50%;
	transform: translateX(-50%);
	bottom: -30px;
}
/* END: News article styling */

/* START: News teasers */
.news-teasers .card-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-left: -15px;
	margin-right: -15px;
}

.news-teasers .card-grid .card-no-bs {
	flex: 0 0 calc(50% - 30px);
	position: relative;
	margin: 0 15px 40px;
	padding: 0;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	text-decoration: none;
	background: white;
}

.news-teasers .card-grid.three-col-cards .card-no-bs {
	flex: 0 0 calc(33.33% - 30px);
}

.news-teasers .card-grid .card-no-bs:hover {
	box-shadow: 3px 3px 25px rgba(0, 0, 0, 0.25);
}

.news-teasers .card-grid .card-no-bs .card-text {
	padding-bottom: 2em;
	font-weight: 400;
	line-height: 1.5625em;
	color: var(--colour-dark-grey);
}

.news-teasers .card-grid .card-no-bs .thumb-wrapper {
	position: relative;
	padding-bottom: var(--asr-70);
	height: 0;
	overflow: hidden;
	max-width: 100%;
}

.news-teasers .card-grid .card-no-bs .thumb-wrapper .absolute-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.news-teasers .card-grid .card-no-bs .thumb-wrapper .absolute-fill img {
	display: none;
}

.news-teasers .card-no-bs .card-body {
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1.1em 1.3em 0;
}

.news-teasers .card-no-bs .card-body p:last-child {
	margin-bottom: 0;
}

.news-teasers .card-no-bs .article-date {
	margin-bottom: 0.875em;
	font-size: .8em;
	font-weight: 600;
}

.news-teasers .card-no-bs .card-title {
	color: var(--colour-dark-navy);
	font-family: 'Montserrat', sans-serif;
	font-size: 1.333em;
	font-weight: 900;
	line-height: 1.2em;
	font-style: normal;
}

.news-teasers .card-no-bs .card-footer {
	margin-top: .5em;
	background: none;
	border: none;
	padding: 0 15px 15px;
}

.news-teasers .card-no-bs .card-footer > a i {
	margin-left: 8px;
	margin-right: 0;
}

.news-teasers h2 {
	text-align: center;
	margin-bottom: 1.08em;
}

.news-teasers h2 > span {
	position: relative;
}

.news-teasers h2 > span:after {
	content: ' ';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 27px;
	border-bottom: 5px solid var(--colour-orange);
	border-radius: 9px;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}

@media only screen and (max-width: 850px) {
	.news-teasers .card-grid.three-col-cards .card-no-bs {
		flex: 0 0 calc(50% - 30px);
	}
}

@media only screen and (max-width: 600px) {
	.news-teasers .card-grid.three-col-cards .card-no-bs {
		flex: 0 0 calc(100% - 30px);
		margin: 0 15px 30px;
	}
}

/* END: News teasers */