@charset "UTF-8";
/*
Theme Name: Dylan Marando OLP Leadership
Theme URI: TBD
Author: Darrell Dean
Author URI: https://darrellcdean.ca
Description: Custom WordPress Theme built for purpose for Dylan Marando's OLP Leadership Campaign, April 2026.
Version: 1.0
Text Domain: marando

*/
/* 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;
}

*:first-child {
  margin-top: 0;
}

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

.site {
  opacity: 0;
  animation-duration: 1s;
  animation-delay: 100ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
  animation-name: page_animation;
}

@keyframes page_animation {
  0% {
    transform: translate3d(0, -5px, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.site-main > *:first-child {
  margin-top: 0;
}

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

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

.home .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: var(--wp--style--global--wide-size);
}

/* Animations
--------------------------------------------- */
.pop-in {
  opacity: 0;
  animation-duration: 600ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 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: 600ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 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, .fullscreen-menu.toggled .site-logo, .fullscreen-menu.toggled .menu-social-menu-container, .fullscreen-menu.toggled .menu-full-menu-container {
  opacity: 0;
  animation-duration: 600ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}
.slide-in-down:not(.hold), .fullscreen-menu.toggled .site-logo:not(.hold), .fullscreen-menu.toggled .menu-social-menu-container:not(.hold), .fullscreen-menu.toggled .menu-full-menu-container: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;
  }
}
.slide-in-up {
  opacity: 0;
  animation-duration: 600ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: forwards;
}
.slide-in-up:not(.hold) {
  animation-name: slide_in_up;
}

@keyframes slide_in_up {
  0% {
    transform: translate3d(0, 1rem, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.fade-zoom-in {
  opacity: 0;
  animation-duration: 600ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 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: 600ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 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: 600ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 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: 600ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 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;
}
h1 em, h2 em, h3 em, h4 em, h5 em {
  font-style: normal;
  display: block;
  font-size: 80%;
  color: var(--wp--preset--color--contrast);
}

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

.has-huge-font-size {
  line-height: 0.95;
}

.is-style-heading__accent {
  font-size: var(--wp--preset--font-size--sm);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.message {
  color: var(--wp--preset--color--base-darker);
  font-size: var(--wp--preset--font-size--sm);
  line-height: 1.4;
  margin-bottom: 1.5rem !important;
}
.message:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f05a";
  margin-right: 0.3rem;
}
.message a {
  color: currentColor;
}
.message.success {
  padding: 1rem 1.5rem;
  border-radius: 10px;
  background-color: var(--wp--preset--color--green-light);
  color: var(--wp--preset--color--green-dark);
  margin-bottom: 1rem;
}
.message.success:before {
  content: "\f058";
}

/* Header + Footer
--------------------------------------------- */
.site-header {
  background-color: var(--wp--preset--color--primary);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  padding: 2rem;
}
@media (min-width: 1024px) {
  .site-header {
    padding: 3rem 2rem;
  }
}
.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 .return-home-link {
  display: contents;
}
.site-header .site-logo {
  width: auto;
  height: 50px;
  margin-right: 1.5rem;
}
.site-header .site-logo .name {
  fill: var(--wp--preset--color--base);
}
.site-header .site-logo .check {
  fill: var(--wp--preset--color--accent);
}
.site-header .nav-btn {
  background-color: var(--wp--preset--color--accent);
  text-decoration: none;
  color: var(--wp--preset--color--base);
  font-weight: 900;
  padding: 0.7rem 0.75rem;
  line-height: 1;
  border-radius: 10px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0px rgba(0, 0, 0, 0);
}
.site-header .nav-btn:before {
  content: "";
  background-color: var(--wp--preset--color--contrast);
  width: 120%;
  height: 100%;
  display: block;
  position: absolute;
  transform: skew(-30deg);
  top: 0;
  left: -130%;
  z-index: -1;
}
.site-header .nav-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
}
.site-header .nav-btn:hover:before {
  left: -10%;
}
.site-header .lang-item {
  font-weight: 800;
  list-style: none;
}
.site-header .lang-item a {
  color: var(--wp--preset--color--base);
  text-decoration: none;
  display: inline-block;
}
.site-header .lang-item a:hover {
  color: var(--wp--preset--color--accent);
  transform: translateY(-2px);
}

.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);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) 50%);
  color: var(--wp--preset--color--contrast);
  overflow: hidden;
}
.fullscreen-menu:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 618"><g opacity="0.1"><path d="M554.44 219.25 444.02 352.74c-4.26 5.15-7.49 11.06-9.69 17.37-.77 2.21-1.59 4.4-2.44 6.57-8.36 21.04-19.9 39.52-34.66 55.54s-31.76 28.59-51.05 37.72c-19.24 9.18-39.85 13.72-61.71 13.72s-42.42-4.54-61.66-13.72c-19.3-9.13-36.3-21.7-51.05-37.72-12.7-13.78-23.03-29.4-30.96-46.88-2.77-6.1-6.83-11.52-11.67-16.14l-62.31-59.36 68.97-72.31c3.67-3.85 6.61-8.29 9.03-13.03 7.27-14.22 16.27-27.12 26.95-38.69 14.76-15.96 31.76-28.53 51.05-37.66 19.24-9.18 39.79-13.77 61.66-13.77s42.47 4.59 61.71 13.77q12.96 6.15 24.6 14.43l78.77-95.22c-17-12.9-35.42-23.83-55.21-32.8-34.16-15.41-70.79-23.18-109.87-23.18s-75.27 7.76-109.43 23.18c-34.16 15.47-64.23 36.84-90.19 64.17s-46.35 58.98-61.11 94.89C8.97 229.58 1.59 268 1.59 309s7.38 79.48 22.14 115.39c14.76 35.97 35.15 67.62 61.11 94.95s56.03 48.7 90.19 64.17c34.16 15.41 70.62 23.12 109.43 23.12s75.71-7.71 109.87-23.12c34.16-15.47 64.23-36.84 90.19-64.17s46.3-58.98 60.89-94.95C560.06 388.48 567.33 350 567.33 309c0-31.43-4.26-61.33-12.9-89.75Z" fill="%23fe1414"/><path d="M288.1 451.46c-21.12 0-41.67-8.17-57.03-22.82L105.46 308.91l84.85-89.03 94.23 89.82 219.1-264.87 94.77 78.39-246.74 298.3c-14.55 17.59-35.97 28.46-58.76 29.8-1.61.09-3.21.14-4.81.14" fill="%23fe1414"/></g></svg>');
  position: absolute;
  z-index: -1;
  display: block;
  width: 600px;
  top: 50%;
  left: -5%;
}
@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.toggled .site-logo, .fullscreen-menu.toggled .menu-social-menu-container, .fullscreen-menu.toggled .menu-full-menu-container {
  animation-delay: 250ms;
}
.fullscreen-menu.toggled .menu-social-menu-container {
  animation-delay: 400ms;
}
.fullscreen-menu.toggled .menu-full-menu-container {
  animation-delay: 450ms;
}
.fullscreen-menu .site-logo {
  width: 90%;
}
.fullscreen-menu .site-logo .name {
  fill: var(--wp--preset--color--base);
}
.fullscreen-menu .site-logo .check {
  fill: var(--wp--preset--color--accent);
}
.fullscreen-menu .menu__full-menu {
  display: flex;
  gap: 1.5rem;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
}
.fullscreen-menu .menu__full-menu a {
  color: var(--wp--preset--color--base);
}
.fullscreen-menu .menu__full-menu a:hover {
  color: var(--wp--preset--color--accent);
}
@media (max-width: 782px) {
  .fullscreen-menu .menu__full-menu {
    flex-direction: column;
  }
}
.fullscreen-menu .menu__social-menu {
  margin: 3rem 0;
}

.menu-toggle {
  padding: 0.4rem 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: 15px;
  background-color: var(--wp--preset--color--base);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-toggle:before {
  transform: rotate(0deg) translate(0, -3px);
}
.menu-toggle:after {
  transform: rotate(0deg) translate(0, 3px);
}
.menu-toggle.toggled .center-bar, .menu-toggle.toggled:after, .menu-toggle.toggled:before {
  width: 25px;
}
.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);
}
@media (min-width: 1024px) {
  .menu-toggle:not(.toggled) {
    display: none;
  }
}

.pre-footer-spacer {
  margin-top: clamp(3rem, 6%, 8rem);
}

.disclaimer {
  font-size: 0.8rem;
  text-align: center;
  margin: 0;
}
.disclaimer.accent {
  opacity: 0.7;
}
.disclaimer a {
  color: currentColor;
  text-decoration-style: dotted;
}
.disclaimer a:hover {
  color: var(--wp--preset--color--accent);
  text-decoration: none;
}

.site-footer {
  position: relative;
  padding: 4rem;
  text-align: center;
  margin-top: 7px;
}
.site-footer .site-logo {
  width: 500px;
  max-width: 100%;
}
.site-footer .site-logo .name {
  fill: var(--wp--preset--color--base);
}
.site-footer .site-logo .check {
  fill: var(--wp--preset--color--accent);
}
.site-footer .menu__footer-menu {
  margin: 3rem 0;
}
.site-footer .menu__full-menu {
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
}
@media (min-width: 1024px) {
  .site-footer .menu__full-menu {
    flex-direction: row;
  }
}
.site-footer .menu__full-menu a {
  color: var(--wp--preset--color--base);
}
.site-footer .menu__full-menu a:hover {
  color: var(--wp--preset--color--accent);
}
.site-footer .checkbox-o {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  border-radius: 0 0 15px 15px;
  background-color: var(--wp--preset--color--primary);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) 50%);
}
.site-footer .checkbox-o:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 618"><g opacity="0.1"><path d="M554.44 219.25 444.02 352.74c-4.26 5.15-7.49 11.06-9.69 17.37-.77 2.21-1.59 4.4-2.44 6.57-8.36 21.04-19.9 39.52-34.66 55.54s-31.76 28.59-51.05 37.72c-19.24 9.18-39.85 13.72-61.71 13.72s-42.42-4.54-61.66-13.72c-19.3-9.13-36.3-21.7-51.05-37.72-12.7-13.78-23.03-29.4-30.96-46.88-2.77-6.1-6.83-11.52-11.67-16.14l-62.31-59.36 68.97-72.31c3.67-3.85 6.61-8.29 9.03-13.03 7.27-14.22 16.27-27.12 26.95-38.69 14.76-15.96 31.76-28.53 51.05-37.66 19.24-9.18 39.79-13.77 61.66-13.77s42.47 4.59 61.71 13.77q12.96 6.15 24.6 14.43l78.77-95.22c-17-12.9-35.42-23.83-55.21-32.8-34.16-15.41-70.79-23.18-109.87-23.18s-75.27 7.76-109.43 23.18c-34.16 15.47-64.23 36.84-90.19 64.17s-46.35 58.98-61.11 94.89C8.97 229.58 1.59 268 1.59 309s7.38 79.48 22.14 115.39c14.76 35.97 35.15 67.62 61.11 94.95s56.03 48.7 90.19 64.17c34.16 15.41 70.62 23.12 109.43 23.12s75.71-7.71 109.87-23.12c34.16-15.47 64.23-36.84 90.19-64.17s46.3-58.98 60.89-94.95C560.06 388.48 567.33 350 567.33 309c0-31.43-4.26-61.33-12.9-89.75Z" fill="%23fe1414"/><path d="M288.1 451.46c-21.12 0-41.67-8.17-57.03-22.82L105.46 308.91l84.85-89.03 94.23 89.82 219.1-264.87 94.77 78.39-246.74 298.3c-14.55 17.59-35.97 28.46-58.76 29.8-1.61.09-3.21.14-4.81.14" fill="%23fe1414"/></g></svg>');
  position: absolute;
  display: block;
  width: 450px;
  bottom: -15%;
  left: -5%;
}
.site-footer p {
  color: var(--wp--preset--color--base);
}

.link-in-bio-footer {
  padding: 2rem;
}

/* 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 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25ch;
  text-decoration: underline;
  text-decoration-style: dotted;
}
a:after, a:before {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
  text-decoration-color: transparent;
}

.wp-block-button__link:after, .button:after, .custom-block-latest-posts__link:after, .nav-links a:after {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f061";
  margin-left: 0.5em;
  font-size: 90%;
  transform: translateY(1%);
}
.wp-block-button__link:hover:after, .button:hover:after, .custom-block-latest-posts__link:hover:after, .nav-links a:hover:after {
  transform: translate(2px, 1%);
}

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;
}

.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 .wp-block-button__link.has-base-color {
  border-color: var(--wp--preset--color--base);
}
.wp-block-button.is-style-outline .wp-block-button__link.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) .wp-block-button__link.has-base-background-color {
  border: 2px solid var(--wp--preset--color--base);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link.has-base-background-color:hover {
  background-color: transparent !important;
  color: var(--wp--preset--color--base) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link.has-base-accent-color {
  border-color: var(--wp--preset--color--base-accent);
}
.wp-block-button.is-style-outline .wp-block-button__link.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) .wp-block-button__link.has-base-accent-background-color {
  border: 2px solid var(--wp--preset--color--base-accent);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link.has-base-accent-background-color:hover {
  background-color: transparent !important;
  color: var(--wp--preset--color--base-accent) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link.has-contrast-color {
  border-color: var(--wp--preset--color--contrast);
}
.wp-block-button.is-style-outline .wp-block-button__link.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) .wp-block-button__link.has-contrast-background-color {
  border: 2px solid var(--wp--preset--color--contrast);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link.has-contrast-background-color:hover {
  background-color: transparent !important;
  color: var(--wp--preset--color--contrast) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link.has-primary-color {
  border-color: var(--wp--preset--color--primary);
}
.wp-block-button.is-style-outline .wp-block-button__link.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) .wp-block-button__link.has-primary-background-color {
  border: 2px solid var(--wp--preset--color--primary);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link.has-primary-background-color:hover {
  background-color: transparent !important;
  color: var(--wp--preset--color--primary) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link.has-accent-color {
  border-color: var(--wp--preset--color--accent);
}
.wp-block-button.is-style-outline .wp-block-button__link.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) .wp-block-button__link.has-accent-background-color {
  border: 2px solid var(--wp--preset--color--accent);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link.has-accent-background-color:hover {
  background-color: transparent !important;
  color: var(--wp--preset--color--accent) !important;
}

.is-style-buttons__donate-stack {
  gap: 0.5rem;
}
.is-style-buttons__donate-stack .wp-block-button {
  width: calc(33% - 0.3333333333rem);
}
@media (min-width: 1024px) {
  .is-style-buttons__donate-stack .wp-block-button {
    width: calc(16.6666666667% - 0.4166666667rem);
  }
}
.is-style-buttons__donate-stack .wp-block-button__link {
  font-weight: 900;
}
.is-style-buttons__donate-stack .wp-block-button__link:after {
  content: none;
}
.is-style-buttons__donate-stack .wp-block-button__link:hover {
  color: var(--wp--preset--color--base);
  background-color: var(--wp--preset--color--green-dark);
  border-color: var(--wp--preset--color--green-dark);
}

.is-style-buttons__small .wp-block-button__link {
  font-weight: 600;
  padding: 0.5em 1em;
  font-size: var(--wp--preset--font-size--reg);
}
.is-style-buttons__small .wp-block-button__link:after {
  content: none;
}

.is-style-button__simple .wp-block-button__link, .custom-block-latest-posts__link, .nav-links a, .breadcrumbs a {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: transparent;
}
.is-style-button__simple .wp-block-button__link:hover, .custom-block-latest-posts__link:hover, .nav-links a:hover, .breadcrumbs a:hover {
  text-decoration-color: currentColor;
}

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

/* Forms
--------------------------------------------- */
.search-form {
  margin-bottom: 1.5rem;
}
.search-form input, .search-form button {
  font-size: var(--wp--preset--font-size-md);
  border-radius: 5px;
  border: 1px solid var(--wp--preset--color--base-darker);
  font-family: var(--wp--preset--font-family--main);
  font-weight: 600;
}
.search-form .search-form__inside-wrapper {
  display: flex;
  gap: 0.5rem;
}
.search-form input {
  flex-grow: 1;
  padding: 12px;
}
.search-form input::placeholder {
  color: var(--wp--preset--color--base-darker);
}
.search-form button {
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--base);
  border: none;
  padding: 12px 24px;
}
.search-form button:hover {
  background-color: var(--wp--preset--color--accent);
}

.gform_wrapper .gform_body {
  --gf-form-gap-y: 1rem;
  --gf-form-gap-x: 0.5rem;
  --gf-field-gap-x: 0.5rem;
  --gf-field-gap-y: 0.5rem;
}
.gform_wrapper .gform_body input::placeholder {
  color: var(--wp--preset--color--base-darker);
  font-weight: 600;
}
.gform_wrapper .gform_body .gfield--type-section {
  margin-top: 1.5rem;
  border: none;
  padding-bottom: 0;
}
.gform_wrapper .gform_body .gfield--type-section .gsection_title {
  color: var(--wp--preset--color--primary);
  font-weight: 900;
  font-size: var(--wp--preset--font-size--md);
}
.gform_wrapper .gform_body .gfield_label, .gform_wrapper .gform_body .gform-field-label {
  font-weight: 700;
}
.gform_wrapper .gform_body .gfield_required {
  font-weight: 700;
  color: var(--wp--preset--color--accent);
}
.gform_wrapper .gform_body input, .gform_wrapper .gform_body select {
  font-weight: 600 !important;
  font-size: var(--wp--preset--font-size--reg) !important;
}
.gform_wrapper .gform_body .gfield--type-choice:not(:first-child) {
  margin-top: 1rem;
}
.gform_wrapper .gform_body .gfield--type-choice .gfield_label {
  font-size: var(--wp--preset--font-size--md);
  color: var(--wp--preset--color--primary);
  line-height: 1.1;
  margin-bottom: 1rem;
  font-weight: 900;
}
.gform_wrapper .gform_body .gfield_radio label, .gform_wrapper .gform_body .gfield_checkbox label {
  cursor: pointer;
  margin: 0 0 0 1rem;
  font-size: var(--wp--preset--font-size--reg);
  font-weight: 600;
}
.gform_wrapper .gform_body .gfield_radio input, .gform_wrapper .gform_body .gfield_checkbox input {
  display: none;
}
.gform_wrapper .gform_body .gfield_radio input + label:before, .gform_wrapper .gform_body .gfield_checkbox input + label:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 101 100"><path d="M47.52 100c-6.52 0-12.65-1.3-18.39-3.89s-10.79-6.19-15.15-10.78S6.2 75.42 3.72 69.39C1.24 63.35 0 56.89 0 50s1.24-13.35 3.72-19.39 5.9-11.35 10.26-15.94 9.41-8.18 15.15-10.78C34.87 1.3 41 0 47.52 0s12.72 1.3 18.46 3.89 10.79 6.19 15.15 10.78 7.77 9.91 10.23 15.94c2.46 6.04 3.68 12.5 3.68 19.39s-1.23 13.35-3.68 19.39c-2.46 6.04-5.87 11.35-10.23 15.94a48.05 48.05 0 0 1-15.15 10.78C60.24 98.7 54.09 100 47.52 100m0-20.66c3.67 0 7.13-.77 10.36-2.31a27.7 27.7 0 0 0 8.57-6.34q3.72-4.035 5.82-9.33c1.4-3.53 2.1-7.32 2.1-11.36s-.7-7.83-2.1-11.36-3.34-6.65-5.82-9.33c-2.48-2.69-5.34-4.8-8.57-6.34-3.24-1.54-6.69-2.31-10.36-2.31s-7.13.77-10.36 2.31c-3.24 1.54-6.09 3.65-8.57 6.34q-3.72 4.035-5.82 9.33c-1.4 3.54-2.1 7.32-2.1 11.36s.7 7.83 2.1 11.36q2.1 5.31 5.82 9.33c2.48 2.69 5.34 4.8 8.57 6.34 3.24 1.54 6.69 2.31 10.36 2.31" fill="%232b2b2b"/></svg>');
  height: 1em;
  width: 1em;
  display: inline-block;
  margin-right: 0.4rem;
  vertical-align: text-top;
  opacity: 0.5;
}
.gform_wrapper .gform_body .gfield_radio input:checked + label:before, .gform_wrapper .gform_body .gfield_checkbox input:checked + label:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 101 100"><path d="M92.87 34.92 74.32 57.35c-.72.87-1.26 1.86-1.63 2.92-.13.37-.27.74-.41 1.1-1.4 3.54-3.34 6.64-5.82 9.33s-5.34 4.8-8.58 6.34c-3.23 1.54-6.69 2.3-10.37 2.3s-7.13-.76-10.36-2.3c-3.24-1.53-6.1-3.65-8.58-6.34a29.6 29.6 0 0 1-5.2-7.88c-.46-1.02-1.15-1.94-1.96-2.71l-10.47-9.97 11.59-12.15c.62-.65 1.11-1.39 1.52-2.19 1.22-2.39 2.73-4.56 4.53-6.5q3.72-4.02 8.58-6.33c3.23-1.54 6.69-2.31 10.36-2.31s7.14.77 10.37 2.31c1.45.69 2.83 1.5 4.13 2.42l13.23-16c-2.86-2.17-5.95-4-9.27-5.51C60.24 1.29 54.09-.01 47.52-.01s-12.64 1.3-18.38 3.89a48.05 48.05 0 0 0-15.15 10.78C9.63 19.25 6.2 24.57 3.72 30.6 1.24 36.66 0 43.11 0 50s1.24 13.35 3.72 19.38c2.48 6.04 5.9 11.36 10.27 15.95 4.36 4.59 9.41 8.18 15.15 10.78 5.74 2.59 11.86 3.88 18.38 3.88s12.72-1.29 18.46-3.88c5.74-2.6 10.79-6.19 15.15-10.78s7.78-9.91 10.23-15.95c2.46-6.03 3.68-12.5 3.68-19.38 0-5.28-.72-10.3-2.17-15.08" style="fill:%232b2b2b"/><path d="M48.13 73.93c-3.55 0-7-1.37-9.58-3.83l-21.1-20.11L31.7 35.03l15.83 15.09 36.81-44.5 15.92 13.17L58.81 68.9a13.9 13.9 0 0 1-9.87 5.01c-.27.02-.54.02-.81.02" style="fill:%23fe1414"/></svg>');
  opacity: 1;
}
.gform_wrapper .gform_footer {
  --gf-form-footer-margin-y-end: 0.75rem;
}
.gform_wrapper .gform_footer input.gform_button {
  font-size: var(--wp--preset--font-size--reg) !important;
  font-weight: 900 !important;
}
.gform_wrapper.main-signup-form_wrapper .gform_body {
  --gf-form-gap-y: 0.75rem;
  --gf-ctrl-padding-x: 1rem;
}
.gform_wrapper.main-signup-form_wrapper .gform_body input::placeholder {
  color: var(--wp--preset--color--light-purple);
  text-transform: uppercase;
}

.home .gform_wrapper .gform_body {
  --gf-form-gap-y: 0.5rem;
}

.donate-form_wrapper .donate-form .gform-body .custom-amount {
  display: block;
  padding: 1.5rem;
  background-color: var(--wp--preset--color--base);
  border-radius: 10px;
  margin-top: 0.5rem;
}
.donate-form_wrapper .donate-form .gform-body .message {
  margin-top: 0.5rem;
}
.donate-form_wrapper .donate-form .gform-body .gfield_calculation, .donate-form_wrapper .donate-form .gform-body .gfield--type-total {
  padding: 1rem;
  border-radius: 10px;
  background-color: var(--wp--preset--color--base);
  display: flex;
  justify-content: space-between;
}
.donate-form_wrapper .donate-form .gform-body .gfield_calculation .gfield_label, .donate-form_wrapper .donate-form .gform-body .gfield--type-total .gfield_label {
  margin-bottom: 0;
}
.donate-form_wrapper .donate-form .gform-body .gfield_calculation .ginput_product_price_label, .donate-form_wrapper .donate-form .gform-body .gfield--type-total .ginput_product_price_label {
  display: none;
}
.donate-form_wrapper .donate-form .gform-body .gfield--type-total .gfield_label {
  font-size: var(--wp--preset--font-size--reg);
}
.donate-form_wrapper .donate-form .gform-body .gfield--type-total .ginput_container input {
  text-align: right;
  font-weight: 900;
  font-size: var(--wp--preset--font-size--reg);
}
.donate-form_wrapper .donate-form .gform-body .gfield_checkbox .gchoice label {
  margin: 0;
}
.donate-form_wrapper .donate-form .gform-body .gfield_radio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.donate-form_wrapper .donate-form .gform-body .gfield_radio .gchoice {
  grid-template-columns: none;
}
.donate-form_wrapper .donate-form .gform-body .gfield_radio .gchoice label {
  margin: 0;
  padding: 0.75em 1em;
  border-radius: 10px;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--base);
  font-size: var(--wp--preset--font-size--reg);
  font-weight: 900;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.donate-form_wrapper .donate-form .gform-body .gfield_radio .gchoice label:hover {
  background-color: var(--wp--preset--color--contrast);
}
.donate-form_wrapper .donate-form .gform-body .gfield_radio .gchoice input {
  display: none;
}
.donate-form_wrapper .donate-form .gform-body .gfield_radio .gchoice input + label:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 101 100"><path d="M47.52 100c-6.52 0-12.65-1.3-18.39-3.89s-10.79-6.19-15.15-10.78S6.2 75.42 3.72 69.39C1.24 63.35 0 56.89 0 50s1.24-13.35 3.72-19.39 5.9-11.35 10.26-15.94 9.41-8.18 15.15-10.78C34.87 1.3 41 0 47.52 0s12.72 1.3 18.46 3.89 10.79 6.19 15.15 10.78 7.77 9.91 10.23 15.94c2.46 6.04 3.68 12.5 3.68 19.39s-1.23 13.35-3.68 19.39c-2.46 6.04-5.87 11.35-10.23 15.94a48.05 48.05 0 0 1-15.15 10.78C60.24 98.7 54.09 100 47.52 100m0-20.66c3.67 0 7.13-.77 10.36-2.31a27.7 27.7 0 0 0 8.57-6.34q3.72-4.035 5.82-9.33c1.4-3.53 2.1-7.32 2.1-11.36s-.7-7.83-2.1-11.36-3.34-6.65-5.82-9.33c-2.48-2.69-5.34-4.8-8.57-6.34-3.24-1.54-6.69-2.31-10.36-2.31s-7.13.77-10.36 2.31c-3.24 1.54-6.09 3.65-8.57 6.34q-3.72 4.035-5.82 9.33c-1.4 3.54-2.1 7.32-2.1 11.36s.7 7.83 2.1 11.36q2.1 5.31 5.82 9.33c2.48 2.69 5.34 4.8 8.57 6.34 3.24 1.54 6.69 2.31 10.36 2.31" fill="%23f5f0e6"/></svg>');
}
.donate-form_wrapper .donate-form .gform-body .gfield_radio .gchoice input:checked + label {
  background-color: var(--wp--preset--color--contrast);
}
.donate-form_wrapper .donate-form .gform-body .gfield_radio .gchoice input:checked + label:hover {
  color: var(--wp--preset--color--base);
}
.donate-form_wrapper .donate-form .gform-body .gfield_radio .gchoice input:checked + label:before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 101 100"><path d="M92.87 34.92 74.32 57.35c-.72.87-1.26 1.86-1.63 2.92-.13.37-.27.74-.41 1.1-1.4 3.54-3.34 6.64-5.82 9.33s-5.34 4.8-8.58 6.34c-3.23 1.54-6.69 2.3-10.37 2.3s-7.13-.76-10.36-2.3c-3.24-1.53-6.1-3.65-8.58-6.34a29.6 29.6 0 0 1-5.2-7.88c-.46-1.02-1.15-1.94-1.96-2.71l-10.47-9.97 11.59-12.15c.62-.65 1.11-1.39 1.52-2.19 1.22-2.39 2.73-4.56 4.53-6.5q3.72-4.02 8.58-6.33c3.23-1.54 6.69-2.31 10.36-2.31s7.14.77 10.37 2.31c1.45.69 2.83 1.5 4.13 2.42l13.23-16c-2.86-2.17-5.95-4-9.27-5.51C60.24 1.29 54.09-.01 47.52-.01s-12.64 1.3-18.38 3.89a48.05 48.05 0 0 0-15.15 10.78C9.63 19.25 6.2 24.57 3.72 30.6 1.24 36.66 0 43.11 0 50s1.24 13.35 3.72 19.38c2.48 6.04 5.9 11.36 10.27 15.95 4.36 4.59 9.41 8.18 15.15 10.78 5.74 2.59 11.86 3.88 18.38 3.88s12.72-1.29 18.46-3.88c5.74-2.6 10.79-6.19 15.15-10.78s7.78-9.91 10.23-15.95c2.46-6.03 3.68-12.5 3.68-19.38 0-5.28-.72-10.3-2.17-15.08" style="fill:%23f5f0e6"/><path d="M48.13 73.93c-3.55 0-7-1.37-9.58-3.83l-21.1-20.11L31.7 35.03l15.83 15.09 36.81-44.5 15.92 13.17L58.81 68.9a13.9 13.9 0 0 1-9.87 5.01c-.27.02-.54.02-.81.02" style="fill:%23fe1414"/></svg>');
}

/* Navigation
--------------------------------------------- */
.menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.menu ul {
  list-style: none;
  padding-left: 1rem;
}
.menu a {
  text-decoration: none;
  font-weight: 800;
  display: inline-block;
  white-space: nowrap;
}
.menu a:hover {
  transform: translateY(-2px);
}

.topline-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 1rem;
}
.topline-menu .menu__topline-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}
@media screen and (min-width: 1024px) {
  .topline-menu .menu__topline-menu {
    display: flex;
    gap: 1rem;
  }
}
.topline-menu .menu__topline-menu a {
  color: var(--wp--preset--color--base);
}
.topline-menu .menu__topline-menu a:hover {
  color: var(--wp--preset--color--accent);
}
.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 {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  font-size: 1.7rem;
}
.menu__social-menu.center {
  justify-content: center;
}
.menu__social-menu.right {
  justify-content: flex-end;
}
.menu__social-menu a {
  color: var(--wp--preset--color--contrast);
}
.menu__social-menu a:hover {
  color: var(--wp--preset--color--accent);
}
.menu__social-menu 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 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 a[href*="x.com"]:before, .menu__social-menu a[href*="twitter.com"]:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-brands);
  content: "\e61b";
}
.menu__social-menu 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 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 a[href*="linkedin.com"]:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-brands);
  content: "\f08c";
}
.menu__social-menu.large {
  gap: 2rem;
}
@media screen and (min-width: 782px) {
  .menu__social-menu.large li a {
    font-size: var(--wp--preset--font-size--large);
  }
}
.menu__social-menu.light a {
  color: var(--wp--preset--color--base);
}
.menu__social-menu.light a:hover {
  color: var(--wp--preset--color--accent);
}
.menu__social-menu.menu__topline-menu {
  gap: 0.75rem;
  font-size: 1.2rem;
}
.menu__social-menu.menu__topline-menu li a {
  color: var(--wp--preset--color--base);
}
.menu__social-menu.menu__topline-menu li a:hover {
  color: var(--wp--preset--color--accent);
}

.posts-navigation {
  display: block;
  margin: 2rem 0 4rem;
}
.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;
  font-size: 90%;
  transform: translateY(1%);
}
.posts-navigation .nav-previous a:hover:before {
  transform: translate(-2px, 1%);
}
.posts-navigation .nav-next {
  text-align: end;
}

/* Posts and Pages
--------------------------------------------- */
.page-header {
  padding: 3rem 0 2rem;
  margin-bottom: clamp(2rem, 5%, 4rem);
  background-color: var(--wp--preset--color--primary);
}
@media screen and (min-width: 1024px) {
  .page-header {
    padding: 5rem 0 4rem;
  }
}
.page-header__inner-container {
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
}
@media (max-width: calc(1024px + 2rem)) {
  .page-header__inner-container {
    padding: 0 2rem;
  }
}
.page-header .wp-block-post-title {
  margin-top: 0.5rem;
  margin-bottom: 0;
  color: var(--wp--preset--color--base);
  max-width: 800px;
}
.page-header .wp-block-post-title span {
  font-weight: 600;
  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: var(--wp--preset--font-size--sm);
  font-weight: 700;
  text-transform: uppercase;
}
.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 {
  color: var(--wp--preset--color--accent);
  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 {
  color: var(--wp--preset--color--base);
}
.page-header__excerpt-wrapper {
  margin-top: 1.5rem;
}
.page-header__excerpt {
  font-size: var(--wp--preset--font-size--md);
  font-weight: 400;
  color: var(--wp--preset--color--base);
  max-width: 820px;
  line-height: 1.2;
}

.search-result {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--wp--preset--color--base-dark);
}
.search-result a {
  text-decoration: none;
}
.search-result a:hover {
  text-decoration: underline;
  text-decoration-style: dotted;
}
.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--base-darker);
}
.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 *:last-child {
  margin-bottom: 0;
}
.search-result .search-result__permalink {
  color: var(--wp--preset--color--base-darker);
  font-size: 80%;
}

.home-posts-wrapper {
  align-items: normal;
  gap: 1.5rem;
}
@media (min-width: 782px) {
  .home-posts-wrapper {
    flex-wrap: nowrap;
  }
  .home-posts-wrapper > div:first-child {
    flex-basis: 33.33%;
  }
  .home-posts-wrapper > div:last-child {
    flex-basis: 66.66%;
  }
}

.single-post .custom-block-latest-posts__post-meta {
  margin-bottom: 3rem;
}

.page-template-page-link-in-bio {
  background: radial-gradient(circle farthest-side at 50% 10%, var(--wp--preset--color--base-light), var(--wp--preset--color--base-dark));
  background-color: var(--wp--preset--color--base-dark);
  background-repeat: no-repeat;
}
.page-template-page-link-in-bio .site-main {
  padding: 3rem 0 0;
}
.page-template-page-link-in-bio .site-main:before {
  content: "";
  background-color: var(--wp--preset--color--primary);
  background-image: radial-gradient(circle farthest-side at 50% 90%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
  height: calc(130px + 3rem);
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

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

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

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

@media (max-width: 782px) {
  .reverse-stack-on-mobile {
    flex-wrap: wrap-reverse !important;
  }
}

.wp-block-accordion-heading {
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.wp-block-accordion-heading__toggle {
  padding: 0.75rem 2rem 0.75rem 1.5rem;
}
.wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title {
  text-decoration: none !important;
}
.wp-block-accordion-heading__toggle-title {
  padding-right: 1.5rem;
}
.wp-block-accordion-heading__toggle-icon {
  font-size: 0;
}
.wp-block-accordion-heading__toggle-icon:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f055";
  font-size: var(--wp--preset--font-size--lg);
}
.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.16, 1, 0.3, 1);
}
.wp-block-accordion-panel > * {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.wp-block-accordion-panel > *:first-child {
  padding-top: 1.5rem;
}
.wp-block-accordion-panel > *:last-child {
  padding-bottom: 1.5rem;
}
.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;
}

.wp-block-column.has-background, .wp-block-group.has-background {
  padding: 1.5rem;
  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: 2.5rem;
  }
}

.wp-block-group.is-style-group__hug-right {
  padding: 8%;
}
@media (min-width: 782px) {
  .wp-block-group.is-style-group__hug-right {
    border-radius: 10px 0 0 10px;
    margin-right: -2rem !important;
    max-width: 700px;
  }
}

.wp-block-cover *:last-child {
  margin-bottom: 0;
}
@media (max-width: 782px) {
  .wp-block-cover {
    padding: 2rem;
  }
}
@media (min-width: 782px) {
  .wp-block-cover.is-style-cover__narrow {
    padding-top: 4%;
    padding-bottom: 4%;
  }
}

.wp-block-embed.is-type-video .wp-block-embed__wrapper {
  width: 100%;
  height: 0;
  padding-bottom: calc(56.5% + 10px);
  position: relative;
}
.wp-block-embed.is-type-video .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 10px;
  border: 5px solid var(--wp--preset--color--base-dark);
  top: 0;
  left: 0;
}

.is-style-heading__accent + * {
  margin-top: 0;
}

.page-header:has(+ .is-style-image__heading-extension), .page-header:has(+ .is-style-group__heading-extension) {
  margin-bottom: 0;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) {
  .page-header:has(+ .is-style-image__heading-extension), .page-header:has(+ .is-style-group__heading-extension) {
    padding-bottom: 7rem;
  }
}

.wp-block-image.is-style-image__heading-extension, .wp-block-group.is-style-group__heading-extension {
  margin-top: -4rem;
}
@media (min-width: 1024px) {
  .wp-block-image.is-style-image__heading-extension, .wp-block-group.is-style-group__heading-extension {
    margin-top: -6rem;
  }
}

.wp-block-image.alignwide:not(.is-style-image__heading-extension) {
  margin-top: clamp(2rem, 5%, 4rem);
  margin-bottom: clamp(2rem, 5%, 4rem);
}
.wp-block-image.is-style-image__circle img {
  aspect-ratio: 1;
  object-fit: cover;
}

.custom-block-latest-posts__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.custom-block-latest-posts__list li {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}
.custom-block-latest-posts__list li:not(:last-child) {
  border-bottom: 2px solid var(--wp--preset--color--base-dark);
}
.custom-block-latest-posts__list li > span {
  display: block;
}
.custom-block-latest-posts__post-meta {
  font-size: var(--wp--preset--font-size--sm);
  color: var(--wp--preset--color--primary);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}
.custom-block-latest-posts__post-type {
  font-weight: 900;
  margin-right: 0.4rem;
}
.custom-block-latest-posts__post-type:after {
  content: "";
  height: 0.75em;
  width: 0.75em;
  display: inline-block;
  margin-left: 0.5rem;
  background-color: var(--wp--preset--color--base-dark);
}
.custom-block-latest-posts__post-title {
  font-weight: 900;
  font-size: var(--wp--preset--font-size--md);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.custom-block-latest-posts__link {
  font-size: var(--wp--preset--font-size--sm);
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wp--preset--color--base-darker);
}
li.external .custom-block-latest-posts__link:after {
  transform: rotate(-45deg);
}

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

.wp-block-separator {
  border: none;
  margin: 2rem 0;
  border-top: 2px solid;
  color: var(--wp--preset--color--base-dark);
}
.wp-block-separator.extra-space {
  margin: 4rem 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 */
