@charset "UTF-8";
/*
Theme Name: Jenn and Elliott's Wedding Website Theme
Theme URI: https://jennandelliott.ca
Author: Darrell Dean
Author URI: https://darrellcdean.ca
Description: Wedding Website created for Jenn and Elliott by Darrell :)
Version: 1.0

*/
/* Global
--------------------------------------------------------------*/
html, body {
  height: 100%;
  margin: 0;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
body.overflow-hidden {
  overflow: hidden;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

*.no-margins {
  margin: 0 !important;
}

*.no-margin-top {
  margin-top: 0 !important;
}

*.no-margin-bottom {
  margin-bottom: 0 !important;
}

.site {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.site header, .site footer {
  flex: 0 1 auto;
}
.site main {
  display: block;
  flex: 1 0 auto;
}

.site-main > *:first-child {
  margin-top: 0;
}

@media screen and (max-width: calc(1024px + 3rem)) {
  .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }
}

/* Animations
--------------------------------------------- */
.pop-in {
  opacity: 0;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-fill-mode: forwards;
}
.pop-in:not(.hold) {
  animation-name: pop_in;
}

@keyframes pop_in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.slide-in-left {
  opacity: 0;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-fill-mode: forwards;
}
.slide-in-left:not(.hold) {
  animation-name: slide_in_left;
}

@keyframes slide_in_left {
  0% {
    transform: translate3d(10%, 0, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.slide-in-down {
  opacity: 0;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-fill-mode: forwards;
}
.slide-in-down:not(.hold) {
  animation-name: slide_in_down;
}

@keyframes slide_in_down {
  0% {
    transform: translate3d(0, -100px, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.fade-zoom-in {
  opacity: 0;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-fill-mode: forwards;
}
.fade-zoom-in:not(.hold) {
  animation-name: fade_zoom_in;
}

@keyframes fade_zoom_in {
  0% {
    transform: scale3d(0.8, 0.8, 1);
    opacity: 0;
  }
  100% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
.fade-out {
  display: inline-block;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-fill-mode: forwards;
}
.fade-out:not(.hold) {
  animation-name: fade_out;
}

@keyframes fade_out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fade-in {
  opacity: 0;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-fill-mode: forwards;
}
.fade-in:not(.hold) {
  animation-name: fade_in;
}

@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-out {
  display: block;
  animation-duration: 2s;
  animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
  animation-fill-mode: forwards;
}
.fade-out:not(.hold) {
  animation-name: fade_out;
}

@keyframes fade_out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.bounce {
  display: block;
  animation-duration: 3s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: bounce;
}

@keyframes bounce {
  0% {
    transform: scale3d(1, 1, 1);
  }
  80% {
    transform: scale3d(1, 1, 1);
  }
  82% {
    transform: scale3d(0.95, 0.95, 1);
  }
  90% {
    transform: scale3d(1.1, 1.1, 1);
  }
  95% {
    transform: scale3d(0.95, 0.95, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}

.delay-400 {
  animation-delay: 400ms;
}

.delay-500 {
  animation-delay: 500ms;
}

.delay-600 {
  animation-delay: 600ms;
}

.delay-700 {
  animation-delay: 700ms;
}

.delay-800 {
  animation-delay: 800ms;
}

.delay-900 {
  animation-delay: 900ms;
}

.delay-1000 {
  animation-delay: 1000ms;
}

.delay-1100 {
  animation-delay: 1100ms;
}

.delay-1200 {
  animation-delay: 1200ms;
}

.delay-1300 {
  animation-delay: 1300ms;
}

.delay-1400 {
  animation-delay: 1400ms;
}

.delay-1500 {
  animation-delay: 1500ms;
}

.delay-2000 {
  animation-delay: 2000ms;
}

.delay-2500 {
  animation-delay: 2500ms;
}

.delay-3000 {
  animation-delay: 3000ms;
}

.delay-4000 {
  animation-delay: 4000ms;
}

.delay-5000 {
  animation-delay: 5000ms;
}

/* Typography
--------------------------------------------- */
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child {
  margin-top: 0;
}

span.accent-text {
  font-size: 80%;
  opacity: 0.8;
}

strong {
  font-weight: 700;
}

/* Header + Footer
--------------------------------------------- */
.site-header {
  background: var(--wp--preset--color--primary);
  padding: 1rem;
}
.site-header .site-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: var(--wp--style--global--wide-size);
}
.site-header .site-logo {
  width: 100px;
  fill: var(--wp--preset--color--contrast);
}

.fullscreen-menu {
  position: fixed;
  top: calc(-100% - 120px);
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  transition: all 300ms ease-in-out;
  padding: 3rem;
  padding-bottom: calc(3rem + 120px);
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--contrast);
}
@media screen and (min-width: 1024px) {
  .fullscreen-menu {
    padding: 10rem;
    padding-bottom: calc(10rem + 120px);
  }
}
@media screen and (min-width: 1200px) {
  .fullscreen-menu {
    padding: 20rem;
    padding-bottom: calc(20rem + 120px);
  }
}
.fullscreen-menu.toggled {
  top: 0;
}
.fullscreen-menu .fullscreen-menu__wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2rem;
  color: var(--wp--preset--color--contrast);
}
@media screen and (min-width: 640px) {
  .fullscreen-menu .fullscreen-menu__wrapper {
    justify-content: space-around;
    flex-direction: row;
  }
}
.fullscreen-menu .site-logo {
  width: 100px;
  margin-bottom: 1rem;
}
.fullscreen-menu a {
  color: var(--wp--preset--color--contrast);
}
.fullscreen-menu h1 {
  color: var(--wp--preset--color--contrast);
}

.menu-toggle {
  padding: 0.25rem 0.25rem 0.5rem 0.25rem;
  display: inline-block;
  cursor: pointer;
  z-index: 99;
  position: relative;
  background: none;
  border: none;
}
.menu-toggle .center-bar, .menu-toggle:after, .menu-toggle:before {
  content: "";
  display: block;
  height: 2px;
  width: 20px;
  background-color: var(--wp--preset--color--contrast);
  transition: all 300ms ease-out;
}
.menu-toggle:before {
  transform: rotate(0deg) translate(0, -4px);
}
.menu-toggle:after {
  transform: rotate(0deg) translate(0, 4px);
}
.menu-toggle.toggled .center-bar {
  transform: rotate(45deg);
  opacity: 0;
}
.menu-toggle.toggled:before {
  transform: rotate(45deg) translate(0, 3px);
}
.menu-toggle.toggled:after {
  transform: rotate(-45deg) translate(0, -3px);
}

.site-footer {
  background: var(--wp--preset--color--base-accent);
  padding: 2rem;
}
.site-footer .site-logo {
  width: 100px;
  fill: var(--wp--preset--color--contrast);
}
.site-footer p {
  margin: var(--wp--preset--color--contrast);
}
.site-footer .footer-columns {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: var(--wp--style--global--wide-size);
  margin: 0 auto 1rem;
}
.site-footer .footer-columns .footer-column {
  flex: 1 0 auto;
}
@media screen and (min-width: 640px) {
  .site-footer .footer-columns {
    gap: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .site-footer .footer-columns {
    flex-direction: row;
  }
}
.site-footer .disclaimer {
  font-size: 0.8rem;
  text-align: center;
  margin: 0;
}
.site-footer .disclaimer.accent {
  opacity: 0.7;
}
.site-footer .disclaimer a {
  color: currentColor;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: currentColor;
}
.site-footer .disclaimer a:hover {
  text-decoration-color: transparent;
  color: var(--wp--preset--color--primary);
}

/* Lists
--------------------------------------------- */
.clean-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.clean-list ul {
  list-style: none;
  padding-left: 1rem;
}

ul.icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 1rem;
}
ul.icon-list ul {
  list-style: none;
  padding-left: 1rem;
}
ul.icon-list li {
  text-indent: -0.7em;
  margin-left: 1.4em;
  margin-bottom: 0.5rem;
}
ul.icon-list li:before {
  margin-right: 0.6em;
}
ul.icon-list li.phone:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f098";
}
ul.icon-list li.email:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f199";
}

/* Links + Buttons
--------------------------------------------- */
a {
  transition: all 300ms ease-out;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25ch;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}

a.post-edit-link {
  background-color: var(--wp--preset--color--contrast);
  border-radius: 10px 0 0 10px;
  text-align: center;
  line-height: 60px;
  font-size: 1rem;
  display: block;
  position: fixed;
  bottom: 40px;
  right: 0;
  color: #fff;
  z-index: 99;
  padding: 1rem;
  line-height: 1;
  opacity: 0.5;
}
a.post-edit-link:after {
  content: "Edit";
  font-weight: 900;
  text-decoration: none;
  display: inline-block;
}
a.post-edit-link:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f303";
  margin-right: 0.5rem;
}
a.post-edit-link:hover {
  padding-right: 1.5rem;
  opacity: 1;
}

.return-home-link a {
  color: var(--wp--preset--color--accent);
  font-size: var(--wp--preset--font-size--sm);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: transparent;
}
.return-home-link a:hover {
  text-decoration-color: currentColor;
}
.return-home-link a:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f060";
  margin-right: 0.5em;
}

.wp-block-button__link {
  border: 2px solid var(--wp--preset--color--contrast);
  background-color: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  font-weight: 500;
  padding: 0.75em 1.5em;
}
.wp-block-button__link:hover {
  background-color: transparent;
  color: var(--wp--preset--color--contrast);
}
.is-style-outline .wp-block-button__link {
  border-color: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--contrast);
}
.is-style-outline .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--contrast);
  border-color: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
}

.wp-block-button.is-style-outline a.has-base-color {
  border-color: var(--wp--preset--color--base);
}
.wp-block-button.is-style-outline a.has-base-color:hover {
  background-color: var(--wp--preset--color--base);
  border-color: var(--wp--preset--color--base);
  color: var(--wp--preset--color--contrast) !important;
}

.wp-block-button:not(.is-style-outline) a.has-base-background-color {
  border: 2px solid var(--wp--preset--color--base);
}
.wp-block-button:not(.is-style-outline) a.has-base-background-color:hover {
  background-color: transparent !important;
  color: var(--wp--preset--color--base) !important;
}

.wp-block-button.is-style-outline a.has-base-accent-color {
  border-color: var(--wp--preset--color--base-accent);
}
.wp-block-button.is-style-outline a.has-base-accent-color:hover {
  background-color: var(--wp--preset--color--base-accent);
  border-color: var(--wp--preset--color--base-accent);
  color: var(--wp--preset--color--contrast) !important;
}

.wp-block-button:not(.is-style-outline) a.has-base-accent-background-color {
  border: 2px solid var(--wp--preset--color--base-accent);
}
.wp-block-button:not(.is-style-outline) a.has-base-accent-background-color:hover {
  background-color: transparent !important;
  color: var(--wp--preset--color--base-accent) !important;
}

.wp-block-button.is-style-outline a.has-contrast-color {
  border-color: var(--wp--preset--color--contrast);
}
.wp-block-button.is-style-outline a.has-contrast-color:hover {
  background-color: var(--wp--preset--color--contrast);
  border-color: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base-accent) !important;
}

.wp-block-button:not(.is-style-outline) a.has-contrast-background-color {
  border: 2px solid var(--wp--preset--color--contrast);
}
.wp-block-button:not(.is-style-outline) a.has-contrast-background-color:hover {
  background-color: transparent !important;
  color: var(--wp--preset--color--contrast) !important;
}

.wp-block-button.is-style-outline a.has-primary-color {
  border-color: var(--wp--preset--color--primary);
}
.wp-block-button.is-style-outline a.has-primary-color:hover {
  background-color: var(--wp--preset--color--primary);
  border-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--base) !important;
}

.wp-block-button:not(.is-style-outline) a.has-primary-background-color {
  border: 2px solid var(--wp--preset--color--primary);
}
.wp-block-button:not(.is-style-outline) a.has-primary-background-color:hover {
  background-color: transparent !important;
  color: var(--wp--preset--color--primary) !important;
}

.wp-block-button.is-style-outline a.has-accent-color {
  border-color: var(--wp--preset--color--accent);
}
.wp-block-button.is-style-outline a.has-accent-color:hover {
  background-color: var(--wp--preset--color--accent);
  border-color: var(--wp--preset--color--accent);
  color: var(--wp--preset--color--base) !important;
}

.wp-block-button:not(.is-style-outline) a.has-accent-background-color {
  border: 2px solid var(--wp--preset--color--accent);
}
.wp-block-button:not(.is-style-outline) a.has-accent-background-color:hover {
  background-color: transparent !important;
  color: var(--wp--preset--color--accent) !important;
}

/* Media
--------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
}

/* Forms
--------------------------------------------- */
.forminator-ui input {
  background-color: var(--wp--preset--color--base);
  color: var(--wp--preset--color--contrast);
  border-color: var(--wp--preset--color--base);
}
.forminator-ui .forminator-checkbox .forminator-checkbox-box {
  background-color: var(--wp--preset--color--base) !important;
  color: var(--wp--preset--color--primary) !important;
}
.forminator-ui .forminator-checkbox .forminator-checkbox-box:hover {
  border-color: var(--wp--preset--color--primary) !important;
}
.forminator-ui .forminator-checkbox input:checked + .forminator-checkbox-box {
  border-color: var(--wp--preset--color--primary) !important;
}
.forminator-ui .forminator-button {
  background-color: var(--wp--preset--color--primary);
}
.forminator-ui .forminator-button:hover {
  background-color: var(--wp--preset--color--contrast);
}

/* Navigation
--------------------------------------------- */
ul.menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
ul.menu ul {
  list-style: none;
  padding-left: 1rem;
}
ul.menu a {
  text-decoration: none;
  color: var(--wp--preset--color--contrast);
}
ul.menu a:hover {
  text-decoration: underline;
}
ul.menu.base a {
  color: var(--wp--preset--color--base);
}

.topline-menu {
  display: flex;
  gap: 2rem;
  align-content: center;
}
.topline-menu .menu__topline-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .topline-menu .menu__topline-menu {
    display: flex;
    gap: 2rem;
  }
}
.topline-menu .menu__topline-menu ul {
  list-style: none;
  padding: 0;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  background-color: var(--wp--preset--color--primary);
  display: flex;
  flex-direction: column;
  float: left;
  position: absolute;
  top: 100%;
  right: -999em;
  z-index: 99;
  width: 200px;
}
.topline-menu .menu__topline-menu ul ul {
  right: -999em;
  top: 0;
}
.topline-menu .menu__topline-menu ul li:hover > ul, .topline-menu .menu__topline-menu ul li.focus > ul {
  right: 200px;
}
.topline-menu .menu__topline-menu ul li:not(:last-of-type) {
  border-bottom: 1px solid #000;
}
.topline-menu .menu__topline-menu ul a {
  width: 200px;
}
.topline-menu .menu__topline-menu li {
  position: relative;
}
.topline-menu .menu__topline-menu li:hover > ul, .topline-menu .menu__topline-menu li.focus > ul {
  right: 0;
}

.menu__social-menu {
  flex-direction: row;
  gap: 1.5rem;
}
.menu__social-menu.center {
  justify-content: center;
}
.menu__social-menu.right {
  justify-content: flex-end;
}
.menu__social-menu li {
  font-size: 1.7rem;
}
.menu__social-menu li a {
  color: --var(--wp--preset--color--contrast);
}
.menu__social-menu li a:hover {
  color: --var(--wp--preset--color--accent);
}
.menu__social-menu li a[href*="facebook.com"]:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-brands);
  content: "\f09a";
}
.menu__social-menu li a[href*="instagram.com"]:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-brands);
  content: "\f16d";
}
.menu__social-menu li a[href*="x.com"]:before, .menu__social-menu li a[href*="twitter.com"]:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-brands);
  content: "\f099";
}
.menu__social-menu li a[href*="tiktok.com"]:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-brands);
  content: "\e07b";
}
.menu__social-menu li a[href*="youtube.com"]:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-brands);
  content: "\f167";
}
.menu__social-menu li a[href*="linkedin.com"]:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-brands);
  content: "\f08c";
}
@media screen and (min-width: 640px) {
  .menu__social-menu.large li a {
    font-size: 2rem;
  }
}
.menu__social-menu.white li a {
  color: #fff;
}
.menu__social-menu.white li a:hover {
  color: #fff !important;
}

.posts-navigation {
  display: block;
  margin: 2rem 0;
}
.posts-navigation .nav-links {
  display: flex;
}
.posts-navigation .nav-links > div {
  flex: 1 0 50%;
}
.posts-navigation .nav-previous a:after {
  content: none;
}
.posts-navigation .nav-previous a:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f060";
  margin-right: 0.5em;
}
.posts-navigation .nav-next {
  text-align: end;
}
.posts-navigation .nav-next a:after {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f061";
  margin-left: 0.5em;
}

/* Maintenance Mode
--------------------------------------------- */
body.maintenance-mode {
  background-color: #eef6ea;
  overflow: scroll;
}
body.maintenance-mode .maintenance-mode {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 640px) {
  body.maintenance-mode .maintenance-mode {
    display: block;
    padding: 4rem 2rem;
  }
}
body.maintenance-mode .maintenance-wrapper {
  max-width: 600px;
  width: 100%;
  margin-bottom: 5rem;
}
body.maintenance-mode .maintenance-wrapper .site-logo {
  margin-bottom: 0 auto 3rem;
  width: 150px;
}
body.maintenance-mode .maintenance-wrapper .maintenance-content {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 3rem;
  border-radius: 10px;
  font-family: "Lexend Deca", sans-serif;
}
body.maintenance-mode .maintenance-wrapper .maintenance-content > *:last-child {
  margin-bottom: 0;
}
body.maintenance-mode .maintenance-wrapper .maintenance-content h1 {
  margin-top: 0;
}

/* Posts and Pages
--------------------------------------------- */
.page-header {
  padding: 2rem 0;
  margin-bottom: 2rem;
  background-color: var(--wp--preset--color--contrast);
}
@media screen and (min-width: 1024px) {
  .page-header {
    padding: 3rem 0;
    margin-bottom: 3rem;
  }
}
.page-header .wp-block-post-title {
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: var(--wp--preset--color--base);
}
.page-header .wp-block-post-title span {
  font-size: 50%;
  display: block;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}
.page-header .breadcrumbs {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--wp--preset--color--base);
  font-size: 0.9em;
}
.page-header .breadcrumbs ul {
  list-style: none;
  padding-left: 1rem;
}
.page-header .breadcrumbs li {
  display: inline-block;
}
.page-header .breadcrumbs li:after, .page-header .breadcrumbs li:before {
  margin: 0 0.5rem;
  opacity: 0.5;
}
.page-header .breadcrumbs li:after {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f0da";
  font-size: 0.8em !important;
}
.page-header .breadcrumbs li.breadcrumb-home:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\e00d";
  margin-left: 0;
}
.page-header .breadcrumbs a {
  text-decoration: none;
  color: var(--wp--preset--color--base);
}
.page-header .post-meta {
  font-size: 0.9em;
  margin-top: 1rem;
  color: var(--wp--preset--color--primary);
}
.page-header .post-meta div {
  display: inline;
}
.page-header .post-meta div:not(:last-of-type):after {
  content: " • ";
}

.search-result {
  margin-bottom: 2rem;
}
.search-result a {
  text-decoration: none;
}
.search-result a:hover {
  text-decoration: underline;
}
.search-result .search-result__title {
  margin-bottom: 0.5rem;
}
.search-result .search-result__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8em;
  color: var(--wp--preset--color--accent);
}
.search-result .search-result__meta ul {
  list-style: none;
  padding-left: 1rem;
}
.search-result .search-result__meta li {
  display: inline-block;
}
.search-result .search-result__meta li:not(:last-child):after {
  content: " • ";
}
.search-result .search-result__summary {
  margin-top: 1rem;
}
.search-result .search-result__summary *:last-child {
  margin-bottom: 0;
}
.search-result .search-result__permalink {
  color: var(--wp--preset--color--accent);
  font-size: 80%;
}

/* Blocks
--------------------------------------------- */
.wp-block-accordion-heading {
  cursor: pointer;
}
.wp-block-accordion-heading__toggle {
  flex-direction: row-reverse;
}
.wp-block-accordion-heading__toggle .wp-block-accordion-heading__toggle-title {
  transition: all 300ms ease-out;
}
.wp-block-accordion-heading__toggle .wp-block-accordion-heading__toggle-title:hover {
  text-decoration: none !important;
}
.wp-block-accordion-heading__toggle-icon {
  font-size: 0;
}
.wp-block-accordion-heading:hover {
  background-color: var(--wp--preset--color--base);
}
.wp-block-accordion-panel {
  overflow: hidden;
  box-sizing: border-box;
  block-size: auto;
  block-size: calc-size(auto, size);
  transition-property: block-size, content-visibility;
  transition-duration: 0.5s;
  transition-behavior: allow-discrete;
  transition-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
}
.wp-block-accordion-panel[inert] {
  display: block;
  block-size: 0;
}
.wp-block-accordion-item {
  margin-bottom: 1rem;
}
.wp-block-accordion-item *:first-child {
  margin-top: 0;
}
.wp-block-accordion-item *:last-child {
  margin-bottom: 0;
}

.is-style-buttons__menu {
  background-color: var(--wp--preset--color--base-accent);
  width: auto;
  padding: 1rem;
  position: sticky;
  top: 1rem;
  border-radius: 5px;
}
.is-style-buttons__menu .wp-block-button {
  margin: 0 0.5rem !important;
}
.is-style-buttons__menu .wp-block-button__link {
  background: none;
  border: none;
  padding: 0;
  color: var(--wp--preset--color--accent) !important;
}

.wp-block-column.has-background, .wp-block-group.has-background {
  padding: 1.5rem 0;
  border-radius: 10px;
}
.wp-block-column.has-background *:last-child, .wp-block-group.has-background *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .wp-block-column.has-background, .wp-block-group.has-background {
    padding: 5rem;
  }
}

.is-style-cover__page-heading {
  box-shadow: 0 0 200px rgba(0, 0, 0, 0.2);
  background-image: url("img/top-right.png");
  background-position: 100% 0%;
  background-repeat: no-repeat;
  position: relative;
}
.is-style-cover__page-heading .wp-block-cover__background {
  background-color: transparent !important;
  background-image: url("img/bottom-left.png");
  background-position: 0% 100%;
  background-repeat: no-repeat;
}
.is-style-cover__page-heading .wp-block-cover__inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .is-style-cover__page-heading {
    background-position: 90% -10%;
  }
  .is-style-cover__page-heading .wp-block-cover__background {
    background-position: 10% 110%;
  }
}
@media (max-width: 640px) {
  .is-style-cover__page-heading {
    background-position: 80% -20%;
  }
  .is-style-cover__page-heading .wp-block-cover__background {
    background-position: 20% 120%;
  }
}
.home .is-style-cover__page-heading {
  height: 100vh;
}
.home .is-style-cover__page-heading:after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 49.67 25.72"><path d="m.35.71 24.3 24.3L49.31.35" style="fill:none;stroke:%23eeb166;stroke-miterlimit:10"/></svg>');
  display: block;
  position: absolute;
  left: 50%;
  top: 95%;
  transform: translateX(-50%);
  z-index: 2;
  width: 50px;
}

.wp-block-embed.is-type-video .wp-block-embed__wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.5%;
}
.wp-block-embed.is-type-video .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 6px;
  top: 0;
  left: 0;
}

.wp-block-latest-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  padding: 0;
}
.wp-block-latest-posts li {
  clear: both;
  overflow-wrap: break-word;
}
.wp-block-latest-posts li .wp-block-latest-posts__post-title {
  margin: 0 0 0.5rem;
  display: inline-block;
  color: var(--wp--preset--color--primary);
  font-family: var(--wp--preset--font-family--heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.wp-block-latest-posts li .wp-block-latest-posts__post-title:hover {
  color: var(--wp--preset--color--constrast);
}
.wp-block-latest-posts li .wp-block-latest-posts__post-date, .wp-block-latest-posts li .wp-block-latest-posts__post-author {
  font-size: var(--wp--preset--font-size-sm);
  color: var(--wp--preset--color--accent);
}
@media screen and (min-width: 640px) {
  .wp-block-latest-posts li {
    width: calc(50% - 1rem);
  }
}
@media screen and (min-width: 1024px) {
  .wp-block-latest-posts li {
    width: calc(33% - 2rem);
  }
}

.wp-block-media-text .wp-block-media-text__content {
  padding: 8%;
}
.wp-block-media-text .wp-block-media-text__content *:last-child {
  margin: 0;
}

/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: var(--wp--preset--color--primary);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: var(--wp--preset--color--contrast);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/*# sourceMappingURL=style.css.map */
