html {
	scroll-behavior: smooth;
}

.wp-site-blocks {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    margin-block-start: auto;
}

/* Underline link hover interactions */

.wp-block-post-title > a,
.wp-block-post-terms > a,
.wp-block-post-author-name > a,
.wp-block-post-date > time > a {
	text-decoration-color: transparent;
	transition: text-decoration-color 0.25s ease-out;
}

.wp-block-post-title > a:hover,
.wp-block-post-terms > a:hover,
.wp-block-post-author-name > a:hover,
.wp-block-post-date > time > a:hover {
	text-decoration-color: currentColor;
}

/* Breadcrumbs block */

.yoast-breadcrumbs a {
	text-decoration-color: transparent;
	transition: text-decoration-color 0.25s ease-out;
}

.yoast-breadcrumbs a:hover {
	text-decoration-color: currentColor;
}

.yoast-breadcrumbs > span > span {
	padding-inline-end: var(--wp--preset--spacing--20);
}

.yoast-breadcrumbs > span > span + span {
	padding-inline-start: var(--wp--preset--spacing--20);
}

/* Button block */

.wp-block-button > .wp-block-button__link {
	outline-offset: 2px;
	transition: all 0.25s ease-out;
	transition-property: background-color, border-color, color;
	word-break: keep-all;
}

.wp-block-button:not(.is-style-link) > .wp-block-button__link:hover {
	background-color: var(--wp--preset--color--lavendar-100) !important;
	color: var(--wp--preset--color--primary) !important;
}

.wp-block-button:not(.is-style-link) > .wp-block-button__link:active {
	background-color: var(--wp--preset--color--black) !important;
	color: var(--wp--preset--color--base) !important;
	transition-duration: 0.01s;
}

.is-style-dark .wp-block-button:not(.is-style-link) > .wp-block-button__link:active {
	background-color: var(--wp--preset--color--base) !important;
	color: var(--wp--preset--color--primary) !important;
}

/* Button block - Outline style */

.wp-block-button.is-style-outline > .wp-block-button__link:hover {
	background-color: var(--wp--preset--color--primary);
	border-color: var(--wp--preset--color--primary);
	color: var(--wp--preset--color--base);
}

/* Button block - Link style */

.wp-block-button.is-style-link > .wp-block-button__link {
	align-items: center;
	display: inline-flex;
	gap: 0.5em;
	text-underline-offset: 0.25em;
}

.wp-block-button.is-style-link > .wp-block-button__link::after {
	background-color: currentColor;
	content: "";
	height: 1em;
	mask-image: url(../icon/chevron-right.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	transition: transform 0.25s ease;
	width: 1em;
}

.wp-block-button.is-style-link > .wp-block-button__link:focus,
.wp-block-button.is-style-link > .wp-block-button__link:hover {
	background-color: transparent;
	text-decoration: underline;

	&::after {
		transform: translateX(0.25em);
	}
}

.wp-block-button.is-style-link > .wp-block-button__link:active {
	color: currentColor;

	&::after {
		transform: translateX(0);
		transition-duration: 0.01s;
	}
}

/* Button block - Secondary style */

.is-style-secondary-button > .wp-block-button__link:focus,
.is-style-secondary-button > .wp-block-button__link:hover {
	background-color: var(--wp--preset--color--lavendar-100) !important;
}

.wp-block-button > .has-lavendar-100-background-color:focus,
.wp-block-button > .has-lavendar-100-background-color:hover,
.wp-block-button > .has-lavendar-200-background-color:focus,
.wp-block-button > .has-lavendar-200-background-color:hover {
	background-color: var(--wp--preset--color--lavendar-900) !important;
}

/* Media & Text block */

.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
	padding-inline-start: 0;
}

.wp-block-media-text:not(.has-media-on-the-right) .wp-block-media-text__content {
	padding-inline-end: 0;
}

/* Details block */

.wp-block-details {
	border-bottom: 1px solid var(--wp--preset--color--lavendar-900);
	margin: 0;
	width: 100%;
}

.wp-block-details > summary {
	align-items: center;
	display: flex;
	font-size: 1.125em;
	font-weight: 600;
	justify-content: space-between;
	list-style: none;
	padding: 1.125em 0rem;
}

.wp-block-details > summary::after {
	background-color: currentcolor;
	content: "";
	display: block;
	flex-shrink: 0;
	height: 1.5em;
	margin-left: 1rem;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M23.1162 11.4697C23.2139 11.3721 23.3721 11.3721 23.4697 11.4697L23.8232 11.8232C23.9209 11.9209 23.9208 12.0791 23.8232 12.1768L16.1768 19.8232C16.0791 19.9209 15.9209 19.9209 15.8232 19.8232L8.17676 12.1768C8.07914 12.0791 8.07913 11.9209 8.17676 11.8232L8.53027 11.4697C8.62789 11.3721 8.78615 11.3721 8.88379 11.4697L16 18.5859L23.1162 11.4697Z' fill='currentColor' stroke='currentColor'/%3E%3C/svg%3E");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	transform: scale(1);
	transition: transform 0.3s ease;
	width: 1.5em;
}

.wp-block-details[open] > summary::after {
	transform: scale(-1);
}

.wp-block-details > summary::-webkit-details-marker,
.wp-block-details > summary::marker {
	display: none !important;
}

.wp-block-details > *:not(summary) {
	opacity: 0;
	transform: translateY(-10px);
}

.wp-block-details[open] > *:not(summary) {
	animation: 0.3s ease details-open forwards;
}

.wp-block-details[open] > *:not(summary):last-child {
	padding-bottom: 1.5rem;
}

@keyframes details-open {
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@media screen and (max-width: 599px) {
	.wp-block-details > summary {
		font-size: 1.25em;
	}
}

.wp-block-details > summary > p {
	margin: 0;
}

/* Full-width Cover block */

.wp-block-cover.alignfull {
	padding-left: var(--wp--style--root--padding-left);
	padding-right: var(--wp--style--root--padding-right);
}

/* Footer */

footer.wp-block-template-part .is-style-dark .wp-block-image .footer-logo {
	filter: invert(1) brightness(10);
}

footer.wp-block-template-part > .wp-block-group {
	background-image: url(../icon/footer-doodle-dark.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

footer.wp-block-template-part > .is-style-dark {
	background-image: url(../icon/footer-doodle.svg);
}

footer.wp-block-template-part .footer-bottom-bar .wp-block-menu,
footer.wp-block-template-part .footer-main--menu .wp-block-menu {
	--menu-gap: var(--wp--preset--spacing--40);
}

footer.wp-block-template-part .footer-bottom-bar .wp-block-menu a {
	font-weight: 400 !important;
}

@media screen and (max-width: 767px) {
	footer.wp-block-template-part .footer-main--brand .wp-block-image img {
		max-width: 150px;
	}

	footer.wp-block-template-part .footer-main--menu .wp-block-menu .menu {
		flex-direction: row;
	}

	footer.wp-block-template-part .footer-socials {
		justify-content: flex-start;
	}
}

/* Global bugfix for text-image-background (doodles) causing horizontal scrolling  */

.entry-content {
	overflow-x: hidden;
}

/* Inline images */

.wp-block-heading > img,
.entry-content p > img {
	vertical-align: middle;
}

@media screen and (max-width: 767px) {
	.wp-block-heading > img,
	.entry-content p > img {
		max-width: 100px;
	}
}

/* Location finder */

.location-finder-section .is-style-tab-buttons .wp-block-button__link {
	-webkit-tap-highlight-color: transparent;
}

.location-finder-section .is-style-tab-buttons .wp-block-button__link[aria-pressed="true"] {
	background-color: var(--wp--preset--color--lavendar-200) !important;
	border-bottom-color: var(--wp--preset--color--lavendar-200) !important;
	border-left-color: var(--wp--preset--color--iris-700) !important;
	color: var(--wp--preset--color--primary) !important;
}

.location-finder-section .is-style-tab-buttons .wp-block-button__link:active {
	background-color: var(--wp--preset--color--lavendar-500) !important;
	border-bottom-color: var(--wp--preset--color--lavendar-200) !important;
	border-left-color: var(--wp--preset--color--iris-700) !important;
	color: var(--wp--preset--color--primary) !important;
}

.location-finder-section .is-style-tab-buttons .wp-block-button__link:focus,
.location-finder-section .is-style-tab-buttons .wp-block-button__link:hover {
	border-left-color: var(--wp--preset--color--iris-700) !important;
}

.location-finder--content,
.location-finder--tabs {
	max-height: 600px;
	overflow-y: auto;
	scrollbar-color: var(--wp--preset--color--primary) transparent;
	scrollbar-width: thin;
}

/* Mobile tab button toggles */

.location-finder-section .wp-block-buttons--tab-toggle--active {
	position: relative;
}

.location-finder-section .wp-block-buttons--tab-toggle--active::before {
	animation: tab-arrow-reveal 0.25s 0.25s ease-out forwards;
	border: 2px solid currentColor;
	border-left-width: 0;
	border-top-width: 0;
	display: block;
	height: 0.5em;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 2em;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 0.5em;
	z-index: 0;
}

@media screen and (max-width: 781px) {
	.location-finder-section .wp-block-button {
        interpolate-size: allow-keywords;
        overflow: hidden;
        transition-duration: 0.25s;
        transition-property: background-color, border-color, color, height;
        transition-timing-function: ease-out;
    }

	.location-finder-section .wp-block-buttons--tab-toggle--active::before {
		content: "";
	}

	.location-finder-section .wp-block-buttons--tab-toggle--active > .wp-block-button {
		height: 0;
	}

	.location-finder-section .wp-block-buttons--tab-toggle--active > .wp-block-button:has(> .wp-block-button__link[aria-pressed="true"]) {
		height: auto;
	}
}

@keyframes tab-arrow-reveal {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.side-image-banner {
	overflow: hidden;
	position: relative;
}

.side-image-banner .side-image-banner-columns {
	position: relative;
	z-index: 1;
}

@media screen and (min-width: 782px) {
	.side-image-banner .side-image-banner-background .wp-block-cover {
		bottom: 0;
		position: absolute;
		right: 0;
		top: 0;
		width: 45%;
		z-index: 0;
	}
}

@media screen and (max-width: 781px) {
	.side-image-banner .side-image-banner-column-image {
		position: absolute;
		width: 100%;
	}

	.side-image-banner .side-image-banner-column-image .wp-block-image {
		max-width: 15rem;
		width: 45%;
	}
}

/* Read More button block style */

.wp-block-read-more {
	background-color: var(--wp--preset--color--lavendar-500);
	color: var(--wp--preset--color--primary);
	font-weight: 600;
	padding: var(--wp--preset--spacing--20) var(--wp--preset--spacing--40);
	transition:
		background-color 0.3s ease,
		color 0.3s ease;
}

.wp-block-read-more:hover,
.wp-block-read-more:focus {
	background-color: var(--wp--preset--color--primary) !important;
	color: var(--wp--preset--color--base) !important;
}

.wp-block-read-more:active {
	background-color: var(--wp--preset--color--lavendar-900) !important;
	color: var(--wp--preset--color--primary) !important;
}

/* Blog archive */

@media screen and (max-width: 600px) {
	.featured-post--card.wp-block-media-text > .wp-block-media-text__media {
		margin-bottom: var(--wp--preset--spacing--30);
	}

	.featured-post--card.wp-block-media-text > .wp-block-media-text__content {
		padding-left: 0;
	}
}

/* reverse columns on mobile - fix for stretch videos */

@media screen and (max-width: 781px) {
	.is-style-mobile-reverse > .wp-block-column {
		box-sizing: border-box;
		width: 100%;
	}
}