/* General Styles */
* {
	box-sizing: border-box;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease, max-height 0.3s ease, fill 0.3s ease;
	font-family: inherit, var(--wp--preset--font-family--body);
}
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
html, body {
	overflow-x: clip;
	scrollbar-width: thin;
	scrollbar-color: gray transparent;
}
body {
	font-family: var(--wp--preset--font-family--body);
	background-color: var(--sand-5);
	color: var(--black);
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	font-weight: 400;
    margin: 0;
    padding: 0 0 1rem 0;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--wp--preset--font-family--heading);
	color: var(--purple-70);
}
h1 {
	font-size: 3.8rem;
	line-height: 1.2;
}
h2 {
	font-size: 3rem;
	line-height: 1.25;
}
h3 {
	font-size: 2.4rem;
	line-height: 1.3;
}
h4 {
	font-size: 2.6rem;
	line-height: 1.3;
}
h5 {
	font-size: 2rem;
	line-height: 1.5;
}
h6 {
	font-size: 1.8rem;
	line-height: 1.5;
}
h1 span {
	color: var(--pink-10);
	font-style: italic;
}
h2 span {
	color: var(--pink-20);
	font-style: italic;
}
p, li, td {
	font-size: 1.8rem;
	line-height: 1.6;
	font-weight: 400;
}
a {
	color: var(--purple-40);
	text-underline-offset: 2px;
}
a:is(:hover, :focus) {
	color: var(--purple-70);
}
ol, ul {
	margin: 0;
}
hr {
	margin: 0;
	border-color: var(--purple-50);
}
.highlighted-dot {
	color: var(--pink-10);
	padding: 10px;
	font-size: 2.2rem;
}
.visually-hidden, .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.container {
	width: 100%;
	max-width: var(--wp--style--global--content-size);
	margin: 0 auto;
	padding: 32px 16px;
}
.container--wide {
	max-width: var(--wp--style--global--wide-size);
}
.container--content {
	max-width: var(--wp--style--global--content-size);
}
.container--narrow {
	max-width: 824px;
}
.container .container {
	padding-left: 0;
	padding-right: 0;
}
.page-content, .error-404 {
	display: flex;
	flex-direction: column;
}
.error-404 {
	padding: 32px 0;
}
.desktop-only {
	display: none !important;
}
.mobile-only {
	display: inline-flex !important;
}
@media (min-width: 768px) {
	.container {
		padding: 40px 24px;
	}
	.desktop-only {
		display: inline-flex !important;
	}
	.mobile-only {
		display: none !important;
	}
}
@media (min-width: 992px) {
	h1 {
		font-size: 5.6rem;
	}
	h2 {
		font-size: 4rem;
	}
	h3 {
		font-size: 3.2rem;
	}
	p, li, td {
		font-size: 2rem;
	}
	.container {
		padding: 48px 24px;
	}
}
@media (min-width: 1200px) {
	.container {
		padding: 48px;
	}
}
@media (min-width: 1700px) {
	.container {
		padding: 48px 0;
	}
}

/* Form fields */
input, select, textarea {
	font-family: var(--wp--preset--font-family--body);
	font-size: 1.6rem;
	line-height: 1.6;
	color: var(--purple-70);
	position: relative;
	appearance: none;
	padding: 11px 46px 11px 16px;
	border: 1px solid var(--sand-50);
	border-radius: 25px;
	background: var(--sand-5) url("/wp-content/themes/wpurves/assets/images/arrow-down-purple.svg") no-repeat right 16px center;
	background-size: 16px;
}
input {
	padding: 11px 16px;
	background: var(--sand-5);
}
select {
	cursor: pointer;
}
textarea {
	padding: 11px 16px;
	background: var(--sand-5);
	border-radius: 6px;
}
input::placeholder, input[value=""], select:has(option[value=""]:checked) {
	color: var(--black);
}
input[type="date"] {
	background: var(--sand-5) url("/wp-content/themes/wpurves/assets/images/calendar.svg") no-repeat right 16px center;
	cursor: text;
}
input[type="date"]::-webkit-calendar-picker-indicator {
	opacity: 0;
	cursor: pointer;
	position: absolute;
	right: 18px;
}
select:is(:hover, :focus) {
	background-color: var(--purple-10);
}
input[type="checkbox"] {
	width: 24px;
	height: 24px;
	background: var(--sand-5);
	border: 1px solid var(--sand-50);
	border-radius: 4px;
	padding: 0;
	flex-shrink: 0;
	position: relative;
}
input[type="checkbox"]:hover {
	background: var(--sand-40);
}
input[type="checkbox"]::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.2s ease;
	background: url("/wp-content/themes/wpurves/assets/images/checkmark.svg") center / 24px no-repeat;
}
input[type="checkbox"]:checked::before {
	opacity: 1;
}
label:has(input[type="checkbox"]) {
	cursor: pointer;
}
label {
	font-family: var(--wp--preset--font-family--heading);
	color: var(--purple-70);
	font-size: 1.6rem;
	line-height: 1.5;
}
/* Search */
.search__input-wrapper {
	position: relative;
	padding: 11px 12px 11px 16px;
	border: 1px solid var(--sand-50);
	border-radius: 25px;
	display: flex;
	align-items: center;
	gap: 4px;
}
.search__input-wrapper input {
	width: 100%;
	color: var(--purple-70);
	background: var(--sand-5);
	border: none;
	border-radius: 0;
	padding: 0;
}
.search__input-wrapper button:is(:hover, :focus) {
	background: var(--purple-10);
}
.search__input-wrapper input:focus-visible {
	outline: none;
}
.search__input-wrapper:has(input:focus-visible) {
	outline: auto;
}
.search__input-wrapper button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border: 0;
	cursor: pointer;
	background: transparent;
	border-radius: 50%;
}
.search__input-wrapper button svg {
	width: 24px;
	height: 24px;
}
@media (min-width: 992px) {
	label {
		font-size: 1.8rem;
	}
}

/* Buttons */
.button, .wp-block-button .wp-block-button__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 4px;
    background: var(--purple-60);
	border: 1px solid var(--purple-60);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-family: var(--wp--preset--font-family--body);
    font-size: 1.6rem;
	line-height: 1.6;
	cursor: pointer;
}
.button:is(:hover, :focus), .wp-block-button .wp-block-button__link:is(:hover, :focus) {
    background: var(--purple-50);
	border-color: var(--purple-50);
	color: var(--white);
}
.button.button-key, .is-style-button-key .wp-block-button__link {
	background: var(--green-30);
	border-color: var(--green-30);
	color: var(--purple-70);
}
.button.button-key:is(:hover, :focus), .is-style-button-key .wp-block-button__link:is(:hover, :focus) {
	background: var(--green-20);
	border-color: var(--green-20);
}
.button.button-light, .is-style-button-light .wp-block-button__link {
	background: var(--purple-10);
	border-color: var(--purple-10);
	color: var(--purple-70);
}
.button.button-light:is(:hover, :focus), .is-style-button-light .wp-block-button__link:is(:hover, :focus) {
	background: var(--white);
	border-color: var(--white);
}
.button.button-white, .is-style-button-white .wp-block-button__link {
	background: var(--white);
	border-color: var(--white);
	color: var(--purple-70);
}
.button.button-white:is(:hover, :focus), .is-style-button-white .wp-block-button__link:is(:hover, :focus) {
	background: var(--purple-20);
	border-color: var(--purple-20);
}
.button.button-outline, .is-style-outline .wp-block-button__link {
	background: transparent;
	color: var(--purple-70);
}
.button.button-outline:is(:hover, :focus), .is-style-outline .wp-block-button__link:is(:hover, :focus) {
	background: var(--purple-60);
	color: var(--white);
}
.button.button-white-outline, .is-style-button-white-outline .wp-block-button__link {
	background: transparent;
	border-color: var(--white);
	color: var(--white);
}
.button.button-white-outline:is(:hover, :focus), .is-style-button-white-outline .wp-block-button__link:is(:hover, :focus) {
	background: var(--white);
	border-color: var(--white);
	color: var(--purple-70);
}
.button.button-arrow, .is-style-button-arrow-purple .wp-block-button__link, .is-style-button-arrow-white .wp-block-button__link {
	padding: 10px 40px 10px 16px;
}
.button.button-arrow-back {
	padding: 10px 16px 10px 40px;
}
.button.button-arrow::after, .is-style-button-arrow-purple .wp-block-button__link::after, .is-style-button-arrow-white .wp-block-button__link::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	background-color: currentColor;
	-webkit-mask: url("images/arrow-link.svg") no-repeat center / contain;
	mask: url("images/arrow-link.svg") no-repeat center / contain;
	transition: transform 0.2s ease-in-out;
}
.button.button-arrow-back::after {
	left: 16px;
	transform: translateY(-50%) rotate(180deg);
}
.button.button-arrow:is(:hover, :focus)::after, .is-style-button-arrow-purple .wp-block-button__link:is(:hover, :focus)::after, .is-style-button-arrow-white .wp-block-button__link:is(:hover, :focus)::after {
	transform: translateY(-50%) translateX(3px);
}
.button.button-arrow-back:is(:hover, :focus)::after {
	transform: translateY(-50%) rotate(180deg) translateX(3px);
}
.button.button-link, .is-style-button-arrow-purple .wp-block-button__link, .is-style-button-arrow-white .wp-block-button__link {
	border-color: transparent;
	border-radius: 0;
	padding: 10px 0;
	background: transparent;
	color: var(--purple-60);
}
.button.button-link:is(:hover, :focus), .is-style-button-arrow-purple .wp-block-button__link:is(:hover, :focus), .is-style-button-arrow-white .wp-block-button__link:is(:hover, :focus) {
	border-color: transparent transparent var(--purple-60) transparent;
}
.is-style-button-arrow-purple .wp-block-button__link:is(:hover, :focus), .is-style-button-arrow-white .wp-block-button__link:is(:hover, :focus) {
	background: transparent;
}
.button.button-link-white, .is-style-button-arrow-white .wp-block-button__link {
	border-color: transparent;
	border-radius: 0;
	padding: 10px 0;
	background: transparent;
	color: var(--white);
}
.button.button-link-white:is(:hover, :focus), .is-style-button-arrow-white .wp-block-button__link:is(:hover, :focus) {
	border-color: transparent transparent white transparent;
}
.button.button-link.button-arrow, .is-style-button-arrow-purple .wp-block-button__link, .is-style-button-arrow-white .wp-block-button__link {
	padding: 10px 24px 10px 0;
	width: fit-content;
}
.button.button-link.button-arrow::after, .is-style-button-arrow-purple .wp-block-button__link::after, .is-style-button-arrow-white .wp-block-button__link::after {
	right: 0 !important;
}
.button-pay {
	padding: 10px 40px 10px 16px;
}
.button-pay a:focus {
	outline: none;
	color: var(--purple-70);
}
.button-pay:has(a:focus-visible) {
	background: var(--white);
	border-color: var(--white);
	color: var(--purple-70);
}
.button-pay::after {
	content: "";
	position: absolute;
	right: 16px;
	top: 50%;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	background-color: currentColor;
	-webkit-mask: url(images/pay-icon.svg) no-repeat center / contain;
	mask: url(images/pay-icon.svg) no-repeat center / contain;
}
.button-pay:is(:hover, :focus) a {
	color: var(--purple-70);
	text-decoration: none;
}
.button svg {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}
.button:is(:hover, :focus) path {
	fill: currentColor;
}
@media (min-width: 768px) {
	.button, .wp-block-button .wp-block-button__link {
		padding: 12px 20px;
		width: fit-content;
	}
	.button.button-arrow, .is-style-button-arrow-purple .wp-block-button__link, .is-style-button-arrow-white .wp-block-button__link {
		padding: 12px 44px 12px 24px;
	}
	.button.button-arrow-back {
		padding: 12px 24px 12px 44px;
	}
	.button.button-arrow::after {
		right: 20px;
	}
	.button.button-arrow-back::after {
		left: 20px;
	}
	.button.button-link.button-arrow, .is-style-button-arrow-purple .wp-block-button__link, .is-style-button-arrow-white .wp-block-button__link {
		padding: 12px 24px 12px 0;
	}
	.button-pay {
		padding: 12px 44px 12px 24px;
	}
	.button-pay::after {
		right: 20px;
	}
}
@media (min-width: 992px) {
	.button, .wp-block-button .wp-block-button__link {
		font-size: 1.8rem;
		padding: 12px 24px;
		gap: 8px;
	}
	.button.button-arrow, .is-style-button-arrow-purple .wp-block-button__link, .is-style-button-arrow-white .wp-block-button__link {
		padding: 12px 56px 12px 24px;
	}
	.button.button-arrow-back {
		padding: 12px 24px 12px 56px;
	}
	.button.button-arrow::after, .is-style-button-arrow-purple .wp-block-button__link::after, .is-style-button-arrow-white .wp-block-button__link::after {
		right: 24px;
		width: 24px;
		height: 24px;
	}
	.button.button-arrow-back::after {
		left: 24px;
		width: 24px;
		height: 24px;
	}
	.button.button-link.button-arrow, .is-style-button-arrow-purple .wp-block-button__link, .is-style-button-arrow-white .wp-block-button__link {
		padding: 12px 32px 12px 0;
	}
	.button-pay {
		padding: 12px 56px 12px 24px;
	}
	.button-pay::after {
		width: 24px;
		height: 24px;
		right: 24px;
	}
	.button svg {
		width: 24px;
		height: 24px;
	}
}


/* Header */
.site-header {
	background-color: var(--purple-70);
	display: flex;
	flex-direction: column;
}
.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column-reverse;
	gap: 16px;
	padding-top: 16px;
	padding-bottom: 16px;
}
.site-header #nav-toggle {
	background: transparent;
	border: none;
	height: auto;
	padding: 0 20px;
	cursor: pointer;
}
.site-header #nav-toggle svg {
	height: auto;
}
.site-header #nav-toggle .menu-icon, .site-header #nav-toggle[aria-expanded="true"] .close-icon {
	opacity: 1;
	width: 17px;
}
.site-header #nav-toggle .close-icon, .site-header #nav-toggle[aria-expanded="true"] .menu-icon {
	opacity: 0;
	width: 0;
}
.site-header__top-left {
	display: flex;
	justify-content: space-between;
	align-self: center;
	width: 100%;
}
.site-header__top-left img {
	height: 50px;
}
.site-header__top-right {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 4px;
}
.site-header__top-right .button {
	font-size: 1.4rem;
}
.site-header__top-right .button-white-outline {
	flex: 1;
}
html:has(.site-header nav.open), body:has(.site-header nav.open) {
	overflow: hidden;
	height: 100%;
}
.site-header:has(nav.open) {
	height: 100dvh;
}
.site-header .container:has(nav) {
	padding-top: 0;
	padding-bottom: 0;
}
.site-header .container:has(nav.open) {
	flex-direction: column;
	padding-bottom: 16px;
	overflow-y: auto;
}
.site-header nav {
	width: 100%;
	height: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.site-header nav.open {
	height: auto;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.site-header nav ul {
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
	align-items: center;
	justify-content: space-between;
}
.site-header nav li, .site-header nav a {
	color: var(--white);
}
.site-header nav li {
	width: 100%;
}
.site-header nav a {
	display: block;
	text-align: left;
	text-decoration: none;
	width: fit-content;
}
.site-header nav a:is(:hover, :focus) {
	text-decoration: underline;
}
.site-header nav ul li:not(.button) a {
	padding: 12px 14px;
	font-size: 1.8rem;
	line-height: 1.6;
}
@media (min-width: 576px) {
	.site-header__top-right .button {
		flex: 1;
	}
}
@media (min-width: 768px) {
	.site-header {
		padding: 24px 0 0;
		gap: 24px;
	}
	.site-header .container {
		flex-direction: row;
	}
	.site-header__top-left {
		width: fit-content;
	}
	.site-header__top-right {
		gap: 8px;
		justify-content: flex-end;
	}
	.site-header__top-right .button {
		font-size: 1.6rem;
		flex: unset;
		white-space: nowrap;
	}
	.site-header nav {
		height: auto;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	.site-header nav ul {
		flex-direction: row;
		padding: 12px 0;
	}
	.site-header nav li {
		width: fit-content;
	}
	.site-header nav ul li:not(.button) a {
		padding: 12px 6px;
	}
	.site-header nav a {
		text-align: center;
	}
}
@media (min-width: 992px) {
	.site-header {
		padding: 36px 0 0;
	}
	.site-header__top-left img {
		height: 70px;
	}
	.site-header__top-right .button {
		font-size: 1.8rem;
	}
	.site-header nav ul li:not(.button) a {
		padding: 12px 8px;
	}
}
@media (min-width: 1200px) {
	.site-header {
		padding: 48px 0 0;
	}
	.site-header nav li {
		white-space: nowrap;
	}
}
/* Header Submenu */
.site-header nav .menu-item-has-children {
	position: relative;
	display: flex;
	align-self: stretch;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	border-radius: 25px;
}
.site-header nav .menu-item-has-children > a {
	height: auto;
	align-content: center;
	border-radius: 25px 0 0 25px;
	transition: background-color 0s;
}
.site-header nav .sub-menu {
	max-height: 0;
	visibility: hidden;
	pointer-events: none;
	background: var(--purple-60);
	border-radius: 25px;
	flex-direction: column;
	z-index: 2;
}
.site-header nav .sub-menu.is-open {
	max-height: 500px;
	visibility: visible;
}
.site-header nav .sub-menu-toggle {
	background: transparent;
	border: none;
	cursor: pointer;
	height: auto;
	align-content: center;
	align-self: stretch;
	padding: 0 14px 0 32px;
	border-radius: 0 25px 25px 0;
	transition: background-color 0s;
}
.site-header nav .sub-menu-toggle svg {
	width: 12px;
	height: 12px;
	transition: transform 0.2s ease-in-out;
}
.site-header nav .menu-item-has-children:has(.sub-menu.is-open) {
	background: linear-gradient(to right, var(--purple-60) 0, var(--purple-60) 7%, var(--purple-50) 7%, var(--purple-50) 93%, var(--purple-60) 93%, var(--purple-60) 100%);
}
.site-header nav .menu-item-has-children:has(.sub-menu.is-open) > a {
	background: var(--purple-50);
}
.site-header nav .menu-item-has-children:has(.sub-menu.is-open) > button {
	background: var(--purple-50);
}
.site-header nav .menu-item-has-children:has(.sub-menu.is-open) .sub-menu-toggle svg {
	transform: scaleY(-1);
}
@media (min-width: 768px) {
	.site-header nav .menu-item-has-children {
		flex-wrap: nowrap;
		justify-content: center;
	}
	.site-header nav .menu-item-has-children > a {
		width: min-content;
		flex: unset;
	}
	.site-header nav .sub-menu {
		position: absolute;
		top: 100%;
		max-height: fit-content;
		opacity: 0;
		border-radius: 16px;
	}
	.site-header nav .sub-menu-toggle {
		cursor: auto;
		pointer-events: none;
		padding: 0 6px;
	}
	.site-header nav .menu-item-has-children:is(:hover, :focus) .sub-menu, .site-header nav .sub-menu:is(:hover, :focus-within) {
		pointer-events: auto;
		visibility: visible;
		opacity: 1;
	}
	.site-header nav .menu-item-has-children:is(:hover, :focus) .sub-menu-toggle svg, .site-header nav li:has(.sub-menu:is(:hover, :focus-within)) > .sub-menu-toggle svg {
		transform: scaleY(-1);
	}
}
/* Header Searchbar */
.header-search {
	width: 100%;
	margin: 16px 0;
}
.header-search .search-form {
	width: 100%;
	position: relative;
	border: 1px solid var(--purple-60);
	border-radius: 25px;
	padding: 6px 6px 6px 24px;
	background: var(--purple-60);
	display: flex;
	align-items: center;
	gap: 2px;
}
.header-search input {
	width: 100%;
	font-size: 1.8rem;
	line-height: 160%;
	background: transparent;
	border: none;
	padding: 0;
	color: var(--white);
}
.header-search input::placeholder {
	color: var(--white);
}
.header-search input:focus-visible {
	outline: none;
}
.header-search .search-form:has(input:focus-visible) {
	outline: auto;
}
.header-search button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	padding: 8px;
	border: 0;
	cursor: pointer;
	background: var(--purple-40);
	border-radius: 50%;
}
.header-search button svg {
	width: 18px;
	height: 18px;
}
@media (min-width: 768px) {
	.header-search {
		width: fit-content;
		margin: 0;
	}
	.header-search input {
		font-size: 1.6rem;
	}
}
@media (min-width: 992px) {
	.header-search input {
		font-size: 1.8rem;
	}
}
/* Header Call Popup modal */
body.header-call-modal-open {
	overflow: hidden;
}
.header-call-modal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: flex-start;
	justify-content: center;
	z-index: 5;
}
.header-call-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 8, 28, 0.45);
}
.header-call-modal[hidden] {
	display: none;
}
.header-call-modal .container {
	margin: auto;
}
.header-call-modal__panel {
	position: relative;
	display: flex;
	gap: 48px;
	max-height: calc(100vh - 32px);
	padding: 24px;
	border-radius: 25px;
	box-shadow: 0 0 9px 0 var(--purple-70);
	background: var(--white)  url("/wp-content/uploads/2026/05/logo-bg.png") no-repeat right -12px bottom -27px / auto 200px;
	opacity: 0;
}
.header-call-modal.is-open .header-call-modal__panel {
	opacity: 1;
}
.header-call-modal__media {
	flex: 0 0 calc((100% - 48px) * 0.4);
	width: calc((100% - 48px) * 0.4);
	object-fit: cover;
	border-radius: 8px;
}
.header-call-modal__content {
	position: relative;
	flex: 0 0 calc((100% - 48px) * 0.6);
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.header-call-modal__content h2 {
	font-weight: 400;
}
.header-call-modal__content p {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 2rem;
	color: var(--purple-70);
	padding-bottom: 0;
}
.header-call-modal__content a {
	font-family: var(--wp--preset--font-family--heading);
	font-size: 4rem;
	font-weight: 400;
	padding-top: 0 !important;
}
.header-call-modal__content p a {
	font-size: 2.6rem;
}
@media (min-width: 768px) {
	.header-call-modal {
		display: flex;
	}
}
@media (min-width: 992px) {
	.header-call-modal__media {
		flex: 0 0 calc((100% - 48px) * 0.3);
		width: calc((100% - 48px) * 0.3);
	}
	.header-call-modal__content {
		flex: 0 0 calc((100% - 48px) * 0.7);
	}
	.header-call-modal__panel {
		background-size: auto 250px;
	}
}


/* Footer */
.site-footer {
	background-color: var(--purple-70);
	margin-top: 55px;
}
.site-footer .container {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-top: 16px;
	padding-bottom: 32px;
}
.site-footer .established-img {
	width: 110px;
	height: auto;
	display: block;
	margin: 0 auto -55px;
	transform: translateY(-50%);
}
.site-footer .footer-columns {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.site-footer .footer-columns > * {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}
.site-footer .footer-columns p {
	font-size: 1.6rem;
	line-height: 1.6;
	color: var(--white);
}
.site-footer h2 {
	color: var(--pink-10);
	font-size: 1.6rem;
	line-height: 1.5;
	font-weight: 400;
}
.site-footer .footer-social-links {
	display: flex;
	gap: 12px;
}
.site-footer .footer-social-links a {
	width: 40px;
	height: 40px;
	background: var(--purple-50);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.site-footer .footer-social-links a:is(:hover, :focus) {
	background: var(--purple-40);
}
.site-footer nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}
.site-footer nav a {
	display: block;
	font-size: 1.6rem;
	line-height: 1.6;
	color: var(--purple-30);
	padding: 6px 0;
}
.site-footer nav a:is(:hover, :focus) {
	color: var(--white);
}
.site-footer .footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: center;
}
.site-footer .footer-bottom .logos {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}
.site-footer .footer-bottom .logos img {
	height: 80px;
	width: auto;
	flex: 0 0 calc((100% - 48px) / 3);
	object-fit: contain;
}
.site-footer .footer-bottom p {
	font-size: 1.4rem;
	color: var(--purple-30);
	text-align: center;
	padding: 0;
}
@media (min-width: 768px) {
	.site-footer {
		margin-top: 95px;
	}
	.site-footer .container {
		padding-top: 32px;
		padding-bottom: 48px;
	}
	.site-footer .footer-columns {
		flex-direction: row;
	}
	.site-footer .footer-columns > * {
		gap: 12px;
	}
	.site-footer h2 {
		font-size: 1.8rem;
	}
	.site-footer nav a {
		font-size: 1.8rem;
	}
	.site-footer .footer-bottom .logos {
		gap: 40px;
	}
	.site-footer .footer-bottom .logos img {
		flex: 0 0 auto;
	}
	.site-footer .footer-bottom p {
		font-size: 1.6rem;
	}
}
@media (min-width: 992px) {
	.site-footer {
		margin-top: 108px;
	}
	.site-footer .established-img {
		width: 120px;
		margin-bottom: -50px;
	}
	.site-footer .container {
		gap: 48px;
		padding-top: 40px;
		padding-bottom: 52px;
	}
	.site-footer .footer-columns > * {
		gap: 20px;
	}
	.site-footer .footer-bottom .logos {
		gap: 80px;
	}
}
/* Main Navbar Menu */
.footer-main {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
.footer-main nav {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}
.footer-main nav ul {
	justify-content: space-between;
}
.footer-main img {
	height: 50px;
	width: auto;
}
@media (min-width: 768px) {
	.footer-main {
		gap: 60px;
	}
	.footer-main nav {
		justify-content: center;
	}
	.footer-main nav ul {
		flex-direction: row;
		align-items: center;
		gap: 48px;
	}
	.footer-main nav a {
		text-align: center;
	}
}
@media (min-width: 992px) {
	.footer-main {
		gap: 80px;
	}
	.footer-main img {
		height: 70px;
	}
	.footer-main nav ul {
		gap: 60px;
	}
}


/* Hero */
.page-hero {
	position: relative;
	padding-top: 16px;
	background: linear-gradient(180deg, var(--purple-70) 43.81%, rgba(64, 16, 89, 0.99) 46.2%, rgba(68, 20, 92, 0.97) 48.3%, rgba(74, 28, 97, 0.94) 50.15%, rgba(82, 38, 104, 0.90) 51.8%, rgba(92, 50, 112, 0.85) 53.29%, rgba(103, 64, 122, 0.79) 54.65%, rgba(116, 80, 133, 0.72) 55.94%, rgba(131, 98, 145, 0.64) 57.19%, rgba(146, 118, 158, 0.56) 58.45%, rgba(162, 138, 172, 0.47) 59.75%, rgba(180, 160, 186, 0.38) 61.15%, rgba(197, 182, 201, 0.29) 62.68%, rgba(215, 204, 216, 0.19) 64.39%, rgba(234, 227, 232, 0.10) 66.32%, transparent 68.51%), #FCFAF7;
}
.page-hero:not(.page-hero--has-image) {
	background: var(--purple-70);
	overflow-y: hidden;
	padding-bottom: 32px;
}
.page-hero.page-hero--has-image > .container:first-of-type::before, .page-hero:not(.page-hero--has-image)::before {
	content: "";
	position: absolute;
	width: 90%;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: radial-gradient(50% 50% at 50% 50%, var(--pink-20) 0%, var(--purple-50) 36.06%, var(--purple-70) 100%);
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.page-hero > * {
	position: relative;
}
.page-hero > .container:first-of-type {
	position: relative;
	overflow: hidden;
}
.page-hero > .container {
	padding-top: 0;
	padding-bottom: 0;
}
.page-hero > .container > p {
	position: relative;
	text-transform: uppercase;
	color: var(--pink-10);
	font-size: 1.4rem;
	letter-spacing: 3px;
	padding-bottom: 24px;
}
.page-hero h1, .page-hero p {
	color: var(--white);
	padding-bottom: 0;
	flex: 1;
}
.page-hero__intro {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-bottom: 32px;
}
.page-hero .container--wide img {
	width: 100%;
	height: auto;
	min-height: 300px;
	max-height: 640px;
	display: block;
	object-fit: cover;
	object-position: center;
	border-radius: 16px;
}
@media (min-width: 768px) {
	.page-hero {
		padding-top: 48px;
		padding-bottom: 40px;
	}
	.page-hero:not(.page-hero--has-image) {
		padding-bottom: 48px;
		margin-bottom: 40px;
	}
	.page-hero > .container:first-of-type:before {
		width: 80%;
	}
	.page-hero.page-hero--has-image .container--wide {
		padding-bottom: 0;
	}
	.page-hero > .container > p {
		font-size: 1.8rem;
		padding-bottom: 32px;
	}
	.page-hero__intro {
		flex-direction: row;
		gap: 32px;
		padding-bottom: 56px;
		align-items: flex-end;
	}
}
@media (min-width: 992px) {
	.page-hero {
		padding-top: 72px;
		padding-bottom: 48px;
	}
	.page-hero:not(.page-hero--has-image) {
		padding-bottom: 72px;
		margin-bottom: 48px;
	}
	.page-hero > .container:first-of-type:before {
		width: 70%;
	}
	.page-hero > .container > p {
		font-size: 2rem;
		padding-bottom: 48px;
	}
	.page-hero__intro {
		gap: 96px;
		padding-bottom: 72px;
	}
}
/* Home Hero */
.home-hero .container:has(.home-hero__boxes) {
	padding-bottom: 8px;
}
.home-hero__boxes {
	background: var(--white);
	box-shadow: 0 0 9px 0 var(--sand-50);
	border-radius: 16px;
	margin-top: -32px;
	display: flex;
	flex-direction: column;
}
.home-hero__box {
	flex: 1;
	margin: 0 16px;
	padding: 20px 0;
	border-bottom: 1px solid var(--sand-50);
	display: flex;
	flex-direction: column;
	text-align: center;
	align-items: center;
	gap: 16px;
}
.home-hero__box:last-child {
	border-bottom: 0;
}
.home-hero__box h2 {
	font-size: 2rem;
	line-height: 1.5;
	font-weight: 400;
	padding-bottom: 0;
}
.home-hero__box .button {
	width: 100%;
	margin-top: auto;
}
@media (min-width: 768px) {
	.home-hero .container:has(.home-hero__boxes) {
		padding-bottom: 16px;
	}
	.home-hero__boxes {
		margin-top: -40px;
		flex-direction: row;
	}
	.home-hero__box {
		border-bottom: 0;
		border-right: 1px solid var(--sand-50);
		margin: 16px 0;
		padding: 16px 24px 8px;
		gap: 24px;
	}
	.home-hero__box:last-child {
		border-right: 0;
	}
	.home-hero__box h2 {
		font-size: 2.6rem;
	}
}
@media (min-width: 992px) {
	.home-hero .container:has(.home-hero__boxes) {
		padding-bottom: 24px;
	}
	.home-hero__boxes {
		margin-top: -48px;
	}
}
/* Post Hero */
.post-hero > .container {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.post-hero__intro, .post-hero img {
	flex: 1;
	min-width: 0;
	border-radius: 16px;
}
.post-hero__intro {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
p.post-hero__intro-eyebrow {
	font-family: var(--wp--preset--font-family--heading);
	font-style: italic;
	color: var(--pink-10);
	font-size: 2rem;
	line-height: 1.5;
	padding-bottom: 8px;
}
.post-hero img {
	height: auto;
	width: auto;
}
.post-hero__logos {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.post-hero__logos p {
	font-family: var(--wp--preset--font-family--heading);
	font-style: italic;
}
.post-hero__logos .post-hero__logos-list-wrapper {
	position: relative;
	overflow: hidden;
}
.post-hero__logos ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 32px;
}
.post-hero__logos ul.is-ticker {
	width: max-content;
	animation: ticker 25s linear infinite;
	will-change: transform;
}
.post-hero__logos li {
	display: flex;
	align-items: center;
}
.post-hero__logos img {
	height: 32px;
	width: auto;
	filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
	.post-hero {
		padding-bottom: 32px;
		margin-bottom: 32px;
	}
	.post-hero > .container {
		flex-direction: row;
		align-items: center;
		flex-wrap: wrap;
		gap: 16px 64px;
	}
	.post-hero__intro {
		gap: 16px;
	}
}
@media (min-width: 992px) {
	.post-hero {
		padding-bottom: 48px;
		margin-bottom: 48px;
	}
	.post-hero > .container {
		gap: 24px 96px;
	}
	.post-hero__intro {
		gap: 24px;
	}
	p.post-hero__intro-eyebrow {
		font-size: 2.6rem;
	}
	.post-hero__logos ul {
		gap: 48px;
	}
}

/* Post Hero - Location Template */
.post-hero__badge-wrapper {
	display: flex;
	align-items: center;
}
.post-hero__distance-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--purple-50);
	color: var(--white);
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 1.4rem;
	white-space: nowrap;
}
.post-hero__location-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding-bottom: 24px;
}

/* Background Gradients - shuffled colours  */
@media (min-width: 768px) {
	body.home, body.home .page-content,
	body.page-template-page-locations, body.page-template-page-locations .page-content,
	body.page-template-page-news-blogs, body.page-template-page-news-blogs .page-content,
	body.single-post, body.single-post .page-content {
		position: relative;
	}
	body.home .page-content::before,
	body.page-template-page-locations .page-content::before,
	body.page-template-page-news-blogs .page-content::before,
	body.single-post .page-content::before {
		content: "";
		position: absolute;
		pointer-events: none;
		width: 70%;
		height: auto;
		aspect-ratio: 1 / 1;
		border-radius: 50%;
		background: radial-gradient(50% 50% at 50% 50%, var(--gradient-1));
		top: 0;
		right: -40%;
		z-index: -1;
	}
	body.home .page-content::after,
	body.page-template-page-locations .page-content::after,
	body.page-template-page-news-blogs .page-content::after,
	body.single-post .page-content::after {
		content: "";
		position: absolute;
		pointer-events: none;
		width: 70%;
		height: auto;
		aspect-ratio: 1 / 1;
		border-radius: 50%;
		background: radial-gradient(50% 50% at 50% 50%, var(--gradient-2));
		top: 30%;
		left: -30%;
		z-index: -1;
	}
	body.home::after,
	body.page-template-page-locations::after,
	body.page-template-page-news-blogs::after,
	body.single-post::after {
		content: "";
		position: absolute;
		pointer-events: none;
		width: 70%;
		height: auto;
		aspect-ratio: 1 / 1;
		border-radius: 50%;
		background: radial-gradient(50% 50% at 50% 50%, var(--gradient-3));
		bottom: 25%;
		right: -50%;
		z-index: -1;
	}
}


/* Locations */
/* Filter */
.locations-filter form {
	padding-bottom: 16px;
	border-bottom: 1px solid var(--sand-50);
	display: flex;
	flex-direction: column;
	gap: 8px;
}
@media (min-width: 768px) {
	.locations-filter form {
		padding-bottom: 32px;
		gap: 16px;
	}
	.locations-filter select {
		max-width: 300px;
	}
}
@media (min-width: 992px) {
	.locations-filter form {
		padding-bottom: 48px;
	}
	.locations-filter__form label {
		font-size: 1.8rem;
	}
}
/* Listing */
.locations-listing > .container {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.locations-listing__headings {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.locations-listing__headings h2, .locations-listing__headings h3 {
	padding-bottom: 0;
}
.locations-listing__headings h3 {
	color: var(--purple-40);
}
.locations-listing__cards {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.locations-listing__card {
	flex: 0 0 100%;
	padding: 20px;
	background-color: var(--white);
	border: 1px solid var(--sand-40);
	border-radius: 16px;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.locations-listing__card h4 {
	font-size: 2rem;
	line-height: 1.5;
	padding-bottom: 0;
}
.locations-listing__card .button {
	margin-top: auto;
}
.locations-listing__card p {
	font-size: 1.6rem;
	padding-bottom: 0;
	display: flex;
	gap: 8px;
}
.locations-listing__card p:first-of-type {
	margin-bottom: 4px;
}
.locations-listing__card.is-first > p:last-of-type {
	width: fit-content;
	padding: 4px 16px 4px 8px;
	background-color: var(--purple-10);
	color: var(--purple-70);
	border-radius: 25px;
}
.locations-listing__card p span:has(span) {
	display: flex;
	flex-direction: column;
}
.locations-listing__card svg {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}
.locations-listing__card path {
	fill: var(--purple-70);
}
.locations-listing__card-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
@media (min-width: 768px) {
	.locations-listing__card {
		flex: 0 0 calc((100% - 8px) / 2);
	}
	.locations-listing__card p:first-of-type {
		margin-bottom: 8px;
	}
}
@media (min-width: 992px) {
	.locations-listing > .container, .locations-listing__card {
		gap: 24px;
	}
	.locations-listing__headings {
		gap: 16px;
	}
	.locations-listing__headings h3 {
		font-size: 2.6rem;
	}
	.locations-listing__card {
		flex: 0 0 calc((100% - 16px) / 3);
		padding: 24px;
	}
	.locations-listing__card h4 {
		font-size: 2.6rem;
	}
}


/* News Page */
.news-blogs > .page-hero {
	padding-bottom: 0;
}
.news-blogs > .page-content {
	padding-top: 16px;
}
.news-blogs__logos > .container {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.news-blogs__logos h2 {
	font-size: 1.8rem;
	line-height: 1.5;
}
.news-blogs__logos ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 32px;
}
.news-blogs__logos li {
	display: flex;
	align-items: center;
}
.news-blogs__logos img {
	height: 32px;
	width: auto;
}
@media (min-width: 992px) {
	.news-blogs > .page-content {
		padding-top: 24px;
	}
}
/* Logo animation */
.news-blogs__logos .news-blogs__logos-list-wrapper {
	position: relative;
	overflow: hidden;
}
.news-blogs__logos ul.is-ticker {
	width: max-content;
	animation: ticker 25s linear infinite;
	will-change: transform;
}
.news-blogs__logos .news-blogs__logos-list-wrapper:has(ul.is-ticker)::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0), var(--sand-5));
}
@keyframes ticker {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-50% - 16px));
	}
}
@media (min-width: 992px) {
	.news-blogs__logos h2 {
		font-size: 2rem;
	}
	.news-blogs__logos ul {
		gap: 48px;
	}
	@keyframes ticker {
		from {
			transform: translateX(0);
		}
		to {
			transform: translateX(calc(-50% - 24px));
		}
	}
}
/* Filters */
.news-blogs__filter form {
	padding-bottom: 16px;
	border-bottom: 1px solid var(--sand-50);
}
.news-blogs__filter-fields {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.news-blogs__filter-fields label {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.news-blogs__filter-selections:has(a, button) {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	margin-top: 24px;
}
.news-blogs__filter-selections > .button {
	flex-shrink: 0;
}
.news-blogs__filter-selections-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.news-blogs__filter-selections-buttons .button {
	font-size: 1.4rem;
	padding: 6px 16px 6px 8px;
	background: var(--sand-30);
	border-color: var(--sand-30);
	color: var(--purple-70);
	text-align: left;
}
.news-blogs__filter-selections-buttons .button:is(:hover, :focus) {
	background: var(--sand-40);
	border-color: var(--sand-40);
}
@media (min-width: 768px) {
	.news-blogs__filter form {
		padding-bottom: 24px;
	}
	.news-blogs__filter-fields {
		flex-direction: row;
		flex-wrap: wrap;
	}
	.news-blogs__filter-fields label {
		flex: 0 0 calc((100% - 24px) / 2);
	}
	.news-blogs__filter-selections:has(a, button) {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}
@media (min-width: 992px) {
	.news-blogs__filter form {
		padding-bottom: 48px;
	}
	.news-blogs__filter-fields {
		flex-wrap: nowrap;
	}
	.news-blogs__filter-fields label {
		flex: 1;
	}
	.news-blogs__filter-selections-buttons .button {
		font-size: 1.6rem;
	}
}
/* Grid Results */
.news-blogs__results-grid {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.news-blogs__results-grid article {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.news-blogs__results-grid img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	border-radius: 8px;
	flex-shrink: 0;
}
.news-blogs__results-grid-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.news-blogs__results-grid-content p {
	color: var(--purple-50);
	font-size: 1.4rem;
	padding-bottom: 0;
}
.news-blogs__results-grid-content h2 {
	font-size: 1.8rem;
	line-height: 1.5;
	padding-bottom: 0;
}
.news-blogs__results-grid-content .button {
	margin-top: auto;
}
.news-blogs__no-results {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.news-blogs__no-results h2, .news-blogs__no-results p {
	padding-bottom: 0;
}
@media (min-width: 576px) {
	.news-blogs__results-grid img {
		height: 300px;
	}
}
@media (min-width: 768px) {
	.news-blogs__results-grid {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 32px 24px;
	}
	.news-blogs__results-grid article {
		flex: 0 0 calc((100% - 24px) / 2);
	}
	.news-blogs__results-grid img {
		height: 240px;
	}
	.news-blogs__no-results {
		gap: 16px;
	}
}
@media (min-width: 992px) {
	.news-blogs__results-grid {
		gap: 48px 24px;
	}
	.news-blogs__results-grid article {
		flex: 0 0 calc((100% - 48px) / 3);
	}
	.news-blogs__results-grid img {
		height: 220px;
	}
	.news-blogs__results-grid-content p {
		font-size: 1.6rem;
	}
	.news-blogs__results-grid-content h2 {
		font-size: 2rem;
	}
	.news-blogs__no-results {
		gap: 24px;
	}
}

/* Single Post Content - Post Sharing & Navigation */
.single-post .post-sharing .container {
	padding-top: 0;
	padding-bottom: 0;
}
.post-sharing ul, .post-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	gap: 24px;
	justify-content: center;
	align-items: center;
}
.post-sharing li, .post-nav li {
	margin: 0;
	padding: 0;
}
.post-sharing li {
	font-size: 1.6rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.post-sharing button {
	background-color: var(--purple-10);
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.post-sharing button:is(:hover, :focus) {
	background-color: var(--purple-70);
}
.post-sharing button:is(:hover, :focus) path {
	fill: var(--purple-10);
}
.post-sharing button svg {
	height: 20px;
	flex-shrink: 0;
}
.post-nav ul {
	justify-content: space-between;
}
@media (min-width: 768px) {
	.single-post .post-sharing .container {
		padding-bottom: 24px;
	}
	.post-sharing ul {
		gap: 32px;
	}
}
@media (min-width: 992px) {
	.single-post .post-sharing .container {
		padding-bottom: 48px;
	}
	.post-sharing ul {
		gap: 48px;
	}
	.post-sharing li {
		flex-direction: row;
		gap: 16px;
	}
	.post-sharing button {
		width: 48px;
		height: 48px;
	}
	.post-sharing button svg {
		height: 24px;
	}
}

/* Single Obituary */
.obituary-hero > .container {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.obituary-hero img {
	width: 100%;
	max-width: 200px;
	flex-shrink: 0;
	object-fit: cover;
	aspect-ratio: 1 / 1;
	border-radius: 8px;
}
.obituary-hero__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.obituary-hero__content-details {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
@media (min-width: 768px) {
	.obituary-hero > .container {
		flex-direction: row;
		align-items: center;
		gap: 64px;
	}
	.obituary-hero img {
		max-width: 260px;
	}
}
@media (min-width: 992px) {
	.obituary-hero > .container {
		gap: 96px;
	}
	.obituary-hero img {
		max-width: 320px;
	}
	.obituary-hero__content-details {
		gap: 16px;
	}
}
/* Single Obituary - Condolences */
.obituary-condolences > .container {
	display: flex;
	flex-direction: column;
	gap: 48px;
}
.obituary-condolences form {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.obituary-condolences h2 {
	font-size: 2rem;
	line-height: 1.5;
	padding-bottom: 0;
}
.obituary-condolences__intro {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.obituary-condolences__intro p {
	color: var(--purple-70);
	padding-bottom: 0;
}
.obituary-condolences__form-fields {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.obituary-condolences__form-fields label {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.obituary-condolences__form-fields label:has(input[type="checkbox"]) {
	font-family: var(--wp--preset--font-family--body);
	flex-direction: row;
	gap: 16px;
}
.obituary-condolences__form-fields label:has(input[type="checkbox"]) p {
	color: var(--black);
	font-size: 1.4rem;
	line-height: 1.6;
	padding-bottom: 0;
}
.obituary-condolences__messages {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.obituary-condolences__list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.obituary-condolence {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 16px;
	background: var(--white);
	box-shadow: inset 0 0 0 1px var(--sand-40);
	border-radius: 16px;
	padding: 22px;
}
.obituary-condolence:last-of-type::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 0%, var(--sand-5) 100%);
	pointer-events: none;
}
.obituary-condolence p {
	font-size: 1.6rem;
	padding-bottom: 0;
}
.obituary-condolence__header {
	display: flex;
	align-items: center;
	gap: 16px;
}
.obituary-condolence__header img {
	flex-shrink: 0;
	height: 24px;
	width: auto;
}
.obituary-condolence__header h3 {
	font-size: 1.8rem;
	line-height: 1.5;
	padding-bottom: 0;
}
@media (min-width: 768px) {
	.obituary-condolences > .container {
		flex-direction: row;
		gap: 64px;
	}
	.obituary-condolences form {
		gap: 32px;
	}
	.obituary-condolences__form-fields {
		gap: 24px;
	}
}
@media (min-width: 992px) {
	.obituary-condolences > .container {
		gap: 96px;
	}
	.obituary-condolences form {
		gap: 48px;
	}
	.obituary-condolences h2 {
		font-size: 3rem;
	}
	.obituary-condolences__intro {
		gap: 16px;
	}
	.obituary-condolences__form-fields {
		gap: 32px;
	}
	.obituary-condolences__form-fields label {
		gap: 16px;
	}
	.obituary-condolences__form-fields label:has(input[type="checkbox"]) p {
		font-size: 1.6rem;
	}
	.obituary-condolence {
		padding: 24px;
	}
	.obituary-condolence p {
		font-size: 1.8rem;
	}
	.obituary-condolence__header h3 {
		font-size: 2rem;
	}
}
/* Single Obituary - Location Address Map */
.wpurves-map-address__content {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--green-20);
	border-radius: 16px;
	overflow: hidden;
}
.wpurves-map-address__card {
	flex: 4;
	display: flex;
	flex-direction: column;
	gap: 24px;
	background: var(--green-10);
	padding: 24px;
}
.wpurves-map-address__card-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.wpurves-map-address__card-info h2 {
	font-size: 2rem;
	line-height: 1.5;
	padding-bottom: 0;
}
.wpurves-map-address__card-info address p {
	font-size: 1.6rem;
	font-style: normal;
	padding-bottom: 0;
}
.wpurves-map-address__card-info-description {
	font-size: 2rem;
	line-height: 1.6;
}
.wpurves-map-address__map-area {
	flex: 5;
}
.wpurves-map-address__map, .wpurves-map-address__map--has-map .leaflet-container {
	width: 100%;
	height: 100%;
	min-height: 280px;
}
@media (min-width: 768px) {
	.wpurves-map-address__content {
		flex-direction: row;
	}
	.wpurves-map-address__card {
		padding: 32px;
	}
}
@media (min-width: 992px) {
	.wpurves-map-address__card {
		gap: 32px;
		padding: 50px;
	}
	.wpurves-map-address__card-info {
		gap: 16px;
	}
	.wpurves-map-address__card-info h2 {
		font-size: 2.6rem;
	}
	.wpurves-map-address__card-info address p {
		font-size: 1.8rem;
	}
	.wpurves-map-address__map, .wpurves-map-address__map--has-map .leaflet-container {
		min-height: 330px;
	}
}

.wpurves-map-address--location .wpurves-map-address__map-area {
	flex: 8;
}

/* Page with Sidebar Nav */
.page-sidebar > .container {
	padding-top: 0;
	padding-bottom: 0;
	display: flex;
	flex-direction: column;
}
/*sidebar*/
.page-sidebar aside {
	margin-top: 32px;
	padding-bottom: 32px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.page-sidebar aside h3 {
	font-family: var(--wp--preset--font-family--body);
	font-size: 1.6rem;
	line-height: 1.6;
	font-weight: 600;
	padding-bottom: 0;
}
.page-sidebar aside nav {
	display: flex;
	flex-direction: column;
}
.page-sidebar aside nav a {
	display: block;
	padding: 8px 8px 8px 12px;
	text-decoration: none;
	font-size: 1.6rem;
	color: var(--black);
	border-left: 2px solid transparent;
}
.page-sidebar aside nav a:hover {
	color: var(--purple-70);
}
.page-sidebar aside nav a.active {
	color: var(--purple-70);
	background: var(--purple-10);
	border-left-color: var(--pink-20);
}
/*content*/
.page-sidebar .page-content hr {
	border-color: var(--sand-50);
}
@media (min-width: 768px) {
	.page-sidebar > .container {
		flex-direction: row;
		gap: 16px;
	}
	.page-sidebar aside {
		flex: 1;
		margin-top: 40px;
		padding-bottom: 40px;
		min-width: 188px;
		position: sticky;
		align-self: flex-start;
		top: 16px;
	}
	.page-sidebar .page-content {
		flex: 4;
	}
}
@media (min-width: 992px) {
	.page-sidebar aside {
		grid-column: 1;
		margin-top: 48px;
		padding-bottom: 48px;
		gap: 12px;
	}
	.page-sidebar > .container {
		display: grid;
		grid-template-columns: 1fr 3fr 1fr;
		column-gap: 24px;
	}
	.page-sidebar .page-content {
		grid-column: 2;
	}
}








/* TODO - Refactor News page to with Content classes */

/* Content listing - News + Planning */
.content-listing {
	padding: 10px 0;
}

.content-listing__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

.content-listing__grid.grid-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-listing__featured {
	margin-bottom: 40px;
}

.content-listing__featured .content-listing__item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.content-listing__featured .content-listing__item-image {
	height: auto;
	margin-bottom: 0;
}

.content-listing__item-excerpt {
	margin-top: 12px;
	font-size: 1.6rem;
	line-height: 1.6;
	color: #555;
}

.content-listing__featured .content-listing__item-excerpt {
	display: block;
}

.content-listing__item {
	display: grid;
	grid-template-rows: auto 1fr;
}

.content-listing__item-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.content-listing__item-image {
	display: block;
	height: 220px;
	margin-bottom: 15px;
	overflow: hidden;
	background: #eee;
	border-radius: 8px;
}

.content-listing__item-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.content-listing__item-date,
.content-listing__item-meta {
	display: block;
	margin-bottom: 8px;
	font-size: 1.4rem;
	line-height: 1.4;
	color: #666;
}

.content-listing__item-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
}

.content-listing__item-title {
	margin: 0;
	padding: 0;
	font-size: 1.8rem;
	line-height: 1.4;
}

.content-listing__item-content .button {
	margin-top: auto;
}

@media (max-width: 1100px) {
	.content-listing__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.content-listing__grid {
		grid-template-columns: 1fr;
	}
}



/*TODO*/

/* Location Team */
.location-team {
	padding: 31px 0;
}

.location-team__header {
	text-align: center;
	margin-bottom: 60px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.location-team__title {
	font-size: 40px;
	margin: 0 0 20px;
}

.location-team__grid {
	display: grid;
	gap: 24px;
}

.location-team__grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.location-team__grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

.location-team__item {
	border-radius: 16px;
}

.location-team__item-inner {
	display: flex;
	flex-direction: column;
}

.location-team__item-image {
	margin-bottom: 20px;
}

.location-team__item-image img {
	display: block;
	width: 100%;
	max-width: 300px;
	height: 300px;
	border-radius: 16px;
	object-fit: cover;
}

.location-team__item-title {
	font-size: 26px;
}

.location-team__item-text {
	flex-grow: 1;
}

@media (max-width: 1200px) {
	.location-team__grid--3,
	.location-team__grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.location-team__grid--3,
	.location-team__grid--4 {
		grid-template-columns: 1fr;
	}
}

/*TODO*/

/* Funeral Planning Page */
.funeral-planning > .page-content {
	padding-top: 16px;
}
.plan-a-funeral-selection > .container {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.plan-a-funeral-selection > .container h2 {
	text-align: center;
	padding-bottom: 0;
}
.plan-a-funeral-selection > .container > p {
	color: var(--purple-70);
	font-size: 1.4rem;
	padding-bottom: 0;
}
.plan-a-funeral-selection form {
	background: var(--purple-5);
	padding: 16px;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.plan-a-funeral-selection__form-selections {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-width: 960px;
	margin: auto;
}
.plan-a-funeral-selection__form-selections p {
	color: var(--purple-70);
	font-size: 2.4rem;
	line-height: 1.3;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.plan-a-funeral-selection__form-selections button {
	display: inline-block;
	width: 100%;
}
.plan-a-funeral-selection__actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.plan-a-funeral-selection__actions .button {
	width: 100%;
}
.plan-a-funeral-selection__actions .button-link {
	width: fit-content;
}
@media (min-width: 768px) {
	.funeral-planning > .page-content {
		padding-top: 32px;
	}
	.plan-a-funeral-selection form {
		padding: 32px;
		gap: 32px;
	}
	.plan-a-funeral-selection__form-selections p {
		flex-direction: row;
	}
	.plan-a-funeral-selection__actions {
		flex-direction: row;
		justify-content: center;
		gap: 24px;
	}
	.plan-a-funeral-selection__actions .button {
		width: fit-content;
	}
}
@media (min-width: 992px) {
	.funeral-planning > .page-content {
		padding-top: 48px;
	}
	.plan-a-funeral-selection > .container {
		gap: 24px;
	}
	.plan-a-funeral-selection > .container > p {
		font-size: 1.6rem;
		max-width: 1036px;
		margin: auto;
		text-align: center;
	}
	.plan-a-funeral-selection form {
		padding: 48px;
		gap: 48px;
	}
	.plan-a-funeral-selection__form-selections p {
		font-size: 3.2rem;
	}
}




.plan-a-funeral-selection__line {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 8px 12px;
	padding: 0;
	margin: 0;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 2rem;
	line-height: 1.3;
	color: #4a1868;
}

.plan-a-funeral-selection__line + .plan-a-funeral-selection__line {
	margin-top: 10px;
}

.plan-a-funeral-selection__field {
	position: relative;
	min-width: min(34vw, 300px);
	max-width: 100%;
	border-bottom: 2px solid rgba(123, 70, 152, 0.45);
}

.plan-a-funeral-selection__select,
.plan-a-funeral-selection__selected-value {
	width: 100%;
	height: 56px;
	padding: 0 34px 0 0;
	border: 0;
	background: transparent;
	font-family: var(--wp--preset--font-family--heading);
	font-size: 2rem;
	line-height: 1.2;
	color: #4a1868;
}

.plan-a-funeral-selection__select {
	appearance: none;
	background-image: url("images/arrow-down.svg");
	background-repeat: no-repeat;
	background-position: right 2px center;
	background-size: 18px 18px;
	cursor: pointer;
}

.plan-a-funeral-selection__select:focus,
.plan-a-funeral-selection__selected-value:focus {
	outline: 2px solid #4a1868;
	outline-offset: 4px;
}

.plan-a-funeral-selection__select option {
	font-size: 2rem;
}

.plan-a-funeral-selection__selected-value {
	display: block;
	text-align: left;
	cursor: pointer;
}

.plan-a-funeral-selection__content {
	max-width: 950px;
	margin: 26px auto 0;
	padding: 0;
	text-align: center;
	color: #4a1868;
	font-size: 1.8rem;
}

/* Plan a Funeral Overlay */
body.plan-a-funeral-overlay-open {
	overflow: hidden;
}
.plan-a-funeral-overlay {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: stretch;
	justify-content: stretch;
	z-index: 9999;
}
.plan-a-funeral-overlay[hidden] {
	display: none;
}
.plan-a-funeral-overlay__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(20, 8, 28, 0.45);
}
.plan-a-funeral-overlay__panel {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
	max-height: 100vh;
	padding: 80px 24px 48px;
	border-radius: 0;
	background: #F6F2FA;
	overflow-y: auto;
}
.plan-a-funeral-overlay__content {
	width: 100%;
	max-width: 600px;
}
.plan-a-funeral-overlay__close {
	position: absolute;
	top: 24px;
	right: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #4a1868;
	cursor: pointer;
}
.plan-a-funeral-overlay__close:focus {
	outline: 2px solid #4a1868;
	outline-offset: 2px;
}
.plan-a-funeral-overlay__content h2 {
	font-size: 2.4rem;
	line-height: 1.3;
	color: #4a1868;
	margin: 0 0 16px;
}
.plan-a-funeral-overlay__content p {
	font-size: 1.8rem;
	line-height: 1.6;
	color: #4a1868;
}
.plan-a-funeral-overlay__title {
	font-size: 2.4rem;
	line-height: 1.3;
	color: #4a1868;
	margin: 0 0 24px;
}
.plan-a-funeral-overlay__options {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.plan-a-funeral-overlay__option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border: 2px solid rgba(123, 70, 152, 0.45);
	border-radius: 8px;
	font-size: 2rem;
	font-family: var(--wp--preset--font-family--heading), sans-serif;
	color: #4a1868;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s;
}
.plan-a-funeral-overlay__option:hover,
.plan-a-funeral-overlay__option:focus {
	background: rgba(123, 70, 152, 0.1);
	border-color: #4a1868;
	outline: none;
}

.plan-a-funeral-featured .is-hidden {
	display: none;
}

.plan-a-funeral-featured.is-hidden {
	display: none;
}







/* Team Listing */
.team-listing {
	padding: 34px 0 20px;
}

.team-listing__tabs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
}

.team-listing__tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 58px;
	padding: 14px 16px;
	border: 1px solid #a2a2a2;
	text-decoration: none;
	text-align: center;
}

.team-listing__tab:hover,
.team-listing__tab:focus-visible {
	background: #1b1d24;
	border-color: #1b1d24;
	color: #fff;
}

.team-listing__tab.is-active {
	background: #1b1d24;
	border-color: #1b1d24;
	color: #fff;
}

.team-listing__group {
	margin-top: 30px;
}

.team-listing__heading {
	padding: 0;
	font-size: 40px;
	line-height: 50px;
}

.team-listing__grid {
	margin-top: 28px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 36px 28px;
}

.team-listing__card {
	display: flex;
	flex-direction: column;
}

.team-listing__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	background: #d8d8d8;
	object-fit: cover;
	max-height: 240px;
}

.team-listing__image--placeholder {
	border: 1px solid #cecece;
}

.team-listing__name {
	padding: 0;
	margin-top: 22px;
	font-size: 20px;
	line-height: 30px;
	font-weight: 400;
	color: #1f2127;
}

.team-listing__job-title {
	padding: 0;
	margin-top: 12px;
	line-height: 24px;
	color: #5f5f5f;
}

.team-listing__notice {
	margin-top: 24px;
}

@media (max-width: 1200px) {
	.team-listing__tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.team-listing__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.team-listing__tabs,
	.team-listing__grid {
		grid-template-columns: 1fr;
	}
}

/* Product Listing */
.product-listing {
	margin: 30px 0;
}

.product-listing__filter {
	max-width: 280px;
}

.product-listing__filter-label {
	display: block;
	font-size: 13px;
	line-height: 1.35;
	color: #666;
}

.product-listing__filter-select {
	display: block;
	margin-top: 10px;
	width: 100%;
	min-height: 36px;
	padding: 7px 32px 7px 10px;
	border: 1px solid #c5c5c5;
	background: #fff;
	color: #1f2127;
	font-size: 14px;
	line-height: 1.3;
}

.product-listing__group {
	margin-top: 48px;
}

.product-listing__heading {
	padding: 0;
	font-size: 40px;
	line-height: 50px;
	color: #1f2127;
}

.product-listing__grid {
	margin-top: 24px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 50px 40px;
}

.product-listing__card {
	text-align: center;
}

.product-listing__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background: #d8d8d8;
	max-width: 220px;
	max-height: 135px;
}

.product-listing__image--placeholder {
	border: 1px solid #cecece;
}

.product-listing__name {
	padding: 0;
	margin-top: 14px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
	color: #1f2127;
}

.product-listing__description {
	padding: 0;
	margin-top: 6px;
	font-size: 16px;
	line-height: 24px;
	color: #6b6b6b;
}

.product-listing__price {
	padding: 0;
	margin-top: 15px;
	font-size: 20px;
	line-height: 30px;
	font-weight: 600;
	color: #1f2127;
}

.product-listing__notice {
	margin-top: 24px;
}

@media (max-width: 1200px) {
	.product-listing__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 960px) {
	.product-listing__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.product-listing__filter {
		max-width: none;
	}

	.product-listing__grid {
		grid-template-columns: 1fr;
	}

	.product-listing__group {
		margin-top: 38px;
	}
}

/* Page Costs Selection */
.page-template-page-costs .page-content {
	padding: 20px 0;
}
.costs-selection {
	padding: 70px 0 35px 0;
}

.costs-selection__form {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.costs-selection__label {
	padding: 0;
	font-size: 1.8rem;
	line-height: 1.5;
	color: var(--purple-70);
	font-family: var(--wp--preset--font-family--heading), sans-serif;
}

.costs-selection__field-wrap {
	position: relative;
	min-width: 240px;
}

.costs-selection__field-wrap::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 16px;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--purple-70);
	border-bottom: 2px solid var(--purple-70);
	transform: translateY(-70%) rotate(45deg);
	pointer-events: none;
}

.costs-selection__select {
	width: 100%;
	height: 48px;
	border: 1px solid var(--sand-50);
	border-radius: 6px;
	background: var(--white);
	padding: 0 40px 0 16px;
	color: var(--black);
	font-size: 1.6rem;
	font-family: inherit;
	appearance: none;
	cursor: pointer;
}

.costs-selection__select:focus {
	outline: 2px solid var(--purple-70);
	outline-offset: 2px;
}

.costs-selection__clear {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 1.6rem;
	line-height: 1.5;
	color: var(--purple-70);
	font-family: var(--wp--preset--font-family--heading), sans-serif;
	cursor: pointer;
	text-decoration: underline;
}

.costs-selection__clear:is(:hover, :focus) {
	color: var(--purple-50);
}

.costs-selection__clear svg {
	flex-shrink: 0;
}

/* Page Costs Listing */
.costs-listing {
	padding: 32px 0 64px;
}

.costs-listing__package {
	margin-bottom: 64px;
}

.costs-listing__package-title {
	font-size: 2.4rem;
	line-height: 1.3;
	color: var(--purple-70);
	padding-bottom: 24px;
	margin: 0;
}

.costs-listing__table {
	border: 1px solid var(--sand-50);
	border-radius: 8px;
	overflow: hidden;
}

.costs-listing__table-header {
	display: grid;
	grid-template-columns: 1fr 140px;
	padding: 12px 16px;
	background: var(--sand-10);
	font-weight: 600;
	font-size: 1.4rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--purple-70);
}

.costs-listing__row {
	display: grid;
	grid-template-columns: 1fr 140px;
	padding: 16px;
	border-bottom: 1px solid var(--sand-50);
}

.costs-listing__row:last-child {
	border-bottom: 0;
}

.costs-listing__row--free {
	background: var(--sand-5);
}

.costs-listing__row--subtotal,
.costs-listing__row--total,
.costs-listing__row--info {
	background: var(--purple-70);
	color: var(--white);
}

.costs-listing__table-col {
	padding: 4px 0;
}

.costs-listing__table-col--desc {
	padding-right: 16px;
}

.costs-listing__table-col--cost {
	text-align: right;
	font-weight: 600;
}

.costs-listing__item-label {
	font-size: 1.6rem;
	line-height: 1.5;
	color: var(--purple-70);
	padding-bottom: 8px;
	margin: 0;
	font-weight: 600;
}

.costs-listing__row--subtotal .costs-listing__item-label,
.costs-listing__row--total .costs-listing__item-label,
.costs-listing__row--info .costs-listing__item-label {
	color: var(--white);
}

.costs-listing__item-desc {
	font-size: 1.4rem;
	line-height: 1.6;
	color: var(--black);
	padding-bottom: 8px;
}

.costs-listing__row--subtotal .costs-listing__item-desc,
.costs-listing__row--total .costs-listing__item-desc,
.costs-listing__row--info .costs-listing__item-desc,
.costs-listing__item-desc ul,
.costs-listing__item-desc li {
	color: var(--white);
}

.costs-listing__item-desc ul {
	margin: 0;
	padding: 0 0 8px 20px;
	list-style: disc;
}

.costs-listing__item-desc li {
	font-size: 1.4rem;
	line-height: 1.6;
	color: var(--black);
	padding: 2px 0;
}

.costs-listing__item-desc .costs-listing__note {
	font-size: 1.3rem;
	font-style: italic;
	color: var(--sage-40);
	padding: 0;
}

.costs-listing__item-cost {
	font-size: 1.6rem;
	line-height: 1.5;
	color: var(--purple-70);
}

.costs-listing__row--free .costs-listing__item-cost {
	color: var(--green-30);
}

.costs-listing__row--subtotal .costs-listing__item-cost,
.costs-listing__row--total .costs-listing__item-cost,
.costs-listing__row--info .costs-listing__item-cost {
	color: var(--white);
}

.costs-listing__row .button {
	margin-top: 12px;
	font-size: 1.4rem;
	padding: 8px 16px;
}

.costs-listing__external-fees {
	padding: 16px;
	background: var(--sand-5);
	border-bottom: 1px solid var(--sand-50);
}

.costs-listing__external-fees-title {
	font-size: 1.4rem;
	line-height: 1.5;
	color: var(--purple-70);
	padding-bottom: 12px;
	margin: 0;
	font-weight: 600;
}

.costs-listing__external-fees .costs-listing__row {
	padding: 8px 0;
	border-bottom: 0;
}

.costs-listing__total-note {
	font-size: 1.3rem;
	line-height: 1.5;
	color: var(--purple-30);
	padding-top: 8px;
	margin: 0;
}


/*TODO*/

/* Forms */
.form-title {
	margin: 0 0 4px;
}

.form-title em {
	font-style: italic;
}

.form-subtitle {
	margin: 0 0 24px;
}

.form-fields {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.form-field label {
	display: block;
	font-size: 2rem;
	color: #5a3a6b;
	margin-bottom: 6px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #d4cfc7;
	border-radius: 24px;
	background: #faf8f5;
	font-size: 2rem;
	color: #333;
	transition: border-color 0.2s;
}

.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field textarea:focus {
	outline: none;
	border-color: #5a3a6b;
}

.form-field textarea {
	border-radius: 8px;
	resize: vertical;
}

.form-field--checkbox {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.form-field--checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	flex-shrink: 0;
	accent-color: #5a3a6b;
}


/*TODO*/

/* WP Core blocks */
.has-text-align-center {text-align: center;}
.has-text-align-right {text-align: right;}
.has-text-align-left {text-align: left;}
.wp-block-image {margin: 0;}
.wp-block-image img {max-width: 100%; height: auto; border-radius: 16px;}
.wp-block-image figcaption.wp-element-caption {font-size: 1.4rem; margin-top: 8px;}
.wp-block-group.has-background {padding: 24px; border-radius: 16px;}
.container:has(.wp-block-heading), .core-block-container > p {padding-bottom: 0;}
@media (min-width: 992px) {
	.wp-block-image figcaption.wp-element-caption {font-size: 1.6rem; margin-top: 16px;}
	.wp-block-group.has-background {padding: 32px;}
}

/* Custom Blocks common - container margin */
.margin--default {padding-top: 3.6rem; padding-bottom: 3.6rem;}
.margin--no-top-bottom {padding-top: 0; padding-bottom: 0;}
.margin--no-top {padding-top: 0;}
.margin--half-top {padding-top: 1rem;} /* Not in use - keep */
.margin--half-top-bottom {padding-top: 1rem; padding-bottom: 1rem;} /* Not in use - keep */
.margin--no-bottom {padding-bottom: 0}

/* Page Costs CMA Section */
.costs-listing__cma-wrapper {
	padding: 24px 0;
	border-left: 3px solid var(--purple-70);
	padding-left: 24px;
}

:root {
	--purple-70: #3F0E58;
	--purple-60: #532C70;
	--purple-50: #6A4187;
	--purple-40: #8056A0;
	--purple-30: #D5C8E3;
	--purple-20: #E5DCF0;
	--purple-10: #F1EBF7;
	--purple-5: #F6F2FA;
	--green-30: #BBCA98;
	--green-20: #D1DFAF;
	--green-10: #EBF0DF;
	--green-5: #F7F9F2;
	--pink-20: #945EAF;
	--pink-10: #CDA2DF;
	--sand-50: #D5C8BB;
	--sand-40: #ECE5D2;
	--sand-30: #F6F1E6;
	--sand-20: #F9F5EF;
	--sand-10: #FBF8F3;
	--sand-5: #FCFAF7;
	--blue-40: #3F335B;
	--blue-30: #AFB0DF;
	--blue-20: #C1C2EE;
	--blue-10: #D2D3FD;
	--sage-50: #192830;
	--sage-40: #576757;
	--sage-30: #A0A5A0;
	--sage-20: #BCCCBC;
	--sage-10: #EDEFE5;
	--sage-5: #F4F5EF;
	--red-50: #9B311C;
	/*--black: #55433C;*/
	--black: #837772;
	--white: #fff;
}
