html, body {
	height: 100%;
	margin: 0;
}

a:where(:not(.wp-element-button))  {
	color: var(--wp--preset--color--accent-dark);
	text-decoration: underline;
}
a:where(:not(.wp-element-button)):hover {
	color: var(--wp--preset--color--accent-dark);
	text-decoration: none;
}

.wp-site-blocks {
	min-height:100vh;
	display: flex;
	flex-direction: column;
}
.wp-site-blocks main {
	flex-grow: 1;
}
.wp-site-blocks ul {
	list-style-type: disc;
	padding-inline-start: 1.25em;
}
.wp-site-blocks ul li::marker {
	color: var(--wp--preset--color--accent-dark);
}

.animated-link {
	text-decoration: none;
	color: #000;
	background-image: linear-gradient(var(--wp--preset--color--accent-dark), var(--wp--preset--color--accent-dark));
	background-size: 0% 2px;         /* Start with no width, height = 2px */
	background-repeat: no-repeat;
	background-position: 0 100%;     /* Bottom left */
	transition: background-size 1s ease;
}

.animated-link:hover {
	background-size: 100% 2px;       /* Animate to full width */
	color: #000;
}

/* Button Hover Effects */
:root :where(.wp-element-button, .wp-block-button__link) {
	transition: background-color 0.2s ease-in-out;
}
:root :where(.wp-element-button, .wp-block-button__link):hover {
	background-color: var(--wp--preset--color--white);
	color: var(--wp--preset--color--grey-700);
}

.wp-block-button.is-style-secondary-btn-light .wp-block-button__link:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
	border-color: var(--wp--preset--color--accent-700);
}

.wp-block-button.is-style-secondary-btn-dark .wp-block-button__link:hover {
	border-color: var(--wp--preset--color--white);
	background-color: inherit;
	color: inherit;
}

/* Search Hover Effects */
.wp-block-search .wp-block-search__button:hover {
	background-color: var(--wp--preset--color--accent-dark);
	color: var(--wp--preset--color--white);
}

.wp-block-search .wp-block-search__button svg {
	transition: transform 0.2s;
}

.wp-block-search .wp-block-search__button:hover svg {
	transform: scale(1.2);
}

.wp-block-search__button-inside .wp-block-search__inside-wrapper {
	border-width: 0px;
}

/* Dark Search Bar Style */
.is-style-search-bar-dark .wp-block-search__input {
	background-color: var(--wp--preset--color--blue-800);
	color: var(--wp--preset--color--white);
}

.is-style-search-bar-dark .wp-block-search__inside-wrapper {
	padding: 0;
}

/* page and post title styling (squiggle) */
.page-title {
	position: relative;
	z-index: 10;
	box-shadow: 0 0 15px 15px var(--wp--preset--color--blue-800);
	background-color: var(--wp--preset--color--blue-800);
}

.page-title-ctn {
	padding: 8rem 0;
}

.header-line {
	margin:0;
	position: absolute;
	top: calc(0px - var(--wp--custom--height--header-height));
	height: calc(100% + var(--wp--custom--height--header-height));
	left: 42%;
	--tw-translate-x: -50%;
	transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.page-title-section {
	position: relative;
	margin-top:0;
}

/* SVG Animation */
.header-line path {
	stroke-dasharray: 1700;
	stroke-dashoffset: 1700;
	animation: drawLine 3s forwards ease-out;
}

@keyframes drawLine {
	to {
	stroke-dashoffset: 0;
	}
}

/* icons */
.icon {
	height: 16px;
}

/* Secondary Nav */
.secondary-nav {
	margin-top: 0;
	padding: var(--wp--preset--spacing--lg);
	background-color: var(--wp--preset--color--blue-700);
}

.secondary-nav a {
	color: var(--wp--preset--color--white);
	text-decoration: none;
}

.secondary-nav a:hover {
	color: white;
}

/* Header */
.wp-block-navigation {
	position: relative;
	z-index: 100;
}