@charset "UTF-8";
/** breakpoints **/
/*  ---------------------------------------------------------
  RESPONSIVE MIXINS
--------------------------------------------------------- */
/* aspect ratio calculation */
/* calculating container side padding on full width elements */
*,
*::before,
*::after {
  box-sizing: border-box;
}

.modal-open {
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
  position: relative;
}
.wp-site-blocks {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}

a,
button,
input:focus,
input[type=button],
input[type=submit],
textarea:focus,
.wp-element-button {
  transition: all 0.2s ease-in-out;
}

b,
strong,
th {
  font-weight: var(--wp--custom--font-weight--bold);
}

a,
a:focus,
a:hover,
a:not(.wp-element-button) {
  text-decoration-thickness: 1px;
}

.youtube-wrap {
  padding-bottom: 56.170212766%;
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  clear: both;
}
.youtube-wrap iframe,
.youtube-wrap object,
.youtube-wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

main {
  margin: 0 !important;
}

.wp-block-template-part {
  margin: 0;
}

:where(.wp-site-blocks) > * {
  margin-block-start: 0;
}

.wp-site-blocks {
  overflow-x: hidden;
}

/* remove later */
.wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 781px) {
  br {
    display: none;
  }
}

@media (max-width: 781px) {
  .is-layout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .is-layout-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: var(--wp--preset--spacing--large);
  }
}

*::selection {
  color: var(--wp--preset--color--black);
  background: var(--wp--preset--color--lightyellow);
}

*::-moz-selection {
  color: var(--wp--preset--color--black);
  background: var(--wp--preset--color--lightyellow);
}

*::-webkit-selection {
  color: var(--wp--preset--color--black);
  background: var(--wp--preset--color--lightyellow);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
}
.scroll-reveal.revealed {
  animation: reveal 0.8s forwards;
}
.scroll-reveal.from-left {
  transform: translateX(-60px);
}
.scroll-reveal.from-right {
  transform: translateX(60px);
}

@keyframes appear {
  from {
    opacity: 0;
    display: none;
    transform: scale(1.1) translate3d(0, 0, 0);
  }
  to {
    opacity: 1;
    display: flex;
    transform: scale(1) translateZ(0) translate3d(0, 0, 0);
  }
}
@keyframes disappear {
  from {
    display: flex;
    opacity: 1;
    transform: scale(1) translateZ(0) translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    display: none;
    transform: scale(1.1) translate3d(0, 0, 0);
  }
}
@keyframes reveal {
  to {
    transform: translate(0);
    opacity: 1;
  }
}
@keyframes marquee-left {
  to {
    transform: translateX(-33.33%);
  }
}
.is-style-shadow-light {
  box-shadow: var(--wp--preset--shadow--light);
}

.is-style-shadow-solid {
  box-shadow: var(--wp--preset--shadow--solid);
}

.has-background:not(.wp-element-button) {
  padding: var(--wp--preset--spacing--x-small);
}

.has-bg-blur {
  backdrop-filter: blur(5px);
}

.relative-parent {
  position: relative;
}

.align-stretch {
  align-items: stretch !important;
}
.align-stretch > * {
  height: auto;
  align-self: stretch;
}

@media (max-width: 781px) {
  .column-reverse-mobile {
    flex-direction: column-reverse;
  }
}

@media (max-width: 781px) {
  .row-reverse-mobile {
    flex-direction: row-reverse;
  }
}

@media (max-width: 1024px) {
  .space-between-mobile {
    justify-content: space-between;
  }
}

.has-object-fit-cover figure {
  width: 100%;
  height: 100%;
  display: block;
}
.has-object-fit-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.loading {
  opacity: 0.5;
}

@media (max-width: 781px) {
  .stack-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .stack-buttons .wp-block-button {
    width: auto !important;
  }
}

.text-shadow-1 {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

.fancybox__container {
  --fancybox-bg: rgba(255,255,255,0.9) !important;
  backdrop-filter: blur(10px);
}
.fancybox__container .f-button {
  background: var(--wp--preset--color--black);
  border-radius: 0;
}
.fancybox__caption {
  color: var(--wp--preset--color--black) !important;
}
.fancybox__infobar {
  background: var(--wp--preset--color--black);
  text-shadow: none;
}

.is-compact .fancybox__footer .fancybox__caption {
  color: var(--wp--preset--color--white) !important;
}

#artwork-viewer-modal {
  margin: 0;
  padding: 0;
}
#artwork-viewer-modal .modal-content {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  flex: 1;
  overflow: hidden;
  display: block;
  background: var(--wp--preset--color--black);
}
#artwork-viewer-modal .close-button::after {
  display: none;
}
#artwork-viewer-modal .close-button::before {
  display: none;
}
#artwork-viewer-modal .close-button {
  background: var(--wp--preset--color--white);
  height: auto;
  width: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-weight: bold;
  border-radius: 4px;
  gap: var(--wp--preset--spacing--tiny);
  padding: var(--wp--preset--spacing--tiny);
  border: 1px solid var(--wp--preset--color--lightgrey);
  font-size: var(--wp--preset--font-size--body);
  font-family: var(--wp--custom--font-family--body);
}
@media (max-width: 781px) {
  #artwork-viewer-modal .close-button {
    right: var(--wp--preset--spacing--tiny);
    top: var(--wp--preset--spacing--tiny);
  }
}
@media (max-width: 600px) {
  #artwork-viewer-modal .close-button {
    font-size: var(--wp--preset--font-size--cta-small);
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  max-width: 100vw;
  min-width: 100vw;
  background-color: transparent;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  transform: scale(1.1) translate3d(0, 0, 0);
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: 90%;
  max-height: 90%;
  height: 90%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 5px;
  position: relative;
  /*
    @include media-query(tablet-max) {
      border-radius: 28px;
    }

    @include media-query(phone-max) {
      width: 90%;
      height: 90%;
      max-width: 90%;
      max-height: 90%;
    }*/
}
.modal-content iframe,
.modal-content video,
.modal-content object {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center center;
}

.close-button {
  position: absolute;
  right: 40px;
  top: 40px;
  width: 60px;
  height: 50px;
  cursor: pointer;
  z-index: 20;
}
.close-button:hover {
  background: rgba(255, 255, 255, 0.1);
}
.close-button:hover::after, .close-button:hover::before {
  background: white;
}
.close-button::after {
  content: "";
  width: 24px;
  height: 3px;
  background: white;
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.close-button::before {
  content: "";
  width: 24px;
  height: 3px;
  background: white;
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateZ(0) translate3d(0, 0, 0);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

input,
select,
textarea {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--black);
  font-family: var(--wp--custom--font-family--body);
  font-size: var(--wp--preset--font-size--medium);
  font-weight: var(--wp--custom--font-weight--medium);
  line-height: var(--wp--custom--line-height--body);
  padding: 10px 20px;
  width: 100%;
  border: 0;
}

input:focus,
textarea:focus {
  background-color: var(--wp--preset--color--white);
  outline: none;
}

input[type=checkbox],
input[type=image],
input[type=radio] {
  width: auto;
}

input[type=button],
input[type=email],
input[type=search],
input[type=submit],
input[type=text],
textarea {
  -webkit-appearance: none;
  appearance: none;
}

::placeholder {
  color: var(--wp--preset--color--black);
  font-size: var(--wp--preset--font-size--body);
  opacity: 1;
}

.form-wrapper input,
.form-wrapper textarea {
  background: var(--wp--preset--color--white);
  border-radius: 4px;
  border: 1px solid var(--wp--preset--color--darkgrey);
  font-size: var(--wp--preset--font-size--body);
}
.form-wrapper input:focus,
.form-wrapper textarea:focus {
  border-color: var(--wp--preset--color--yellow);
}
.form-wrapper label {
  font-weight: bold;
}
.form-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  background: var(--wp--preset--color--white) url("../images/icon-chevron-down.svg") right 20px center no-repeat;
  background-size: 10px auto;
  border-radius: 4px;
  border: 1px solid var(--wp--preset--color--darkgrey);
  font-size: var(--wp--preset--font-size--body);
}
.form-wrapper select:focus {
  border-color: var(--wp--preset--color--yellow);
}
.form-wrapper input[type=submit] {
  padding: var(--wp--preset--spacing--tiny) var(--wp--preset--spacing--small);
  border: 1px solid transparent;
  background: var(--wp--preset--color--black);
  border-radius: 8px;
  color: white;
  font-size: var(--wp--preset--font-size--cta-default);
  line-height: var(--wp--custom--line-height--cta);
  font-weight: var(--wp--custom--font-weight--medium);
  cursor: pointer;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--wp--custom--font-family--body);
  width: auto;
}
.form-wrapper input[type=submit]:hover {
  background: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--black);
  color: var(--wp--preset--color--black);
}
.form-wrapper .wpcf7-form-control-wrap {
  display: block;
  margin-top: var(--wp--preset--spacing--tiny);
}
.form-wrapper .wpcf7-not-valid-tip {
  color: var(--wp--preset--color--red);
  margin-top: 4px;
}
.form-wrapper .wpcf7 form .wpcf7-response-output {
  margin: 0;
  border: 0;
  background: var(--wp--preset--color--red);
  color: var(--wp--preset--color--white);
  border-radius: 8px;
  font-size: var(--wp--preset--font-size--body);
  line-height: 1.5;
  padding: var(--wp--preset--spacing--x-small);
}
.form-wrapper .wpcf7 form.sent .wpcf7-response-output {
  background: var(--wp--preset--color--green);
}

*:not(.wp-block-code) > code {
  background-color: var(--wp--preset--color--neutral);
  font-size: var(--wp--preset--font-size--small);
  padding: 5px 8px;
}

/* -- Navigation -- */
.wp-block-navigation__responsive-container.is-menu-open {
  padding: var(--wp--custom--spacing--gap);
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  padding-top: var(--wp--custom--spacing--gap);
}

.wp-block-navigation__responsive-container-close,
.wp-block-navigation__responsive-container-open {
  border: 1px solid currentColor;
  padding: 2px;
}

.has-background .wp-block-navigation__responsive-container-open:focus,
.has-background .wp-block-navigation__responsive-container-open:hover {
  color: var(--wp--preset--color--base);
}

/* -- Navigation Submenu -- */
.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
  background-color: var(--wp--preset--color--contrast);
  border: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  padding: 10px;
}

.wp-block-navigation :where(.wp-block-navigation__submenu-container) a {
  padding: 2px 10px;
}

.wp-block-button {
  transition: var(--wp--custom--transition-1);
}
.wp-block-button:hover {
  /*.wp-block-button__link {
    background: var(--wp--preset--color--red) !important;
    color: var(--wp--preset--color--primary-white) !important;
  }*/
}
.wp-block-button:hover .has-secondary-background-color,
.wp-block-button:hover .has-black-background-color {
  background: var(--wp--preset--color--white) !important;
  color: var(--wp--preset--color--red) !important;
}
.wp-block-button:hover .has-secondary-light-background-color,
.wp-block-button:hover .has-white-background-color {
  background: var(--wp--preset--color--red) !important;
  color: var(--wp--preset--color--white) !important;
}
.wp-block-button:hover.has-white-color {
  color: var(--wp--preset--color--red);
}
.wp-block-button.is-style-outline:hover .wp-block-button__link {
  background: var(--wp--preset--color--red) !important;
  color: var(--wp--preset--color--secondary) !important;
}

.table-wrapper {
  max-width: 100%;
  overflow: auto;
}

.standard-table {
  border-spacing: 1px !important;
  max-width: 100%;
  min-width: 600px;
}
.standard-table thead {
  border: 0 !important;
}
.standard-table thead th {
  border: 0 !important;
  color: var(--wp--preset--color--primary);
  font-weight: bold;
  font-size: var(--wp--preset--font-size--large);
  text-align: left;
  padding: var(--wp--preset--spacing--x-small);
}
@media (max-width: 600px) {
  .standard-table thead th {
    padding: 8px;
    font-size: var(--wp--preset--font-size--body);
  }
}
.standard-table tbody td {
  border: 0 !important;
  text-align: left;
  padding: var(--wp--preset--spacing--x-small);
  color: var(--wp--preset--color--white);
  font-size: var(--wp--preset--font-size--body);
  border: 1px solid var(--wp--preset--color--black) !important;
}
@media (max-width: 600px) {
  .standard-table tbody td {
    padding: 8px;
    font-size: var(--wp--preset--font-size--small);
  }
}
.standard-table tbody tr td:first-child {
  font-weight: bold;
  color: var(--wp--preset--color--light-contrast);
}
.standard-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.1);
}
.standard-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.2);
}

.wp-block-gallery {
  columns: 3; /* Number of columns */
  gap: var(--wp--preset--spacing--small) !important;
  display: block !important;
  width: 100%;
}
@media (max-width: 781px) {
  .wp-block-gallery {
    columns: 2;
  }
}
.wp-block-gallery figure {
  break-inside: avoid;
  margin-bottom: var(--wp--preset--spacing--small) !important;
  width: auto !important;
  transition: var(--wp--custom--transition-2);
  overflow: hidden;
}
.wp-block-gallery figure a {
  width: 100%;
  display: block;
  height: auto;
  position: relative;
}
.wp-block-gallery figure a::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.4) url("../images/icon-view.svg") center center no-repeat;
  background-size: 40px 40px;
  backdrop-filter: blur(10px);
  color: var(--wp--preset--color--white);
  height: 50px;
  aspect-ratio: 1/1;
  transition: var(--wp--custom--transition-2);
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-45%);
  text-align: center;
  opacity: 0;
  margin: 0;
}
.wp-block-gallery figure a:hover::after, .wp-block-gallery figure a:focus::after {
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
}
.wp-block-gallery figure a:hover img, .wp-block-gallery figure a:focus img {
  transform: scale(1.05);
}
.wp-block-gallery figure img {
  width: 100% !important;
  display: block !important;
  height: auto;
  transition: var(--wp--custom--transition-3);
}

.block-breadcrumbs a {
  color: var(--wp--preset--color--black);
  font-weight: bold;
}
.block-breadcrumbs a:hover {
  color: var(--wp--preset--color--red);
}

#main-header .main-logo-wrapper {
  flex: 0 0 250px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 360px) {
  #main-header .main-logo-wrapper {
    flex: 1 1 auto;
  }
}
#main-header .main-logo-wrapper img {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: block;
  max-width: none;
}
@media (max-width: 360px) {
  #main-header .main-logo-wrapper h1 {
    display: none;
  }
}

#main-logo-wrapper {
  background: var(--wp--preset--color--black);
}
@media (max-width: 1024px) {
  #main-logo-wrapper {
    height: 30px;
    background: transparent;
    padding: 0 !important;
  }
}
#main-logo-wrapper a {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  #main-logo-wrapper a {
    width: auto;
    height: 100%;
  }
}
#main-logo-wrapper a svg {
  display: block;
  width: 100%;
  height: auto;
  transition: var(--wp--custom--transition-3);
}
@media (max-width: 1024px) {
  #main-logo-wrapper a svg {
    width: auto;
    height: 100%;
  }
}
#main-logo-wrapper a:hover svg {
  transform: scale(1.02);
}
#main-logo-wrapper a:hover path {
  fill: var(--wp--preset--color--red);
}
#main-logo-wrapper a path {
  fill: var(--wp--preset--color--lightyellow);
  transition: var(--wp--custom--transition-3);
}
@media (max-width: 1024px) {
  #main-logo-wrapper a path {
    fill: var(--wp--preset--color--black);
  }
}

@media (max-width: 781px) {
  .site-footer br {
    display: block;
  }
}

.footer-top .footer-columns .footer-top-column.footer-artworks img {
  height: auto !important;
}
.footer-top .footer-columns .footer-top-column.footer-artworks figure {
  margin: 0;
}
@media (max-width: 781px) {
  .footer-top .footer-columns .footer-top-column.footer-artworks .is-layout-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }
}
@media (max-width: 360px) {
  .footer-top .footer-columns .footer-top-column.footer-artworks .is-layout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.scroll-to-top-parent {
  position: fixed;
  right: var(--wp--preset--spacing--small);
  bottom: var(--wp--preset--spacing--small);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.scroll-to-top-parent.visible {
  opacity: 1;
  visibility: visible;
}

.footer-event-list {
  gap: 0;
}
.footer-event-list h3 {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.page-section.home-banner .home-banner-cover {
  position: relative;
}
.page-section.home-banner .home-banner-cover img {
  z-index: 1;
}
.page-section.home-banner .home-banner-cover::after {
  content: "";
  left: 0;
  bottom: 0;
  height: 60%;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 55%);
  position: absolute;
  z-index: 2;
}
.page-section.home-banner .home-banner-cover .wp-block-cover__inner-container {
  z-index: 3;
}

.mobile-nav-toggle-wrapper {
  display: none;
}
@media (max-width: 1024px) {
  .mobile-nav-toggle-wrapper {
    display: block;
  }
}

#mobile-nav-toggle {
  appearance: none;
  -webkit-appearance: none;
  background: var(--wp--preset--color--black);
  mask: url("../images/icon-hamburger.svg") center center no-repeat;
  -webkit-mask: url("../images/icon-hamburger.svg") center center no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  width: 28px;
  height: 28px;
  border: 0;
  outline: 0;
  cursor: pointer;
  position: relative;
  z-index: 20;
  display: block;
  min-height: 0;
}
#mobile-nav-toggle:focus {
  mask-size: 100%;
  -webkit-mask-size: 100%;
  transform: scale(1.2);
  background: var(--wp--preset--color--red);
}

@media (max-width: 1024px) {
  .main-navigation {
    display: none;
  }
}
.main-navigation .current-menu-item > a {
  color: var(--wp--preset--color--black) !important;
}
.main-navigation a:hover {
  opacity: 0.5;
}

#mobile-navigation-wrapper {
  background: rgba(247, 248, 249, 0.75);
  backdrop-filter: blur(10px);
  border-left: 1px solid rgba(247, 248, 249, 0.75);
  height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 20;
  width: 600px;
  max-width: 90vw;
  transition: var(--wp--custom--transition-2);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  display: none;
}
@media (max-width: 1024px) {
  #mobile-navigation-wrapper {
    display: block;
  }
}
@media (max-width: 600px) {
  #mobile-navigation-wrapper {
    max-width: 100vw;
  }
}
#mobile-navigation-wrapper.active {
  right: 0;
}
#mobile-navigation-wrapper .nav-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  padding-top: var(--wp--preset--spacing--medium);
  padding-bottom: var(--wp--preset--spacing--medium);
}
#mobile-navigation-wrapper .nav-wrapper .inner-wrapper {
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding-left: var(--wp--preset--spacing--medium);
  padding-right: var(--wp--preset--spacing--small);
}
#mobile-navigation-wrapper .nav-wrapper .inner-wrapper .mobile-navigation ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: var(--wp--preset--spacing--tiny);
  padding-left: 0;
  margin: 0;
}
#mobile-navigation-wrapper .nav-wrapper .inner-wrapper .mobile-navigation ul li {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#mobile-navigation-wrapper .nav-wrapper .inner-wrapper .mobile-navigation ul li a {
  text-decoration: none;
  color: var(--wp--preset--color--primary-black);
  font-family: var(--wp--custom--font-family--heading);
  font-weight: bold;
  font-size: var(--wp--preset--font-size--body);
}
#mobile-navigation-wrapper .nav-wrapper .inner-wrapper .mobile-navigation ul li.menu-item-has-children .submenu-toggle {
  appearance: none;
  -webkit-appearance: none;
  outline: 0;
  border: 0;
  background: var(--wp--preset--color--red);
  width: 26px;
  height: 26px;
  mask: url("../images/icon-plus.svg") center center no-repeat;
  -webkit-mask: url("../images/icon-plus.svg") center center no-repeat;
  mask-size: 60%;
  -webkit-mask-size: 60%;
  margin-left: var(--wp--preset--spacing--tiny);
  transform: translateY(-2px);
}
#mobile-navigation-wrapper .nav-wrapper .inner-wrapper .mobile-navigation ul li.menu-item-has-children .submenu-toggle:focus {
  background: var(--wp--preset--color--black);
  mask-size: 90%;
}
#mobile-navigation-wrapper .nav-wrapper .inner-wrapper .mobile-navigation ul li.menu-item-has-children.active > .sub-menu {
  max-height: 612px;
}
#mobile-navigation-wrapper .nav-wrapper .inner-wrapper .mobile-navigation ul li.menu-item-has-children.active .submenu-toggle {
  mask-image: url("../images/icon-minus.svg");
  -webkit-mask-image: url("../images/icon-minus.svg");
}
#mobile-navigation-wrapper .nav-wrapper .inner-wrapper .mobile-navigation .sub-menu {
  display: flex;
  width: 100%;
  flex: 1 0 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding-left: 34px;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease-in-out;
}
#mobile-navigation-wrapper .nav-wrapper .inner-wrapper .mobile-navigation .sub-menu > li:first-child {
  margin-top: 20px;
}
#mobile-navigation-wrapper .nav-wrapper .inner-wrapper .mobile-navigation .sub-menu a {
  display: block;
}

#mobile-nav-close {
  position: absolute;
  right: var(--wp--preset--spacing--small);
  top: 1rem;
  border: 0;
  width: 28px;
  height: 28px;
  outline: 0;
  background-color: var(--wp--preset--color--black);
  mask: url("../images/icon-close.svg") center center no-repeat;
  -webkit-mask: url("../images/icon-close.svg") center center no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  border: 0;
  outline: 0;
  cursor: pointer;
}
#mobile-nav-close:focus {
  mask-size: 100%;
  transform: scale(1.2);
  -webkit-mask-size: 100%;
  background: var(--wp--preset--color--red);
}

.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
  background: var(--wp--preset--color--white) !important;
  padding: var(--wp--preset--spacing--tiny);
  gap: inherit;
  min-width: 250px !important;
  top: 0;
  left: 92%;
  border-left: 2px solid var(--wp--preset--color--black);
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), left 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wp-block-navigation .has-child .wp-block-navigation-submenu__toggle[aria-expanded=true] ~ .wp-block-navigation__submenu-container,
.wp-block-navigation .has-child:not(.open-on-click):hover > .wp-block-navigation__submenu-container,
.wp-block-navigation .has-child:not(.open-on-click):not(.open-on-hover-click):focus-within > .wp-block-navigation__submenu-container {
  left: 100%;
}

.artwork-image-wrapper {
  position: relative;
}
.artwork-image-wrapper .wp-block-post-navigation-link {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  left: 0;
}
@media (max-width: 600px) {
  .artwork-image-wrapper .wp-block-post-navigation-link {
    left: -10px;
  }
}
.artwork-image-wrapper .wp-block-post-navigation-link a {
  font-size: 0;
  color: transparent;
}
.artwork-image-wrapper .wp-block-post-navigation-link a::before {
  font-size: 5rem; /* Reset font size for the pseudo-element */
  content: "‹";
  color: var(--wp--preset--color--black);
  cursor: pointer;
}
@media (max-width: 600px) {
  .artwork-image-wrapper .wp-block-post-navigation-link a::before {
    font-size: 3rem;
  }
}
.artwork-image-wrapper .wp-block-post-navigation-link.next-artwork {
  left: auto;
  right: 0;
}
@media (max-width: 600px) {
  .artwork-image-wrapper .wp-block-post-navigation-link.next-artwork {
    right: -10px;
    left: auto;
  }
}
.artwork-image-wrapper .wp-block-post-navigation-link.next-artwork a::before {
  content: "›";
}
.artwork-image-wrapper .wp-block-post-navigation-link.next-artwork a::before {
  content: "›";
  left: auto;
  right: 0;
  color: var(--wp--preset--color--black);
}

.artwork-overlay-wrapper {
  position: relative;
  overflow: hidden;
}
.artwork-overlay-wrapper .artwork-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: var(--wp--preset--spacing--tiny);
  margin: 0 !important;
  margin-block-start: 0 !important;
  transform: translateX(100%);
  opacity: 0;
  transition: var(--wp--custom--transition-2);
}
.artwork-overlay-wrapper .frs-block-post-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  margin-block-start: 0 !important;
}
.artwork-overlay-wrapper .meta-sizes {
  gap: 0.5ch;
}
.artwork-overlay-wrapper:hover .artwork-overlay {
  transform: translateX(0);
  opacity: 1;
}

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