/* BEGIN INDEX CSS ----------------------------------------------> */

#index #content
{
	max-width: none;
	margin: 0px auto;
}

#index #mainContent
{
	margin: 0;
	padding: 0;
}

/* Home Animation */

#homeAnimation
{
	position: relative;
	width: calc(100% + 32px);
	margin: 0 0 0 -16px;
	height: 100vh;
	min-height: 100vh;
	overflow: hidden;
	background: #000;
}

#homeAnimation ul,
#homeAnimation ul li
{
	position: relative;
	list-style: none;
	width: 100%;
	margin: 0;
	padding: 0;
}

#homeAnimation .results_list > li
{
	height: 100vh;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

#homeAnimation .results_list > li > .image
{
	position: absolute;
	inset: 0;
	z-index: 0;
}

#homeAnimation .results_list > li > .image picture,
#homeAnimation .results_list > li > .image img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#homeAnimation .results_list > li > .image::after
{
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	/*background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.35) 100%);*/
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 100%);
}

#homeAnimation .results_list > li > .info
{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: absolute;
	top: 0;
	left: 16px;
	bottom: 0;
	right: 16px;
	z-index: 2;
	width: calc(100% - 32px);
	max-width: 1560px;
	margin: auto;
	padding: 10rem 0px 7rem 0px;
	box-sizing: border-box;
}


/* First content slide (nth-child(2) when Cycle2 adds a sentinel): all content centered */

#homeAnimation .results_list > li:first-child
{
	visibility: hidden;
	opacity: 0;
}

#homeAnimation .results_list > li:nth-child(-n+2) > .info
{
	align-items: center;
	text-align: center;
}

#homeAnimation .results_list > li:nth-child(-n+2) > .info > .title
{
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

#homeAnimation .results_list > li:nth-child(-n+2) > .info > .abstract
{
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

#homeAnimation .results_list > li:nth-child(-n+2) > .info > .abstract p
{
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

#homeAnimation .results_list > li:nth-child(-n+2) > .info > .buttons
{
	justify-content: center;
}

@media (min-width: 768px)
{
	#homeAnimation .results_list > li:nth-child(-n+2) > .info > .title
	{
		opacity: 0;
		transform: translateY(60px);
		animation: home_hero_animate_in 700ms cubic-bezier(0, 0, 0.58, 1) forwards;
	}
	
	#homeAnimation .results_list > li:nth-child(-n+2) > .info > .abstract
	{
		opacity: 0;
		transform: translateY(60px);
		animation: home_hero_animate_in 700ms cubic-bezier(0, 0, 0.58, 1) forwards;
		animation-delay: 500ms;
	}
	
	#homeAnimation .results_list > li:nth-child(-n+2) > .info > .buttons
	{
		opacity: 0;
		transform: translateY(60px);
		animation: home_hero_animate_in 700ms cubic-bezier(0, 0, 0.58, 1) forwards;
		animation-delay: 1000ms;
	}

}

@keyframes home_hero_animate_in 
{
	from {
		opacity: 0;
		transform: translateY(60px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Slides 2–4 (nth-child(3)–(5) with sentinel): left-aligned, padding left, text toward bottom */

#homeAnimation .results_list > li:nth-child(n+3) > .info
{
	align-items: flex-start;
	text-align: left;
}

#homeAnimation .results_list > li:nth-child(n+3) > .info > .title,
#homeAnimation .results_list > li:nth-child(n+3) > .info > .abstract p
{
	margin-left: 0;
	margin-right: auto;
}

#homeAnimation .results_list > li:nth-child(n+3) > .info > .buttons
{
	justify-content: flex-start;
}

#homeAnimation .results_list > li > .info > .title
{
	margin: 0;
}

#homeAnimation .results_list > li > .info > .title h1
{
	--min-font-size: 46;
	--max-font-size: 52;
	--min-margin-top: 0;
	--max-margin-top: 0;
	--min-margin-bottom: 20;
	--max-margin-bottom: 24;
	margin: 0;
	color: #fff;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.52px;
}

#homeAnimation .results_list > li:nth-child(n+3) > .info >.title h1
{
	--min-font-size: 68;
	--max-font-size: 74;
}

#homeAnimation .results_list > li > .info > .abstract p
{
	--min-font-size: 16;
	--max-font-size: 20;
	--max-margin-top: 26;
	--max-margin-bottom: 28;
	color: rgba(255, 255, 255, 0.95);
	max-width: 640px;
	line-height: 1.6;
}

#homeAnimation .buttons
{
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 0;
	margin-bottom: 0;
}

#homeAnimation .buttons > div > a
{
	display: inline-block;
	padding: 0.3rem 1.25rem;
	background: transparent;
	border: 1px solid var(--brand-light-blue);
	color: #fff;
	font-family: 'sourcesans', Arial, sans-serif;
	font-size: inherit;
	font-weight: 600;
	text-decoration: none;
	border-radius: 2em;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}

#homeAnimation .buttons > div > a:hover,
#homeAnimation .buttons > div > a:focus
{
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--brand-yellow);
	color: #fff;
}


/* Home hero pager */

#homeAnimation .info .cyclepager
{
	position: absolute;
	bottom: 1.5rem;
	right: 1.5rem;
	z-index: 3;
	display: flex;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

#homeAnimation .cyclepager > *
{
	position: relative;
	display: block;
	width: 44px;
	height: 44px;
	padding: 0;
	border-radius: 50%;
	border: none;
	background: transparent;
	cursor: pointer;
	text-indent: -9999px;
	overflow: visible;
	box-sizing: border-box;
}

/* solid, clean yellow center dot on active only (21x21) */
#homeAnimation .cyclepager > .active::before,
#homeAnimation .cyclepager > .cycle-pager-active::before
{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 21px;
	height: 21px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background-color: var(--brand-yellow);
	pointer-events: none;
}

#homeAnimation .cyclepager > *:hover,
#homeAnimation .cyclepager > *:focus
{
	background-color: rgba(255, 255, 255, 0.1);
}

/* SVG ring positioning (dark blue progress ring) */
#homeAnimation .cyclepager > * .heroPagerRing
{
	position: absolute;
	inset: 0;
	transform: rotate(-90deg);
	transform-origin: 50% 50%;
	pointer-events: none;
}

#homeAnimation .cyclepager > * .heroPagerTrack
{
	fill: none;
	stroke: var(--brand-light-blue);
	stroke-width: 2;
}

#homeAnimation .cyclepager > * .heroPagerProgress
{
	fill: none;
	stroke: var(--brand-yellow);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-dasharray: 132;
	stroke-dashoffset: 132;
}

#homeAnimation .cyclepager > .active .heroPagerProgress,
#homeAnimation .cyclepager > .cycle-pager-active .heroPagerProgress
{
	animation: heroPagerStroke 7500ms linear forwards;
}

@keyframes heroPagerStroke
{
	from { stroke-dashoffset: 132; }
	to   { stroke-dashoffset: 0; }
}

#homeAnimation .sp_pencil
{
	display: none;
}

@media (min-width: 768px)
{
	#homeAnimation
	{
		height: 827px;
		min-height: 827px;
	}
	#homeAnimation .results_list > li
	{
		height: 827px;
		min-height: 827px;
	}
	#homeAnimation .cyclepager > *
	{
		--pager-center: 10.5px;
		width: 35px;
		height: 35px;
	}
	#homeAnimation .results_list > li > .info
	{
		padding: 20rem 0 7rem 0;
	}
	#homeAnimation .results_list > li:nth-child(n+3) > .info
	{
		padding-bottom: 7rem;
	}
}

@media (min-width: 920px)
{
	#homeAnimation
	{
		width: calc(100% + 88px);
		margin: 0 0 0 -44px;
	}
	#homeAnimation .results_list > li > .info
	{
		left: 44px;
		right: 44px;
		padding: 20rem 0 7rem 0;
		width: calc(100% - 88px);
	}
	#homeAnimation .results_list > li:nth-child(n+3) > .info
	{
		padding-bottom: 7rem;
	}
}

@media (min-width: 1350px)
{
	#homeAnimation
	{
		width: calc(100% + 160px);
		margin: 0 0 0 -80px;
	}
	#homeAnimation .results_list > li:nth-child(n+3) > .info
	{
		left: 80px;
		right: 80px;
		width: calc(100% - 160px);
		padding-bottom: 7rem;
	}
}



/* Statistics list: two columns – left: three stats (number + label); right: heading + paragraph. design2-v3b. */

#statisticsList
{
	position: relative;
	width: 100%;
	max-width: 1560px;
	margin: 0 auto;
	padding-top: max(2rem, 5vw);
	padding-bottom: max(2rem, 5vw);
	box-sizing: border-box;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas: 'stats' 'intro';
	gap: 2rem;
	justify-items: center;
	overflow: visible;
}

#statisticsList::before
{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(50% - 50vw);
	width: 100vw;
	z-index: -1;
	background-image: url('../i/statisticslist-bg.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: auto 105%;
	pointer-events: none;
}

#statisticsList .ITEM_SEARCH.results
{
	grid-area: stats;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
}

#statisticsList .results_list
{
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: center;
	align-items: flex-start;
	min-width: 0;
}

#statisticsList .results_list > div
{
	flex: 1 1 0;
	min-width: 0;
	text-align: center;
}

#statisticsList .results_list .largetitle
{
	position: relative;
	font-family: 'sourcesans', Arial, sans-serif;
	font-size: clamp(2.5rem, 5vw, 4.625rem);
	font-weight: 700;
	line-height: 1.1;
	color: #323232;
	margin: 0 0 0.25rem;
}

#statisticsList .results_list .largetitle
{
	opacity: 0;
}

#statisticsList .results_list .largetitle .sp_pencil
{
	position: absolute;
	top: 0;
	left: 100%;
	margin-left: 0.25rem;
	display: inline-block;
}

#statisticsList .results_list .title
{
	font-family: 'sourcesans', Arial, sans-serif;
	font-size: 1.25rem;
	line-height: 1.4;
	color: #323232;
	margin: 0;
}

#statisticsList > div:last-child
{
	grid-area: intro;
	width: 100%;
	max-width: 626px;
	margin: 0;
}

#statisticsList > div:last-child h2
{
	font-family: 'sourcesans', Arial, sans-serif;
	font-size: 2.375rem;
	font-weight: 700;
	line-height: 1.2;
	color: #444;
	margin: 0 0 1rem;
}

#statisticsList > div:last-child p
{
	font-family: 'sourcesans', Arial, sans-serif;
	font-size: 1.25rem;
	line-height: 1.6;
	color: #444;
	margin: 0;
}

@media (min-width: 767px)
{
	#statisticsList
	{
		grid-template-columns: minmax(0, 55%) minmax(0, 1fr);
		grid-template-areas: 'stats intro';
		gap: 2rem 3rem;
		align-items: center;
		justify-items: center;
	}

	#statisticsList .ITEM_SEARCH.results
	{
		justify-self: center;
	}

	#statisticsList .results_list
	{
		justify-content: flex-start;
	}

	#statisticsList > div:last-child
	{
		justify-self: center;
		padding-top: 0;
	}
}

@media (max-width: 766px)
{
	#statisticsList .results_list
	{
		flex-direction: column;
		align-items: center;
		gap: 1.5rem;
	}
}


/* Core Areas (Core Practices) – six tiles, 2×3 grid; tile max-height 325px; abstract reveals on hover */

#coreAreas
{
	position: relative;
	width: 100%;
	max-width: 1560px;
	margin: 3rem auto;
	padding: 0;
}

#coreAreas h2
{
	--min-font-size: 30;
	--max-font-size: 38;
	--min-margin-top: 0;
	--max-margin-top: 0;
	--min-margin-bottom: 24;
	--max-margin-bottom: 28;
	text-align: left;
	color: var(--brand-dark-blue);
	font-weight: 700;
}

#coreAreas .itemList
{
	margin-top: 0;
}

#coreAreas .itemList .results_list
{
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	align-items: start;
}

#coreAreas .itemList .results_list > li
{
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 0;
	aspect-ratio: 4 / 3;
	max-height: 325px;
	overflow: hidden;
	background: #000;
}

#coreAreas .itemList .results_list > li > a
{
	display: block;
	position: absolute;
	inset: 0;
	text-decoration: none;
	color: inherit;
}

#coreAreas .itemList .results_list > li > a > .image
{
	position: absolute;
	inset: 0;
	z-index: 0;
}

#coreAreas .itemList .results_list > li > a > .image picture,
#coreAreas .itemList .results_list > li > a > .image img
{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

#coreAreas .itemList .results_list > li > a > .image::after
{
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.6) 100%);
}

#coreAreas .itemList .results_list > li > a > .info
{
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 1.25rem 1rem;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 0.5rem;
}

#coreAreas .itemList .results_list > li > a > .info > .title
{
	display: block;
	--min-font-size: 26;
	--max-font-size: 34;
	margin: 0;
	color: #fff;
	font-weight: 500;
	line-height: 1.25;
}

#coreAreas .itemList .results_list > li > a > .info > .abstract
{
	display: block;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: all 750ms ease;
}

#coreAreas .itemList .results_list > li:is(:hover, :focus) > a > .info > .abstract
{
	max-height: 15em;
	opacity: 1;
	padding-bottom: 2em;
}

#coreAreas .itemList .results_list > li > a > .info > .abstract p
{
	--min-font-size: 16;
	--max-font-size: 20;
	margin: 0;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.5;
}

#coreAreas .itemList .view_more
{
	text-align: center;
	margin-top: 2rem;
	margin-bottom: 0;
}

@media (min-width: 768px)
{
	#coreAreas .itemList .results_list
	{
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}
}

@media (min-width: 920px)
{
	#coreAreas .itemList .results_list
	{
		gap: 1.5rem;
	}

	#coreAreas .itemList .results_list > li > a > .info
	{
		padding: 56px 76px;
	}

	#coreAreas .itemList .results_list > li > a > .info .title
	{
		padding-bottom: 5px;
	}
}

/* What can we help you find? */

#whatCanWeHelpYouFind
{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	position: relative;
	width: 100%;
	max-width: 1560px;
	margin: 0px auto;
	padding: 4rem 0px;
	background: #f5f5f5;
}

#whatCanWeHelpYouFind > div
{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	position: relative;
}

#whatCanWeHelpYouFind h2
{
	--min-font-size: 28;
	--max-font-size: 36;
	--min-margin-top: 0;
	--max-margin-top: 0;
	--min-margin-bottom: 14;
	--max-margin-bottom: 18;
	text-align: left;
	font-weight: 500;
	white-space: nowrap;
	line-height: 1;
}

#whatCanWeHelpYouFind .view_more
{
	text-transform: uppercase;
}

#whatCanWeHelpYouFind .view_more a:not(:hover,:focus)
{
	background: transparent;
}

@media (min-width: 501px)
{
	#whatCanWeHelpYouFind > div
	{
		flex-direction: row;
		gap: 1rem;
	}
}

@media (min-width: 920px)
{
	#whatCanWeHelpYouFind
	{
		flex-direction: row;
		gap: max(1rem, 5vw);
	}

	#whatCanWeHelpYouFind h2
	{
		--min-margin-bottom: 0;
		--max-margin-bottom: 0;
	}
}


#footer
{
	margin-top: 0;
}

/* Home Alert Message */

#alertMessage
{
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 98;
	display: none;
	width: 100%;
	padding: 12px 16px 12px 16px;
	background: #ccc;
	box-sizing: border-box;
	color: #000000;
	font-size: 0.9rem;
	line-height: 1.2;
	text-align: center;
}

#alertMessage p,
#alertMessage p *
{
	margin: 0;
	padding: 0;
	color: #000000;
}

#alertMessage a
{
	text-decoration: underline;
}

#alertMessage .closeButton
{
	position: absolute;
	top: 20px;
	right: 17px;
	padding: 24px 24px 0 0;
	background: none;
	border: none;
	color: #000;
}

#alertMessage .closeButton::before,
#alertMessage .closeButton::after
{
	top: 10px;
	left: 0px;
	width: 24px;
	height: 2px;
}

#alertMessage .closeButton:is(:hover,:focus)
{
	color: #555;
}

@media (min-width: 920px)
{
	#alertMessage
	{
		padding: 20px 44px 20px 44px;
		font-size: 1rem;
	}
}

@media (min-width: 1350px)
{
	#alertMessage
	{
		padding: 20px 80px 20px 80px;
	}
}


/* Home Notice Message */

#noticeMessage
{
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 2000; /* so we can be over the header div */
	top: 10px;
	bottom: 10px;
	left: 16px;
	right: 16px;
	height: 40vh;
	max-height: 70vh;
	width: calc(100vw - 32px - 50px);
	max-width: 866px;
	margin: auto;
	padding: 3.5em 20px 1.5em 20px;
	background: rgba(0,0,0,0.95);
}

#noticeMessage:not(.open)
{
	display: none;
}

#noticeMessage > div
{
	position: relative;
	z-index: 999999;
	width: 100%;
	height: 100%;
	font-size: 0.825rem;
}

#noticeMessage > div > div
{
	position: relative;
	overflow: auto;
	height: 100%;
	max-height: 70vh;
	margin: 0;
	padding: 0 2.5em 0 0;
}

#noticeMessage > div > div *
{
	color: #ffffff;
	--max-font-size: 20;
}

#noticeMessage > div div p:last-child
{
	margin-bottom: 0;
	padding-bottom: 0;
}

#noticeMessage .noticebuttons
{
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
}

#noticeMessage div button,
#noticeMessage a.standardButton
{
	display: inline-flex;
	padding: 14px 18px 14px 25px;
	margin: 10px 10px 10px 0;
	background: none;
	border: 1px solid currentColor;
	border-radius: 0;
	color: inherit;
	font-weight: 300;
	font-size: 16px;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
}

#noticeMessage div button:last-of-type,
#noticeMessage a.standardButton:last-of-type
{
	margin-right: 0;
}

#noticeMessage div button:after
{
	content: 'x';
	display: inline-block;
	margin-left: 18px;
	font-size: 1rem;
	line-height: 1.4;
	vertical-align: middle;
}

#noticeMessage div button:is(:hover,:focus),
#noticeMessage a.standardButton:is(:hover,:focus)
{
	background: white;
	color: black;
}

#noticeMessage div button:is(:hover,:focus) div,
#noticeMessage a.standardButton:is(:hover,:focus)
{
	color: black;
}

#noticeMessage .closeButton
{
	position: absolute;
	top: 20px;
	right: 17px;
	padding: 24px 24px 0 0;
	background: none;
	border: none;
	color: #fff;
}

#noticeMessage .closeButton::before,
#noticeMessage .closeButton::after
{
	top: 10px;
	left: 0px;
	width: 24px;
	height: 2px;
}

#noticeMessage .closeButton:is(:hover,:focus)
{
	color: #ccc;
}

@media (min-width: 969px)
{
	#noticeMessage
	{
		width: calc(100vw - 32px - 60px);
		padding: 3.5em 20px 1.5em 40px;
	}
}

/* END INDEX CSS ------------------------------------------------> */