/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
  margin-top: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  background: var(--bg);
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.2;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
  line-height: 1;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}
a {
  text-decoration: none;
  color: var(--navy);
}
.bold {
  font-family: "Work Bold";
  font-weight: 700;
}
.entry-content a {
  text-decoration: underline;
  text-underline-offset: 1px;
  text-decoration-color: var(--lime);
}
a:not(.menu-item a):hover {
  color: var(--lime);
}
p {
  max-width: 55ch;
}
button {
  background: none;
  border: none;
  display: block;
}
.flow > * + * {
  margin-top: var(--flow-space, 1em);
}
.about {
  --flow-space: 100px;
}
iframe {
  width: 100%;
  aspect-ratio: 1.7;
}

@font-face {
  font-family: "Fragment";
  src: url("fonts/FragmentMono-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Work";
  src: url("fonts/WorkSans-Regular.ttf") format("truetype");
  font-display: swap;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Work Bold";
  src: url("fonts/WorkSans-Bold.ttf") format("truetype");
  font-display: swap;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Heading";
  src: url("fonts/HEADING-Grotesk-ALT.otf") format("opentype");
  font-display: swap;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
body {
  font-family: "Work", Arial, Helvetica, sans-serif;
}
:root {
  --fs-sm: clamp(0.8rem, -0.09vi + 0.82rem, 0.75rem);
  --fs-base: clamp(1rem, 0vi + 1rem, 1rem);
  --fs-md: clamp(1.25rem, 0.15vi + 1.21rem, 1.33rem);
  --fs-lg: clamp(1.56rem, 0.39vi + 1.47rem, 1.78rem);
  --fs-xl: clamp(1.95rem, 0.76vi + 1.76rem, 2.37rem);
  --fs-xxl: clamp(2.44rem, 1.3vi + 2.12rem, 3.16rem);
  --fs-xxxl: clamp(3.05rem, 2.1vi + 2.53rem, 4.21rem);
  --fs-xxxxl: clamp(3.81rem, 3.44vi + 3.03rem, 5.61rem);
  --flow-space: 12px;
  --red: #ea3d08;
  --orange: #ff6b00;
  --pink: #f3daea;
  --navy: #251a58;
  --purple: #c54698;
  --teal: #7fe8d2;
  --lime: #86ffb0;
  --bg: var(--pink);
  --text: var(--navy);
}
img {
  max-width: 100%;
}
p {
  max-width: 80ch;
  font-size: var(--fs-base);
  text-wrap: pretty;
  color: var(--text);
}
h1,
h2,
h3,
h4,
h5,
h6,
.hero p,
.site-footer p {
  text-wrap: balance;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  color: var(--navy);
}
h1,
.h1,
h2,
.h2 {
  font-size: var(--fs-xxxxl);
}
h1 {
  margin: 100px 0 40px;
}
h3,
.h3 {
  font-size: var(--fs-lg);
  font-weight: 800;
}
h4,
.h4 {
  font-size: var(--fs-md);
}
h5,
.h5 {
  font-size: var(--fs-base);
}
h6,
.h6 {
  font-size: var(--fs-sm);
}
.hero h3,
.site-footer h3,
.main-navigation h3 {
  font-weight: 400;
  text-transform: uppercase;
}
#primary {
  min-height: calc(100vh - 152.5px);
}
.custom-logo {
  width: 100px;
  height: auto;
}
.mobile-logo,
.mobile-logo-link {
  display: none;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  justify-content: space-between;
}
.nav-wrap {
  background: var(--bg);
  border-bottom: 2px solid var(--navy);
  justify-content: space-between;
  z-index: 9999;
  position: relative;
  align-items: center;
}
.site-branding {
  z-index: 999;
}
.site-branding > * {
  border-right: 2px solid var(--navy);
  padding: 12px 20px;
}
.site-branding p {
  line-height: 1.3;
  max-width: none;
}
.site-description {
  width: 40%;
  text-wrap: balance;
}
.menu-bpf-container {
  position: absolute;
  top: -100vh;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--navy);
  z-index: 99;
  transition: top 0.5s ease-in-out;
}
.menu-bpf-container.menu-on {
  top: 0;
}
.menu {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  list-style: none;
  text-align: center;
  text-decoration: none;
  margin: 0;
  padding: 100px 0;
  font-family: "Heading", Arial, Helvetica, sans-serif;
}
.menu li {
  font-size: var(--fs-xxxl);
  text-transform: lowercase;
  color: var(--lime);
}
.menu li:not(:first-of-type) {
  border-top: 2px solid var(--lime);
}
.menu-toggle {
  background: none;
  border: none;
  padding: 12px;
}
.menu-toggle svg {
  display: block;
  height: 38px;
}
path.rotate {
  transform-origin: center;
  transition: transform 0.5s ease-in-out;
}
.hide {
  transition:
    opacity 0.5s,
    visibility 0.5s;
  opacity: 1;
  visibility: visible;
}
.hide.hidden {
  opacity: 0;
  visibility: hidden;
}
.coming-soon a {
  cursor: not-allowed;
}
.menu-item span {
  display: none;
}
.flex {
  display: flex;
}
.flow > * + * {
  margin-top: var(--flow-space, 12px);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap, 24px);
}
#post-container-2 {
  grid-template-columns: repeat(3, 1fr);
}
.news .grid,
.category-template .grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding-bottom: 100px;
}
.post-wrap.flex {
  gap: 24px;
}
.wrapper {
  padding: 24px;
  max-width: 1350px;
  margin: auto;
}
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.scrolling_text {
  width: 100%;
  overflow: hidden;
  display: flex;
  white-space: nowrap;
  padding: 40px 0px;
  margin: 48px 0;
  align-items: center;
  z-index: 1;
  position: relative;
  pointer-events: none;
}
.news .text span:hover {
  color: #fff6ef;
}
.text {
  font-weight: 700;
  text-transform: lowercase;
  animation: animate_text 30s linear infinite; /* The animation property */
}
.scrolling_text h2 {
  font-size: var(--fs-xxxxl);
  font-family: "Heading", Arial, Helvetica, sans-serif;
  text-wrap: nowrap;
  line-height: 1;
  color: var(--lime);
  transform: translateY(10%);
}
.text span {
  margin: 0 40px;
}
.red_scroll {
  background: var(--navy);
  color: var(--lime);
  padding: 10px 0;
  a {
    color: var(--lime);
  }
}
@keyframes animate_text {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
#loading-spinner {
  grid-area: 1 / 1;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  border: 6px solid var(--bg);
  border-top: 6px solid var(--red);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
}
.timer {
  padding-bottom: 120px;
  position: relative;
}
#sand-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: hard-light;
  opacity: 0.8;
}
.hero-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--bg);
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.hero-footer-right > *,
.menu-toggle {
  border-left: 2px solid var(--navy);
  padding: 12px 20px;
  text-transform: uppercase;
}
.menu-toggle {
  cursor: pointer;
}
.hero-footer-left > * {
  border-right: 2px solid var(--navy);
  padding: 12px 20px;
  text-transform: uppercase;
}
.svg-box {
  grid-area: 1 / 1;
  align-self: center;
  justify-self: center;
  height: 33%;
}
.svg-box svg {
  width: 40vw;
  padding: 50px;
}
#wavePath,
#wavePath2,
#textPath {
  visibility: hidden;
}
.logo-text {
  fill: #fff6ef;
}
#canvas {
  /* make the canvas wrapper fits the document */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.plane {
  /* define the size of your plane */
  width: 80%;
  /* height: 80vh; */
  margin: 20vh;
}
.plane img {
  /* hide the img element */
  display: none;
}
/* .hero-slideshow {
  grid-area: 1 / 1;
  z-index: -1;
  visibility: hidden;
  position: relative;
} */
.hero svg.logo {
  visibility: hidden;
}
/* .hero-slideshow img {
  position: absolute;
  transition: opacity 1s;
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slideshow img.active {
  opacity: 1;
} */
.site-footer {
  background: var(--bg);
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
/* .site-footer > *:not(:first-child) {
  border-left: 2px solid var(--navy);
  padding: 24px;
  height: 90px;
} */
.socials {
  display: flex;
  gap: 12px;
}

/* News */
.news .flex {
  gap: 24px;
}
.news .post {
  flex: 1;
}
.date,
time {
  font-family: "Fragment", "Courier New", Courier, monospace;
  margin-bottom: 24px;
  color: var(--purple);
}
.exhib-date {
  margin-top: 24px;
}
.exhib-location svg {
  width: 16px;
  margin-right: 8px;
}
.cats {
  font-family: "Fragment", "Courier New", Courier, monospace;
  margin-top: 24px;
  text-decoration: underline;
  color: var(--purple);
  text-transform: lowercase;
}
.vertical-line {
  height: 80px;
  border-left: 2px solid var(--purple);
  margin-top: 48px;
}
.home .vertical-line:last-of-type {
  display: none;
}
.home .entry-content p {
  margin-block-end: 2rem;
}
.news .text span {
  color: var(--lime);
  display: flex;
  text-transform: uppercase;
  text-wrap: nowrap;
  align-items: center;
}
.news .text img {
  height: 20px;
  margin-left: 60px;
}
.news .scrolling_text {
  padding: 6px 0;
  margin: 0;
}

/* Intro */

.entry-content p {
  font-size: var(--fs-md);
  margin-inline: auto;
}
.intro {
  position: relative;
}
.intro svg {
  position: absolute;
  top: 58%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 55%;
  z-index: -1;
  opacity: 0.2;
}

/* Posts grid */

div#post-container-3 {
  grid-template-columns: repeat(3, 1fr);
}
.post-text {
  padding: 12px;
  margin-top: 12px;
  line-height: 1.5;
  position: relative;
  /* isolation: isolate; */
  overflow: hidden;
}
.post-text::before {
  content: "";
  mix-blend-mode: color;
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      circle,
      rgba(134, 255, 176, 1) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  /* filter: contrast(170%) brightness(200%); */
}
.post-text h3 a:hover {
  color: var(--purple);
}
.post img {
  width: 100% !important;
  height: auto;
}
.load-more {
  background: none;
  border: none;
  display: block;
  margin: auto;
  cursor: pointer;
  color: var(--purple);
  font-size: var(--fs-xl);
  font-weight: 200;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 0;
}
p.load-more {
  text-wrap: balance;
  cursor: inherit;
}
.newsletter {
  position: relative;
  /* margin-top: 48px; */
  padding-bottom: 40px;
  background-color: var(--navy);
  color: var(--lime);
  form [data-paragraph="true"],
  form div {
    color: var(--lime);
  }
  button[type="submit"].fd-btn {
    background: var(--lime);
    color: var(--navy);
    text-transform: uppercase;
  }
}
.title_banner {
  position: relative;
  .scrolling_text h2 {
    font-family: "Heading", Arial, Helvetica, sans-serif;
    color: var(--navy);
  }
}
.home .title_banner {
  margin-bottom: 80px;
}
.line {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  pointer-events: none;
}
.line_h1 {
  padding: 64px 24px;
  max-width: 1350px;
  margin-bottom: 40px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.linked .line_h1 {
  margin-bottom: 0;
}
.title_banner .line {
  top: 56%;
  z-index: 0;
}
.path {
  fill: none;
  stroke: var(--lime);
  stroke-width: 2;
  pointer-events: auto;
}
/* Newsletter */
[data-ff-el="root"].ff-65f323c0ffa2035b2cf27766 {
  background: none !important;
}
[data-ff-el="root"].ff-65f323c0ffa2035b2cf27766
  .ff-65f323c0ffa2035b2cf27766__container {
  margin: 0 auto;
  max-width: none !important;
  background: none !important;
}
[data-ff-el="root"].ff-65f323c0ffa2035b2cf27766
  .ff-65f323c0ffa2035b2cf27766__form {
  color: inherit !important;
  width: 100%;
  margin: 0;
  padding: 0 0 40px !important;
  font-size: unset !important;
  text-align: left;
  font-family: unset !important;
  font-weight: 400 !important;
  line-height: unset !important;
  letter-spacing: unset !important;
  text-transform: none !important;
}
.ff-65f323c0ffa2035b2cf27766__title {
  padding: 40px 0;
}
[data-ff-el="root"].ff-65f323c0ffa2035b2cf27766
  .ff-65f323c0ffa2035b2cf27766__title {
  color: #000 !important;
  width: 100%;
  margin: 24px 0 !important;
  display: block;
  font-size: var(--fs-xxxxl) !important;
  text-align: left;
  font-family: Space-Grotesk;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0px;
  text-transform: lowercase !important;
}
[data-ff-el="root"].ff-65f323c0ffa2035b2cf27766
  .ff-65f323c0ffa2035b2cf27766__content {
  margin: -10px -5px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  flex-direction: row;
  justify-content: left !important;
}
[data-ff-el="root"].ff-65f323c0ffa2035b2cf27766
  .ff-65f323c0ffa2035b2cf27766__label {
  font-family: "Work" !important;
}
[data-ff-el="root"].ff-65f323c0ffa2035b2cf27766
  .ff-65f323c0ffa2035b2cf27766__button {
  color: #ffffff;
  width: auto;
  border: 1px solid #000000;
  display: inline-block;
  padding: 12px !important;
  font-size: var(--fs-base) !important;
  background: #000000;
  text-align: center;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
  border-radius: 0 !important;
  letter-spacing: 0.1px;
  text-transform: uppercase !important;
}
[data-ff-el="root"].ff-65f323c0ffa2035b2cf27766
  .ff-65f323c0ffa2035b2cf27766__control {
  background: #d9d9d9 !important;
}
.newsletter input {
  width: 48%;
  background: lightgray;
  height: 50px;
  border: none;
}
.newsletter .wrapper > * {
  margin-top: 24px;
}
.newsletter button {
  background: #000;
  color: #fff;
  text-transform: uppercase;
  padding: 4px 8px;
}

/* News page */

.news .post-wrap {
  justify-content: space-between;
}
.news .post-wrap:nth-child(4n) .vertical-line,
.news .post-wrap:last-of-type .vertical-line,
.post .post-wrap:nth-child(4n) .vertical-line,
.category-template .post-wrap:nth-child(4n) .vertical-line,
.category-template .post-wrap:last-of-type .vertical-line,
.linked .post-wrap:last-of-type .vertical-line {
  display: none;
}
.linked .post-wrap.flex {
  gap: 24px;
}
.news .grid {
  grid-row-gap: 80px;
}
.news .category-filter {
  list-style: none;
  margin: 0;
  padding: 0 0 60px;
  position: relative;
  z-index: 9;
  align-items: center;
  flex-wrap: wrap;
  font-size: var(--fs-lg);
  font-family: "Work Bold", Arial, Helvetica, sans-serif;
  gap: 0.5rem;
  a {
    color: var(--navy);
  }
  a:hover {
    color: var(--purple) !important;
  }
  a:focus-visible {
    outline: 2px solid var(--purple);
    outline-offset: 4px;
    border-radius: 2px;
  }
  .is-active,
  [aria-current="page"] {
    color: var(--purple);
    /* text-decoration: underline; */
    text-underline-offset: 6px;
  }
  li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .clear-filters {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: var(--fs-md);
    background: var(--lime);
    color: var(--navy);
    text-transform: uppercase;
    padding: 4px 8px;
  }
}
.news .category-filter > li:last-child .pipe {
  display: none;
}
.news .line_h1 {
  margin-bottom: 0;
}

.news .post-title {
  font-size: var(--fs-lg);
  font-weight: 800;
  margin: 0.25em 0;
}
.news .no-posts {
  grid-column: 1 / -1;
  font-size: var(--fs-md);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Post pages */

.post-content .wp-block-image {
  display: none;
}
.post-content p {
  font-family: "Fragment", Arial, Helvetica, sans-serif;
}
.site-main.post {
  background: var(--navy);
}
.post .wrapper {
  max-width: 110ch;
  background: var(--bg);
  padding: 80px;
}
.post .grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.post h1 {
  font-size: var(--fs-xxxl);
  margin-top: 50px;
}

.post-content > * {
  margin-bottom: 20px;
}
.post-content {
  max-width: 80ch;
  margin-inline: auto;
  margin-top: 40px;
}
img.slick-slide {
  width: 100%;
  height: auto !important;
}
.caption {
  margin-top: 24px;
  text-align: center;
}
.controls {
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
div.context > :first-child {
  flex: 2;
}

div.context > :last-child {
  flex: 1;
}
.context {
  margin-bottom: 40px;
  gap: 20px;
}
.linked {
  margin: -1px auto;
  max-width: 110ch;
  background: var(--bg);
}
.linked .line_h1 {
  padding: 64px 80px;
  font-size: calc(var(--fs-xxxxl) - 3pt);
}
.linked .grid {
  padding: 0 80px 140px;
}
.post .exhib-location {
  align-items: baseline;
}
.post p + .exhib-location {
  margin-top: 12px;
}
.post_menu {
  position: fixed;
  top: 180px;
  left: 50%;
  transform: translateX(540px);
}
.post_menu ul {
  padding: 0;
  margin: 0;
  color: white;
  font-size: var(--fs-md);
  width: 100vw;
}
.post_menu li {
  list-style: none;
  border-bottom: 1px solid white;
  padding: 10px 20px;
}
.post_menu li:first-of-type {
  border-top: 1px solid white;
}
@media (max-width: 1439px) {
  .post_menu {
    display: none;
  }
}

/* About Page */
.about h4 {
  margin-bottom: 24px;
}
.wp-block-file {
  font-size: var(--fs-xl);
}
.wp-block-file__button {
  font-size: var(--fs-md);
}
.entry-content h4 {
  max-width: 110ch;
  margin-inline: auto;
  font-weight: 800;
}
.static {
  --flow-space: 24px;
}
.static .entry-content {
  margin: 100px 0;
}

/* Category pages */

/* .categoy-template .line_h1:not(span) {
  display: none;
} */

@media (max-width: 768px) {
  :root {
    --fs-base: clamp(1.15rem, 0.1vi + 1.18rem, 1.2rem);
  }
  .custom-logo,
  .custom-logo-link {
    display: none; /* Hide the default logo on mobile */
  }
  .mobile-logo,
  .mobile-logo-link {
    display: block; /* Show the mobile logo on mobile */
  }
  .mobile-logo {
    width: 36px;
  }
  .svg-box svg {
    width: 100vw;
  }
  h3,
  .entry-content p,
  .load-more {
    font-size: var(--fs-md);
  }
  .scrolling_text h2,
  h2 {
    font-size: var(--fs-xxxxl);
  }
  h5,
  .h5 {
    font-size: var(--fs-sm);
  }
  .hero-footer-right > *,
  .menu-toggle {
    padding: 10px;
    border-left: none;
  }
  .menu-toggle svg {
    height: 30px;
  }
  .menu li {
    font-size: var(--fs-xxxl);
  }
  .menu li:not(:first-of-type) {
    padding-top: 7%;
  }
  .menu-item span {
    display: block;
    font-size: var(--fs-base);
  }
  .news .flex {
    display: block;
  }
  .category-filter.flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .news .post {
    min-width: 40%;
    margin-top: 35px;
  }
  .news .post:nth-of-type(n + 4) {
    display: none;
  }
  .date,
  .cats {
    font-size: 90%;
  }
  .date {
    margin-bottom: 10px;
  }
  .cats {
    margin-top: 10px;
  }
  .home .h4 {
    font-size: var(--fs-sm);
  }
  .exhib-location svg {
    width: 12px;
  }
  .site-description,
  .support,
  .hero-footer .hero-footer-right,
  .site-footer .support,
  .hero-footer .support,
  .vertical-line {
    display: none;
  }
  .hero-footer .hero-footer-left,
  .hero .hero-footer-left {
    width: 100%;
    justify-content: space-between;
  }
  .hero .partners,
  .hero-footer .partners {
    width: 100%;
    text-align: center;
    border-right: none;
  }
  .site-footer {
    flex-wrap: wrap;
  }
  .site-footer .hero-footer-right {
    border-top: 2px solid #000;
    width: 100%;
  }
  .site-footer .legal {
    border-left: none;
  }
  .site-footer .partners {
    border-right: none;
    width: 100%;
    text-align: center;
  }
  .site-footer .legal,
  .site-footer .contact {
    width: 100%;
    text-align: center;
  }
  .site-footer .contact {
    border-left: 2px solid #000;
  }
  .site-footer .hero-footer-left {
    width: 100%;
  }
  .grid,
  .news .grid {
    grid-template-columns: 1fr 1fr;
  }
  .category-filter.flex {
    gap: 12px;
  }
  #exhibitions .grid,
  .home .collabs .grid,
  .home .events .grid,
  div#post-container-3,
  #post-container-2 {
    grid-template-columns: 1fr;
  }

  .newsletter input {
    width: 100%;
  }
  .intro svg {
    left: 13%;
    width: 100%;
    transform: scale(1.5);
    overflow: hidden;
    display: none;
  }
  .scrolling_text {
    padding: 14px 0px;
  }
  .post .wrapper {
    padding: 20px;
  }
  .linked .line_h1 {
    padding: 64px 40px;
  }
  .linked .grid {
    padding: 0 40px 140px;
  }
}

@media (min-width: 1920px) {
  .menu li {
    font-size: var(--fs-xxxxl);
  }
}

/* Wooooo */

.woocommerce-shop article {
  padding: 24px;
  max-width: 1350px;
  margin: auto;
}

.woocommerce-breadcrumb {
  display: none;
}
.woocommerce ul.products li.product a,
.wc-block-components-button__text {
  color: #000;
  text-decoration: none;
}
.woocommerce ul.products li.product a:hover {
  color: var(--lime);
}
.wc-block-components-button__text:hover {
  color: #fff;
}
.single-product .wrapper {
  padding-top: 20vh;
}
.price {
  color: var(--purple) !important;
  font-weight: bold;
  font-size: var(--fs-lg) !important;
}
button[name="add-to-cart"],
.wc-block-components-checkout-place-order-button,
.wp-block-woocommerce-proceed-to-checkout-block,
.single_add_to_cart_button {
  background-color: var(--lime) !important;
}
button[name="add-to-cart"],
.wp-block-woocommerce-proceed-to-checkout-block,
.wp-block-woocommerce-proceed-to-checkout-block,
.wc-block-components-checkout-place-order-button,
.single_add_to_cart_button {
  border: 1px solid var(--navy) !important;
  border-radius: 50vmax !important;
}
form.cart {
  margin-top: 20px;
}
.woocommerce-cart .site-main,
.woocommerce-checkout .site-main {
  padding: 24px;
  max-width: 1350px;
  margin: auto;
}
.woocommerce-cart .widget-area,
.woocommerce-checkout .widget-area {
  display: none;
}
h1.product_title,
.woocommerce-page h1.entry-title,
.woocommerce-order-details__title,
.woocommerce-column__title {
  font-size: var(--fs-xxl);
}
.woocommerce div.product form.cart {
  display: flex !important;
  align-items: center;
}
.woocommerce div.product form.cart div.quantity {
  float: none !important;
  margin: 0 20px 0 0 !important;
}
.woocommerce .quantity .text {
  animation: none !important;
}
.woocommerce-notice--success,
.woocommerce-column__title {
  margin-inline: 0 !important;
  margin-bottom: 20px !important;
}
.woocommerce ul.order_details {
  padding-left: 0 !important;
}
.woocommerce-message {
  border-top-color: var(--lime);
}
.site-header .cart-link {
  display: flex;
  gap: 5px;
  align-items: center;
  background: var(--lime);
  padding: 5px;
  border-radius: 50vmax;
  aspect-ratio: 1;
  color: var(--navy);
}
.site-header .cart-link:hover {
  color: #fff;
}
.site-header .cart-link:hover svg path {
  stroke: #fff;
}
.site-header .cart-link svg {
  width: 24px;
}
.header-cart {
  height: fit-content;
  margin-left: auto;
  margin-right: 20px;
}
.woocommerce-message::before,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .stock {
  color: var(--lime) !important;
}
.woocommerce-cart a {
  color: #000;
}
.woocommerce-page #primary {
  min-height: calc(100vh - 54.5px);
}
.woocommerce div.product form.cart .variations {
  width: 50%;
  margin-bottom: 0;
}
.variations_button,
.single_variation_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .header-cart {
    margin-right: 0;
  }
  .site-header .cart-link svg {
    width: 20px;
  }
  .wc-block-components-product-metadata {
    display: none;
  }
  .wc-block-cart-item__product {
    padding-right: 16px !important;
  }
}

/* pixel trail cursor effect */
.pixel-trail {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(var(--pt-cols, 0), var(--pt-size, 24px));
  grid-auto-rows: var(--pt-size, 24px);
  --pt-color: var(--lime);
}

.pixel-trail__pixel {
  width: var(--pt-size, 24px);
  height: var(--pt-size, 24px);
  background: var(--pt-color);
  opacity: 0;
  will-change: opacity;
}

.pixel-trail__pixel.is-lit {
  animation: pixel-trail-fade var(--pt-fade, 500ms) linear forwards;
}

@keyframes pixel-trail-fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pixel-trail {
    display: none;
  }
}
