/* .block-visibility-hide-large-screen {
    display: block !important;
    @media(min-width: 1024px) {
        display: none !important;
    }
} */
/**
 * Block: core/button 
 */
.wp-block-button:not(.is-style-read-more) .wp-block-button__link {
	transition: var(--wp--custom--animation--default-transition);
	background-color: var(--wp--preset--color--green);
	border-radius: 100px;
	color: var(--wp--preset--color--cool-black);
	font-weight: 600;
	border: 2px solid var(--wp--preset--color--green);
	transition: all 200ms ease-in-out;
	cursor: pointer;
}
.wp-block-button:is(:hover, :focus) .wp-block-button__link {
	background-color: transparent;
	color: var(--wp--preset--color--green);
	opacity: 1;
}
.wp-block-button:active .wp-block-button__link {
	text-decoration: none;
}

/* Outline Style Buttons */
.wp-block-button.is-style-outline .wp-block-button__link {
	background-color: transparent;
}
.wp-block-button.is-style-outline .wp-block-button__link.has-text-color {
	--btn-color: currentColor;
	border-color: var(--btn-color) !important;
}
.wp-block-button.is-style-outline:is(:hover, :focus) .wp-block-button__link.has-text-color {
	color: var(--wp--preset--color--white) !important;
}
.wp-block-button.is-style-outline:is(:hover, :focus) .wp-block-button__link.has-purple-color {
	background-color: var(--wp--preset--color--purple);
	border-color: var(--wp--preset--color--purple) !important;
}
.wp-block-button.is-style-outline:is(:hover, :focus) .wp-block-button__link.has-light-blue-color {
	background-color: var(--wp--preset--color--light-blue);
	border-color: var(--wp--preset--color--light-blue) !important;
}

/**
 * Google Map from baytek-cartographer shortcode
 */
.cartograph {
    min-height: min(66vh, 600px);
}

.cartograph .marker-layer div {
    overflow: visible !important;
}
.cartograph .marker-layer img {
    filter: drop-shadow(0 5px 10px rgb(0 0 0 / 30%));
}

.cartographer-infowindow-content {
    color: var(--wp--preset--color--black);
}

/**
 * Block: core/columns
 */

.wp-block-column {
    box-sizing: border-box;
}

/* Stack in reverse order on mobile */
@media (max-width: 781px) {
    .wp-block-columns.mobile-reverse {
        flex-wrap: wrap-reverse !important;
    }
}

/* Equal Height Columns */
.wp-block-columns.is-style-equal-height > .wp-block-column {
    align-self: stretch;
    .wp-block-group {
        height: 100%;
    }
    
}
.wp-block-columns.is-style-equal-height > .wp-block-column.is-vertically-aligned-stretch {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/**
 * Block: core/cover
 */
.wp-block-cover.alignfull .wp-block-cover__inner-container {
    max-width: var(--wp--custom--spacing--wide-size);
}

.wp-block-cover:where(.hero) {
    min-height: auto;
}

/** 
 * Update max width when below our max-width / alignwide limits 
 * eg. 1296px + 3.00rem (48px) on each side = 1392px
 */
@media (max-width: 1392px) {
	.wp-block-cover.alignfull .wp-block-cover__inner-container {
		max-width: 100%;
	}
}
/**
 * Block: core/details
 */

details {
    border-bottom: solid 1px currentColor;
    margin-block-start: 0 !important;
}

.wp-block-group details:first-of-type {
    border-top: 1px solid var(--wp--preset--color--black);
}
details summary {
	font-size: clamp(1.125rem, 1.052rem + 0.31vi, 1.313rem);
	padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
    position: relative;
    font-weight: bold;
    @media(max-width: 767px) {
        padding-right: 4.625rem;
    }
}

details summary::marker {
	content: '';
	display: none;
}

details summary::-webkit-details-marker {
	display: none;
}

details summary:before {
	display: inline-block;
	font-family: "Font Awesome 6 Pro";
	font-style: normal;
	content: '\2b';
	font-weight: 300;
    position: absolute;
    right: var(--wp--preset--spacing--30);
    top: 50%;
    transform: translateY(-50%);
	padding: var(--wp--preset--spacing--10) var(--wp--preset--spacing--20);
	font-size: 20px;
    background-color: var(--wp--preset--color--white);
    color: var(--wp--preset--color--black);
}

details[open] summary:before {
	content: '\58';
    padding: var(--wp--preset--spacing--10) 1.0975rem;
}

details[open] {
    background-color: var(--wp--preset--color--light-grey);
}

details:is(:hover, :focus) {
    background-color: var(--wp--preset--color--light-grey);
}

details .content {
    margin-top: 0;
	padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
	font-size: clamp(1rem, 0.904rem + 0.427vw, 1.25rem);
    border-top: 1px solid rgba(0, 0, 0, 0.5); 
    p {
        max-width: var(--wp--custom--spacing--content-size);
        font-size: var(--wp--preset--font-size--medium);
    }
}

.wp-block-file a {
    font-size: var(--wp--preset--font-size--medium-large);
}

.wp-block-file a:not(.wp-block-file__button) {
    width: 100%;
    display: block;
    margin-bottom: var(--wp--preset--spacing--30);
}
.wp-block-file .wp-block-file__button {
    margin-left: 0;
}
/**
 * Block: core/gallery
 */
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    background: var(--wp--preset--gradient--black-50-to-100);
    font-size: var(--wp--preset--font-size--small);
    padding: 0.5em 1em;
}

.wp-block-gallery.has-nested-images figure.wp-block-image:is(.is-style-fixed-4-by-3, .is-style-fixed-16-by-9) figcaption {
    border-bottom-left-radius: var(--wp--custom--border--radius);
    border-bottom-right-radius: var(--wp--custom--border--radius);
}
/**
 * Block: genesis-custom-blocks/all-chapters-map
 */

.all-chapters-map-block {
	min-height: clamp(18.75rem, 11.538rem + 32.051vw, 37.5rem);
}

/* Style infowindows */
.gm-style .gm-ui-hover-effect {
    width: 12px !important;
    height: 12px !important;
    top: 6px !important;
    right: 6px !important;
    display: flex;

    span {
    	margin: 0 !important;
    	width: 12px !important;
    	height: 12px !important;
    }
}
.gm-style .gm-style-iw-d {
	overflow: visible !important;
	padding-right: 12px;
	padding-bottom: 24px;
	min-width: 115px;

	.wp-block-read-more:after {
		margin-left: 0;
	}
}

/**
 * Block: genesis-custom-blocks/chapter-map
 */

@media (max-width: 781px) {
	.chapter-map-block {
		aspect-ratio: 3 / 2;
	}
}

/**
 * Block: genesis-custom-blocks/filter-archive
 */

ul.archive-items {
    list-style-type: none;
    padding-inline-start: 0;
}

ul.archive-items li > * {
    height: 100%;
}

/* Counter WP inline styles from conflicting blocks */
.filter-archive .wp-block-group.is-layout-flex:where(.is-vertical) {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.filter-archive {
    margin-top: var(--wp--preset--spacing--60);
    padding-top: var(--wp--preset--spacing--20);
}

.filter-archive .columns-3.archive-items {
    display: grid;
    gap: var(--wp--preset--spacing--50);
    @media(min-width: 768px) {
        grid-template-columns: repeat(2, 1fr);
    }
    @media(min-width: 1024px) {
        grid-template-columns: repeat(3, 1fr);
    }
    li {
        margin-top: 0;
        display: flex;
        flex-direction: column;
    }
}

.filter-archive .search-wrapper {
    position: relative;
}

.filter-archive .search-wrapper::after {
    font-family: "Font Awesome 6 Pro";
    content: "\f002";
    color: var(--wp--preset--color--purple);
    position: absolute;
    right: var(--wp--preset--spacing--30);
    top: var(--wp--preset--spacing--20);
    font-weight: 700;
    font-size: var(--wp--preset--font-size--small);
}

.filter-archive .filters-group {
    gap: var(--wp--preset--spacing--50);
}

.filter-archive .filters-group .filter-taxonomy .select-wrapper::after {
    content: '\f078';
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 0;
    top: var(--wp--preset--spacing--20);
    color: var(--wp--preset--color--purple);
    font-size: 12px;
    font-weight: 900;
}

.filter-archive .filters-group .filter-taxonomy .select-wrapper {
    position: relative;
    select {
        appearance: none;
        -webkit-appearance: none;
    }
}
/**
 * Block: genesis-custom-blocks/post-slider
 */

.post-slider {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: visible;

	.swiper {
		margin: calc(var(--wp--preset--spacing--20) * -1);
		padding: var(--wp--preset--spacing--20);
	}

	.swiper-slide {
		height: auto !important;
		margin-right: var(--wp--preset--spacing--40);

		> * {
			height: 100%;

			.wp-block-read-more {
				margin-top: auto;
			}
		}
	}

	&.showing-3-slides {
		.swiper {
			width: calc(100% + ((100vw - 100%) / 2) + var(--wp--preset--spacing--10));
			box-sizing: border-box;
		}

		.swiper-slide {
			width: clamp(15rem, 9.615rem + 23.932vw, 29rem);
			min-width: clamp(15rem, 9.615rem + 23.932vw, 29rem);
			max-width: 100%;
			margin-right: var(--wp--preset--spacing--40);
		}

		.swiper-pagination-lock + .wp-block-buttons {
			display: none;
		}
	}

	.swiper-pagination-bullets {
		--swiper-pagination-bottom: calc(30px + 5px);

		text-align: left;
		padding: 0 var(--wp--preset--spacing--20);
		width: fit-content !important;

		.swiper-pagination-bullet {
			transition: var(--wp--custom--animation--default-transition);
			background-color: var(--wp--preset--color--green);
			opacity: 0.2;

			&:is(:hover,:focus,.swiper-pagination-bullet-active) {
				opacity: 1;
			}
		}
	}

	.swiper-pagination-fraction {
		position: relative;
		width: fit-content;
		padding: var(--wp--preset--spacing--10) var(--wp--preset--spacing--30);
		border: solid 1px var(--wp--preset--color--light-grey);
		color: var(--wp--preset--color--purple);
		border-radius: 34px;
		font-size: var(--wp--preset--font-size--small);
		font-weight: 600;
	}

	.wp-block-buttons {
		flex-wrap: nowrap;

		.wp-block-button__link {
			border-radius: 50%;
			border: none;
			display: flex;
			align-items: center;
			justify-content: center;
			padding: 0 !important;
			width: 60px;
			height: 60px;
			background-color: var(--wp--preset--color--lightest-grey);

			&:is(:hover,:focus) {
				background-color: var(--wp--preset--color--lightest-grey);

				svg {
					color: var(--wp--preset--color--light-blue);
				}
			}
		}
	}

	&:is(.slider-type-success-story,.slider-type-partnership) {
		.wp-block-buttons {
			flex-wrap: nowrap;
			justify-content: center;
			align-items: flex-end;
		}
	}

	&:is(.slider-type-post,.slider-type-event) {
		.wp-block-buttons {
			justify-content: flex-end;
			max-width: var(--wp--custom--spacing--content-size);
		}
	}
}

@media (max-width: 599px) {
	.post-slider.showing-3-slides .swiper {
		width: calc(100% + ((100vw - 100%) / 2) + var(--wp--preset--spacing--20));
	}
}

.has-background:not(.has-white-background-color) .post-slider .wp-block-buttons .wp-block-button__link {
	background-color: var(--wp--preset--color--white);

	&:is(:hover,:focus) {
		background-color: var(--wp--preset--color--white);
	}
}

.alignwide .post-slider:is(.slider-type-post,.slider-type-event) .wp-block-buttons {
	max-width: var(--wp--custom--spacing--wide-size);
}

/* Admin View */
div[data-type="genesis-custom-blocks/post-slider"] .post-slider {
	overflow: hidden;
	padding: var(--wp--preset--spacing--20);

	&.showing-1-slides {
		.swiper-slide + .swiper-slide {
			display: none;
		}
	}
}

.post-slider .swiper:not(.swiper-initialized) .swiper-wrapper {
	display: flex;
}

.post-slider.showing-1-slides .swiper:not(.swiper-initialized) .swiper-wrapper {
	.swiper-slide + .swiper-slide {
		display: none;
	}
}
/**
 * Block: genesis-custom-blocks/team-member
 */

.team-member .name .designation::before {
	content: ', ';
	display: inline;
}

@media (max-width: 782px) {
	/* Centre the view bio button at single column */
	.team-member > .wp-block-group .wp-block-buttons {
		justify-content: center;
	}
}

dialog .biography *:last-child {
	margin-bottom: 0;
}
/**
 * Form Blocks: gravityforms/form
 * Intended to replace the built in gravity form css files.
 */

/* Form Fields - up 4 column grid */
.gform_fields {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wp--custom--forms--fields--spacing--block-gap);
}
.gfield {
	width: 100%;
}
.gfield--width-half {
	width: calc(50% - var(--wp--custom--forms--fields--spacing--block-gap) * 0.5);
}
.gfield--width-third {
	width: calc(33.3333% - var(--wp--custom--forms--fields--spacing--block-gap) * 0.66667);
}
.gfield--width-quarter {
	width: calc(25% - var(--wp--custom--forms--fields--spacing--block-gap) * 0.75);
}

/* Checkbox & Radio Group Form Fields */
.gfield_label + :where(.ginput_container_checkbox, .ginput_container_radio) {
	margin-block-start: var(--wp--custom--forms--fields--spacing--padding);
}


/** 
 * Special Complex Fields 
 * e.g. name, address, date, time, etc
 */
.ginput_complex {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wp--custom--forms--fields--spacing--padding);
}
.ginput_complex label {
	font-size: var(--wp--preset--font-size--small);
}

/* Name Field */
:is(.gf_name_has_1, .gf_name_has_2, .gf_name_has_3, .gf_name_has_4, .gf_name_has_5) {
	gap: var(--wp--custom--forms--fields--spacing--padding) var(--wp--custom--forms--fields--spacing--block-gap);
}
:where(.gf_name_has_1, .gf_name_has_2, .gf_name_has_3, .gf_name_has_4, .gf_name_has_5) > * {
	flex-basis: calc(20% - var(--wp--custom--forms--fields--spacing--block-gap) * 0.8);
	flex-grow: 1;
}
:where(.gf_name_has_1, .gf_name_has_2, .gf_name_has_3, .gf_name_has_4, .gf_name_has_5) :is(.name_prefix_select, .name_suffix) {
	flex-basis: 4em;
	flex-grow: 0;
}

/* Address Field */
.ginput_container_address {
	gap: var(--wp--custom--forms--fields--spacing--padding) var(--wp--custom--forms--fields--spacing--block-gap);
}
.ginput_container_address .ginput_full {
	width: 100%;
}
.ginput_container_address :where(.ginput_left, .ginput_right) {
	width: calc(50% - var(--wp--custom--forms--fields--spacing--block-gap) * 0.5);
}

/* Date Field */
.ginput_container_date {
	display: flex;
	gap: var(--wp--custom--forms--fields--spacing--padding);
}
:is(.ui-datepicker, .gform-theme-datepicker) {
	padding: 1em;
	font-size: calc(var(--wp--preset--font-size--small) * 0.875);
	border-bottom-left-radius: var(--wp--custom--border--radius-small);
	border-bottom-right-radius: var(--wp--custom--border--radius-small);
	box-shadow: 0px 4px 6px 2px var(--wp--custom--forms--fields--color--box-shadow);
}
.ui-datepicker-header {
	display: grid;
	grid-template-columns: auto 1fr auto;
    align-items: center;
	gap: calc(var(--wp--custom--forms--fields--spacing--padding) * 2);
}
.ui-datepicker-header > * {
	grid-row: 1;
}
.ui-datepicker-header :is(.ui-datepicker-prev, .ui-datepicker-next) {
	cursor: pointer;
}
.ui-datepicker-header :is(.ui-datepicker-prev, .ui-datepicker-next) span {
	display: none;
}
.ui-datepicker-header :is(.ui-datepicker-prev, .ui-datepicker-next)::before {
	font-family: "Font Awesome 6 Pro";
	font-style: normal;
}
.ui-datepicker-header .ui-datepicker-prev::before {
	content: '\f323';
}
.ui-datepicker-header .ui-datepicker-next::before {
	content: '\f324';
}
.ui-datepicker-header .ui-datepicker-next {
	grid-column: 3;
}
.ui-datepicker-title {
	display: flex;
	gap: var(--wp--custom--forms--fields--spacing--padding);
}
.ui-datepicker-title select {
	width: auto;
	font-size: inherit;
	border: none;
	padding-right: 0;
}
.ui-datepicker-calendar {
	width: 100%;
	margin-block-start: var(--wp--custom--forms--fields--spacing--padding);
	text-align: center;
}
.ui-datepicker-calendar :is(th,td) {
	width: calc(100% / 7);
	padding: 0;
}

/* Time Field */
.ginput_container_time {
	display: inline-flex;
	flex-basis: 3em;
	flex-grow: 1;
}
.ginput_container_time input {
	text-align: center;
}
.gfield_time_ampm {
	flex-basis: 4em;
}

/* List Field */
.gfield_list_groups .gfield_list_group + .gfield_list_group {
	margin-block-start: var(--wp--custom--forms--fields--spacing--padding);
}
.gfield_list .gfield_list_icons {
	margin-block-start: var(--wp--custom--forms--fields--spacing--padding);
}
.gfield_list .gfield_list_icons :is(.add_list_item, .delete_list_item) {
	font-size: calc(var(--wp--preset--font-size--small) * 0.875);
}
.gfield_list .gfield_list_icons .delete_list_item {
	margin-inline-start: 1.5em;
	padding: 0;
	background: none;
}

/* File Field */
.ginput_container_fileupload .gform_fileupload_rules {
	font-size: var(--wp--preset--font-size--small);
}

/* Error Validation */
.gform_validation_errors {
	margin-block-end: var(--wp--custom--forms--fields--spacing--block-gap);
	padding: 1em;
	background-color: var(--wp--custom--forms--errors--color--background);
	color: var(--wp--custom--forms--errors--color--text);
	border: 1px solid var(--wp--custom--forms--errors--color--border);
}
.gform_validation_errors .gform_submission_error {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: currentColor;
}
.gform_validation_errors > * {
	margin: 0;
}
.gform_validation_errors > * + *{
	margin-block-start: var(--wp--preset--spacing--20);
}
.gform_validation_error_link {
	color: currentColor;
}
.gfield .validation_message {
	margin-block-start: var(--wp--preset--spacing--10);
	font-size: var(--wp--preset--font-size--small);
	color: var(--wp--custom--forms--errors--color--text);
}
.gfield.gform_validation_container {
	display: none;
}

/* Form Wrapper - removing margin on the block - leaving to a wrapper block */
body .is-layout-flow > .gform_wrapper {
	margin: 0;
}
/* Form Header */
.gform_heading .gform_required_legend {
	display: none;
}

/* Form Footer */
.gform_footer {
	margin-block-start: var(--wp--custom--forms--fields--spacing--block-gap);
}

ul.gform_fields {
	list-style: none;
	padding-left: 0;
	margin-top: 0;
	margin-bottom: var(--wp--preset--spacing--70);
}
.gfield_required_asterisk,
.gfield_required_text {
	color: var(--wp--preset--color--purple);
}
.gform_description,
.gf_progressbar_title,
.gf_progressbar_percentage,
.gform_confirmation_message {
	font-size: var(--wp--preset--font-size--medium-large);
}
.ui-datepicker {
	background: var(--wp--preset--color--white);
}
.gf_progressbar_wrapper {
	display: flex;
	.gf_progressbar {
		display: flex;
		margin-left: var(--wp--preset--spacing--30);
		align-items: center;
	}
}
/**
 * Block: core/group
 */

/**
 * Fixes for when Gutenberg isn't outputting inline styles
 * (e.g. markup included through custom blocks)
 */
body .is-layout-flex.is-nowrap {
	flex-wrap: nowrap;
}

body .is-layout-flex.is-vertical {
	flex-direction: column;
}

/**
 * Blocks: core/image, core/post-featured-image
 */
:is(.wp-block-image, .wp-block-post-featured-image):is(.is-style-rounded) img {
	border-radius: 50%;
}

:is(.wp-block-image, .wp-block-post-featured-image) {
	max-width: 100%;
}
/**
 * Blocks: core/list
 */
:is(ul:not([class]), ol, ul.is-style-default, ol.is-style-default) :is(li + li, ul, ol) {
	margin-block-start: var(--wp--preset--font-size--large);
}

ul.is-style-default {
	list-style-type: disc;
}


.is-style-list-style-none {
	list-style-type: none;
	padding-inline-start: 0;
}
.is-style-list-style-none li + li,
.is-style-list-style-none li :is(ul, ol) {
	margin-block-start: var(--wp--preset--font-size--large);
}


:is(ul.is-style-checkmark-list) {
	margin-top: calc(var(--wp--preset--font-size--small) * 2) !important;
}
:is(ul.is-style-checkmark-list) li{
	margin-top: var(--wp--preset--font-size--large) !important;
}
:is(ul.is-style-checkmark-list) li{
	position: relative;
}
:is(ul.is-style-checkmark-list), :is(ul.is-style-checkmark-list) ul {
	list-style-type: none;
}
:is(ul.is-style-checkmark-list) li:before {
	content: '';
	position: absolute;
	top: 5px;
	left: calc(-1 * (var(--wp--preset--font-size--medium) * 2));
	width: calc(var(--wp--preset--font-size--medium) + 2px);
	height: calc(var(--wp--preset--font-size--medium) + 2px);
	background-image: url('../images/circle-checkmark.svg');
	background-size: auto;
	background-position: top left;
	background-repeat: no-repeat;
}


ul.is-style-divided-list {
	border-top: solid 1px var(--wp--preset--color--light-grey);
	list-style: none;
	padding-left: 0;
}
ul.is-style-divided-list li {
	padding: var(--wp--preset--font-size--large) 0;
	border-bottom: solid 1px var(--wp--preset--color--light-grey);
}

ul.wp-block-list li {
	margin-bottom: var(--wp--preset--spacing--20);
	&::marker {
		color: var(--wp--preset--color--green);
	}
}

.footer-cta {
    @media(max-width: 559px) {
        .wp-block-media-text__content {
            padding-left: 0;
            padding-right: 0;
            margin-top: var(--wp--preset--spacing--70);
        }
    }
}
/**
 * Block: core/navigation-link
 */
.wp-block-navigation-link.is-style-button .wp-block-navigation-item__content {
	background-color: var(--wp--preset--color--black);
	color: var(--wp--preset--color--white);
	padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);
	border-radius: var(--wp--custom--border--radius-small);
	font-weight: 400;
	transition: background-color 0.4s ease;
}

.wp-block-navigation-link.is-style-button:is(:hover, :focus) .wp-block-navigation-item__content {
	background-color: var(--wp--preset--white);
	color: var(--wp--preset--color--black);
}

.wp-block-navigation-link.is-style-button:active .wp-block-navigation-item__content .wp-block-navigation-item__label {
	opacity: 0.5;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .is-style-button .wp-block-navigation-item__content {
	padding: 0.625em 1.5em;
}

.wp-block-navigation-link.is-style-rounded-image img {
	border-radius: var(--wp--custom--border--radius);
	overflow: hidden;
	aspect-ratio: 1.5 / 1;
}

.desktop-top-menu.wp-block-navigation .wp-block-navigation-link .wp-block-navigation-item__content {
	font-weight: 400;
	color: var(--wp--preset--color--white);
	&:is(:hover, :focus) {
		color: var(--wp--preset--color--purple) !important;
	}
}

.desktop-top-menu.wp-block-navigation .wp-block-navigation-link.sign-in .wp-block-navigation-item__content {
	color: var(--wp--preset--color--light-blue) !important;
	&:is(:hover, :focus) {
		color: var(--wp--preset--color--purple) !important;
	}
}

.desktop-top-menu .wp-block-navigation__container {
	gap: var(--wp--preset--spacing--40);
}

.wp-block-navigation__container a.wp-block-navigation-item__content {
	color: var(--wp--preset--color--white) !important;
	font-weight: 600;
	position: relative;

	&:is(:hover, :focus) {
		opacity: 1;
		color: var(--wp--preset--color--purple) !important;
		@media(max-width: 1179px) {
			color: var(--wp--preset--color--white) !important;
			text-decoration: underline;
			text-decoration-color: var(--wp--preset--color--green);
		}
	}
}
.wp-block-navigation__container {
	gap: var(--wp--preset--spacing--30);
}
.wp-block-site-logo a:is(:hover, :focus), 
.wp-block-image a:is(:hover, :focus) {
	opacity: 1;
}

/**
 * Block: core/navigation-submenu
 */

@media (min-width: 992px) {
    header {
        nav.wp-block-navigation:not(.mobile-menu) li.current-menu-item > a {
            text-decoration: underline;
            text-decoration-color: var(--wp--preset--color--light-blue);
        }
        /* nav.wp-block-navigation:not(.mobile-menu) li.current-menu-item > a::before {
            border-bottom: var(--wp--preset--color--light-blue) 0.2rem solid;
            bottom: calc(100% - 1.75rem);
            opacity: 1;
            width: 100%;
            content: "";
            position: absolute;
            left: 0;
        }  */
        nav.wp-block-navigation .wp-block-navigation-item {
            cursor: pointer;
        }
        nav.wp-block-navigation:not(.mobile-menu) li.has-child {
            svg {
                display: none;
            }
            .wp-block-navigation__submenu-icon {
                position: relative;
            }
            .wp-block-navigation__submenu-icon:after {
                content: "\F0d7";
				font-family: "Font Awesome 6 Pro";
				color: var(--wp--preset--color--green);
				font-size: 0.75rem;
                font-weight: 900;
                position: absolute;
                top: 0.375rem;
                right: 0;
                transition: all 200ms ease-in-out;
            }

            &:is(:hover,:focus) {
                > a {
                    color: var(--wp--preset--color--purple) !important;
                }
                .wp-block-navigation__submenu-icon:after {
                    content: '\f0d8';
                }
            }

            ul.wp-block-navigation__submenu-container {
                --header-submenu-offset: calc(100% + var(--wp--preset--spacing--30) - 3px);
                border-radius: 5px;
                position: absolute;
                top: var(--header-submenu-offset);
                left: 50% !important;
                right: auto;
                transform: translateX(-50%);
                border: none;
                min-width: max-content !important;
                max-width: 600px;
                white-space: nowrap;
                /* width: 100% !important; */
                background-color: var(--wp--preset--color--white);
                color: var(--wp--preset--color--dark-blue);
                font-weight: 400;
                align-items: center;
                text-align: center;
                padding: var(--wp--preset--spacing--30) 0;
                box-shadow: 0 0.3rem 0.6rem 0 rgba(13, 25, 34, 0.29);

                &:before {
                    content: '';
                    position: absolute;
                    top: calc(var(--wp--preset--spacing--30) * -1);
                    left: calc(var(--wp--preset--spacing--30) * -1);
                    right: calc(var(--wp--preset--spacing--30) * -1);
                    bottom: calc(var(--wp--preset--spacing--30) * -1);
                    opacity: 0;
                }

                &:after {
                    content: '\f0d8';
                    position: absolute;
                    font-family: "Font Awesome 6 Pro";
                    top: -2rem;
                    font-weight: 900;
                    font-size: 2.5rem;
                    color: var(--wp--preset--color--white);
                    pointer-events: none;
                }

                li.wp-block-navigation-link {
                    width: 100%;
                    max-width: 300px;

                    &:first-of-type a {
                        padding-top: 0;
                    }

                    &:last-of-type a {
                        padding-bottom: 0;
                    }
                }

                a {
                    padding-left: var(--wp--preset--spacing--50);
                    padding-right: var(--wp--preset--spacing--50);
                    width: 100%;
                    max-width: 100%;
                    text-align: center;
                    justify-content: center;
                    color: var(--wp--preset--color--dark-blue) !important;
                    font-weight: 400;
                    display: inline-block !important;
                    text-wrap-mode: wrap;
                }

                a:is(:hover,:focus),
                .wp-block-navigation-link.current-menu-item a {
                    color: var(--wp--preset--color--purple) !important;
                }
            }
        }
    }
}
/**
 * Block: core/navigation
 */

/**
 * Special mobile menu
 */
#mobile-menu {
	--logo-height: 60px;

	position: absolute;
	left: 100%;
	right: 0;
	height: 100vh;
	overflow: auto;
	pointer-events: none;
	padding: 0;
	transition: left 0.5s ease-in-out;
	width: 100%;
	max-height: calc(100vh - (var(--wp--preset--spacing--30) * 2) - var(--logo-height));

	nav.wp-block-navigation {
		min-height: 100%;
		gap: var(--wp--preset--spacing--40);
	}
	.mobile-menu-socials {
		padding-left: var(--wp--preset--spacing--30);
		.wp-block-outermost-icon-block.social {
			svg {
				width: 20px;
				background: var(--wp--preset--color--light-blue);
				border-radius: 100px;
				padding: var(--wp--preset--spacing--10);
			}
		}
	}
	

	.wp-block-navigation__container {
		max-width: 100%;
		width: 100%;
		gap: unset;
		border-top: 1px solid var(--wp--preset--color--green);
	}

	.wp-block-navigation-item {
		border-bottom: 1px solid var(--wp--preset--color--green);
		width: 100%;
		&:is(:hover, :focus) a {
			border-bottom: 1px solid var(--wp--prest--color--green);
		}
		
		a {
			padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--30);	
			color: var(--wp--preset--color--white) !important;
		}
	}

	.sign-in a {
		color: var(--wp--preset--color--green) !important;
	}

	.wp-block-navigation-item.has-child.has-expanded-submenu .wp-block-navigation__submenu-container {
		height: 100% !important;
		visibility: visible !important;
		max-height: 1000px;
	}

	.wp-block-navigation-item.has-child {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		max-width: 100%;

		.wp-block-navigation__submenu-icon {
			padding: var(--wp--preset--spacing--30);
			border-left: 1px solid var(--wp--preset--color--green);
			height: -webkit-fill-available;
			width: 57px;
			&:after {
                content: "\F0d7";
				font-family: "Font Awesome 6 Pro";
				color: var(--wp--preset--color--green);
				font-size: 1rem;
                font-weight: 900;
                transition: transform 0.2s ease-in-out;
				display: inline-block;
            }
			svg {
				display: none;
			}
		}

		.wp-block-navigation__submenu-container {
			position: relative;
			top: 0;
			border: none;
			width: 100vw;
			background-color: var(--wp--preset--color--cool-black);
			max-height: 0;
			opacity: 0;
			overflow: hidden;

			li {
				display: block;
				align-items: start;
				width: 100%;

				a {
					width: auto;
					font-weight: 400;
				}
				&:first-of-type {
					border-top: 1px solid var(--wp--preset--color--green);
				}
			}
		}

		&.has-expanded-submenu {
			.wp-block-navigation__submenu-icon {
				svg {
					transform: rotate(-180deg);
				}
				&::after {
					transform: rotate(180deg);
				}
			}
		}
	}

	.wp-block-buttons {
		flex-direction: column;
		width: 100%;
		margin-top: auto;

		* {
			width: 100%;
		}
	}
}

/* Mobile menu toggles */
.wp-block-outermost-icon-block.mobile-close {
	display: none;
}

@media (max-width: 991px) {
	body.mobile-menu-open {
		overflow: hidden;
		header {
			background-color: var(--wp--preset--color--dark-blue);
		}

		#mobile-menu {
			opacity: 1;
			pointer-events: auto;
			left: 0;
		}
		.mobile-close {
			display: block;
			opacity: 1;
			transform: rotate(0deg) scale(1);
		}
		.mobile-open {
			opacity: 0;
			transform: rotate(90deg) scale(0.8);
		}
	}
}

.mobile-toggle {
    position: relative;
    width: 32px;
    height: 32px;
}

.mobile-toggle > div {
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.mobile-open {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.mobile-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}
/**
 * Block: core/paragraph
 */
p {
    max-width: var(--wp--custom--typography--max-width);
    word-spacing: var(--wp--custom--typography--word-spacing);
}
p.has-text-align-center {
    margin-left: auto;
    margin-right: auto;
}
/**
 * Post Excerpt
 */
.wp-block-post-excerpt .wp-block-post-excerpt__excerpt {
    margin-block-start: 0;
}

/* Set the readmore link to be one size larger than the paragraph text */
.wp-block-post-excerpt .wp-block-post-excerpt__more-text {
    font-size: var(--wp--preset--font-size--large);
}
.wp-block-post-excerpt.has-small-font-size .wp-block-post-excerpt__more-text {
	font-size: var(--wp--preset--font-size--medium);
}

/* Blockquote style */
.wp-block-post-excerpt.is-style-blockquote {
    font-style: italic;
    position: relative;

    &:before {
        content: '';
        background-image: url('/wp-content/themes/win2025/assets/images/quote-left.svg');
        background-size: initial;
        background-repeat: no-repeat;
        position: absolute;
        top: calc(var(--wp--preset--spacing--10) * -1);
        left: calc(var(--wp--preset--spacing--20) * -1);
        width: 58.8px;
        height: 49px;
        display: block;
    }
}
/**
 * Post Featured Image
 */
.wp-block-post-featured-image img {
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}
@media (min-width: 782px) {
	.wp-block-query .wp-block-post-featured-image.is-offset-desktop {
		margin-top: calc(-1 * (var(--wp--preset--spacing--60) + var(--wp--preset--spacing--50) + var(--wp--preset--font-size--small)) );
	}
}
/**
 * Block: core/post-navigation-link-previous, core/post-navigation-link-next
 */
:where(.wp-block-post-navigation-link) > a[role="textbox"]:not(:last-child),
:where(.post-navigation-link-previous, .post-navigation-link-next) .post-navigation-link__label {
    display: block;
    font-size: var(--wp--preset--font-size--small);
    font-weight: 700;
}

.wp-block-post-navigation-link {
    position: relative;
}

.wp-block-post-navigation-link span.is-arrow-arrow {
    border-radius: 50%;
    background-color: var(--wp--preset--color--lightest-grey);
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 0 !important;
    position: relative;
    pointer-events: none;
}

.wp-block-post-navigation-link:hover span.is-arrow-arrow {
    color: var(--wp--preset--color--light-blue);
}

.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-previous {
    margin-right: 2ch;
}

.wp-block-post-navigation-link .wp-block-post-navigation-link__arrow-next {
    margin-left: 2ch;
}

.wp-block-post-navigation-link a {
    font-weight: 600 !important;
    font-size: var(--wp--preset--font-size--small);
    z-index: 1 !important;

    &:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2 !important;
    }
}

/**
 * Block: core/post-title
 */
.wp-block-post-title a {
    text-decoration: inherit;
    color: inherit;
}  
/**
 * Block: core/query
 */

.wp-block-query {
	--container-width: var(--wp--custom--spacing--content-size);
}
.wp-block-query.alignwide {
	--container-width: var(--wp--custom--spacing--wide-size);
}

/* Seems like we need this when nesting a query in the cover block for now */
.wp-block-cover .wp-block-query {
	width: var(--container-width);
	max-width: 100%;
}

.wp-block-post-template.is-layout-grid {
	gap: var(--wp--preset--spacing--50);
}
.wp-block-post-template.is-layout-grid:where(.columns-2,.columns-3,.columns-4,.columns-5,.columns-6) {
	display: grid;
	gap: var(--wp--preset--spacing--60) var(--wp--preset--spacing--50);
	padding: 0;
	list-style: none;
}
.wp-block-post-template.is-layout-grid:is(.columns-2,.columns-3,.columns-4,.columns-5,.columns-6) > li.wp-block-post {
	width: auto;
	margin: 0;
}

li.chapters.wp-block-post {
	display: flex;
	.wp-block-group {
		flex: 1;
	}
}

.wp-block-post-template.is-layout-grid.columns-2 {
	grid-template-columns: repeat(auto-fill, minmax(calc(var(--container-width)/2 - var(--wp--preset--spacing--50)*1/2), 1fr));
}
.wp-block-post-template.is-layout-grid.columns-3 {
	grid-template-columns: repeat(auto-fill, minmax(calc(var(--container-width)/3 - var(--wp--preset--spacing--50)*2/3), 1fr));
}
.wp-block-post-template.is-layout-grid.columns-4 {
	grid-template-columns: repeat(auto-fill, minmax(calc(var(--container-width)/4 - var(--wp--preset--spacing--50)*3/4), 1fr));
}
.wp-block-post-template.is-layout-grid.columns-5 {
	grid-template-columns: repeat(auto-fill, minmax(calc(var(--container-width)/5 - var(--wp--preset--spacing--50)*4/5), 1fr));
}
.wp-block-post-template.is-layout-grid.columns-6 {
	grid-template-columns: repeat(auto-fill, minmax(calc(var(--container-width)/6 - var(--wp--preset--spacing--50)*5/6), 1fr));
}

/**
 * If we're down to a single column just do auto columns. Fix for narrow screens.
 */
@media (max-width: 400px) {
	.wp-block-post-template.is-layout-grid:is(.columns-2,.columns-4,.columns-5,.columns-6) {
		grid-template-columns: auto;
	}
}
@media (max-width: 480px) {
	.wp-block-post-template.is-layout-grid:is(.columns-3) {
		grid-template-columns: auto;
	}
}

/**
 * Equal Height, No Wrap Style
 */
.wp-block-query.is-style-equal-height-no-wrap .wp-block-post-template {
	display: flex !important;
}

.wp-block-query.is-style-equal-height-no-wrap .wp-block-post-template > .wp-block-post {
	flex-grow: 1;
	flex-basis: 0;
	min-width: 0;
}

.wp-block-query.is-style-equal-height-no-wrap .wp-block-post-template > .wp-block-post > *:first-child:last-child {
	height: 100%;
}

/**
 * Strips Style
 * Intended be used with columns. Does an offset column view like film strips.
 */
.wp-block-query.is-style-strips .wp-block-post-template.is-layout-grid.columns-2 {
	display: block;
}
.wp-block-query.is-style-strips .wp-block-post-template.is-layout-grid.columns-2 > li.wp-block-post {
	width: calc(50% - var(--wp--preset--spacing--50)*1/2);
	float: left;
	margin-block-start: var(--wp--preset--spacing--70);
}
.wp-block-query.is-style-strips .wp-block-post-template.is-layout-grid.columns-2 > li.wp-block-post:nth-child(even) {
	float: right;
}
.wp-block-query.is-style-strips .wp-block-post-template.is-layout-grid.columns-2 > li.wp-block-post:first-child {
	margin-block-start: 0;
}
/* Push the right side down to create the effect */
.wp-block-query.is-style-strips .wp-block-post-template.is-layout-grid.columns-2 > li.wp-block-post:nth-child(2) {
	margin-block-start: calc(var(--wp--preset--spacing--70) * 3);
}
/* Clear the floats */
.wp-block-query.is-style-strips .wp-block-post-template.is-layout-grid.columns-2::after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
/**
 * Gutenberg Editor specific layout fixes since it has extra elements
 * A little finicky right now
 */
.block-editor-block-list__block.wp-block-query.is-style-strips .wp-block-post-template.is-layout-grid.columns-2 > li.wp-block-post:nth-child(3) {
	margin-block-start: calc(var(--wp--preset--spacing--70) * 3);
}
.block-editor-block-list__block.wp-block-query.is-style-strips .wp-block-post-template.is-layout-grid.columns-2 > li.wp-block-post:nth-child(2n+4) {
	float: left;
}
.block-editor-block-list__block.wp-block-query.is-style-strips .wp-block-post-template.is-layout-grid.columns-2 > li.wp-block-post:nth-child(2n+3) {
	float: right;
}

/**
 * Fixes for when Gutenberg isn't outputting inline styles
 * (e.g. markup included through custom blocks)
 */
ul.wp-block-post-template {
	list-style: none;
    margin-bottom: 0;
    margin-top: 0;
    max-width: 100%;
    padding: 0;
}
/**
 * Block: core/quote
 */
.wp-block-quote > p {
    color: var(--wp--preset--color--black);
}
.wp-block-quote > :first-child {
    margin-top: 0;
}
.wp-block-quote cite {
    display: block;
}

/* Quote Mark Style - Default (column) & Centred (row) vairations */
.wp-block-quote:is(.is-style-quote-mark,.is-style-quote-mark-centred) {
    border: none;
    padding-left: 0;
}
.wp-block-quote.is-style-quote-mark {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1em;
}
.wp-block-quote.is-style-quote-mark-centred {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: calc(var(--wp--custom--spacing--content-size) - var(--wp--preset--spacing--70));
}
.wp-block-quote:is(.is-style-quote-mark,.is-style-quote-mark-centred):before {
    content: '\f10d';
    display: inline;
    font-family: "Font Awesome 6 Pro";
	font-style: normal;
    font-weight: 900;
    font-size: var(--wp--preset--font-size--h-2);
    line-height: 0.75;
}
.wp-block-quote.is-style-quote-mark:before {
    grid-column: 1;
}
.wp-block-quote.is-style-quote-mark-centred:before {
    margin-bottom: var(--wp--style--block-gap);
}
.wp-block-quote.is-style-quote-mark > * {
    grid-column: 2;
}
.wp-block-quote.is-style-quote-mark cite {
    --cite-line-width: 3em;
    padding-left: calc(var(--cite-line-width) + 1em);
}
.wp-block-quote.is-style-quote-mark cite {
    grid-column: 2;
}
.wp-block-quote.is-style-quote-mark cite:before {
    content: '';
    display: inline-block;
    width: var(--cite-line-width);
    height: 0.1rem;
    margin-left: calc(-1 * (var(--cite-line-width) + 1em));
    margin-right: 1em;
    margin-bottom: calc(1em / 4);
    background-color: currentcolor;
}
.wp-block-quote.is-style-quote-mark cite:before {
    grid-column: 1;
}
.wp-block-quote.is-style-quote-mark cite > * {
    grid-column: 2;
}
/**
 * Block: core/separator
 */

/* Thicker lines */
.wp-block-separator.has-background:not(.is-style-dots) {
	height: 2px;
}

.swiper-button-prev:after{
    content: '\f177' !important;
} 

.swiper-button-next:after {
    content: '\f178' !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: "Font Awesome 6 Pro" !important;
    color: var(--wp--preset--color--blue);
    font-size: var(--wp--preset--font-size--small) !important;
    font-weight: 400;
}
.slider-container {
    position: relative;
    margin-top: 0;
}

.swiper-button-prev,
.swiper-button-next {
    position: relative !important;
    /* transform: translateY(-50%); */
    z-index: 10;
    cursor: pointer;
    border: 1px solid var(--wp--preset--color--light-grey);
    border-radius: 100%;
    transition: background-color .3s ease-in-out;
    padding: 1rem 1.5rem;
    @media(min-width: 1024px) {
        position: absolute !important;
        top: -109px !important;
    }
    &:is(:hover, :focus) {
        background-color: var(--wp--preset--color--blue);
        border-color: var(--wp--preset--color--blue);
        &::after {
            color: var(--wp--preset--color--white);    
        }
    }
}

.swiper-button-prev {
    top: 55px !important;
    left: 0 !important;
    @media(min-width: 1024px) {
        left: unset !important;
        right: 95px !important;
        top: -109px !important;
    }
}

.swiper-button-next {
     @media(max-width: 1023px) {
        left: 85px !important;
     }
}

/**
 * Block: core/table 
 */

.wp-block-table table {
	border-width: 0;
}
.wp-block-table :is(td,th) {
	border-color: var(--wp--preset--color--light-grey);
	border-left-color: transparent !important;
	border-right-color: transparent !important;
	vertical-align: top;
}
.wp-block-table thead tr:first-of-type :is(td,th) {
	border-top: none;
}
.wp-block-table tfoot :is(td,th) {
	border-color: transparent !important;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
	background-color: var(--wp--preset--color--light-grey);
}

.wp-block-table table tbody:first-child tr:first-child td {
	border-top: none;
}
.wp-block-table table tbody:last-child tr:last-child td {
	border-bottom: none;
}

.wp-block-table table :is(td, th):first-child {
	padding-left: 0;
}

.wp-block-table table :is(td, th):last-child {
	padding-right: 0;
}

/* Lists in tables */
.wp-block-table table ul:first-child {
    margin-top: 0;
}

/**
 * Block: wpml/navigation-language-switcher
 */

/* Hide the current language from the list */
.wpml-language-switcher-navigation-block .wp-block-navigation-item[data-wpml="current-language-item"] {
    display: none !important;
}
.wpml-language-switcher-navigation-block .wp-block-navigation-item[data-wpml='language-item']:first-of-type {
    margin-block-start: 0 !important;
}

/* Uppercase for mobile header */
#mobile-header .wpml-language-switcher-navigation-block {
    text-transform: uppercase;
}
/**
 * Block: yoast-seo/breadcrumbs 
 */

.yoast-breadcrumbs a {
    font-weight: inherit;
}
/* News and Events Landing page */
.news-latest-wrapper, 
.archive-wrapper {
	/* .wp-block-group__inner-container, .archive-container{ */
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: var(--wp--preset--spacing--40);
		@media(min-width: 768px) {
			grid-template-columns: 1fr 1fr;
			grid-gap: var(--wp--preset--spacing--50);
			row-gap: var(--wp--preset--spacing--50);
		}
		@media(min-width: 1024px) {
			grid-template-columns: 1fr 1fr 1fr;
	    }
        article.post {
            margin-top: 0;
        }
	/* }	 */
}
.card {
	box-shadow: var(--wp--custom--shadows--default);
	border-radius: 10px;
	background-color: var(--wp--preset--color--white);

	&.contact-card{
		padding: 80px !important;
		.button{
			margin-bottom: 0;
		}
	}
}

@media (max-width: 479px) {
	.card.contact-card {
		box-shadow: var(--wp--custom--shadows--small);
		border-radius: 0;
		border: 0 solid var(--wp--preset--color--border-grey);
		padding: var(--wp--preset--spacing--40);
	}
}

article{
	&.card{
		padding: var(--wp--preset--spacing--20);
		position: relative;
		figure{
			height: 244px;
		    border: 1px solid var(--wp--preset--color--border-grey);
		    display: flex;
		    align-items: center;
		    overflow: hidden;
		    &.is-style-rounded{
		    	border-radius: 50%;
		    }
		    img{
		    	display: block;
		    }
		}
		.category {
			font-size: var(--wp--preset--font-size--small);
			font-weight: 700;
			color: var(--wp--preset--color--purple);
			i {
				font-family: 'Font Awesome 6 Pro';
				font-weight: 700;
				font-size: var(--wp--preset--font-size--small);
				position: absolute;
    			right: var(--wp--preset--spacing--20);
    			color: var(--wp--preset--color--light-blue);
    			&:before {
    				position: absolute;
    				right: 20px;
    			}
			}
		}
		.wp-block-heading a {
			color: var(--wp--preset--color--dark-blue);
		}
	    a{
		    &:is(:hover, :focus) {
		    	text-decoration: underline;
				text-decoration-color: var(--wp--preset--color--light-blue);
				opacity: 1;
		    }
			&:before {
				transition: var(--wp--custom--animation--default-transition);
				content: '';
				position: absolute;
				top: 0;
				left: 0;
				right: 0;
				bottom: 0;
				z-index: 2;
			}
	    }
	    p{
	    	&.post-meta{
		    	font-size: var(--wp--preset--font-size--small);
		    	color: var(--wp--preset--color--dark-blue);
		    	font-weight: 300;
				margin-top: var(--wp--preset--spacing--20);
				margin-bottom: var(--wp--preset--spacing--20);
		    }
		    &:not(.post-meta){
		    	font-size: var(--wp--preset--font-size--medium);
		    }
		    &:last-child{
		    	margin-bottom: var(--wp--preset--spacing--20);
		    }
		}
	    .divider{
	    	position:relative;
			&:before {
			  content: "\2022";
			  color: var(--wp--preset--color--green);
			  display: inline-block;
			}
	    }
		.container{
		    display: flex;
		    flex-direction: column;
		    justify-content: space-between;
		    height: calc(100% - 266px);
		}
	}
	&.event{
		.container{
		    height: calc(100% + var(--wp--preset--spacing--10));
		}		
	}
	&.resource{
		.container{
		    height: 100%;
		}
		.excerpt{
			p{
				font-weight: 300;
				color: var(--wp--preset--color--cool-black);
			}
		}
	}
}

:is(.linked-card, .is-style-linked-card) {
	position: relative;

	&:is(:hover, :focus) {
		transition: var(--wp--custom--animation--default-transition);
		cursor: pointer;
		box-shadow: var(--wp--custom--shadows--hover) !important;
		h2, 
		.wp-block-heading {
			a {
				text-decoration: underline;
				text-decoration-color: var(--wp--preset--color--light-blue);
			}
		}
    	.h5{
	    	text-decoration: underline;
	    	text-decoration-color: var(--wp--preset--color--light-blue);
    	}

    	.wp-block-post-title a {
    		opacity: 1 !important;
    	}

    	.wp-block-post-title a:before {
    		content: '';
    		position: absolute;
    		top: 0;
    		left: 0;
    		right: 0;
    		bottom: 0;
    	}

    	.wp-block-button{
    		a{
    			color: var(--wp--preset--color--purple);

    			&:after{
    				/* right: -40px; */
    			}
    		}
    	}
	}
}

.is-style-linked-card {
	position: relative;

	.wp-block-post-title a {
		font-weight: 700;

		&:is(:hover,:focus) {
			&:before {
				/* box-shadow: 2px 2px 10px 0px #00000026; */
				cursor: pointer;
			}
		}
	}

	:is(.wp-block-post-title, .wp-block-heading) a:before {
		transition: var(--wp--custom--animation--default-transition);
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 2;
	}
}

.wp-block-group:is(.is-style-card, .is-style-linked-card) {
	box-shadow: var(--wp--custom--shadows--default);
	border-radius: var(--wp--preset--spacing--20);
	background-color: var(--wp--preset--color--white);
	padding: var(--wp--preset--spacing--50);
}

.events-card,
.news-card {
	align-items: start;
}
/* // ELEMENTS - IMAGE COPYRIGHTS */

figure,
figure.wp-block-image {
	position: relative;

	figcaption:not(.post-caption) {
		width: calc(50% + 3.125rem) !important;
		position: absolute;
		bottom: 0;
		left: 0;
		margin: 1rem;
		margin-top: 1rem;
		margin-bottom: 1rem;
		background-color: transparent;
		color: transparent;
		text-align: left !important;

		&:not(.open) {
			width: 0.875rem;
			height: 1.813rem;
			cursor: pointer;
			overflow: hidden;

			&:hover {
				&:before {
					color: var(--wp--preset--color--white);
                    opacity: .75;
				}
			}
		}

		&.open {
			right: 0;
			padding: var(--wp--preset--spacing--20);
			background-color: rgba(13, 25, 34, 0.8);
			color: var(--wp--preset--color--white);
			border-radius: 0.625rem;
			width: 6rem !important;
			font-size: var(--wp--preset--font-size--small);
			line-height: 1.5rem;

			&:before {
				color: var(--wp--preset--color--white);
                opacity: 0.1;
			}
			&:after {
				content: '\f00d';
				font-weight: 300;
				font-family: 'Font Awesome 6 Pro';
				color: var(--wp--preset--color--white);
				position: absolute;
				top: 0.313rem;
				right: 0.625rem;
				font-size: var(--wp--preset--font-size--small);
				cursor: pointer;
			}
		}

		&:before {
			content: '\f05a';
			font-weight: 700;
			font-family: 'Font Awesome 6 Pro';
			color: var(--wp--preset--color--white);
            opacity: 0.5;
			position: absolute;
			bottom: 0;
		    left: calc(50% - 0.425rem);
		    height: 1.625rem;
            z-index: 3;
			font-size: var(--wp--preset--font-size--small);
		}
		&.size-large{
			figcaption:not(.post-caption) {
				width: calc(50% + 6.25rem) !important;
			}
		}
	}
	.post-caption{
		font-size: var(--wp--preset--font-size--small);
		line-height: 1.5rem;
	}
}

.wp-block-image.square{
	figcaption {
		width: 1.5rem !important;
	}
}

/*
 * Team Member Template Styling
 * - Default Picture Shows at first
 * - Hover reveals name, title, bio, and more links
*/

.team-members {
  /* > .wp-block-group__inner-container{ */
    display: grid;
    grid-template-columns: 1fr;
    row-gap: var(--wp--preset--spacing--40);
    grid-gap: var(--wp--preset--spacing--40);

    @media(min-width: 768px) {
      grid-template-columns: 1fr 1fr 1fr;
      row-gap: var(--wp--preset--spacing--50);
      grid-gap: var(--wp--preset--spacing--50);
    }
    article.team-member {
      margin-top: 0 !important;
      padding: var(--wp--preset--spacing--30);
        .wp-block-image, .initials {
            height: 10rem;
            width: 10rem;
            margin-left: auto;
            margin-right: auto;
            img {
            border: 1px solid var(--wp--preset--color--light-grey);
            height: inherit;
            }
        }
        /* .initials {
            font-size: 6rem;
        } */
        h3 {
            font-size: var(--wp--preset--font-size--h-5);
            font-weight: 600;
            margin-top: var(--wp--preset--spacing--20);
            margin-bottom:var(--wp--preset--spacing--30)
        }
        h4 {
            font-size: var(--wp--preset--font-size--h-6);
            font-weight: 700;
            margin-bottom: 0;
            margin-top: var(--wp--preset--spacing--30);
        }
        .centered {
            text-align: center;
        }
    }
  /* } */
}


.member-list-members {
> .wp-block-group__inner-container{
    .card{
      margin-bottom: var(--wp--preset--spacing--30);
      &:is(:hover, :focus) h5 a { 
        text-decoration: underline;
				text-decoration-color: var(--wp--preset--color--light-blue);
        opacity: 1;
      }
      .wp-block-columns {
        margin-bottom: var(--wp--preset--spacing--30);
        padding: var(--wp--preset--spacing--30);
        position: relative;
        &:after {
            font-family: "Font Awesome 6 Pro";
            content: "\F178";
            position: absolute;
            z-index: 5;
            font-size: 1.75rem;
            font-weight: 300;
            top: calc(50% - var(--wp--preset--spacing--30));
            right: var(--wp--preset--spacing--30);
            transition: all 0.2s ease-out;
            color: var(--wp--preset--color--light-blue);
        }
        @media(min-width: 768px) {
            display: grid;
            grid-template-columns: 7rem 1fr;
        }
        .wp-block-column {
          &:first-child {
            display: flex;
            align-items: center;
            @media(max-width: 768px) {
              margin-bottom: var(--wp--preset--spacing--40);
            }
          }
          &:not(:first-child) {
              margin-left: 0;
          }
          .wp-block-image, 
          .initials {
            height: 5.5rem;
            width: 5.5rem;
            margin: 0;
            img {
              border: 1px solid #E5E5E5;
              border-radius: 100px;
              height: inherit;
              object-fit: cover;
            }
          }
          .initials {
              font-size: 2.5rem;
          }
          h5 {
              margin-bottom: var(--wp--preset--spacing--10);
              margin-top: 0;
              a {
                color: var(--wp--preset--color--dark-blue);
              }
              
          }
          p {
            font-size: var(--wp--preset--font-size--medium);
            line-height: 2;
            margin-bottom: var(--wp--preset--spacing--10);
            &.has-clear-black-color {
              margin-bottom: 0;
            }
          }
        }
      }
    }
  }
}
/**
 *  Member directory
 */
#member-list-search-form {
  margin-bottom: var(--wp--preset--spacing--60);
	.search-field-wrapper {
		max-width: 25rem;
		margin: 0 auto;
		position: relative;
		&:after {
			content: '\f002';
			font-family: "Font Awesome 6 Pro";
			font-size: var(--wp--preset--font-size--small);
			font-weight: 700;
			color: var(--wp--preset--color--purple);
			position: absolute;
			right: var(--wp--preset--spacing--20);
			top: 50%;
			transform: translateY(-50%);
      z-index: 2;
		}
		.member-search-submit{
		    padding: 0;
		    border: 0;
		    position: absolute;
		    top: var(--wp--preset--spacing--30);
		    right: 0;
		    z-index: 1;
		    color: transparent;
		    &:hover{
		    	background-color: transparent;
		    }
		    &:focus{
		    	appearance: none;
		    	outline: opacify(white, 0);
		    }
		}
	}
}


/* article.team-member, article.success-story, article.partnership {
  .wp-block-columns{
    margin-bottom: 2.4rem !important;
    @include small-screen-up {
      display: grid;
      grid-template-columns: 16rem 1fr;
    }
    .wp-block-column{
      &:first-child{
        @include small-screen-max {
          margin-bottom: 0;
        }
      }
      &:not(first-child){
        @include small-screen-max {
          margin-bottom: 2.4rem;
        }
      }
      figure{
          width: 16rem;
          height: 16rem;
        img{
          height: inherit;
        }
      }
      .initials {
          height: 16rem;
          width: 16rem;
      }
      h1{
        margin-bottom: 0.8rem;
      }
      h5, p:not(.is-style-eyebrow){
        margin-bottom: 0;
      }
    }
  }
  .wp-block-group:not(.is-style-card){
    p{
      font-size: 1.4rem;
      line-height: 2rem;
      margin-bottom: 2.4rem;

      @include medium-screen-up {
        font-size: 1.6rem;
        line-height: 2.4rem;
      }
      @include large-screen-up {
        line-height: 2.8rem;
      }
    }
    blockquote{
      p{
        font-family: $fonts-secondary;
        @include medium-screen-up {
          font-size: 2rem;
          line-height: 3.4rem;
        }
      }
    }
  }
} */

/* body.single-success-story, body.single-partnership{
  article.success-story, article.partnership{
    margin-bottom: 4.8rem !important;
  }
  .previous-next{
    padding-top: 0 !important;
    margin-top: 0 !important;
  }
} */



/* .initials {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: $light-blue;
    border: 1px solid #E5E5E5;
    background-color: #EEEEEE;
    border-radius: 999rem;
} */

/**
 * Template Part: footer
 */
.wp-site-blocks > footer {
    margin-top: 0;
    position: relative;
    overflow: hidden;
    .footer-watermark {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .footer-watermark::after {
        content: '';
        max-width: clamp(29.938rem, 26.807rem + 13.355vi, 37.625rem);
        max-height: clamp(33.625rem, 30.851rem + 11.835vi, 40.438rem);
        height: 100%;
        width: 100%;
        bottom: -7%;
        right: -15%;
        position: absolute;
        background-image: url("/wp-content/themes/win2025/assets/images/Watermark-Logo.svg");
        @media(min-width: 768px) {
            bottom: -20%;
        }
    }
    
    nav .wp-block-navigation__container a.wp-block-navigation-item__content {
        color: var(--wp--preset--color--dark-blue) !important;
        text-decoration: none !important;
        z-index: 3;
    }
    nav .current-menu-item.wp-block-navigation-link a,
    nav .sign-in.wp-block-navigation-link a {
        color: var(--wp--preset--color--purple) !important;
    }
    nav .wp-block-navigation__container a.wp-block-navigation-item__content:is(:hover, :focus) {
        opacity: 0.7 !important;
    }
    .footer-copyright a {
        font-weight: 700;
    }
    nav.wp-block-navigation {
        z-index: 3;
    }
    nav.wp-block-navigation .wp-block-navigation {
        row-gap: var(--wp--preset--spacing--10);
    }
    .wp-block-group {
        z-index: 2;
        position: relative;
    }
}

/**
 * Template Part: header
 */

.wp-site-blocks > header > .wp-block-group {
	padding: var(--wp--preset--spacing--50);
}
.wp-site-blocks > header > .wp-block-group.is-style-floating {
	position: absolute;
	z-index: 10;
	width: 100%;
}

/* Bring the Site Logo Overtop of the open mobile menu */
.wp-site-blocks > header .wp-block-site-logo {
	position: relative;
	z-index: 100001;
}

/**
 * Peeking header styles
 */
.wp-site-blocks > header {
	--admin-bar-offset: 0px;
	position: fixed;
	width: 100%;
	top: var(--admin-bar-offset);
	background-color: transparent;
	z-index: 3;
	transition: all 0.4s ease;
	.sticky-logo {
		display: none;
	}
}

/**
 * Sticky header styles
 */
body:is(.single-team-member, .single-success-story, .single-post, .single-event, .single-partnership) .wp-site-blocks > header,
.wp-site-blocks > header.sticky {
	background-color: var(--wp--preset--color--white) !important;
	box-shadow: 0 0.3rem 0.6rem 0 rgba(13, 25, 34, 0.29);

	.sticky-logo {
		display: block;
	}
	.wp-block-site-logo {
		display: none;
	}
}

.wp-site-blocks > header.sticky {
	z-index: 10;
	--top-nav-offset: -37px;
	top: var(--top-nav-offset);

	.top-nav {
		transform: translateY(-100%);
		visibility: hidden;
		
	}
}
.top-nav {
	transition: transform 200ms ease-in-out;
	nav.desktop-top-menu a {
			color: var(--wp--preset--color--white) !important;
	}
}

/**
 * Some post templates have a sticky-style header always
 */
.wp-site-blocks > header.sticky a.wp-block-navigation-item__content,
body:is(.single-team-member, .single-post, .single-success-story, .single-event, .single-partnership) .wp-site-blocks > header .top-nav + .wp-block-group a.wp-block-navigation-item__content {
	color: var(--wp--preset--color--dark-blue) !important;
	&:is(:hover, :focus) {
		color: var(--wp--preset--color--purple);
	}
}

/* Hiding header */
.wp-site-blocks > header.hiding {
	transform: translateY(-100%);
}

/* Peeking header */
.wp-site-blocks > header.peeking {
	box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.1);
}

body.admin-bar .wp-site-blocks > header {
	--admin-bar-offset: 32px;
	--top-nav-offset: -5px;
}

@media (max-width: 782px) {
	body.admin-bar .wp-site-blocks > header {
		--admin-bar-offset: 46px;
	}
}

/* @media (max-width: 600px) {
	body.admin-bar .wp-site-blocks > header {
		--admin-bar-offset: 0px;
	}
} */
/**
 * Main Entry / Post Content Layout Adjustments
 */

/** 
 * Apply hozizontal margins when below our max-width / alignwide limits 
 * eg. 1296px + 3.00rem (48px) on each side = 1392px
 */
@media (max-width: 1392px) {
	main > .entry-content > .alignwide {
		margin-left: var(--wp--preset--spacing--50) !important;
		margin-right: var(--wp--preset--spacing--50) !important;
	}
}

/** 
 * Apply hozizontal margins when below our contrained content limits 
 * eg. 960px + 3.00rem (48px) on each side = 1056px
 */
@media (max-width: 1056px) {
	main > .is-layout-constrained:not(.alignfull, .post-header, .wp-block-post-content),
	main > .entry-content > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
	main > .is-layout-constrained.post-header > :not(.wp-block-post-featured-image) {
		margin-left: var(--wp--preset--spacing--50) !important;
		margin-right: var(--wp--preset--spacing--50) !important;
	}
}

.alignfull {
	max-width: 2560px;
	margin: 0 auto;
}

main {
	overflow: hidden;
}
/**
 * Animations for blocks tied to scripting
 * @see /source/scripts/animate.js
 */


/**
 * Be mindful of unintuitive / unexpected animations for those that don't want them 
 * https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion
 */
@media(prefers-reduced-motion) {

}

.animate {
    transition: all 0.3s;
}


/* Fade in and out based on percentage visible in viewport */
:not(.block-editor-block-list__block).animate.scroll-fade-in-out {
    opacity: 0;
}


/**
 * Triggered Canned Animations
 * Animations with set values that get triggered once the element is in view
 */

 
/* Cover specific fade in - image, then text */
.animate.in-view.cover-fade-in .wp-block-cover__image-background {
    animation: focus-in 0.5s cubic-bezier(0.470, 0.000, 0.745, 0.715) 0s both;
}
.animate.in-view.cover-fade-in .wp-block-cover__inner-container {
    animation: fade-in 0.75s cubic-bezier(0.470, 0.000, 0.745, 0.715) 0.25s both;
}


/* Blur the text into focus */
.animate.in-view.text-focus-in {
    animation: focus-in 0.6s cubic-bezier(0.550, 0.085, 0.680, 0.530) 1s both;
}
@keyframes focus-in {
    0% {
        filter: blur(12px);
        opacity: 0;
    }
    100% {
        filter: blur(0px);
        opacity: 1;
    }
}

/* Fade in gradually */
.animate.in-view.fade-in {
    animation: fade-in 2s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Slide left */
.animate.in-view.slide-left {
    animation: slide-left 0.5s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}
@keyframes slide-left {
    0% {
        translate: 10%;
    }
    100% {
        translate: 0;
    }
}
/* Slide right */
.animate.in-view.slide-right {
    animation: slide-right 0.5s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}
@keyframes slide-right {
    0% {
        translate: -10%;
    }
    100% {
        translate: 0;
    }
}
.is-style-bubbles-watermark {
	position: relative;
	&:after, 
	&:before {
		content: '';
		display: block;
		border-radius: 100%;
		position: absolute;
        z-index: 4;
	}
	&:before {
		background-color: var(--wp--preset--color--purple);
		top: -2%;
		left: 5%;
		width: clamp(4.563rem, 3.723rem + 3.583vi, 6.625rem);
		height: clamp(4.563rem, 3.723rem + 3.583vi, 6.625rem);
		@media(min-width: 471px) {
			top: 10%;
		}
		@media(min-width: 782px) {
			top: -7%;
		}
		@media(min-width: 791px) {
			top: 0;
		}
	}
	&:after {
		background-color: var(--wp--preset--color--colour-6);
		bottom: 9%;
		right: 5%;
		width: clamp(3.5rem, 3.067rem + 1.846vi, 4.563rem);
		height: clamp(3.5rem, 3.067rem + 1.846vi, 4.563rem);
		
		@media(min-width: 791px) {
			bottom: 5%;
		}
	}
    .wp-block-image::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        position: absolute;
        bottom: -25%;
        left: -50%;
        background-size: contain;
        background-repeat: no-repeat;
		@media(min-width: 768px) {
			background-image: url("/wp-content/themes/win2025/assets/images/bubbles-watermark.svg");
		}
		@media(min-width: 1024px) {
			bottom: -45%;
		} 
    }
    .wp-block-image {
        overflow: hidden;
        border-radius: 100%;
        z-index: 3;
        position: relative;
		img {
			aspect-ratio: 1;
			object-fit: cover;
		}
    }
}
.bubble-watermark .excerpt p {
	margin-bottom: var(--wp--preset--spacing--40);
}
/**
 * Just rounded corners
 */
.is-style-rounded-corners {
	border-radius: 24px;
}

.is-style-card {
	box-shadow: 0 0.3rem 0.6rem 0 rgba(13, 25, 34, 0.29);
}

/* Chapter cards */
li.type-chapters .is-style-linked-card:is(:hover,:focus) {
	.wp-block-post-title a {
		text-decoration: underline;
		text-decoration-color: var(--wp--preset--color--light-blue);
	}
}
.child-page {
    margin-top: var(--wp--preset--spacing--70);
}
.child-page:first-of-type {
    margin-top: 0;
}
.child-page:nth-child(odd) {
    background-color: var(--wp--preset--color--light-purple);
}
.child-page:nth-child(even) {
    background-color: var(--wp--preset--color--light-blue-10-opacity);
    & .is-style-bubbles-watermark::before {
        background-color: var(--wp--preset--color--light-blue) !important;
    }
    & .is-style-bubbles-watermark::after {
        background-color: var(--wp--preset--color--orange) !important;
    }
}

/* Fix in editor */
.genesis-custom-blocks-editor__ssr .child-page {
    grid-column: 1 / -1;
}

.awards-child-pages .wp-block-group:first-of-type {
    display: flex;
    flex-direction: column;
    img {
        max-height: 218px;
        object-fit: cover;
    }
    .wp-block-heading,
    .wp-block-buttons {
        margin-left: 0 !important;
    }
}
/* Centereed Grey Watermark */
.is-style-center-grey-watermark > div::after {
    content: '';
    height: 100vw;
    width: 100%;
    top: -50%;
    left: 20%;
    position: absolute;
    background-size: auto;
    background-image: url("/wp-content/themes/win2025/assets/images/Cover-Watermark.svg");
    @media(min-width: 768px) {
        left: -20%;
    }
}
.is-style-center-grey-watermark {
    overflow: hidden;
    & div, 
    & figure {
        position: relative;
        z-index: 2;
    }
}

/* Left Blue Watermark */
.is-style-left-blue-watermark::after {
    content: '';
    height: 100%;
    width: 100%;
    min-height: 1100px;
    min-width: 1296px;
    top: 0;
    left: -135%;
    position: absolute;
    background-size: auto;
    background-repeat: no-repeat;
    background-image: url("/wp-content/themes/win2025/assets/images/Home-BG-Vector-1.svg");
    @media(min-width: 1026px) {
        top: -5%;
        left: -65%;
    }
}
.is-style-left-blue-watermark,
.is-style-right-blue-watermark,
.is-style-left-grey-watermark {
    position: relative;
    & > div {
        z-index: 2;
        position: relative;
    }
}

/* Right Blue Watermark */
.is-style-right-blue-watermark::after {
    content: '';
    height: 100%;
    width: 100%;
    min-height: 1350px;
    min-width: 1296px;
    top: -5%;
    right: -100%;
    position: absolute;
    background-size: auto;
    background-repeat: no-repeat;
    background-image: url("/wp-content/themes/win2025/assets/images/Home-BG-Vector-2.svg");
    @media(min-width: 1024px) {
        right: -65%;
    }
}

/* Left Grey Watermark */
.is-style-left-grey-watermark::after {
    content: '';
    height: 100%;
    width: 100%;
    min-height: 1350px;
    min-width: 1296px;
    top: 5%;
    left: -70%;
    position: absolute;
    background-size: auto;
    background-repeat: no-repeat;
    background-image: url("/wp-content/themes/win2025/assets/images/Home-BG-Vector-3.svg");
    @media(min-width: 1024px) {
        left: -30%;
    }
}
.wp-block-navigation-item__content .block-editor-rich-text__editable {
    color: var(--wp--preset--color--dark-blue);
}
.mobile-menu .wp-block-navigation-item__content .block-editor-rich-text__editable,
.top-nav .wp-block-navigation__container.block-editor-block-list__layout .block-editor-rich-text__editable {
    color: var(--wp--preset--color--white);
}
.top-nav .wp-block-navigation__container.block-editor-block-list__layout .sign-in .block-editor-rich-text__editable {
    color: var(--wp--preset--color--light-blue);
}
.wp-block-genesis-custom-blocks-shortcode .genesis-custom-blocks-editor__ssr {
    grid-template-columns: 1fr 1fr 1fr;
    gap:var(--wp--preset--spacing--40);
    display: grid;
}
.block-editor-block-list__block.wp-block.news-latest-wrapper,
.is-style-rounded-corners .wp-block-genesis-custom-blocks-shortcode .genesis-custom-blocks-editor__ssr {
    display: block !important;
}

.block-editor-block-list__block[data-type="genesis-custom-blocks/filter-archive-news"] {
    max-width: var(--wp--style--global--wide-size) !important;
    li {
        width: 100% !important;
    }
}
/* Eyebrow */
.is-style-eyebrow {
	text-transform: uppercase;
	font-size: var(--wp--preset--font-size--small);
	font-family: var(--wp--preset--font-family--manifold-ct);
	font-weight: 600;
	color: var(--wp--preset--color--purple);
	letter-spacing: 1.4px;

	&.breadcrumbs {
		letter-spacing: 3.5px;
	}
}
.collapsing-filter-outer {
		.collapsing-filter-wrap {
			width: 100%;
			margin: auto;
			position: relative;
			text-align: left;
			padding: 0;
			@media(max-width: 767px) {
				border: 1px solid var(--wp--preset--color--light-blue);
			}
        
            .collapsing-filter-body {
                transition: max-height 0.5s ease, opacity 0.1s ease;
				@media(max-width: 767px) {
					max-height: 0;
					padding: var(--wp--preset--spacing--40);
					display: none;
				}
				@media(min-width: 768px) {
					margin-bottom: var(--wp--preset--spacing--50);
				}
				.filter-taxonomies {
					.filter-taxonomy {
						padding-bottom:3.2rem;
					}
				}
			}
			
			.collapsing-filter-toggle {
                padding: var(--wp--preset--spacing--40);
                position: relative;
				@media(min-width: 768px) {
					display: none;
				}
                p {
                    margin: 0;
                }
                &::after {
                    content: '\F107';
                    font-family: 'Font Awesome 6 Pro';
                    color: var(--wp--preset--color--light-blue);
                    position: absolute;
                    right: var(--wp--preset--spacing--40);
                    top: 1.25rem;
                }
				
				&.active {
					&:after {
						transform: rotate(-180deg);
					}
				}
			}
		}
	}
/**
 * Full Height Image - Inherits Container Height
 * Should only be used inside of patterns with layout blocks that have content dictating the height (eg. columns)
 */
:is(.wp-block-image, .wp-block-post-featured-image).is-style-full-height {
	height: 100%;
	max-height: 100vh;
}
:is(.wp-block-image, .wp-block-post-featured-image).is-style-full-height.block-editor-block-list__block > div:first-child {
	height: inherit !important;
}

:is(.wp-block-image, .wp-block-post-featured-image).is-style-full-height img {
	object-fit: cover;
	height: inherit;
}

:is(.wp-block-image, .wp-block-post-featured-image).is-style-slightly-rounded img {
	border-radius: 10px;
}

/* Labels */
label {
	font-weight: 700;
	line-height: 2.125rem;
}

/* General Form Field Settings */
input, textarea, select {
	border-width: var(--wp--custom--forms--fields--border--width);
	border-color: var(--wp--custom--forms--fields--color--border);
	border-radius: var(--wp--custom--forms--fields--border--radius);
	border-style: solid;
	background-color: var(--wp--custom--forms--fields--color--background);
	font-family: inherit;
	font-size: var(--wp--preset--font-size--medium);
	line-height: inherit;
	color: inherit;
}

/* Text Input Fields */
input:not([type="checkbox"],[type="radio"], [type="submit"]), textarea {
	padding: var(--wp--custom--forms--fields--spacing--padding) 0;
	width: 100%;
}
textarea {
	height: 6em;
	resize: vertical;
}
:is(input, textarea)::placeholder {
	opacity: .8;
}
:is(input, textarea):focus {
	padding-left: var(--wp--custom--forms--fields--spacing--padding);
	padding-left: var(--wp--custom--forms--fields--spacing--padding);
}
:is(input, textarea):invalid, .gfield_error :is(input, textarea, select) {
	background-color: var(--wp--custom--forms--errors--color--background);
	border-color: var(--wp--custom--forms--errors--color--border);
	color: var(--wp--custom--forms--errors--color--text);
}
.gfield_error {
	color: var(--wp--custom--forms--errors--color--text);
}

/* Radio / Checklist */
input:is([type="checkbox"],[type="radio"]) + label {
	font-weight: 400;
}

/* Select */
select {
	padding-top: var(--wp--custom--forms--fields--spacing--padding);
	padding-bottom: var(--wp--custom--forms--fields--spacing--padding);
	padding-left: 0;
	padding-right: 1em;
	width: 100%;
}

/* Select - Custom Drop Down Arrow - Requires Wrapper */
:is(.ginput_container_select, .ginput_address_country, .name_prefix_select, .gfield_time_ampm) {
	position: relative;
}
:is(.ginput_container_select, .ginput_address_country, .name_prefix_select, .gfield_time_ampm)::after {
	position: absolute;
	top: var(--wp--custom--forms--fields--spacing--padding);
	right: 0;
	z-index: 2;
	font-family: "Font Awesome 6 Pro";
	font-style: normal;
	content: '\f107';
	pointer-events: none;
	cursor: pointer;
}
:is(.ginput_container_select, .ginput_address_country, .name_prefix_select, .gfield_time_ampm) > select {
	appearance: none;
}

/* Form Buttons */
form input[type="button"].gform_next_button,
form input[type="button"].gform_previous_button {
	margin-top: var(--wp--preset--spacing--50);
	width: auto !important;
	cursor: pointer;
	&:is(:hover, :focus) {
		background-color: var(--wp--preset--color--purple);
		color: var(--wp--preset--color--white);
	}
}
form :is(input[type="submit"], button):is(:hover, :focus) {
	background-color: var(--wp--preset--color--purple);
	color: var(--wp--preset--color--white);
	cursor: pointer;
}
form :is(input[type="submit"], button), 
input[type="file"]::file-selector-button,
form input[type="button"].gform_next_button,
form input[type="button"].gform_previous_button {
	background-color: var(--wp--preset--color--white);
	color: var(--wp--preset--color--purple);
	padding: 0.625em 1.5em;
	border: 2px solid var(--wp--preset--color--purple);
	border-radius: 100px;
	font-size: var(--wp--preset--font-size--small);
	font-weight: 600;
	padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--50);
	transition: background-color 0.3s ease, color 0.3s ease;
}
form input[type="file"]::file-selector-button {
	margin-inline-end: 1em;
}
form :is(input[type="submit"], button):focus  {
	opacity: 0.8;
}

/* File Field */
form input[type="file"] {
	border-width: 0;
}
form input[type="file"]:focus {
	border-width: initial;
	border-radius: var(--wp--custom--border--radius-small);
}

/* Fieldset */
fieldset {
	border: none;
	padding-inline-start: 0;
	padding-block-start: 0;
	padding-block-end: 0;
	padding-inline-end: 0;
	margin-inline-start: 0;
	margin-inline-end: 0;
}
fieldset legend {
	font-weight: 700;
}
.wp-block-cover.home-hero::before {
    --offset--desktop-header: 144px;
    content: "";
    position: absolute;
    top: var(--offset--desktop-header);
    left: -25%;
    width: 245px;
    height: 300px;
    background-image: url('/wp-content/themes/win2025/assets/images/Path 33.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    z-index: 2;
    display: block;
    @media(min-width: 768px) {
        left: 0;
        width: 351px;
        height: 435px;
    }
}

.wp-block-cover.home-hero::after {
    content: "";
    position: absolute;
    bottom: -110px;
    right: 0;
    width: 200px;
    height: 300px;
    background-image: url('/wp-content/themes/win2025/assets/images/Path 32.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    z-index: 2;
    display: block;
    @media(min-width: 768px) {
        width: 383px;
        height: 514px;
    }
}
.wp-block-cover.home-hero .wp-block-cover__inner-container {
  z-index: 3;
}
.wp-block-cover.home-hero .wp-block-cover__background, 
.wp-block-cover.home-hero .wp-block-cover__image-background,
.wp-block-cover.home-hero .wp-block-cover__video-background {
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    overflow: hidden;
}

.wp-block-cover.home-hero {
    min-height: min(1044px, calc(100vh) - var(--offset--desktop-header));
    overflow: visible;
    z-index: 1;
}

.wp-block-cover.home-hero .wp-block-cover__background::after {
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-size: auto;
    background-image: url("/wp-content/themes/win2025/assets/images/Cover-Watermark.svg");
}

.is-style-rounded-icons .wp-block-outermost-icon-block {
    /* padding: var(--wp--preset--spacing--40); */
    border-radius: 50%;
    max-width: 100px;
    max-height: 100px;
    width: 100px;
    height: 100px;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    line-height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    .icon-container svg{
        width: 100%;
        height: 100%;
        object-fit: contain;
        font-size: inherit; 
        line-height: 1;
    }
}
.is-style-rounded-icons .wp-block-outermost-icon-block:has(.icon-container.has-purple-background-color) {
    background-color: var(--wp--preset--color--purple);
}
.is-style-rounded-icons .wp-block-outermost-icon-block:has(.icon-container.has-colour-6-background-color) {
    background-color: var(--wp--preset--color--colour-6);
}
.is-style-rounded-icons .wp-block-outermost-icon-block:has(.icon-container.has-green-background-color) {
    background-color: var(--wp--preset--color--green);
}
/**
 * Shared link styles
 */

a {
	transition: all 0.3s ease-out;
}
a:is(:hover, :focus) {
	opacity: 0.7;
}

/**
 * General Modal Styling
 */

/* overlay for when dialogs are open */
dialog::backdrop {
    background-color: var(--wp--preset--color--dark-blue);
    opacity: 0.90;
}

/* leave the container styling to the content within */
dialog {
    background: var(--wp--preset--color--white);
    border: none;
    padding: 0;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}

dialog,
body .is-layout-flow > dialog {
    position: fixed;
    max-height: calc(100vh - (var(--wp--preset--spacing--30)*5) - var(--wp--preset--font-size--large));
    margin-block-start: auto;
    margin-block-end: auto;
}

/* allow it to overflow so we don't have a double scrollbar on smaller screens */
@media (max-width: 850px) {
    dialog {
        position: absolute;
        margin-block-start: var(--wp--preset--spacing--60);
    }
}

/* Close Button Form - closes the modal without the need for scripting */
dialog form.close {
    position: fixed;
    top: var(--wp--preset--spacing--30);
    right: var(--wp--preset--spacing--30);
}
dialog form.close button {
    background: transparent;
    padding: 0;
}
dialog form.close button svg {
    fill: var(--wp--preset--color--light-blue);
    width: var(--wp--preset--font-size--large);
}
/**
 * Shared Styles for pagination more complex blocks
 * Blocks: query-pagination-previous, query-pagination-next, query-pagination-numbers, genesis-custom-blocks/filter-archive-pagination
 */

.wp-block-query-pagination,
.pagination-links {
    --anchor-width: 60px;
}

.pagination-links,
.wp-block-query-pagination-numbers {
    display: flex;
    gap: var(--wp--preset--spacing--20) !important;
}

.pagination-links a,
.wp-block-query-pagination-numbers :is(a, span),
.wp-block-query-pagination-previous,
.wp-block-query-pagination-next {
    background-color: var(--wp--preset--color--lightest-grey);
    width: var(--anchor-width);
    height: var(--anchor-width);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: var(--wp--preset--color--black);
    cursor: pointer;
    font-weight: 700;
}

.pagination-links .page-number {
    border: 1px solid var(--wp--preset--color--light-grey);
    color: var(--wp--preset--color--purple);
    font-size: var(--wp--preset--font-size--small);
    background-color: transparent;
    &:not(.active):is(:hover, :focus) {
        background-color: var(--wp--preset--color--light-grey);
    }
}

.pagination-links a:is(.active, :is(:hover, :focus)),
.wp-block-query-pagination-numbers :is(a, span):is(:hover, :focus, .current),
.wp-block-query-pagination-previous:is(:hover, :focus)
.wp-block-query-pagination-next:is(:hover, :focus) {
    opacity: 1;
    &::after {
        color: var(--wp--preset--color--light-blue);
    }
}

.pagination-links a.previous {
    margin-right: auto;
}

.pagination-links a.previous:after,
.pagination-links a.next:after,
.wp-block-query-pagination-previous:after,
.wp-block-query-pagination-next:after {
    content: '\f177';
    display: inline-flex;
    font-family: "Font Awesome 6 Pro";
    font-style: normal;
    font-weight: 700;
    font-size: 0.75rem;
    transition: transform 0.5s ease;
    color: var(--wp--preset--color--dark-blue);
}

.pagination-links a.next,
.wp-block-query-pagination-next {
    margin-left: auto;
}

.pagination-links a.next:after,
.wp-block-query-pagination-next:after {
    content: '\f178';
}

.pagination-links a.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.wp-block-query-pagination-numbers:first-child {
    margin-left: auto !important;
}

.wp-block-query-pagination-numbers:last-child {
    margin-right: auto !important;
}

.wp-block-query-pagination-numbers .page-numbers.dots {
    border: none;
    pointer-events: none;
}

/**
 * Shared Styles for buttons and links in more complex blocks
 * Blocks: core/button, core/read-more, core-post-excerpt
 * - read-more: Text + Right Arrow visible, arrow moves on hover
 * - arrow: Variation where only Right Arrow is visible initially, text reveals / slides in on hover
 */
:is(.wp-block-read-more),
.wp-block-button:is(.is-style-read-more,.is-style-arrow,.is-style-back) {
	font-size: var(--wp--preset--font-size--large);
}
:is(.wp-block-read-more, .wp-block-post-excerpt__more-link, .wp-block-button.is-style-read-more, .wp-block-button.is-style-back) {
	transition: var(--wp--custom--animation--default-transition);
}
.wp-block-read-more:after,
:where(.wp-block-post-excerpt__more-link):after,
.wp-block-button:where(.is-style-back) .wp-block-button__link:before,
.wp-block-button:where(.is-style-read-more, .is-style-arrow) .wp-block-button__link:after {
	display: inline-block;
	position: relative;
	font-family: "Font Awesome 6 Pro";
	font-style: normal;
	content: '\f178';
	margin-left: 0.5em;
	transition: inherit;
}
.wp-block-button:where(.is-style-back) .wp-block-button__link:before {
	content: '\f177' !important;
}
:is(.wp-block-read-more, .wp-block-post-excerpt__more-link):is(:hover, :focus):hover:after,
.wp-block-button.is-style-read-more:is(:hover, :focus) .wp-block-button__link:after {
	margin-left: 0.75em;
}

.wp-block-read-more.is-style-arrow,
.wp-block-button.is-style-arrow .wp-block-button__link {
	clip-path: inset(0 0 0 calc(100% - 1em));
	transform: translateX(calc(-100% + 1em));
}
.wp-block-read-more.is-style-arrow:is(:hover, :focus),
.wp-block-button.is-style-arrow:is(:hover, :focus) .wp-block-button__link {
	clip-path: inset(0 0 0 0);
	transform: translateX(0);
}
:where(.is-content-justification-center) > .wp-block-read-more.is-style-arrow,
:where(.wp-block-buttons.is-content-justification-center) .wp-block-button.is-style-arrow .wp-block-button__link {
	transform: translateX(calc(-50% + 0.5em));
}
.wp-block-buttons.is-content-justification-right .wp-block-button.is-style-arrow .wp-block-button__link {
	transform: none;
}

.wp-block-read-more,
.wp-block-post-excerpt__more-link,
.wp-block-button:is(.is-style-read-more, .is-style-arrow) .wp-block-button__link {
	background-color: transparent;
	padding: 0;
	color: var(--wp--preset--color--purple);
	position: relative;
	font-size: var(--wp--preset--font-size--small);
	font-weight: 600;
	text-decoration: none;
	&:before{
		border-bottom: var(--wp--preset--color--light-blue) 0.2rem solid;
		bottom: calc(100% - 1.5rem);
		opacity: 1;
		width: 100%;
		content: "";
		position: absolute;
		left: 0;
	}
	&:after {
		font-family: "Font Awesome 6 Pro";
		content: "\F178";
		position: absolute;
		z-index: 5;
		font-size: inherit;
		font-weight: 300;
		top: 0;
		right: -2rem;
		width: 2rem;
		height: 0.7rem;
		cursor: pointer;
		transition: all 0.2s ease-out;
		color: var(--wp--preset--color--light-blue);
		text-align: center;
	}
	&:active {
		color: var(--wp--preset--color--purple);
		&:after {
		    right: -3rem;
		}
	}
}
.wp-block-button:is(.is-style-back) .wp-block-button__link {
	border: none;
	background-color: transparent;
	padding: 0;
	padding-left: 2rem;
	color: var(--wp--preset--color--purple);
	position: relative;
	font-size: var(--wp--preset--font-size--small);
	font-weight: 600;
	text-decoration: none;
	&:after{
		border-bottom: var(--wp--preset--color--light-blue) 0.2rem solid;
		bottom: calc(100% - 1.5rem);
		opacity: 1;
		width: calc(100% - 2rem);
		content: "";
		position: absolute;
		left: 2rem;
	}
	&:before {
		font-family: "Font Awesome 6 Pro";
		content: "\F178";
		position: absolute;
		z-index: 5;
		font-size: inherit;
		font-weight: 300;
		top: 0;
		left: 0;
		width: 2rem;
		height: 0.7rem;
		cursor: pointer;
		transition: all 0.2s ease-out;
		color: var(--wp--preset--color--light-blue);
		margin-left: 0;
	}

	&:is(:hover,:focus) {
		color: var(--wp--preset--color--light-blue);
	}
}
.wp-block-read-more::after,
.wp-block-post-excerpt__more-link::after {
	right: -2.5rem !important;
}
.wp-block-read-more:active,
.wp-block-post-excerpt__more-link:active {
	&:after {
		right: -3.5rem !important;
	}
}
.wp-block-read-more:is(:hover, :focus),
.wp-block-post-excerpt__more-link:is(:hover, :focus) {
	opacity: 1;
	color: var(--wp--preset--color--light-blue);
}
.wp-block-button.is-style-read-more:is(:hover, :focus) .wp-block-button__link {
	border-color: transparent;
	text-decoration: none;
	color: var(--wp--preset--color--light-blue);
}

/* Outline style */
.wp-block-read-more.is-style-read-more-outline {
	border: solid 2px;
	padding: 0.813rem 2.5rem;
	border-radius: 100px;

	&:before,
	&:after {
		display: none;
	}

	&:is(:hover,:focus) {
		border-color: var(--wp--preset--color--purple);
		background-color: var(--wp--preset--color--purple);
		color: var(--wp--preset--color--white);
	}
}

/**
 * Hero elements will be 100% vh up to a max of 1024
 */
.is-style-responsive-minimum-height {
	min-height: calc(100vh - 124px);
}

@media (max-width: 1023px) {
	.is-style-responsive-minimum-height {
		min-height: calc(100vh - 93px);
	}
}

.is-style-inside-page-hero {
	min-height: clamp(24.25rem, 17.351rem + 30.662vw, 42.188rem);
}

/**
 * Special styling for screen reader text
 */

.screen-reader-text {
    clip: rect(1px,1px,1px,1px);
    height: 1px;
    overflow: hidden;
    position: absolute!important;
    width: 1px;
    word-wrap: normal!important;
}

.sideways {
    @media(min-width: 782px) {
        transform: rotate(-90deg);
		white-space: nowrap;
		position: absolute;
	    width: 100%;
        bottom: 25%;
        height: auto !important;
    }
    @media(min-width: 1154px) {
        bottom: 13%;
    }
}
.wp-block-column.has-green-background-color:has(.sideways) {
    box-shadow: 0 0.3rem 0.6rem 0 rgba(13, 25, 34, 0.29);
    position: relative;
    @media(max-width: 781px) {
        max-width: 152px;
    }
}
/**
 * Any applicable css related to sitewide scrolling
 */

html { 
    scroll-behavior: smooth; 
}
.wp-block-outermost-icon-block.social {
	svg {
		width: 20px;
		background: var(--wp--preset--color--light-blue);
		border-radius: 100px;
		padding: var(--wp--preset--spacing--10);
	}
}

.wp-block-outermost-social-sharing .outermost-social-sharing-link-facebook {
	&::after {
		content: '\e63f';
		font-family: 'ETmonarch';
		font-size: var(--wp--preset--font-size--small);
	}
	svg {
		display: none;
	}
}
.wp-block-outermost-social-sharing .outermost-social-sharing-link-linkedin {
	&::after {
		content: '\e631';
		font-family: 'ETmonarch';
		font-size: var(--wp--preset--font-size--small);
	}
	svg {
		display: none;
	}
}
.wp-block-outermost-social-sharing .outermost-social-sharing-link-mail {
	&::after {
		content: '\f0e0';
		font-family: 'Font Awesome 6 Pro';
		font-size: var(--wp--preset--font-size--small);
	}
	svg {
		display: none;
	}
}
.wp-block-outermost-social-sharing .outermost-social-sharing-link-x svg {
	font-size: var(--wp--preset--font-size--small);
}



.is-style-blue-underline:not(.wp-block-post-title) {
    width: fit-content;
    border-bottom: 2px solid var(--wp--preset--color--light-blue);
}

.wp-block-post-title.is-style-blue-underline {
    text-decoration: underline;
    text-decoration-color: var(--wp--preset--color--light-blue);
}

/**
 * Template: index.html
 */

/**
 * Change the aspect ratio of the featured posts to landscape when in single column
 */
@media (max-width: 942px) {
	body.blog .wp-block-post-template.is-flex-container .wp-block-post-featured-image img {
		aspect-ratio: 3 / 2;
	}
}
/**
 * Special Styling of the first post of the blog page on wider screens
 * Two column card layout with larger font sizes and spacing
 */
@media (min-width: 943px) {
	body.blog .wp-block-post-template.is-flex-container > .wp-block-post:first-child > .wp-block-group {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: var(--wp--preset--spacing--50);
	}
	body.blog .wp-block-post-template.is-flex-container > .wp-block-post:first-child .wp-block-post-featured-image {
		display: grid;
	}
	body.blog .wp-block-post-template.is-flex-container > .wp-block-post:first-child .wp-block-post-featured-image img {
		aspect-ratio: auto;
		height: 100%;
	}
	body.blog .wp-block-post-template.is-flex-container > .wp-block-post:first-child .wp-block-post-featured-image + .wp-block-group {
		display: grid;
		justify-items: start;
		align-content: center;
		margin-block-start: 0;
		padding: var(--wp--preset--spacing--50);
		border-radius: var(--wp--custom--border--radius);
		background-color: var(--wp--preset--color--grey);
	}
	body.blog .wp-block-post-template.is-flex-container > .wp-block-post:first-child .wp-block-post-featured-image + .wp-block-group > * {
		width: 100%;
	}
	body.blog .wp-block-post-template.is-flex-container > .wp-block-post:first-child .wp-block-post-title {
		font-size: var(--wp--preset--font-size--h-3) !important;
	}
	body.blog .wp-block-post-template.is-flex-container > .wp-block-post:first-child .wp-block-post-title + .wp-block-group {
		margin-block-start: var(--wp--preset--spacing--30) !important;
	}
	body.blog .wp-block-post-template.is-flex-container > .wp-block-post:first-child .wp-block-post-excerpt {
		margin-block-start: var(--wp--preset--spacing--30) !important;
		font-size: var(--wp--preset--font-size--medium) !important;
	}
}

/**
 * Update how many grid columns the first post takes up so its an entire row
 * Adjust according to breakpoints of other columns (eg. 3 per row to 2 per row)
 */
@media (min-width: 943px) {
	body.blog .wp-block-post-template.is-flex-container.columns-3 > .wp-block-post:first-child {
		grid-area: 1 / 1 / 1 / 3;
	}
}
@media (min-width: 1393px) {
	body.blog .wp-block-post-template.is-flex-container.columns-3 > .wp-block-post:first-child {
		grid-area: 1 / 1 / 1 / 4;
	}
}
.single-event .wp-block-columns.event-content {
    @media(max-width: 1199px) {
        display: block;
        .wp-block-column:last-of-type {
            margin-top: var(--wp--preset--spacing--30);
        }
    }
    .wp-block-column:not(:has(.wp-block-post-feature-image)) {
        flex-basis: 0 !important;
    }
    &:not(:has(.wp-block-column .wp-block-post-feature-image)) {
        gap: 0;
    }
}
.single-post .wp-block-group.post-header .wp-block-post-title,
.single-post .wp-block-group.post-header .post-meta-info,
.single-post .wp-block-group.post-header .post-social,
.single-post .wp-block-post-content p {
    margin-left: 0 !important;
    margin-right: 0 !important;
}