.grid {
	--grid-columns: var(--grid-cols);
	display: grid;
	gap: var(--grid-gap, 1rem);
	grid-template-columns: repeat(var(--grid-columns, 1), 1fr);
	align-items: flex-start;
}
.grid.grid--center {
	align-items: center;
}
.grid--clear-margin > * > * {
	margin-top: 0;
}
.grid > * {
	grid-column: span var(--grid-span, 1);
}

.grid picture,
.grid img {
	max-width: 100%;
	height: auto;
}
.grid > .grid__row,
.grid > hr {
	grid-column: 1 / -1;
}

.grid.grid--images :is(figure, img, picture) {
	overflow: hidden;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	max-width: var(--grid-image-size, 35vw);
}
.grid:has(> .card) {
	margin-bottom: 2rem;
}

.grid--clear-margin > div > * {
	margin-top: 0;
}

.grid .row-label {
	grid-column: 1 / -1;
	background: #205998;
	color: #fff;
	font-weight: bold;
	padding-inline: 1rem;
	justify-self: flex-start;
}

.grid[data-child-vspace="between"] > div {
	display: grid;
	align-content: space-between;
	height: 100%;
}
.grid .image-fill {
    height: 100%;
}
.grid .image-fill *{
	  width: 100%;
    height: 100%;
    object-fit: cover;
}
.grid .image-fill[data-focus="left"] *{
	object-position: left;
}
.grid .image-fill[data-focus="right"] *{
	object-position: right;
}

@media (max-width: 1000px) {
	.grid:not(:is(.grid--small, .grid--mobile)) {
		grid-template-columns: 1fr;
	}
	.grid:not(:is(.grid--small, .grid--mobile)) > * {
		grid-column: span 1;
	}

	.grid--small {
	    --grid-columns: var(--grid-cols-small,calc(var(--grid-cols) / 2)) !important;
	}
}
@media (max-width: 600px) {
	.grid--small {
	    --grid-columns: var(--grid-cols-tiny,var(--grid-cols-small,calc(var(--grid-cols) / 2))) !important;
	}
}


/* flex grid */
.flex-grid {
	display: flex;
	flex-wrap: wrap;
	gap: var(--grid-gap, 1rem);
	justify-content: center;
	align-content: stretch;
}

.flex-grid > :is(*,.card.card) {
	width: calc(100% / var(--grid-cols, auto) - var(--grid-gap, 1rem));
	height: auto;
}

@media (max-width: 1000px) {
	.flex-grid > * {
		width: 100%;
	}
}

.flex-auto-column {
	display: flex;
	flex-wrap: wrap;
}

.grid-image img {
	aspect-ratio: 1;
	object-fit: cover;
	object-position: center;
	scale: 1;
	transition: scale 300ms;
	z-index: -1;
	position: relative;
}

.grid-image--square :where(:hover, :focus-visible) img {
	scale: 1.15;
	z-index: 1;
}
.grid-image--square img {
	aspect-ratio: 1;
}
.grid-image--4x3 img {
	aspect-ratio: 4/3;
}
.grid-image--16x9 img {
	aspect-ratio: 16/9;
}

.flexbox {
	display: flex;
	gap: var(--grid-gap, 2rem);
	align-items: center;
}
.flexbox.align-top {
	align-items: flex-start;
}

.flexbox > * {
	flex: var(--flex, var(--grid-span, 1));
}
.flexbox.flexbox--reverse {
	flex-direction: row-reverse;
}
@media (max-width: 1000px) {
	.flexbox.flexbox {
		flex-direction: column;
		gap: 0;
	}
}

@media (min-width: 768px) {
	.flex-separate {
		display: flex;
		justify-content: space-between;
		padding-inline: 1rem;
		gap: 1rem;
	}
	.flex-separate--line {
		border-bottom: solid 1px #ddd;
		margin-bottom: 5px;
	}
	.flex-separate > :last-child {
		text-align: right;
	}
}
.alternating-columns {
    position: relative;
    gap: 6rem;
    padding-block: 5rem;
    margin-inline: min(5rem, 3%);
    align-items: flex-start;
}

.alternating-columns > *{
    &:nth-child(1){
        flex: var(--col-1-size, 1);
        order: 2;
    }
    &:nth-child(2){
        flex: var(--col-2-size, 1);
        order: 1;
    }
}
.alternating-columns:nth-of-type(even):before{
	content:"";
	display: block;
	width: 200vw;
	height: 100%;
	position:absolute;
	margin-left: -50vw;
	background: #9DCFFC;
	z-index: -1;
	inset: 0;
}
@media(width > 1000px){
    .alternating-columns:nth-of-type(even) > :nth-child(1),
    .alternating-columns:nth-of-type(odd) > :nth-child(2) {   
        order:2;
    }
}

:is(.grid, .flex, .flex-grid, .flexbox) > *{
	--_order: var(--order, unset);
	order: var(--_order);
}

@media (max-width: 1000px) {
:is(.grid, .flex, .flex-grid, .flexbox) > *{
	--_order: var(--mobile-order, var(--order, unset));
	}
}

.image-framed {
    display: block;
    transition: all 300ms;
    position: relative;
    top: 10px;
    left: -10px;
}

.image-framed:before {
    content: "";
    display: block;
    aspect-ratio: 1;
    background: transparent;
    position: absolute;
    translate: 30px -30px;
    width: 100%;
    border: solid 3px #FFDA4A;
    z-index: 1;
    top: 0;
    left: 0;
    transition: all 300ms;
}
.image-framed:hover {
    top: 0;
    left: 0;
}

.image-framed:hover::before {
    top: 20px;
    left: -20px;
}

.image-framed img{
	width: 100%;
}

.offset-y {
    --_offset: var(--offset, 0);
    margin-top: var(--_offset);
}
.offset-x {
    --_offset: var(--offset, 0);
    margin-left: var(--_offset);
}

@media (max-width:1000px){
    .offset-y {
        --_offset: var(--mobile-offset, 0);
    }
    .offset-x {
        --_offset: var(--mobile-offset, 0);
    }
}


/* List Stuff */
ul.list-columns {
    column-count: var(--list-cols,2);
}
.list-filter__item-content ul.list-columns{
	column-count:1;
	display: grid;
	grid-template-columns: repeat(var(--list-cols,2), 1fr);
}


/* Table stuff */
table.styled {
	table-layout: auto;
	margin-block: 1rem;
	--_padding:0.2em 0.5em;
	--_border:solid 1px hsl(0deg 0% 20% / 20%);
	--_head-background: #205998;
	--_head-font-size: 1.8rem;
	--_head-color: #fff;
}
table.styled.subtle {
	--_padding: .1rem .5em;
	--_head-background: #9DCFFC;
	--_head-font-size: 1.6rem;
	--_head-color: #184171;
}


table.styled :is(td,th) {
	padding: var(--_padding);
	border: var(--_border);
}
table.styled :is(td,th) > * {
	padding-block: 0;
	margin-block: 0;
}
table.styled :is(td,th) > p ~ p {
	margin-top: 1rem;
}
table.styled tr:nth-child(2n + 1) td {
	background: #e4ebf2;
}
table.styled tr:nth-child(2n) {
	background: #fff;
}

table.styled tr.head :is(td,th),
table.styled tr th{
	background: var(--_head-background);
	color: var(--_head-color);
	border: none;
	font-size: var(--_head-font-size);
	font-weight: bold;
}

table.styled.subtle :is(td,th) {
    padding: var(--_padding);
    border: none;
}

@media (min-width: 1000.1px) {
/* hover outline */
table.styled.hover-row-highlight tr:has(:hover) td {
    background: #fff;
}

table.styled.hover-row-highlight tr:has(:hover) {
    outline: solid 3px #205998;
}
}


@media (max-width: 1000px) {
	table.styled:not(.mobile-table),
	table.styled:not(.mobile-table) :is(td, tr, tbody) {
		display: block;
		border: none;
	}
	table.styled:not(.mobile-table) td[data-heading] {
		padding: 0.6rem 0.75rem;
		text-align: left !important;
		display: grid;
		gap: 1rem;
		grid-template-columns: 1fr 1fr;
	}
	table.styled:not(.mobile-table) .head,
	table.styled:not(.mobile-table) thead {
		display: none;
	}
	table.styled:not(.mobile-table) td[data-heading]:before {
		content: attr(data-heading);
		font-weight: bold;
	}

	table.styled:not(.mobile-table) tr td {
		background: white;
		border: solid 1px #ddd;
		margin-top: -1px;
	}
	table.styled:not(.mobile-table) tr td:nth-child(2n) {
		background: #f9f9f9;
	}
	table.styled:not(.mobile-table) tr td:nth-child(2n + 1) {
		background: #fff;
	}

	table.styled:not(.mobile-table) tr td:first-child {
		background: white;
		color: #205998;
		font-size: 1.8rem;
		font-weight: bold;
		grid-auto-flow: column;
		grid-template-columns: max-content;
	}
	table.styled:not(.mobile-table) tr {
		border: solid 1px #e4ebf2;
		margin-bottom: 2rem;
	}
}

/* Link List */
:is(.link-list){
	background:none;
}
.link-list li{
	padding-block: 0.2em;
	
	&:has(a){
		padding:0;
	}
	a {
		display: block;
	padding: 0.2em 0.5em;
	text-decoration: none;
	background: #ebeff4;
	}
	a:hover {
		background: #f1f6fb;
	}
}

/* Cards */
.card.card {
	background: #f6f6f6;
	border: solid 1px #eee;
	height: 100%;
	padding: 0 2rem 2rem 2rem;
	display: flex;
	flex-direction: column;
}

.card > div:nth-child(1) {
	overflow: hidden;
	margin-bottom: 0.5em;
}

.card:not(.card--icon) img {
	display: block;
	aspect-ratio: 4/3;
	object-fit: cover;
	object-position: center;
	/* background: #fff; */
}

.card.card--icon figure{
	width: 100%;
	aspect-ratio: 2/1;
	place-content: center;
	text-align: center;
	margin-block: 1rem;
}
.card.card--icon figure + :is(h2,h3,h4,h5,h6) {
    margin-top: 0;
}

.card > div:nth-child(2) {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 0 1rem 0;
	aspect-ratio: auto;
}

.card > div:nth-child(2) :last-child:has(.button) {
	margin-top: auto;
}
.card :last-child:has(.button) {
	margin-block: auto 0;
}
.card :last-child:has(.button) .button:last-child {
	display: block;
	margin: 0;
	padding: 0.25rem 1rem;
}

/* Card 2 */
.card-2 {
	--_bs-blur: 10px;
	--_bs-position-y: 10px;
	--_bs-inset: 0px;
	display: grid;
	position: relative;
	box-shadow: 0px var(--_bs-position-y) var(--_bs-blur) var(--_bs-inset) rgb(0 0 0 / 0.2);
	scale: 1;
	transition: scale 300ms, box-shadow 300ms;
	background: #fff;
	border: solid 1px #eee;
}

.card-2:hover {
	--_bs-blur: 20px;
	--_bs-position-y: 15px;
	--_bs-inset: -10px;
	scale: 1.075;
	z-index: 1;
}

.card-2__date {
	--_border: 1rem;
	margin: calc(-1 * var(--_border));
	position: absolute;
	z-index: 1;
	inset: calc(-1 * var(--_border)) auto auto calc(-1 * var(--_border));
	display: flex;
	flex-wrap: wrap;
	gap: var(--_border);
	list-style: none;
	filter: drop-shadow(2px 4px 6px rgba(0 0 0 / 0.4));
}
.card-2__date li {
	margin-inline: calc(-1 * var(--_border));
	padding: calc(0.5 * var(--_border)) calc(2.5 * var(--_border));
	font-family: "Montserrat";
	font-size: 2rem;
	font-weight: 900;
	background: #205998;
	color: white;
	backface-visibility: hidden;
	clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
}
.card-2__date li:first-child {
	font-size: 2em;
}

.card-2__date li:nth-child(n + 3) {
	background: #f9c10b;
	color: #205998;
}
.card-2__date sup {
	font-size: 0.6em;
}
.card-2__figure {
	aspect-ratio: 5 / 3;
	overflow: clip;
	margin: 0;
}

.card-2__figure * {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.card-2__heading {
	text-align: center;
	font-family: "Montserrat";
	font-weight: 900;
}

.card-2__content {
	padding: 0 1rem 1rem 1rem;
}

/* Feature Card */
.feature-card {
	display: grid;
	grid-template-columns: auto;
	grid-auto-flow: dense;
	background: #ebeff5;
	padding: 1rem;
	box-shadow: 0px 5px 10px -5px #666;
	border: solid 1px #215a99;
	margin-block: 4rem;
}
.feature-card > :is(h2, h3, h4, h5, h6) {
	margin-top: 0;
}

.feature-card img {
	grid-row: 1;
	display: block;
	padding: 2rem;
}

.feature-card > *:not(img) {
	grid-row: auto;
}
@media (min-width: 1000px) {
	.feature-card {
		grid-template-columns: minmax(1rem, auto) auto;
	}
	.feature-card p:has(> img),
	.feature-card .media--type-image {
		grid-column: 1;
		grid-row: span 20;
		display: block;
		padding: 2rem;
		width: 100%;
	}

	.feature-card > *:not(img) {
		grid-column: 2;
	}
}

/* Elements */

.hatch-marks > * {
	padding: 0 calc(0.25rem * var(--_border));
	height: calc(0.2rem * var(--_border));
	margin-inline: calc(-0.05rem * var(--_border));
	background: currentColor;
	font-size: 0px;
	font-weight: bold;
	backface-visibility: hidden;
	clip-path: polygon(calc(0.2rem * var(--_border)) 0%, 100% 0%, calc(100% - calc(0.2rem * var(--_border))) 100%, 0% 100%);
}

.hatch-marks {
	--_border: 10;
	display: grid;
	grid-auto-flow: column;
	gap: 0;
	justify-content: center;
	margin-block: 1rem;
	color: #205998;
}

/* callout block */
.callout {
	background: #ebeff4;
	padding: 3rem;
	margin: 2rem;
}

.callout > :first-child {
	margin-top: 0;
}
.callout > :last-child {
	margin-bottom: 0;
}
.callout > :last-child:has(.button) {
	margin-block: 0 -1rem;
}

/* Bleed block to edge of page */

.bleed-to-edge {
	position: relative;
	left: 50%;
	transform: translateX(-50vw);
	width: 100vw;
}
.field__item.field__item:has(.bleed-to-edge) {
	margin-bottom: 0;
	padding-bottom: 0;
}

/* Parallax Code */

.parallax {
	position: relative;
	height: clamp(300px, 55vh, 850px);
	overflow: clip;
	display: grid;
	align-content: center;
}
.parallax__image {
	position: absolute;
	bottom: 0;
	display: block;
	width: 100%;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
	transform: translateY(calc(var(--_scroll-percent) - calc(var(--_height) * var(--_scroll-value) / 100)));
}
.parallax .container {
	position: relative;
	z-index: 1;
}

.parallax .box-blue {
	width: min-content;
	padding: 2em;
	background: #205998;
}
.parallax .box-blue > *:first-child {
	margin-top: 0;
}

.parallax .box-blue > * {
	color: white;
	font-weight: bold;
}

.parallax .box-blue h2 {
	font-family: "Montserrat";
	font-size: calc(4vw + 4vh + 2vmin);
	line-height: 0.8;
	text-transform: uppercase;
	text-align: center;
	font-weight: 900;
	color: #ffda4a;
}

/*



Text fade In */

.fade-in-text {
	--_background: var(--background, #205998);
	--_color: var(--color, #fff);
	--_padding: var(--padding, 10vh);
	
	padding-block: clamp(min(8rem, var(--_padding)), var(--_padding), 20rem););
	text-align: center;
	color: var(--_color);
	line-height: 1.3;
}
.fade-in-text .container {
	width: min(800px, 100%);
}
.fade-in-text span {
	color: color-mix(in srgb, var(--_color) 10%, transparent);
	background-clip: text;
	-webkit-background-clip: text;
	background-repeat: no-repeat;
	background-size: 0% 100%;
	background-image: linear-gradient(var(--_color), var(--_color));
	animation: fade-in-text linear forwards;
	animation-timeline: view(y);

	animation-range-start: cover calc(20vh + var(--fade-start, 0));
	animation-range-end: cover calc(30vh + var(--fade-start, 0));
	animation-range-end: cover max(30vh, calc(30vh + var(--fade-start, 0)));
}

@keyframes fade-in-text {
	to {
		background-size: 100% 100%;
	}
}

.fade-in-text:not(.fade-in-text--normal-text) :where(h2, .h2) {
	margin-block: 0;
	font-size: 4.2rem;
}

.fade-in-text:not(.fade-in-text--normal-text) p {
	font-size: 2.4rem;
}
.fade-in-text:not(.fade-in-text--normal-text) {
	font-family: "Montserrat";
}
@media (prefers-reduced-motion) {
	.fade-in-text span {
		color: var(--_color);
	}
}







.checkbox-chip {
    background: #205998;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .3rem;
    padding: .75rem;
    border-radius: 6px;
    font-weight: bold;
    border: solid 1px #205998;
    margin: .5rem;
}

.checkbox-chip input {
    width: 2rem;
}

.checkbox-chip:has(input:checked) {
    background: #fff;
    color: #205998;
}
.round-input {
    display: block;
    border-radius: 4rem;
    width: min(100%, 70ch);
    padding: 1.5rem 2rem;
    line-height: 1;
    border-width: 1px;
    margin-inline: auto;
    margin-block-end: 1rem;
}



/* Video Aspect Ratio */
.video-wrapper {
	aspect-ratio: 16 / 9;
	width: min(96%, 70rem);
	margin: 4rem auto;
}
.video-wrapper--4-3 {
	aspect-ratio: 16 / 9;
}
.video-wrapper iframe {
	width: 100%;
	height: 100%;
}

/* Fancy Image Gallery */
.hover-gallery > * {
	--_hg-scale-unfocus: var(--hover-scale-unfocus, 0.8);
	--_hg-scale-standard: var(--hover-scale-standard, 1);
	--_hg-scale-focus: var(--hover-scale-focus, 1.4);
	transition: scale 300ms, z-index 100ms, filter 300ms;
	z-index: 1;
	position: relative;
	margin: 0;
}
@media (max-width: 1000px) {
	.hover-gallery > * {
		--_hg-scale-unfocus: 0.9;
		--_hg-scale-standard: var(--_hg-scale-unfocus);
		--_hg-scale-focus: 1.1;
	}
}
/* '#specify' used to raise specificity of selector */
.hover-gallery :is(figure, figure *, img, #specify) {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: auto;
	margin: 0;
}

/* unfocused state */
.hover-gallery:is(:hover, :focus-within) > * {
	scale: var(--_hg-scale-unfocus);
	filter: saturate(0.15);
}

/* focused state */
.hover-gallery:is(:hover, :focus-within) > *:is(:hover, :focus-visible) {
	scale: var(--_hg-scale-focus);
	z-index: 3;
	filter: saturate(1);
}

/* standard state */
.hover-gallery:is(:hover, :focus-within) > *:is(:hover, :focus-visible) + *,
.hover-gallery:is(:hover, :focus-within) > *:has(+ *:is(:hover, :focus-visible)) {
	scale: var(--_hg-scale-standard);
	filter: saturate(0.45);
}

/* Use only with images */
.hover-gallery--square * {
	aspect-ratio: 1;
	object-fit: cover;
	object-position: center;
}

/* hover gallery cards */
.hover-gallery--cards {
	background: #f1f6fb;
	padding: 1rem;
}

.hover-gallery--cards > * {
	display: block;
	background: #fff;
	padding: 1rem;
	border-radius: 5px;
	box-shadow: 0px 5px 10px -3px #666;
	text-align: center;
}
.hover-gallery--cards a {
	text-align: center;
	text-decoration: none;
}
.hover-gallery--cards a:is(:focus-visible, :hover) {
	text-decoration: underline;
}





.tab-list {
	display: flex;
	width: 100%;

	[role="tab"] {
		padding: 0.25em 0.5em;
		background: #ebeff4;
		color: #205998;
		border: none;
    line-height: 1.2;
	}
	[aria-expanded="true"] {
		background: #205998;
		color: #fff;
	}

	& + :is(*, .priority) {
		margin-top: 0;
		padding-top: 0;
	}

	span{
		display: block;
		font-size: .8em;
	}
}








.full-span {
	--_full-span-content-width: 1200px;
    width: 100vw;
    position: relative;
    left: -50vw;
    margin-left: 50%;
    margin-bottom: 8rem;
    display: grid;
    grid-template-columns: 1fr min(var(--_full-span-content-width), 100%) 1fr;
    padding-block: 3rem;
    background: #205998;
}

.full-span > * {
    grid-column: 2;
    color: #fff;
    padding-inline: max(4rem, 5vw);
}

.full-span > :first-child {
    margin-top: 0;
}
.full-span.full-span--dark {
    background: #184171;
    background: #072141;
}
.full-span--wide{
	--_full-span-content-width: 1600px;
}


.body-content:has(.field--name-body>div>.full-span:first-child) .block-system-breadcrumb-block {
    position: absolute;
    z-index: 1;
    translate: 0 -100%;
}
.body-content:has(.field--name-body>div>.full-span:first-child) .breadcrumb{
    padding-block: 1rem;
}
.body-content:has(.field--name-body>div>.full-span:first-child) .breadcrumb *,
.body-content:has(.field--name-body>div>.full-span:first-child) .breadcrumb .breadcrumb-item::before{
    color: #fff;
}

.image-fill-contain:is(img),
.image-fill-contain img{
    object-fit:contain;
}

.image-square:is(img),
.image-square img{
	aspect-ratio: 1;
	width:100%;
	object-fit:cover;
}

.image-profile:is(img),
.image-profile img{
	aspect-ratio: 5/7;
	width:100%;
	max-width: 150px;
	object-fit:cover;
}
.image-5x7:is(img),
.image-5x7 img{
	aspect-ratio: 5/7;
	width:100%;
	object-fit:cover;
}




/*

Dialogs, Modals, Popups
*/
dialog[open] {
    width: min(90ch, 95%);
    /* width: 100%; */
    border: none;
    padding: 0;
    /* margin: 0; */
    animation: dialog-show 600ms ease forwards;
    background: transparent;
    overflow: visible;
}
dialog[open].wide {
    width: min(160ch, 95%);
}

::backdrop {
    background: #051525aa;
    backdrop-filter: blur(.25rem);
    opacity: 0;
    animation: fade-in 300ms ease forwards;
}

dialog[open] .close-modal {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    aspect-ratio: 1;
    padding: 1rem;
    line-height: 0;
    background: #205998;
    border-radius: 100%;
    translate: 50% -50%;
    font-weight: normal;
    font-size: 0;
}
dialog[open] .close-modal::before {
    content: "\2715";
    font-size: 3rem;
    vertical-align: middle;
}


dialog[open] .close-modal:is(:hover,:focus-visible,:active,:focus) {
	background: #fff;
	outline: none;
	border-width: .5rem;
}


dialog[open] > .dialog__content{
	position: relative;
	padding: 2rem;
	background: #fff;
	max-height: 90vh;
	margin-inline: auto;
	overflow-y: auto;
}

body:has(dialog[open]) {
    overflow: hidden;
}

@keyframes fade-in{
    from {
        opacity: 0;
    }
    to {
        opacity: 1; 
    }
}

@keyframes dialog-show{
    from {
        translate: 0 -20%;
        opacity: 0;
    }
    50% {
        opacity: 1; 
    }
    to {
        translate: 0 0
    }
}




.h0 {
    font-size: 6rem;
}
.list-reset, .list-reset > li {
    list-style: none;
    padding-inline: 0;
    margin-inline: 0;
}
.hover--underline:is(:hover, :focus-visible) {
    text-decoration:underline !important; 
}






















.list-filter__title {
    margin: 3rem auto -2.5rem;
    max-width: 70rem;
    padding-inline-start: 1rem;
}

.list-filter__form {
	display: grid;
	grid-template-columns: 1fr 13rem;
	gap: 0;
	align-items: flex-start;
	margin: 3rem auto;
	max-width: 70ch;
}

.list-filter__form :where(input, button) {
	width: 100%;
	height: 100%;
	padding-inline: 2rem 0.5em;
	line-height: 1;
	border-width: 1px;
}

.list-filter__form input {
	border-radius: 4rem 0 0 4rem;
	border-right: none;
}

.list-filter__form button.button {
	border-radius: 0 4rem 4rem 0;
}

.list-filter__content > ul > li {
	display: block;
	padding: 0 0.5em;
	margin-block: 0.2em;
}
.list-filter__content li > :where(button, .button) {
	text-align: left;
}


/* 
presets & fixes for grid in filter list 
*/
.list-filter__content--grid .grid {
	--grid-cols-small: 3;
	--grid-cols-tiny: 2;
	--grid-cols: 4;
	--grid-gap: 3rem;
}

.list-filter__content--grid :is(button, .button, a, li) {
	background: none;
	border: none;
	color: inherit;
	padding: 0;
	margin: 0;
	text-align: center;
	font-weight: bold;
	font-size: 1.6rem;
	text-decoration: none;
	display: block;
}
.list-filter__content--grid :is(button, .button, a, li) span {
	display: inline-block;
	line-height: 1;
	margin-block: 1rem;
}
.list-filter__content--grid :is(button, .button, a):hover {
	background: #9dcffc;
	outline: solid 5px #9dcffc;
}

.list-filter__content--grid :is(img, figure, figure .field__item) {
	padding: 0;
	margin: 0;
}




/****** Types of List Designs *****/
/* 
button list 
*/
.button-list button {
	display: block;
	width: 100%;
	text-align: left;
	background: none;
	padding: 0.5rem;
	border: 0;
	color: inherit;
}

.button-list button:is(:hover, :focus) {
	background: #9dcffc;
}


.list-filter__content [data-hidden] {
	display: none;
}

/*
togglable list 
*/

[data-list-toggle] > :is(ul , ul > li){
	list-style:none;
	padding-left: 0;
}

.list-toggle__item {
	font-size: 1.8rem;
	line-height: 1;
	font-weight: 700;
	padding: 0.75em;
	color: var(--color-blue-dk);
	background: #b6d3ec;
	display: flex;
	margin-block: 0 1.5rem;
	border-radius: 4px;
	cursor: pointer;
	padding: 0;
}

.list-toggle__item-content {
	padding: 1.5rem 2rem;
	margin:0 3px 1.5rem 3px;

	&:not(.link-list) {
		background: #e9ecef;
	}
}

.list-toggle__item:has([aria-expanded="false"]) + .list-toggle__item-content {
	display: none;
}

.list-toggle__button {
	width: 100%;
	display: block;
	background: none;
	border: none;
	color: inherit;
	font-size: inherit;
	text-align: inherit;
	padding: 0.75em;
	display: flex;
}


.list-toggle__button:after {
	content: "\f054";
	font-family: "FontAwesome";
	font-size: 1.8rem;
	color: var(--color-blue);
	background: 0 0;
	height: auto;
	flex-shrink: 0;
	margin-left: auto;
	text-align: right;
	transition: transform 0.2s ease-in-out;
	transform: rotate(0deg);
}

/* Expanded */
.list-toggle__item:has([aria-expanded="true"]) {
	margin-bottom: 0px;

	.list-toggle__button:after {
		transform: rotate(90deg);
	}
}
/* Style fixes for list item content */
.list-toggle__item-content ul {
	list-style: disc;
}
.list-toggle__item-content ul ul {
	list-style: circle;
}
.list-toggle__item-content ul ul ul {
	list-style: square;
}
