#container > article {
	position: relative;
	padding-top: 150px;
	
	isolation: isolate;
}
@media (min-width: 900px)	 { #container > article { margin-bottom: 100px; } }
@media (max-width: 899.99px) { #container > article { margin-bottom: 75px; } }

/*------------------------------------------------------------------------------------------------------------------------*/

#container > article > .accent {
	position: relative; z-index: 1;
	width: 100%; max-width: 1360px;
	margin: 0 auto;
	margin-bottom: max(-165px, -12%);
	
	background-color: #E4EEF4;
	
	--mask-image: url("../../images/logo.svg");
	--mask-position: top center;
	--mask-repeat: no-repeat;
	--mask-size: contain;
	
	-webkit-mask-image: var(--mask-image);
	mask-image: var(--mask-image);
	-webkit-mask-position: var(--mask-position);
	mask-position: var(--mask-position);
	-webkit-mask-repeat: var(--mask-repeat);
	mask-repeat: var(--mask-repeat);
	-webkit-mask-size: var(--mask-size);
	mask-size: var(--mask-size);
	
	opacity: .3;
}
#container > article > .accent:before {
	content: '';
	display: block;
	padding-top: 21%;
}

/*------------------------------------------------------------------------------------------------------------------------*/

#container > article > .content-wrapper .columns {
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
	row-gap: 50px;
}
@media (min-width: 900px) {
	#container > article > .content-wrapper .columns {
		column-gap: 50px;
		padding: 50px;
	}
}
@media (max-width: 899.99px) {
	#container > article > .content-wrapper .columns {
		column-gap: 25px;
		padding: 25px;
	}
}

#container > article > .content-wrapper .columns > .column {
	flex-grow: 1;
	flex-shrink: 1;
}
#container > article > .content-wrapper .columns > .column:first-child { flex-basis: 500px; }
#container > article > .content-wrapper .columns > .column:last-child { flex-basis: 300px; }

/*------------------------------------------------------------------------------------------------------------------------*/

#container > article > .content-wrapper {
	display: flex;
	flex-direction: column;
	row-gap: 50px;
}
#container > article > .content-wrapper > * {
	border-radius: 30px;
	filter: drop-shadow(0 0 20px rgba(0,0,0,.2));
}

/*------------------------------------------------------------------------------------------------------------------------*/

#container > article > .content-wrapper > header {
	position: relative;
	height: 650px; overflow: hidden;
	
	isolation: isolate;
}
#container > article > .content-wrapper > header > .cover {
	position: absolute; top: 0; left: 0; z-index: -1;
	height: 100%; width: 100%;
}
#container > article > .content-wrapper > header > .meta {
	position: absolute; bottom: 0; left: 0;
	max-height: 100%; width: 100%;
	align-items: flex-end;
	
	background-image: linear-gradient(to top, rgba(0,0,0,.7), transparent);
}
#container > article > .content-wrapper > header > .meta > .title { margin-bottom: -10px; }
#container > article > .content-wrapper > header > .meta > .title > div {
	font-size: 26px;
	font-weight: 500;
}
#container > article > .content-wrapper > header > .meta > .title > h1 {
	margin: 0;
	
	line-height: 130%;
	font-weight: 500;
}
#container > article > .content-wrapper > header > .meta > .categories {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	column-gap: 10px;
	row-gap: 5px;
}
#container > article > .content-wrapper > header > .meta > .categories > .category {
	display: flex; height: 32px;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0 15px;
	
	border-radius: 16px;
	
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	
	transition: filter .2s ease-out;
}
#container > article > .content-wrapper > header > .meta > .categories > .category:hover {
	filter: brightness(80%);
}
@media (min-width: 900px) {
	#container > article > .content-wrapper > header > .meta { padding-top: 75px; }
	#container > article > .content-wrapper > header > .meta > .title > h1 { font-size: 36px; }
}
@media (max-width: 899.99px) {
	#container > article > .content-wrapper > header > .meta { padding-top: 50px; }
	#container > article > .content-wrapper > header > .meta > .title > h1 { font-size: 32px; }
}

/*------------------------------------------------------------------------------------------------------------------------*/

#container > article > .content-wrapper > .post-body-wrapper {
	background-color: #FFF;
	color: #333;
}
@media (min-width: 900px) {
	#container > article > .content-wrapper > .post-body-wrapper {
		column-gap: 50px;
		padding: 75px 50px;
	}
}
@media (max-width: 899.99px) {
	#container > article > .content-wrapper > .post-body-wrapper {
		column-gap: 25px;
		padding: 50px 25px;
	}
}

/*------------------------------------------------------------------------------------------------------------------------*/

#container > article > .content-wrapper > .post-body-wrapper > .content-column {
	position: relative; z-index: 1;
	display: flex;
	flex-direction: column;
	row-gap: 50px;
}

/*------------------------------------------------------------------------------------------------------------------------*/

#container > article > .content-wrapper > .post-body-wrapper > .content-column > div { font-size: 16px; }

#container > article > .content-wrapper > .post-body-wrapper > .content-column > div h2 {
	margin: 45px 0 25px;
	
	font-size: 26px;
	font-weight: 600;
}
#container > article > .content-wrapper > .post-body-wrapper > .content-column > div h2:first-child { margin-top: 0; }
#container > article > .content-wrapper > .post-body-wrapper > .content-column > div h3 {
	margin: 30px 0 20px;
	
	font-size: 22px;
	font-weight: 600;
}
#container > article > .content-wrapper > .post-body-wrapper > .content-column > div h4 {
	margin: 25px 0 15px;
	
	font-size: 18px;
	font-weight: 500;
}

#container > article > .content-wrapper > .post-body-wrapper > .content-column > div strong { font-weight: 500; }

#container > article > .content-wrapper > .post-body-wrapper > .content-column > div .cta-link {
	font-weight: 500;
	color: #3A4A65;
}

#container > article > .content-wrapper > .post-body-wrapper > .content-column > div ul {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}
#container > article > .content-wrapper > .post-body-wrapper > .content-column > div ul:last-child { margin-bottom: 0; }
#container > article > .content-wrapper > .post-body-wrapper > .content-column > div ul > li {
	--padding: 35px;
	
	position: relative;
	padding-left: var(--padding);
	
	line-height: 160%;
}
#container > article > .content-wrapper > .post-body-wrapper > .content-column > div ul > li:not(:last-child) { margin-bottom: 10px; }
#container > article > .content-wrapper > .post-body-wrapper > .content-column > div ul > li:before {
	content: '•';
	position: absolute; left: 0;
	display: inline-block; width: var(--padding);
	text-align: center;
}

#container > article > .content-wrapper > .post-body-wrapper > .content-column > div p {
	margin: 20px 0;
	line-height: 160%;
}
#container > article > .content-wrapper > .post-body-wrapper > .content-column > div p:last-child { margin-bottom: 0; }

/*------------------------------------------------------------------------------------------------------------------------*/

#container > article > .content-wrapper > .post-body-wrapper > .content-column > div .gallery {
	padding: 0 25px;
	margin: 50px 0;
}
#container > article > .content-wrapper > .post-body-wrapper > .content-column > div .gallery:last-child { margin-bottom: 0; }
#container > article > .content-wrapper > .post-body-wrapper > .content-column > div .gallery .swiper-slide {
	position: relative;
	height: 400px; width: auto; overflow: hidden;
	
	border-radius: 30px;
}
#container > article > .content-wrapper > .post-body-wrapper > .content-column > div .gallery .swiper-slide > .ipnetwork-media { height: 100%; }
#container > article > .content-wrapper > .post-body-wrapper > .content-column > div .gallery .swiper-slide > .ipnetwork-media > .media-element { height: 100%; }
#container > article > .content-wrapper > .post-body-wrapper > .content-column > div .gallery .swiper-slide > .ipnetwork-media > .media-element > img { height: 100%; }
#container > article > .content-wrapper > .post-body-wrapper > .content-column > div .gallery .swiper-slide > .overlay {
	position: absolute; bottom: 0; left: 0;
	max-height: 100%; width: 100%;
	padding: 50px 25px 25px;
	
	background-image: linear-gradient(to top, rgba(0,0,0,.5), transparent);
	
	font-size: 24px;
	font-weight: 500;
	color: #FFF;
}
@media (min-width: 900px) {
	#container > article > .content-wrapper > .post-body-wrapper > .content-column > div .gallery {
		margin-left: calc(-1 * (min(100vw, 1200px) - 50px - 100%));
		margin-right: -50px;
	}
}
@media (max-width: 899.99px) {
	#container > article > .content-wrapper > .post-body-wrapper > .content-column > div .gallery {
		margin-left: -25px;
		margin-right: -25px;
	}
}

/*------------------------------------------------------------------------------------------------------------------------*/

#container > article > .content-wrapper > .post-body-wrapper > .content-column > footer {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 10px;
}
#container > article > .content-wrapper > .post-body-wrapper > .content-column > footer:empty { display: none; }
#container > article > .content-wrapper > .post-body-wrapper > .content-column > footer > .cta {
	--btn-hover-color-background: #BCD5E4;
}
#container > article > .content-wrapper > .post-body-wrapper > .content-column > footer > .download-btn {
	--icon-transform: rotate(90deg);
}
#container > article > .content-wrapper > .post-body-wrapper > .content-column > footer > .internal-link {}
#container > article > .content-wrapper > .post-body-wrapper > .content-column > footer > .external-link {
	--icon-image: url("../../images/icons/external.svg");
}

/*------------------------------------------------------------------------------------------------------------------------*/

#container > article > .content-wrapper > .post-body-wrapper > aside {}
#container > article > .content-wrapper > .post-body-wrapper > aside > section { margin: 50px 0; }
#container > article > .content-wrapper > .post-body-wrapper > aside > section:first-child { margin-top: 0; }
#container > article > .content-wrapper > .post-body-wrapper > aside > section:last-child { margin-bottom: 0; }

#container > article > .content-wrapper > .post-body-wrapper > aside > .author {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	row-gap: 15px;
}
#container > article > .content-wrapper > .post-body-wrapper > aside > .author > .label { display: none; }
#container > article > .content-wrapper > .post-body-wrapper > aside > .author > .avatar {
	position: relative;
	flex: 0 0 125px; overflow: hidden;
	
	border-radius: 50%;
	
	isolation: isolate;
}
#container > article > .content-wrapper > .post-body-wrapper > aside > .author > .avatar:before {
	content: '';
	display: block;
	padding-top: 100%;
}
#container > article > .content-wrapper > .post-body-wrapper > aside > .author > .avatar:after {
	content: '';
	position: absolute; top: 0; left: 0; z-index: 1;
	display: block; height: 100%; width: 100%;
	
	background-image: url("../../images/post-author-overlay.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	
	pointer-events: none;
}
#container > article > .content-wrapper > .post-body-wrapper > aside > .author > .avatar > .media-element {
	position: absolute; top: 0; left: 0;
	height: 100%; width: 100%;
}
#container > article > .content-wrapper > .post-body-wrapper > aside > .author > .info {
	max-width: 250px;
	padding-left: 20px;
	margin: 0;
	
	text-wrap: balance;
	font-weight: 600;
}
#container > article > .content-wrapper > .post-body-wrapper > aside > .author > .info > span { display: inline-block; }
#container > article > .content-wrapper > .post-body-wrapper > aside > .author > .info > .name { font-size: 24px; }
#container > article > .content-wrapper > .post-body-wrapper > aside > .author > .info > .name:first-letter { font-family: 'Pixelify Sans'; }
#container > article > .content-wrapper > .post-body-wrapper > aside > .author > .info > .job {
	margin-top: 5px;
	
	font-size: 13px;
}