@keyframes jello {
  11.1% {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
  100% {
    transform: none;
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ******************** REVEALS ******************** */
@keyframes reveal-top {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes reveal-right {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes reveal-bottom {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes reveal-left {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes reveal-top-sm {
  from {
    opacity: 0;
    transform: translateY(-5vw);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes reveal-right-sm {
  from {
    opacity: 0;
    transform: translateX(5vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes reveal-bottom-sm {
  from {
    opacity: 0;
    transform: translateY(5vw);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes reveal-left-sm {
  from {
    opacity: 0;
    transform: translateX(-5vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes reveal-fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes reveal-zoomin {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes reveal-paint-top {
  from {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes reveal-paint-right {
  from {
    opacity: 1;
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  to {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes reveal-paint-bottom {
  from {
    opacity: 1;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  to {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes reveal-paint-left {
  from {
    opacity: 1;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  to {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes reveal-paint-center {
  from {
    opacity: 1;
    clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
  }
  to {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.animate-fade-n-hide {
  animation: fade-n-hide 1s forwards;
}

.animate-fade-n-hide-short {
  animation: fade-n-hide 0.5s forwards;
}

.animate-fade-n-hide-short-inv {
  animation: fade-n-hide 0.5s reverse forwards;
}

@keyframes fade-n-hide {
  0% {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
  }
  100% {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
  }
}
.swiper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.swiper .swiper-wrapper {
  flex: 1;
}
.swiper .swiper-slide {
  height: auto;
}
.swiper.swiper-vertical {
  touch-action: auto;
}
.swiper.swiper-vertical .swiper-wrapper {
  flex: auto;
  height: auto;
}
.swiper.swiper--standard {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, calc(1.9vw + 7px), 40px);
}
.swiper.swiper--standard .swiper-slide {
  cursor: grab;
}
.swiper.swiper--blog .swiper-slide {
  transition: opacity 0.3s;
}
.swiper.swiper--blog .swiper-slide-prev,
.swiper.swiper--blog .swiper-slide-next {
  opacity: 0.3;
}

.swiper-nav {
  pointer-events: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(40px, calc(1.9vw + 27.5px), 60px);
  height: clamp(40px, calc(1.9vw + 27.5px), 60px);
  border: 1px solid currentColor;
  border-radius: 9999px;
  transition: color 0.3s, background-color 0.3s, transform 0.3s;
}
.swiper-nav::before, .swiper-nav::after {
  content: "";
  display: block;
  background-color: currentColor;
}
.swiper-nav::after {
  width: 20px;
  height: 20px;
  -webkit-mask-image: var(--chevron);
          mask-image: var(--chevron);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.swiper-nav::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  filter: contrast(2) grayscale(1) invert(1);
  opacity: 0.25;
  transition: opacity 0.3s;
}
.swiper-nav--small {
  width: 30px;
  height: 30px;
}
.swiper-nav--small::before {
  width: 15px;
  height: 15px;
}
.swiper-nav--prev::after {
  transform: rotate(180deg);
}
.swiper-nav:not(.is-disabled) {
  cursor: pointer;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-color: var(--ss-primary);
}
.swiper-nav:not(.is-disabled):hover {
  transform: scale(1.1);
}
.swiper-nav:not(.is-disabled):hover::before {
  opacity: 0.5;
}

.swiper-pagination {
  flex: 1;
  display: flex;
  gap: 10px;
  padding: 5px;
  overflow: hidden;
}
.swiper-pagination__bullet {
  cursor: pointer;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  opacity: 0.4;
  border-radius: 9999px;
  transition: opacity 0.3s, transform 0.3s;
}
.swiper-pagination__bullet:hover {
  opacity: 0.7;
  transform: scale(1.25);
}
.swiper-pagination__bullet.current {
  pointer-events: none;
  cursor: default;
  opacity: 1;
}
.swiper-pagination__number {
  font-weight: 700;
  color: var(--ss-quaternary);
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 2px;
  transition: color 0.3s, background-size 0.3s;
}
.swiper-pagination__number:hover {
  color: var(--ss-tertiary);
  background-position: bottom left;
  background-size: 100% 2px;
}
.swiper-pagination__number:not(.current) {
  pointer-events: auto;
  cursor: pointer;
}
.swiper-pagination__number.current {
  pointer-events: none;
  cursor: default;
  color: var(--ss-primary);
}
.swiper-pagination--gallery .swiper-pagination__bullet {
  --pag-width: 150px;
  --pag-height: 90px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  flex-shrink: 0;
  width: var(--pag-width) !important;
  height: var(--pag-height) !important;
  border: none;
  border-radius: 5px;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
  --tw-bg-opacity: 0.05;
  opacity: 0.5;
  overflow: hidden;
  transition: opacity 0.3s linear, transform 0.3s linear;
}
.swiper-pagination--gallery .swiper-pagination__bullet__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s linear;
}
.swiper-pagination--gallery .swiper-pagination__bullet:hover {
  opacity: 0.7;
}
.swiper-pagination--gallery .swiper-pagination__bullet.current {
  pointer-events: none;
  cursor: default;
  opacity: 1;
}

.footer-nav .menu-item {
  margin-bottom: 10px;
}
.footer-nav .menu-item > a {
  border-radius: 2px;
  padding: 2px 0;
  background-repeat: no-repeat;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: bottom left;
  background-size: 0 2px;
  transition-property: background-size;
  transition-duration: 0.3s;
}
.footer-nav .menu-item > a:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 2px;
}
.footer-nav .menu-item > a:hover {
  background-size: 100% 2px;
}
@media screen and (min-width: 640px) {
  .footer-nav .menu-item > a {
    white-space: nowrap;
  }
}

.link, #editor .block-container a,
#main .block-container a,
.wp-block-post-content .block-container a {
  --underline-height: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% var(--underline-height);
  transition: background-size 0.3s;
}
.link:focus-visible, #editor .block-container a:focus-visible,
#main .block-container a:focus-visible,
.wp-block-post-content .block-container a:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 2px;
}
.link:hover, #editor .block-container a:hover,
#main .block-container a:hover,
.wp-block-post-content .block-container a:hover {
  background-position: bottom right;
  background-size: 0 var(--underline-height);
}
.link--inv {
  background-position: bottom right;
  background-size: 0 var(--underline-height);
}
.link--inv:hover {
  background-position: bottom left;
  background-size: 100% var(--underline-height);
}
.link--primary {
  background-image: linear-gradient(var(--ss-primary), var(--ss-primary));
}
.link--secondary {
  background-image: linear-gradient(var(--ss-secondary), var(--ss-secondary));
}

.link-mod {
  --underline-height: 2px;
}
.link-mod__txt {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% var(--underline-height);
  transition: background-size 0.3s;
}
.link-mod:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 2px;
}
.link-mod:hover .link-mod__txt {
  background-position: bottom right;
  background-size: 0 var(--underline-height);
}
.link-mod--inv .link-mod__txt {
  background-position: bottom right;
  background-size: 0 var(--underline-height);
}
.link-mod--inv:hover .link-mod__txt {
  background-position: bottom left;
  background-size: 100% var(--underline-height);
}
.link-mod--primary .link-mod__txt {
  background-image: linear-gradient(var(--ss-primary), var(--ss-primary));
  background-image: linear-gradient(var(--ss-secondary), var(--ss-secondary));
}
.link-mod--90 .link-mod__txt {
  background-position: bottom left;
  background-size: var(--underline-height) 0;
}
.link-mod--90:hover .link-mod__txt {
  background-position: top left;
  background-size: var(--underline-height) 100%;
}

.pagination {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 5px;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 2px solid transparent;
}
.page-numbers.current {
  font-weight: 700;
}
.page-numbers:not(.current, .prev, .next) {
  display: none;
}
.page-numbers:not(.dots):not(.current):focus-visible {
  outline-color: currentColor;
}
.page-numbers.prev, .page-numbers.next {
  position: relative;
  width: clamp(40px, calc(1.9vw + 27.5px), 60px);
  height: clamp(40px, calc(1.9vw + 27.5px), 60px);
  border-radius: 9999px;
  border: 1px solid currentColor;
  font-size: 0;
  letter-spacing: 0;
  transition: color 0.3s, background-color 0.3s, transform 0.3s;
}
.page-numbers.prev::after, .page-numbers.next::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask-image: var(--chevron);
          mask-image: var(--chevron);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: center;
          mask-position: center;
}
.page-numbers.prev:hover, .page-numbers.next:hover {
  transform: scale(1.1);
}
.page-numbers.prev::after {
  transform: scaleX(-1);
}

.wpcf7 .btn {
  align-self: flex-start;
  margin-top: clamp(10px, calc(1.3vw + 2px), 20px);
  margin-bottom: clamp(10px, calc(1.3vw + 2px), 20px);
}
.wpcf7 p {
  margin-bottom: clamp(10px, calc(1.3vw + 2px), 20px);
}
.wpcf7 .wpcf7-form {
  position: relative;
  display: flex;
  flex-direction: column;
}
.wpcf7 .wpcf7-form::before, .wpcf7 .wpcf7-form::after {
  content: "";
  position: absolute;
  display: block;
  z-index: 20;
  transition: opacity 0.2s;
}
.wpcf7 .wpcf7-form::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  opacity: 0.5;
}
.wpcf7 .wpcf7-form::after {
  pointer-events: none;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  border: 5px solid var(--ss-primary);
  border-top-color: transparent;
  border-radius: 9999px;
  animation: spin 1s linear infinite;
}
.wpcf7 .wpcf7-form:not(.submitting)::before, .wpcf7 .wpcf7-form:not(.submitting)::after {
  pointer-events: none;
  opacity: 0;
}
.wpcf7 .wpcf7-custom-group-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.wpcf7 .wpcf7-custom-group {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}
@media screen and (min-width: 640px) {
  .wpcf7 .wpcf7-custom-group.half-width {
    width: calc(50% - 10px);
  }
}
.wpcf7 .wpcf7-custom-label {
  display: inline-block;
  margin-bottom: 10px;
}
.wpcf7 .wpcf7-form-control-wrap:has(.wpcf7-select) {
  position: relative;
}
.wpcf7 .wpcf7-form-control-wrap:has(.wpcf7-select) .wpcf7-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.wpcf7 .wpcf7-form-control-wrap:has(.wpcf7-select)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 25px;
  height: 15px;
  background-color: var(--ss-primary);
  transform: translateY(-50%) scaleY(1);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.wpcf7 .wpcf7-form-control-wrap:has(.wpcf7-select):has(.wpcf7-select:open)::after {
  transform: translateY(-50%) scaleY(-1);
}
.wpcf7 .wpcf7-text,
.wpcf7 .wpcf7-textarea,
.wpcf7 .wpcf7-number,
.wpcf7 .wpcf7-select {
  display: inline-block;
  width: 100%;
  outline: 3px solid transparent;
  outline-offset: 2px;
  border: 1px solid var(--ss-quaternary);
  border-radius: 10px;
  padding: 15px;
  padding-left: clamp(10px, calc(1.3vw + 2px), 20px);
  padding-right: clamp(10px, calc(1.3vw + 2px), 20px);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.wpcf7 .wpcf7-text::-moz-placeholder, .wpcf7 .wpcf7-textarea::-moz-placeholder, .wpcf7 .wpcf7-number::-moz-placeholder, .wpcf7 .wpcf7-select::-moz-placeholder {
  color: var(--ss-tertiary);
}
.wpcf7 .wpcf7-text::placeholder,
.wpcf7 .wpcf7-textarea::placeholder,
.wpcf7 .wpcf7-number::placeholder,
.wpcf7 .wpcf7-select::placeholder {
  color: var(--ss-tertiary);
}
.wpcf7 .wpcf7-text:focus,
.wpcf7 .wpcf7-textarea:focus,
.wpcf7 .wpcf7-number:focus,
.wpcf7 .wpcf7-select:focus {
  outline-color: var(--ss-tertiary);
}
.wpcf7 .wpcf7-text:hover,
.wpcf7 .wpcf7-textarea:hover,
.wpcf7 .wpcf7-number:hover,
.wpcf7 .wpcf7-select:hover {
  border-color: var(--ss-primary);
}
.wpcf7 .wpcf7-textarea {
  margin: 0;
}
.wpcf7 .not-wpcf7-acceptance,
.wpcf7 .wpcf7-acceptance,
.wpcf7 .wpcf7-checkbox,
.wpcf7 .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 20px;
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item,
.wpcf7 .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label,
.wpcf7 .wpcf7-radio .wpcf7-list-item label {
  display: flex;
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label input,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label input,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label input,
.wpcf7 .wpcf7-radio .wpcf7-list-item label input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  margin-right: 10px;
  outline: 3px solid transparent;
  outline-offset: 2px;
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label input::before, .wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label input::after,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label input::before,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label input::after,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label input::before,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label input::after,
.wpcf7 .wpcf7-radio .wpcf7-list-item label input::before,
.wpcf7 .wpcf7-radio .wpcf7-list-item label input::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label input::before,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label input::before,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label input::before,
.wpcf7 .wpcf7-radio .wpcf7-list-item label input::before {
  width: 100%;
  height: 100%;
  border: 1px solid var(--ss-octanery);
  border-radius: inherit;
  background: transparent;
  transform: translate(-50%, -50%);
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label input::after,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label input::after,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label input::after,
.wpcf7 .wpcf7-radio .wpcf7-list-item label input::after {
  width: 12px;
  height: 12px;
  background-color: var(--ss-primary);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s;
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label input:checked::after,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label input:checked::after,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label input:checked::after,
.wpcf7 .wpcf7-radio .wpcf7-list-item label input:checked::after {
  transform: translate(-50%, -50%) scale(1);
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label input:focus-visible,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label input:focus-visible,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label input:focus-visible,
.wpcf7 .wpcf7-radio .wpcf7-list-item label input:focus-visible {
  outline-color: var(--ss-primary);
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label input:hover::before,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label input:hover::before,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label input:hover::before,
.wpcf7 .wpcf7-radio .wpcf7-list-item label input:hover::before {
  box-shadow: 0 0 0 1px var(--ss-primary);
}
.wpcf7 .not-wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7 .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label,
.wpcf7 .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  flex: 1;
  letter-spacing: 0;
  font-size: 1.4rem;
}
.wpcf7 .acceptance {
  font-size: 1.4rem;
}
.wpcf7 .wpcf7-custom-file-tooltip {
  pointer-events: none;
  position: absolute;
  bottom: 65px;
  left: 0;
  width: 100%;
  margin: 0;
  text-align: center;
  transform: translateY(100%);
}
.wpcf7 .screen-reader-response {
  height: 1px;
  overflow: hidden;
}
.wpcf7 .wpcf7-not-valid-tip,
.wpcf7 .wpcf7-response-output {
  display: block;
  margin-bottom: clamp(10px, calc(1.3vw + 2px), 20px);
  border-radius: 10px;
  font-weight: 600;
}
.wpcf7 .wpcf7-not-valid-tip ul,
.wpcf7 .wpcf7-response-output ul {
  display: none;
}
.wpcf7 .wpcf7-not-valid-tip:last-child,
.wpcf7 .wpcf7-response-output:last-child {
  margin-top: 5px;
  margin-bottom: 0;
}

.tabs__body {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
.tabs__body.is-active {
  pointer-events: auto;
  animation: unclip-right 0.6s 0.2s linear forwards;
}

@keyframes unclip-right {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
.link, #editor .block-container a,
#main .block-container a,
.wp-block-post-content .block-container a {
  --underline-height: 2px;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% var(--underline-height);
  transition: background-size 0.3s;
}
.link:focus-visible, #editor .block-container a:focus-visible,
#main .block-container a:focus-visible,
.wp-block-post-content .block-container a:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 2px;
}
.link:hover, #editor .block-container a:hover,
#main .block-container a:hover,
.wp-block-post-content .block-container a:hover {
  background-position: bottom right;
  background-size: 0 var(--underline-height);
}
.link--inv {
  background-position: bottom right;
  background-size: 0 var(--underline-height);
}
.link--inv:hover {
  background-position: bottom left;
  background-size: 100% var(--underline-height);
}
.link--primary {
  background-image: linear-gradient(var(--ss-primary), var(--ss-primary));
}
.link--secondary {
  background-image: linear-gradient(var(--ss-secondary), var(--ss-secondary));
}

.link-mod {
  --underline-height: 2px;
}
.link-mod__txt {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% var(--underline-height);
  transition: background-size 0.3s;
}
.link-mod:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 2px;
}
.link-mod:hover .link-mod__txt {
  background-position: bottom right;
  background-size: 0 var(--underline-height);
}
.link-mod--inv .link-mod__txt {
  background-position: bottom right;
  background-size: 0 var(--underline-height);
}
.link-mod--inv:hover .link-mod__txt {
  background-position: bottom left;
  background-size: 100% var(--underline-height);
}
.link-mod--primary .link-mod__txt {
  background-image: linear-gradient(var(--ss-primary), var(--ss-primary));
  background-image: linear-gradient(var(--ss-secondary), var(--ss-secondary));
}
.link-mod--90 .link-mod__txt {
  background-position: bottom left;
  background-size: var(--underline-height) 0;
}
.link-mod--90:hover .link-mod__txt {
  background-position: top left;
  background-size: var(--underline-height) 100%;
}

.undordered-list, #editor ul.wp-block-list,
#main ul.wp-block-list,
.wp-block-post-content ul.wp-block-list {
  --padding: 20px;
  list-style-type: none;
  padding-left: var(--padding);
  text-align: left;
}
.undordered-list li, #editor ul.wp-block-list li,
#main ul.wp-block-list li,
.wp-block-post-content ul.wp-block-list li {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}
.undordered-list li::before, #editor ul.wp-block-list li::before,
#main ul.wp-block-list li::before,
.wp-block-post-content ul.wp-block-list li::before {
  --size: 8px;
  content: "";
  position: absolute;
  top: calc((1.5em - var(--size)) / 2);
  left: calc(var(--padding) * -1);
  display: block;
  width: var(--size);
  height: var(--size);
  border-radius: 9999px;
  background-color: var(--ss-primary);
}

.ordered-list, #editor ol.wp-block-list,
#main ol.wp-block-list,
.wp-block-post-content ol.wp-block-list {
  padding-left: 15px;
  list-style-type: decimal;
  text-align: left;
}
.ordered-list.roman, #editor ol.roman.wp-block-list,
#main ol.roman.wp-block-list,
.wp-block-post-content ol.roman.wp-block-list {
  list-style-type: upper-roman;
}
.ordered-list.roman > li::marker, #editor ol.roman.wp-block-list > li::marker,
#main ol.roman.wp-block-list > li::marker,
.wp-block-post-content ol.roman.wp-block-list > li::marker {
  font-weight: bold;
}
.ordered-list li, #editor ol.wp-block-list li,
#main ol.wp-block-list li,
.wp-block-post-content ol.wp-block-list li {
  margin-top: 10px;
  margin-bottom: 10px;
}

:root {
  font-size: 62.5%;
}

#editor,
#main,
.wp-block-post-content {
  font-size: 1.6rem;
}
#editor .block-container p,
#main .block-container p,
.wp-block-post-content .block-container p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
#editor .block-container p:first-child,
#main .block-container p:first-child,
.wp-block-post-content .block-container p:first-child {
  margin-top: 0px;
}
#editor .block-container p:last-child,
#main .block-container p:last-child,
.wp-block-post-content .block-container p:last-child {
  margin-bottom: 0px;
}
#editor .wp-block-separator,
#main .wp-block-separator,
.wp-block-post-content .wp-block-separator {
  max-width: 50%;
  border-top: 1px solid;
}
#editor .alignright,
#main .alignright,
.wp-block-post-content .alignright {
  margin-left: auto;
}
#editor .aligncenter,
#main .aligncenter,
.wp-block-post-content .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
#editor .alignleft,
#main .alignleft,
.wp-block-post-content .alignleft {
  margin-right: auto;
}
#editor .has-text-align-left,
#main .has-text-align-left,
.wp-block-post-content .has-text-align-left {
  text-align: left;
}
#editor .has-text-align-right,
#main .has-text-align-right,
.wp-block-post-content .has-text-align-right {
  text-align: right;
}
#editor .has-text-align-center,
#main .has-text-align-center,
.wp-block-post-content .has-text-align-center {
  text-align: center;
}
#editor *[style="font-size: 52px;"],
#main *[style="font-size: 52px;"],
.wp-block-post-content *[style="font-size: 52px;"] {
  font-size: clamp(3.2rem, calc(1.9vw + 2.0rem), 5.2rem) !important;
  line-height: 1.1;
}
#editor *[style="font-size: 42px;"],
#main *[style="font-size: 42px;"],
.wp-block-post-content *[style="font-size: 42px;"] {
  font-size: clamp(2.8rem, calc(1.4vw + 5.0rem), 4.2rem) !important;
}
#editor *[style="font-size: 32px;"],
#main *[style="font-size: 32px;"],
.wp-block-post-content *[style="font-size: 32px;"] {
  font-size: clamp(2.5rem, calc(0.7vw + 2.0rem), 3.2rem) !important;
}
#editor *[style="font-size: 22px;"],
#main *[style="font-size: 22px;"],
.wp-block-post-content *[style="font-size: 22px;"] {
  font-size: 2.2rem !important;
}
#editor *[style="font-size: 20px;"],
#main *[style="font-size: 20px;"],
.wp-block-post-content *[style="font-size: 20px;"] {
  font-size: 2.0rem !important;
}
#editor *[style="font-size: 18px;"],
#main *[style="font-size: 18px;"],
.wp-block-post-content *[style="font-size: 18px;"] {
  font-size: 1.8rem !important;
}
#editor *[style="font-size: 16px;"],
#main *[style="font-size: 16px;"],
.wp-block-post-content *[style="font-size: 16px;"] {
  font-size: 1.6rem !important;
}
#editor *[style="font-size: 14px;"],
#main *[style="font-size: 14px;"],
.wp-block-post-content *[style="font-size: 14px;"] {
  font-size: 1.4rem !important;
}
#editor *[style="font-size: 12px;"],
#main *[style="font-size: 12px;"],
.wp-block-post-content *[style="font-size: 12px;"] {
  font-size: 1.2rem !important;
}
#editor .has-sm-font-size,
#main .has-sm-font-size,
.wp-block-post-content .has-sm-font-size {
  font-size: 1.4rem;
}
#editor .has-m-font-size,
#main .has-m-font-size,
.wp-block-post-content .has-m-font-size {
  font-size: 1.6rem;
}
#editor .has-lg-font-size,
#main .has-lg-font-size,
.wp-block-post-content .has-lg-font-size {
  font-size: 1.8rem;
}
#editor .has-xl-font-size,
#main .has-xl-font-size,
.wp-block-post-content .has-xl-font-size {
  font-size: 2.0rem;
}
#editor .has-xxl-font-size,
#main .has-xxl-font-size,
.wp-block-post-content .has-xxl-font-size {
  font-size: 2.5rem;
}
#editor .has-primary-color,
#main .has-primary-color,
.wp-block-post-content .has-primary-color {
  color: var(--ss-primary);
}
#editor .has-secondary-color,
#main .has-secondary-color,
.wp-block-post-content .has-secondary-color {
  color: var(--ss-secondary);
}
#editor .has-tertiary-color,
#main .has-tertiary-color,
.wp-block-post-content .has-tertiary-color {
  color: var(--ss-tertiary);
}
#editor .has-quaternary-color,
#main .has-quaternary-color,
.wp-block-post-content .has-quaternary-color {
  color: var(--ss-quaternary);
}
#editor .has-quinary-color,
#main .has-quinary-color,
.wp-block-post-content .has-quinary-color {
  color: var(--ss-quinary);
}
#editor .has-senary-color,
#main .has-senary-color,
.wp-block-post-content .has-senary-color {
  color: var(--ss-senary);
}
#editor .has-white-color,
#main .has-white-color,
.wp-block-post-content .has-white-color {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
#editor .has-black-color,
#main .has-black-color,
.wp-block-post-content .has-black-color {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
#editor .has-primary-background-color,
#main .has-primary-background-color,
.wp-block-post-content .has-primary-background-color {
  background-color: var(--ss-primary);
}
#editor .has-secondary-background-color,
#main .has-secondary-background-color,
.wp-block-post-content .has-secondary-background-color {
  background-color: var(--ss-secondary);
}
#editor .has-tertiary-background-color,
#main .has-tertiary-background-color,
.wp-block-post-content .has-tertiary-background-color {
  background-color: var(--ss-tertiary);
}
#editor .has-quaternary-background-color,
#main .has-quaternary-background-color,
.wp-block-post-content .has-quaternary-background-color {
  background-color: var(--ss-quaternary);
}
#editor .has-quinary-background-color,
#main .has-quinary-background-color,
.wp-block-post-content .has-quinary-background-color {
  background-color: var(--ss-quinary);
}
#editor .has-senary-background-color,
#main .has-senary-background-color,
.wp-block-post-content .has-senary-background-color {
  background-color: var(--ss-senary);
}
#editor .has-white-background-color,
#main .has-white-background-color,
.wp-block-post-content .has-white-background-color {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
#editor .has-black-background-color,
#main .has-black-background-color,
.wp-block-post-content .has-black-background-color {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
#editor .has-link-color > strong:first-child > a:first-child,
#main .has-link-color > strong:first-child > a:first-child,
.wp-block-post-content .has-link-color > strong:first-child > a:first-child {
  position: relative;
  background-position: bottom right;
  background-size: 0% 2px;
}
#editor .has-link-color > strong:first-child > a:first-child:hover,
#main .has-link-color > strong:first-child > a:first-child:hover,
.wp-block-post-content .has-link-color > strong:first-child > a:first-child:hover {
  background-position: bottom left;
  background-size: 100% 2px;
}
#editor .has-link-color > strong:first-child > a:first-child::after,
#main .has-link-color > strong:first-child > a:first-child::after,
.wp-block-post-content .has-link-color > strong:first-child > a:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  width: 38px;
  height: 15px;
  background-color: currentColor;
  transform: translate(100%, -50%);
  -webkit-mask-image: var(--arrow-long);
          mask-image: var(--arrow-long);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}

#editor .wp-block-heading,
#main .wp-block-heading,
.wp-block-post-content .wp-block-heading {
  line-height: 1.25;
  font-weight: 700;
  font-family: var(--font-secondary);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

#editor .wp-block-heading:first-child,
#main .wp-block-heading:first-child,
.wp-block-post-content .wp-block-heading:first-child {
  margin-top: 0px;
}

#editor .wp-block-heading:last-child,
#main .wp-block-heading:last-child,
.wp-block-post-content .wp-block-heading:last-child {
  margin-bottom: 0px;
}
#editor h1.wp-block-heading, #editor .has-dynamic-content h1,
#main h1.wp-block-heading,
#main .has-dynamic-content h1,
.wp-block-post-content h1.wp-block-heading,
.wp-block-post-content .has-dynamic-content h1 {
  font-size: clamp(3.2rem, calc(1.9vw + 2.0rem), 5.2rem);
}
#editor h2.wp-block-heading, #editor .has-dynamic-content h2,
#main h2.wp-block-heading,
#main .has-dynamic-content h2,
.wp-block-post-content h2.wp-block-heading,
.wp-block-post-content .has-dynamic-content h2 {
  font-size: clamp(2.8rem, calc(1.4vw + 5.0rem), 4.2rem);
}
#editor h3.wp-block-heading, #editor .has-dynamic-content h3,
#main h3.wp-block-heading,
#main .has-dynamic-content h3,
.wp-block-post-content h3.wp-block-heading,
.wp-block-post-content .has-dynamic-content h3 {
  font-size: clamp(2.5rem, calc(0.7vw + 2.0rem), 3.2rem);
}
#editor h4.wp-block-heading, #editor .has-dynamic-content h4,
#main h4.wp-block-heading,
#main .has-dynamic-content h4,
.wp-block-post-content h4.wp-block-heading,
.wp-block-post-content .has-dynamic-content h4 {
  font-size: 2.2rem;
}
#editor h5.wp-block-heading, #editor .has-dynamic-content h5,
#main h5.wp-block-heading,
#main .has-dynamic-content h5,
.wp-block-post-content h5.wp-block-heading,
.wp-block-post-content .has-dynamic-content h5 {
  font-size: 2.0rem;
}
#editor h6.wp-block-heading, #editor .has-dynamic-content h6,
#main h6.wp-block-heading,
#main .has-dynamic-content h6,
.wp-block-post-content h6.wp-block-heading,
.wp-block-post-content .has-dynamic-content h6 {
  font-size: 1.8rem;
}
#editor .wp-block-heading.rich-text:hover [data-rich-text-placeholder]:after,
#editor .has-dynamic-content h1.rich-text:hover [data-rich-text-placeholder]:after,
#editor .has-dynamic-content h2.rich-text:hover [data-rich-text-placeholder]:after,
#editor .has-dynamic-content h3.rich-text:hover [data-rich-text-placeholder]:after,
#editor .has-dynamic-content h4.rich-text:hover [data-rich-text-placeholder]:after,
#editor .has-dynamic-content h5.rich-text:hover [data-rich-text-placeholder]:after,
#editor .has-dynamic-content h6.rich-text:hover [data-rich-text-placeholder]:after,
#main .wp-block-heading.rich-text:hover [data-rich-text-placeholder]:after,
#main .has-dynamic-content h1.rich-text:hover [data-rich-text-placeholder]:after,
#main .has-dynamic-content h2.rich-text:hover [data-rich-text-placeholder]:after,
#main .has-dynamic-content h3.rich-text:hover [data-rich-text-placeholder]:after,
#main .has-dynamic-content h4.rich-text:hover [data-rich-text-placeholder]:after,
#main .has-dynamic-content h5.rich-text:hover [data-rich-text-placeholder]:after,
#main .has-dynamic-content h6.rich-text:hover [data-rich-text-placeholder]:after,
.wp-block-post-content .wp-block-heading.rich-text:hover [data-rich-text-placeholder]:after,
.wp-block-post-content .has-dynamic-content h1.rich-text:hover [data-rich-text-placeholder]:after,
.wp-block-post-content .has-dynamic-content h2.rich-text:hover [data-rich-text-placeholder]:after,
.wp-block-post-content .has-dynamic-content h3.rich-text:hover [data-rich-text-placeholder]:after,
.wp-block-post-content .has-dynamic-content h4.rich-text:hover [data-rich-text-placeholder]:after,
.wp-block-post-content .has-dynamic-content h5.rich-text:hover [data-rich-text-placeholder]:after,
.wp-block-post-content .has-dynamic-content h6.rich-text:hover [data-rich-text-placeholder]:after {
  opacity: 0.8;
}
#editor .wp-block-heading.rich-text [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h1.rich-text [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h2.rich-text [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h3.rich-text [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h4.rich-text [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h5.rich-text [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h6.rich-text [data-rich-text-placeholder]::after,
#main .wp-block-heading.rich-text [data-rich-text-placeholder]::after,
#main .has-dynamic-content h1.rich-text [data-rich-text-placeholder]::after,
#main .has-dynamic-content h2.rich-text [data-rich-text-placeholder]::after,
#main .has-dynamic-content h3.rich-text [data-rich-text-placeholder]::after,
#main .has-dynamic-content h4.rich-text [data-rich-text-placeholder]::after,
#main .has-dynamic-content h5.rich-text [data-rich-text-placeholder]::after,
#main .has-dynamic-content h6.rich-text [data-rich-text-placeholder]::after,
.wp-block-post-content .wp-block-heading.rich-text [data-rich-text-placeholder]::after,
.wp-block-post-content .has-dynamic-content h1.rich-text [data-rich-text-placeholder]::after,
.wp-block-post-content .has-dynamic-content h2.rich-text [data-rich-text-placeholder]::after,
.wp-block-post-content .has-dynamic-content h3.rich-text [data-rich-text-placeholder]::after,
.wp-block-post-content .has-dynamic-content h4.rich-text [data-rich-text-placeholder]::after,
.wp-block-post-content .has-dynamic-content h5.rich-text [data-rich-text-placeholder]::after,
.wp-block-post-content .has-dynamic-content h6.rich-text [data-rich-text-placeholder]::after {
  opacity: 0.3;
}
#editor .wp-block-heading.rich-text:hover [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h1.rich-text:hover [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h2.rich-text:hover [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h3.rich-text:hover [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h4.rich-text:hover [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h5.rich-text:hover [data-rich-text-placeholder]::after,
#editor .has-dynamic-content h6.rich-text:hover [data-rich-text-placeholder]::after,
#main .wp-block-heading.rich-text:hover [data-rich-text-placeholder]::after,
#main .has-dynamic-content h1.rich-text:hover [data-rich-text-placeholder]::after,
#main .has-dynamic-content h2.rich-text:hover [data-rich-text-placeholder]::after,
#main .has-dynamic-content h3.rich-text:hover [data-rich-text-placeholder]::after,
#main .has-dynamic-content h4.rich-text:hover [data-rich-text-placeholder]::after,
#main .has-dynamic-content h5.rich-text:hover [data-rich-text-placeholder]::after,
#main .has-dynamic-content h6.rich-text:hover [data-rich-text-placeholder]::after,
.wp-block-post-content .wp-block-heading.rich-text:hover [data-rich-text-placeholder]::after,
.wp-block-post-content .has-dynamic-content h1.rich-text:hover [data-rich-text-placeholder]::after,
.wp-block-post-content .has-dynamic-content h2.rich-text:hover [data-rich-text-placeholder]::after,
.wp-block-post-content .has-dynamic-content h3.rich-text:hover [data-rich-text-placeholder]::after,
.wp-block-post-content .has-dynamic-content h4.rich-text:hover [data-rich-text-placeholder]::after,
.wp-block-post-content .has-dynamic-content h5.rich-text:hover [data-rich-text-placeholder]::after,
.wp-block-post-content .has-dynamic-content h6.rich-text:hover [data-rich-text-placeholder]::after {
  opacity: 0.8;
}

#editor .wp-block-image,
#main .wp-block-image,
.wp-block-post-content .wp-block-image {
  margin-top: clamp(20px, calc(1.9vw + 7px), 40px);
  margin-bottom: clamp(20px, calc(1.9vw + 7px), 40px);
}

#editor .wp-block-image:first-child,
#main .wp-block-image:first-child,
.wp-block-post-content .wp-block-image:first-child {
  margin-top: 0px;
}

#editor .wp-block-image:last-child,
#main .wp-block-image:last-child,
.wp-block-post-content .wp-block-image:last-child {
  margin-bottom: 0px;
}
#editor .wp-block-image.aligncenter img,
#main .wp-block-image.aligncenter img,
.wp-block-post-content .wp-block-image.aligncenter img {
  margin-left: auto;
  margin-right: auto;
}
#editor .wp-block-image.alignright img,
#main .wp-block-image.alignright img,
.wp-block-post-content .wp-block-image.alignright img {
  margin-left: auto;
}
#editor .wp-block-image.is-style-rounded img,
#main .wp-block-image.is-style-rounded img,
.wp-block-post-content .wp-block-image.is-style-rounded img {
  border-radius: 15px;
}
#editor .wp-block-image.size-full,
#main .wp-block-image.size-full,
.wp-block-post-content .wp-block-image.size-full {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
#editor .wp-block-image.size-full img,
#main .wp-block-image.size-full img,
.wp-block-post-content .wp-block-image.size-full img {
  flex-shrink: 0;
  display: block;
  width: 100vw;
  max-width: 100%;
}
@media (orientation: landscape) {
  #editor .wp-block-image.size-full img,
  #main .wp-block-image.size-full img,
  .wp-block-post-content .wp-block-image.size-full img {
    max-height: 90vh;
  }
}
#editor .wp-block-image .wp-element-caption,
#main .wp-block-image .wp-element-caption,
.wp-block-post-content .wp-block-image .wp-element-caption {
  width: 100%;
  padding: 5px;
  text-align: center;
}

.table, #editor .wp-block-table table,
#main .wp-block-table table,
.wp-block-post-content .wp-block-table table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
}
.table thead, #editor .wp-block-table table thead,
#main .wp-block-table table thead,
.wp-block-post-content .wp-block-table table thead {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-color: var(--ss-secondary);
}
.table tbody tr:hover, #editor .wp-block-table table tbody tr:hover,
#main .wp-block-table table tbody tr:hover,
.wp-block-post-content .wp-block-table table tbody tr:hover {
  border-bottom-color: currentColor;
}
.table tr, #editor .wp-block-table table tr,
#main .wp-block-table table tr,
.wp-block-post-content .wp-block-table table tr {
  border: 1px solid var(--ss-quaternary);
}
.table th, #editor .wp-block-table table th,
#main .wp-block-table table th,
.wp-block-post-content .wp-block-table table th, .table td, #editor .wp-block-table table td,
#main .wp-block-table table td,
.wp-block-post-content .wp-block-table table td {
  min-width: 120px;
  border: none;
  padding: 1.5rem;
  text-align: left;
}

#editor .wp-block-table.has-fixed-layout,
#main .wp-block-table.has-fixed-layout,
.wp-block-post-content .wp-block-table.has-fixed-layout {
  table-layout: auto;
}
#editor .wp-block-table.is-style-stripes tbody tr:nth-child(even),
#main .wp-block-table.is-style-stripes tbody tr:nth-child(even),
.wp-block-post-content .wp-block-table.is-style-stripes tbody tr:nth-child(even) {
  background-color: var(--ss-quinary);
}
#editor .wp-block-table.is-style-stripes tbody tr:nth-child(odd),
#main .wp-block-table.is-style-stripes tbody tr:nth-child(odd),
.wp-block-post-content .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: transparent;
}

#editor .wp-block-quote,
#main .wp-block-quote,
.wp-block-post-content .wp-block-quote {
  border-left-width: 5px;
  border-left-color: var(--ss-primary);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: clamp(10px, calc(1.9vw - 2px), 30px);
  font-style: italic;
  line-height: 1.625;
}
#editor .wp-block-quote .container,
#main .wp-block-quote .container,
.wp-block-post-content .wp-block-quote .container {
  margin: 0;
  padding: 0;
}
