article {}
.resource {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.resource-blog {}

.resource header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2em;
	padding: 2em 0;
}
.resource header .resource-header-image {
	width: 33%;
	display: inline-block;
}
.resource header .resource-header-image img {
	max-width: 100%;
}

.resource header .resource-header-text {
	width: calc(66% - 2em);
	display: inline-block;
}
.resource header .resource-header-text .resource-header-text-eyebrow {
	color: var(--color-petrol);
	line-height: 1.75em;
}
.resource header .resource-header-text .resource-header-text-title {
	margin: 0.25em 0;
}
.resource header .resource-header-text .resource-header-text-subtitle {
	color: var(--color-petrol);
	margin: 0 0 2em 0;
}
.resource header .resource-header-text .resource-header-text-abstract {}


.resource section.resource-map-container {
}

.resource section.resource-body { 
	padding: 3em 2em;
	display: grid;
	grid-template-areas:
		'authors main'
		'establishment main'
		'social main'
		'sidebarcontent main'
		'relatedcontent main'
		'sidebarform main';
	grid-template-rows: auto auto auto auto auto 1fr; 
	grid-template-columns: 1fr 2fr;
	column-gap: 3em;
}

	.resource .resource-body-authors {
		grid-area: authors;
	}


			.resource .resource-body-authors .author-info {
			
				display: grid;
				column-gap: 1em;
				grid-template-columns: 36px calc(100% - 36px);
				
			}
		
			.resource .resource-body-authors .author-info .author-info-image {
				grid-column-start: 1;
				justify-self: end;
				
			}
		
			.resource .resource-body-authors .author-info .author-info-image img.avatar {
			height: 36px;
			width: 36px;
			border-radius: 36px;
			}
		
		
			.resource .resource-body-authors .author-info .author-info-bio {
				grid-column-start: 2;
				max-width: 60%;
			}
		
			.resource .resource-body-authors .author-info .author-info-bio .author-name {
				color: var(--color-petrol);
				margin-bottom: 0.5em;
			}
		
			.resource .resource-body-authors .author-info .author-info-bio .author-desc,
			.resource .resource-body-authors .author-info .author-info-bio .author-job-title {
				font-size: .875em;
				color: var(--color-petrol-90);	
			}
		
			.resource .resource-body-authors .author-info:not(:first-child) {
				margin-top: 2rem;
			}


	.resource .resource-body-establishment {
		grid-area: establishment;
	}

	.resource .resource-body-sidebar-content {
		grid-area: sidebarcontent;
	}

	.resource .resource-body-related-content {
		grid-area: relatedcontent;
	}

	.resource .resource-body-related-content .resource-related-item {
		
		display: flex;
		column-gap: 1em;
	}

		.resource .resource-body-related-content .resource-related-item .resource-related-item-thumbnail {
			width: 70px;
			height: 70px;
			min-width: 70px;
		}

		.resource .resource-body-related-content .resource-related-item .resource-related-item-thumbnail img {
			max-width: 100%;
		}

		.resource .resource-body-related-content .resource-related-item .resource-related-item-summary {

		}

		.resource .resource-body-related-content .resource-related-item .resource-related-item-summary .resource-related-item-type{
			font-size: 0.875em;
			color: var(--color-petrol-90);
			padding-bottom: 0.5em;
		}

		.resource .resource-body-related-content .resource-related-item .resource-related-item-summary .resource-related-item-title{
			font-size: 1.25em;
			line-height: 1.5rem;
			color: var(--color-petrol);
			padding-bottom: 0.5em;
		}

		.resource .resource-body-related-content a:hover .resource-related-item .resource-related-item-summary .resource-related-item-title{
			border-bottom: 0px solid var(--color-petrol);
			text-decoration: underline;
		}

		.resource .resource-body-related-content .resource-related-item .resource-related-item-summary .resource-related-item-intro{
			font-size: 0.875em;
			line-height: 1.25em;
			color: var(--color-petrol-90);
			padding-bottom: 1em;
		}



	.resource .resource-body-social-shares {
		grid-area: social;
		margin: 3em 0;
	}

		main .resource .resource-body-social-shares a {
			border: none;
            text-decoration: none;

            transition: all .2s ease-in-out;
            transform: scale(1.0);
		}

		main .resource .resource-body-social-shares a:hover img{
			transition: all .2s ease-in-out;
            transform: scale(1.4);  
            filter: brightness(2.0); 
		}



	.resource .resource-body-sidebar-form {
		grid-area: sidebarform;
	}

	.resource .resource-body-content {
		grid-area: main;

		display: grid;
		grid-template-areas:
			'overview'
			'content';
	}
	
	.resource .resource-body-content > div,
	.resource .resource-body-content > section {
		/*grid-area: content;*/
	}




@media only screen and (max-width: 600px) {

		.resource header {
			padding: 1em 0 0 0;
			display: flex;
			flex-wrap: wrap;
			gap: 0em;

		}
		.resource header .resource-header-image {
			width: 100%;
			order: 2;
		}

		
		.resource header .resource-header-text {
			width: 100%;
			order: 1;
			padding: 0 1em;
		}
	
		.resource section.resource-body { 
	
			grid-template-areas:
		
			'authors'
			'establishment'
			'social'
			'main'
			'sidebarcontent'
			'relatedcontent'
			'sidebarform';
		}

		
}








/* common resource page layout */

.resource .resource-body-content .resource-cta,
.resource .resource-body-content .btn-cta  {
	 
}











.resource .resource-body-content .organization-overview {
	
	grid-area: overview;
	margin-bottom: 3em;
	
	display: grid;
	grid-template-columns: 33% 33% 33%;
	grid-template-rows: auto;
	

	grid-template-areas:
		"logo header header"
		"logo statistics type";
}

.resource .resource-body-content .organization-overview .organization-logo {
	grid-area: logo;
}

.resource .resource-body-content .organization-overview .organization-logo img {
	width: 100%;
}

.resource .resource-body-content .organization-overview h3 {
	grid-area: header;
	text-align: center;
	margin-bottom: 1.0em;
}

.resource .resource-body-content .organization-overview .organization-statistics-container {
	grid-area: statistics;
	text-align: center;
	margin: 0 0 1em 0;
}

	.resource .resource-body-content .organization-overview .organization-statistics-container .resource-story-statistic{
		margin-bottom: 2em;
		
	}
	.resource .resource-body-content .organization-overview .organization-statistics-container .resource-story-statistic .resource-story-statistic-text {
		font-size: 3.0em;
		line-height: 1.0em;
		font-weight: bold;
	}
	.resource .resource-body-content .organization-overview .organization-statistics-container .resource-story-statistic .resource-story-statistic-textarea {
		margin: 1em;
	}

.resource .resource-body-content .organization-overview .organization-details {
	grid-area: type;
}

.resource .resource-body-content .organization-overview .organization-details > div {
	margin-bottom: 1em;
}











.resource .resource-body-content .section-resource-quote {
	margin: 3em 0;
}



















/* TODO: move at some point */
section.section-resources-table {
	padding: 3em 6em;
}

section.section-resources-table div.gridview {
	margin: 3em 0;

}

section.section-resources-table .resource-table-footer-link {
	text-align: center;
	margin: 3em 0;
}

section.section-resources-table .resource-table-footer-link a.cta-button-arrow {
	font-size: 1.5em;	
}

section.section-resources-table .resource-table-footer-link a.cta-button-arrow:after {
	top: 0.5rem;
}




section.section-featured-resources {
	position: relative;
	padding:  6em;

}

main section.section-featured-resources a.media-tile-btn {
	position: absolute;
	top: 6em;
	right: 6em;
}

section.section-featured-resources .resource-tile-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 3em 0;
}




/*** Cards ***/
.resource-card {
	min-width: 312px;
	max-width: calc(33% - 2em);
	height: 726px;
	position: relative;  
	background: var(--color-petrol);
	text-shadow: 0px 0px 7px black;
}

.resource-card a {
	border:  none;
	display: block;
	width: 100%;
	height: 100%;
	color: var(--color-petrol);
	

	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
}

main .resource-card a:hover {
	border: none;
}


.resource-card a div.resource-card-eyebrow {
	font-size: 1.0em;
	height: 50%; 
}

.resource-card a div.resource-card-image {
	text-align: center;
	transition: all .2s ease-in-out;
}
.resource-card a div.resource-card-image img {
	padding: 110px 1em 69px;
	width: 124px;
	
}

	.resource-card a .tile-image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	}

.resource-card a .tile-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
	transition: all .2s ease-in-out;
}

.resource-card a:hover .tile-image img {
	filter: brightness(0.6);
	
	transition: all .2s ease-in-out;
}


.resource-card a .resource-card-content {
	padding: 2em;
	height: inherit;
	z-index: 20;
}



.resource-card a .resource-card-content .resource-card-date {
	height: 32px;
}

.resource-card a .resource-card-content .resource-card-title {
	font-size: 2.0em;
	line-height: 1.0em;
	min-height: 96px;
	white-space: pre-line;
}

.photo-card a .resource-card-content .resource-card-title {
	height: 130px;
	max-height: 150px;
}

.resource-card a .resource-card-content .resource-card-link {
	font-size: 1.25em;
	position: absolute;
	bottom: 2em;
}

.resource-card a .resource-card-content .resource-card-link::after {
	content: "\e8e4";
	font-family: "Material Symbols Outlined";
	font-size: 1.4em;

	position: relative;
	top: .25em;
	left: .4em;
	transition: all .2s ease-in-out;
	line-height: 0;
}



.resource-card a:hover {
	
	transition: all .2s ease-in-out;
	transform: scale(1.0);
}

.resource-card a:hover .resource-card-image {
	transition: all .2s ease-in-out;
	transform: scale(1.2);
}


.resource-card a:hover .resource-card-content .resource-card-link::after {
	left: 1em;
	transition: all .2s ease-in-out;
}



.resource-card.photo-card{
				
}

.resource-card.photo-card a {
	color: var(--color-white);
	border: none;
}

.resource-card.photo-card a::before {

}

.photo-card:hover::before {
	content: "";
	background:rgba(0,0,0,0.45);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .2s ease-in-out;
}

.resource-card.photo-card a div.resource-card-eyebrow img {
	max-width: 100%;
}

.resource-card.photo-card a div.resource-card-eyebrow span.keyline {
	border-top: 2px solid var(--color-white);
	padding: .5em 1em 0 0;
	margin: 0;
	display: inline-block;
}





.resource-card.photo-card.narrow {
	min-width: 215px;
    max-width: calc(25% - 2em);
}

.resource-card.photo-card.narrow .resource-card-title {
	font-size: 1.5em;
}



section.section-resource-list{
	padding: 6em;
}
section.section-resource-list div.resource_result{
	display: flex;
	flex-wrap: wrap;
	row-gap: 6em;
	column-gap: 3em;
	justify-content: space-between;
}

section.section-resource-list div.resource_result::after {
  content: "";
  flex: 0 0 30%;
}




/* Legacy content beautification */
.resource .resource-body-content .common-btn-cta {
	margin: 2em 0;
	padding: 1em 2em 1em 1em;
	transition: all .2s ease-in-out;
}

.resource .resource-body-content .common-btn-cta::after {
	content: "\e8e4";
    font-family: "Material Symbols Outlined";
    font-size: 2em;
    top: 8px;
	right: -10px;
    transition: all .2s ease-in-out;
    line-height: 0;
	position: relative;
}

.resource .resource-body-content .common-btn-cta:hover::after {
	right: -20px;
    transition: all .2s ease-in-out;
}


.resource .resource-body-content .legacy-text {
    color: var(--color-petrol-90);
	font-style: normal;
    font-weight: 400;
    font-size: 2.0rem;
    line-height: 3rem;
}

.resource .resource-body-content .legacy-text p,
.resource .resource-body-content .legacy-text *,
.resource .resource-body-content th .legacy-text,
.resource .resource-body-content td .legacy-text {
    font-size: 16px;
    line-height: 1.75em;
    font-weight: 400;
    color: var(--color-primary-text);

	margin: 1rem 0 2rem 0;
}

.resource .resource-body-content .legacy-text p b,
.resource .resource-body-content .legacy-text p strong {
	font-weight: bold;
}

.resource .resource-body-content .legacy-text p i,
.resource .resource-body-content .legacy-text p em {
	font-style: italic;
}

.resource .resource-body-content .legacy-text p > span {
	font-size: 2.0em;
	line-height: 2.0rem;
	color: var(--color-petrol);
}

.resource .resource-body-content .legacy-text p h2,
.resource .resource-body-content .legacy-text h2,
.resource .resource-body-content .legacy-text h2 span  {
	color: var(--color-petrol);
  font-style: normal;
  font-weight: 400;
  font-size: 3.0rem;
  line-height: 3.5rem;
  letter-spacing: -0.5px;
}
.resource .resource-body-content .legacy-text p h3,
.resource .resource-body-content .legacy-text h3,
.resource .resource-body-content .legacy-text h3 span  {
	color: var(--color-petrol);
  font-style: normal;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3.0rem;
  letter-spacing: -0.5px;
}
.resource .resource-body-content .legacy-text p h4,
.resource .resource-body-content .legacy-text h4,
.resource .resource-body-content .legacy-text h4 span {
	color: var(--color-petrol);
  font-style: normal;
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 3rem;
}
.resource .resource-body-content .legacy-text p h5,
.resource .resource-body-content .legacy-text h5,
.resource .resource-body-content .legacy-text h5 span {
	color: var(--color-petrol);
	font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.5rem;
}
.resource .resource-body-content .legacy-text p h6,
.resource .resource-body-content .legacy-text h6,
.resource .resource-body-content .legacy-text h6 span {
	color: var(--color-petrol);
font-style: normal;
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.5rem;
}



.resource .legacy-image-block  {
	text-align: center;
}

.resource .legacy-image-block img {
	max-width: 100%;
}





