:root {
  --vh: 100vh;
}

/* --- Custom Cursor Mixins */
/* --- BREAKPOINTS src: https://davidhellmann.com/blog/development/sass-breakpoint-mixin ========================================================================== */
html, body, main {
  width: 100vw;
  max-width: 100%;
}

body, main, section, article, div, figure, img {
  box-sizing: border-box;
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
}

@media (max-width: 1000px) {
  body.mobile_focus_media .main-columns {
    grid-template-columns: 0 2rem 1fr;
  }
  body.mobile_focus_media .project-group-menu {
    width: 0;
    border-right: 1px solid transparent;
  }
  body.mobile_focus_media .project-texts-column {
    width: 2rem;
    height: calc( 100vh - 1.88rem );
    overflow: hidden;
  }
  body.mobile_focus_media .project-texts-column:after {
    content: "+";
    text-align: center;
    line-height: calc( 100vh - 1.88rem );
    pointer-events: none;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    background: black;
  }
  body.mobile_focus_media .project-texts-column .content {
    opacity: 0;
    pointer-events: none;
  }
  body.mobile_focus_media .project-media-column {
    width: calc(100vw - 2rem);
    cursor: auto;
  }
  body.mobile_focus_media .project-media-column .content {
    pointer-events: auto;
  }
}

.main-columns {
  position: relative;
  width: 100vw;
  max-width: 100%;
  display: grid;
  grid-template-columns: 8.2rem 30rem 1fr;
}
@media (max-width: 1000px) {
  .main-columns {
    width: 100%;
    grid-template-columns: 4.1rem 1fr;
    grid-template-columns: 100%;
    grid-template-rows: 100%;
    display: block;
    padding-top: 0;
  }
}
.main-columns > section {
  height: 100vh;
  overflow: hidden;
  overflow-y: auto;
  overflow-y: overlay;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.main-columns > section::-webkit-scrollbar {
  display: none;
}
.main-columns > section:hover {
  -ms-overflow-style: auto;
  scrollbar-width: auto;
}
.main-columns > section:hover::-webkit-scrollbar {
  display: block;
}
.main-columns > section.column.project-mobile-column {
  display: none;
  padding-bottom: calc(100vh - var(--vh));
}
.main-columns > section.column.project-mobile-column > .content {
  padding-top: 1.88rem;
  padding-bottom: 1.88rem;
  padding-bottom: calc(1.88rem - 1px);
}
@media (max-width: 1000px) {
  .main-columns > section {
    display: none;
  }
  .main-columns > section.column.project-mobile-column {
    display: block;
  }
}

article.project-text {
  display: block;
  padding: 0.35rem 0.4rem 0.3rem;
  padding-right: 1rem;
  border-bottom: 1px solid white;
  box-sizing: border-box;
  /*
  &:before { // fake top border
    content: '';
    display: block;
    position: absolute;
    //top: $menuHeight;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    border-top: $border;
  }
  */
}
article.project-text > div {
  display: inline;
  margin-right: 1rem;
}
@media (max-width: 1000px) {
  article.project-text > div > p {
    display: inline;
    margin: 0;
    padding: 0;
  }
}
article.project-text > div.sub {
  margin-right: 0;
}
article.project-text > div.sub > span {
  display: inline-block;
  margin-right: 1rem;
  white-space: nowrap;
}
article.project-text > div.sub > span p {
  white-space: nowrap;
  display: block;
}
article.project-text > div.sub > span:last-child {
  margin-right: 0;
}
article.project-text button.extend {
  display: block;
  position: absolute;
  top: 0;
  right: 0.3rem;
  padding: 0.1rem;
  margin: 0.3rem 0;
  cursor: pointer;
}
article.project-text button.extend:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-width: 8px;
  border-style: solid;
  border-color: transparent;
  border-top-color: white;
  transform: translateY(25%);
}
article.project-text .extension {
  padding-top: 1.2rem;
  position: relative;
  /*
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 35rem);
  height: 100vh;
  background: black;
  z-index: 999;
  */
  display: none;
}
article.project-text.extended button.extend:after {
  border-bottom-color: white;
  border-top-color: transparent;
  transform: translateY(-25%);
}
article.project-text.extended .extension {
  display: block;
}
article.project-text:hover, article.project-text.highlight {
  background: white;
  color: black;
}
article.project-text:hover hr, article.project-text:hover .extension hr, article.project-text.highlight hr, article.project-text.highlight .extension hr {
  background-color: black;
}
article.project-text:hover button.extend:after, article.project-text.highlight button.extend:after {
  border-top-color: black;
}
article.project-text:hover.extended button.extend:after, article.project-text.highlight.extended button.extend:after {
  border-bottom-color: black;
  border-top-color: transparent;
}

article.project-media {
  width: 100%;
  overflow: hidden;
  padding: 0;
}
article.project-media img {
  padding: 0.4rem;
  max-height: 100vh;
  max-width: 100%;
  box-sizing: border-box;
  object-position: center;
}
article.project-media.highlight {
  background: black;
  z-index: 100;
}
article.project-media.highlight:after {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*
  opacity: 0;

  background-size: 250% 250%;
  background-image: linear-gradient(-65deg, rgba(255,255,255,0) 45%, rgba(255,255,255,.9) 50%, rgba(255,255,255,0) 55%);

  background-position: 50% 50%;
  */
  animation: flash 0.3s linear 0s;
}
@keyframes bling {
  0% {
    background-position: 133% 50%;
    opacity: 0.1;
  }
  50% {
    background-position: 50% 50%;
    opacity: 0.9;
  }
  100% {
    background-position: -33% 50%;
    opacity: 0.1;
  }
}
@keyframes flash {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  50% {
    background: rgba(255, 255, 255, 0.9);
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}

/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.4);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(255, 255, 255);
}

button {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: inherit;
  font-family: inherit;
  font-style: inherit;
  background: transparent;
  color: inherit;
  border: 0;
  outline: 0;
  border-radius: 0;
  cursor: pointer;
  box-sizing: border-box;
  text-decoration: none;
  transition: all 0.2s;
  opacity: 1;
}
button:hover {
  color: rgba(255, 255, 255, 0.3);
}

.button-container.ambientSound button.sound-toggle {
  width: 1.1rem;
  height: 1.1rem;
  background: white;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: cover;
  -webkit-mask-size: cover;
}

body.aS_muted button.sound-toggle {
  mask-image: url("/assets/svg/220508_Icon_w_02.svg");
  -webkit-mask-image: url("/assets/svg/220508_Icon_w_02.svg");
}
body.aS_unmuted button.sound-toggle {
  mask-image: url("/assets/svg/220508_Icon_w_01.svg");
  -webkit-mask-image: url("/assets/svg/220508_Icon_w_01.svg");
}
body.aS_fading button.sound-toggle, body.aS_autoMute button.sound-toggle {
  opacity: 0.3;
  pointer-events: none;
}

.pdf-entry + .pdf-entry {
  margin-top: 1.2rem;
}

/*-------*/
:root {
  --vh: 100vh;
}

/* --- Custom Cursor Mixins */
/* --- BREAKPOINTS src: https://davidhellmann.com/blog/development/sass-breakpoint-mixin ========================================================================== */
/*-------*/
/* MIXINS ========================================================================== */
/* --- Character Styles --- */
.cf__underline {
  text-decoration: underline;
  -webkit-text-decoration-thickness: 1px;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.cf__uppercase {
  text-transform: uppercase;
  font-variant-numeric: normal;
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case";
}

/* --- Paragraph Styles --- */
/* ========================================================================== */
html, body {
  font-size: 100%;
  font-size: 20px;
  font-size: 16px;
  font-size: clamp(16px, 1vw, 20px);
  line-height: 1.2;
  letter-spacing: 0;
  font-family: "ABCMarfa", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: inherit;
  letter-spacing: 0;
  /* improve text rendering */
  word-break: break-word;
  -webkit-hyphenate-limit-chars: 10 5 5;
  -ms-hyphenate-limit-chars: auto 10 5 5;
  hyphenate-limit-chars: 10 5 5;
  -webkit-hyphenate-limit-lines: 2;
  -ms-hyphenate-limit-lines: 2;
  hyphenate-limit-lines: 2;
  -webkit-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  color: white;
}
html ::-moz-selection, body ::-moz-selection {
  background: red;
  color: black;
}
html ::selection, body ::selection {
  background: red;
  color: black;
}
@media (max-width: 1000px) {
  html, body {
    font-size: 16px;
  }
}

a, a:hover, a:link, a:visited {
  text-decoration: none;
  color: inherit;
}

p a, p a:hover, p a:link, p a:visited {
  text-decoration: underline;
  -webkit-text-decoration-thickness: 1px;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

blockquote {
  text-align: center;
  color: yellow;
}
blockquote footer {
  font-size: 0.85rem;
  font-size: 1rem;
}

p {
  margin: 0;
  padding: 0;
}
p + p {
  margin-top: 1rem;
}

i, cite, em, var, address, dfn {
  font-style: italic;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h3 {
  font-size: 1em;
}

.caption, figcaption {
  line-height: 1.3;
  overflow: visible;
}

.obfuscate {
  text-align: left;
  display: inline-block;
  font-variant-ligatures: discretionary-ligatures;
}

.entry-layout {
  display: flex;
  flex-flow: row nowrap;
  margin: 1em 0;
}
.entry-layout .col-num {
  flex: 0 0 8.2rem;
  max-width: 8.2rem;
}
.entry-layout .col-text {
  flex: 1 1 auto;
}

hr {
  margin: 2rem 0;
  border: 0;
  height: 1px;
  background-color: white;
}

/* Open Type Features ========================================================================== */
/*
font-variant-numeric: normal;
font-variant-numeric: ordinal;
font-variant-numeric: slashed-zero;
font-variant-numeric: lining-nums;
font-variant-numeric: oldstyle-nums;
font-variant-numeric: proportional-nums;
font-variant-numeric: tabular-nums;
font-variant-numeric: diagonal-fractions;
font-variant-numeric: stacked-fractions;
font-variant-numeric: oldstyle-nums stacked-fractions;

-moz-font-feature-settings: "ss19";
-webkit-font-feature-settings: "ss19";
font-feature-settings: "ss19";
*/
.ot-lining-nums {
  font-variant-numeric: lining-nums;
}

.ot-ss01 {
  -moz-font-feature-settings: "ss01";
  -webkit-font-feature-settings: "ss01";
  font-feature-settings: "ss01";
}

.ot-smcp {
  font-variant-caps: small-caps;
  -moz-font-feature-settings: "smcp";
  -webkit-font-feature-settings: "smcp";
  font-feature-settings: "smcp";
}

.ot-case {
  -moz-font-feature-settings: "case";
  -webkit-font-feature-settings: "case";
  font-feature-settings: "case";
}

.ot-liga {
  -moz-font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
}

section.project-group-menu {
  display: block;
  border-right: 1px solid white;
  width: 8.2rem;
  margin: 0;
  padding: 0;
  padding-top: 1.88rem;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  background: black;
  z-index: 90;
}
@media (max-width: 1000px) {
  section.project-group-menu {
    width: 100%;
    width: 4.1rem;
    position: relative;
    padding-top: 0;
    height: calc( 100vh - 1.88rem );
    height: 100vw;
    position: fixed;
    bottom: 0;
    right: 0;
    left: auto;
    top: auto;
    transform-origin: bottom right;
    transform: rotate(-90deg) translate(100%, 0%);
    width: 30px;
    z-index: 200;
  }
}
section.project-group-menu .content {
  position: relative;
  height: 100%;
  width: 100%;
  /*
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  */
}
section.project-group-menu .circle {
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: white;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
}
section.project-group-menu .circle a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 100%;
  color: transparent;
  text-align: center;
}
section.project-group-menu .circle + .circle {
  margin-top: 0.5rem;
}
section.project-group-menu .circle:hover {
  background: repeating-linear-gradient(135deg, red, red 4px, white 4px, white 8px);
  background: rgba(255, 125, 125, 0.9);
}

section.page-menu {
  background: transparent;
  display: grid;
  grid-template-columns: 8.2rem 1fr;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  width: 30rem;
  position: fixed;
  top: 0;
  left: 0;
  background: black;
  z-index: 100;
  box-sizing: border-box;
}
@media (max-width: 1600px) {
  section.page-menu {
    width: 25rem;
  }
}
@media (max-width: 1000px) {
  section.page-menu {
    width: 100%;
    border-right: 0;
  }
}
section.page-menu .site-title, section.page-menu .page-link {
  cursor: pointer;
}
section.page-menu .site-title:hover, section.page-menu .site-title.active, section.page-menu .page-link:hover, section.page-menu .page-link.active {
  color: red;
}
section.page-menu .site-title {
  border-right: 1px solid white;
  width: 8.2rem;
  flex: 0 0 auto;
  background: black;
  padding: 0.35rem 0.4rem 0.3rem;
  box-sizing: border-box;
}
section.page-menu .menu-content {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
section.page-menu .menu-content > div {
  flex: 0 0 auto;
  background: black;
  padding: 0.35rem 0.4rem 0.3rem;
  box-sizing: border-box;
}
section.page-menu .menu-content > div.button-container {
  margin-right: 0;
}
@media (max-width: 1000px) {
  section.page-menu .menu-content > div.button-container {
    display: none;
  }
}

section.project-texts-column {
  position: relative;
  border-right: 1px solid white;
  width: 30rem;
  box-sizing: border-box;
  padding: 0;
  padding-left: 8.2rem;
  padding-top: 1.88rem;
}
@media (max-width: 1000px) {
  section.project-texts-column {
    width: 100%;
    width: calc(100vw - 8.2rem);
    padding-left: 0;
    padding-top: 0;
  }
}
@media (max-width: 1600px) {
  section.project-texts-column {
    width: 25rem;
  }
}
section.project-texts-column .content {
  width: 100%;
  min-width: 10rem;
}
section.project-texts-column .group:last-child {
  min-height: 100vh;
  min-height: calc( 100vh - 1.88rem );
}

section.project-media-column {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  width: calc(100% - 30rem);
}
@media (max-width: 1000px) {
  section.project-media-column {
    width: 100%;
    width: 4.1rem;
    position: relative;
    padding-top: 1.88rem;
    cursor: pointer;
    /*
    width: calc( 200vw - 30rem );
    right: auto;
    left: 30rem;
    */
  }
}
@media (max-width: 1600px) {
  section.project-media-column {
    width: calc(100% - 25rem);
  }
}
section.project-media-column > .content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
}
section.project-media-column > .content > .group:last-child > article:last-child > .block:last-child {
  border-bottom: 0;
}

.cover_intro {
  display: block;
  background: black;
  position: fixed;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  z-index: 1000;
  cursor: pointer;
}
@media (max-width: 1000px) {
  .cover_intro {
    display: none;
  }
}
.cover_intro .site-title, .cover_intro .circles, .cover_intro .circle {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  margin: 0;
  padding: 0;
}
.cover_intro .site-title {
  pointer-events: none;
  font-size: 14.8vw;
  line-height: 0.85;
  letter-spacing: -0.04em;
  white-space: nowrap;
  padding: 0.3rem;
  box-sizing: border-box;
  opacity: 0;
  padding: 0.35rem 0.4rem 0.3rem;
  z-index: 1000;
}
.cover_intro .circles {
  padding-top: 1.88rem;
  height: 100%;
  width: 100%;
}
.cover_intro .circles .content {
  position: relative;
  height: 100%;
  width: 100%;
}
.cover_intro .circles .circle {
  width: 4rem;
  height: 4rem;
  opacity: 0;
}
.cover_intro .circles .circle, .cover_intro .circles .circle > *, .cover_intro .circles .circle img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  margin: 0;
}
.cover_intro .circles .circle > .circle-inner {
  overflow: hidden;
  transform-origin: center;
  transform: scale(1);
  transition: transform 0.15s ease;
}
.cover_intro .circles .circle > .circle-inner:hover {
  transform: scale(1.05);
}
.cover_intro img.cover-img {
  position: fixed;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
  background: transparent;
}

.subpages-container {
  position: fixed;
  top: 1.88rem;
  left: 0;
  display: block;
  z-index: 900;
}
.subpages-container .subpage {
  background: black;
  border-right: 1px solid white;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  padding: 0.35rem 0.4rem 0.3rem;
  width: 30rem;
  max-width: 100vw;
  height: calc( 100vh - 1.88rem );
  overflow-y: auto;
}
@media (max-width: 1600px) {
  .subpages-container .subpage {
    width: 25rem;
  }
}
@media (max-width: 1000px) {
  .subpages-container .subpage {
    width: 100vw;
  }
}
.subpages-container .subpage .content {
  height: auto;
  position: relative;
  padding-bottom: 1rem;
}

.block {
  width: 100%;
  position: relative;
  border-bottom: 1px solid white;
}
.block figure, .block img, .block ul, .block li, .block iframe {
  display: block;
  box-sizing: border-box;
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
.block img {
  height: 100%;
}
.block ul {
  list-style: none;
}

@media (max-width: 1000px) {
  .block.block-type-image img {
    margin: auto;
  }
}

.block.block-type-video {
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
}
.block.block-type-video figure, .block.block-type-video div, .block.block-type-video iframe, .block.block-type-video video {
  width: 100%;
}
.block.block-type-video figure {
  position: relative;
  max-height: 100vh;
  overflow: hidden;
  padding: 0.4rem;
}
.block.block-type-video figure .video-ui {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*
  &:after {
    content: 'Play';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    transform: translate(-50%,-50%);
  }
  */
}
.block.block-type-video figure .video-ui:before {
  z-index: 99;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("/assets/svg/play.svg");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}
.block.block-type-video figure .video-container {
  position: relative;
}
.block.block-type-video figure .video-container iframe {
  /*
  position: relative;
  top: auto;
  left: auto;
  height: auto;
  */
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-height: 100vh;
  cursor: pointer;
}
.block.block-type-video.is-playing figure .video-ui:before {
  background-image: none;
}
.block.block-type-video.is-playing figure .video-ui:hover:before {
  background-image: url("/assets/svg/pause.svg");
}

.block.block-type-audio {
  background: transparent;
  background: black;
  min-height: 1rem;
  /*

  audio {
    width: 100%;
    height: 100px;
    color: green;
    &::-webkit-media-controls{
      width: inherit;
      height: inherit;
      position: relative;
      direction: ltr;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
    }
    &::-webkit-media-controls-enclosure {
      width: 100%;
      max-width: none;
      height: 100%;
      flex-shrink: 0;
      bottom: 0;
      text-indent: 0;
      padding: 0;
      box-sizing: border-box;
    }

  }
  */
}
.block.block-type-audio .green-audio-player {
  width: 100%;
  background-color: transparent;
}
.block.block-type-audio .green-audio-player .controls {
  color: white;
  font-family: inherit;
  font-size: inherit;
  line-height: 1;
}
.block.block-type-audio .green-audio-player .controls .controls__current-time {
  min-width: 3rem;
}
.block.block-type-audio .green-audio-player .slider .gap-progress .pin {
  background: white;
}
.block.block-type-audio .green-audio-player .controls__slider.slider {
  background: rgba(255, 255, 255, 0.4);
}
.block.block-type-audio .green-audio-player .slider .gap-progress {
  background: white;
}
.block.block-type-audio .green-audio-player .holder .loading {
  position: absolute;
  left: 0;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.block.block-type-audio .green-audio-player .holder .loading .loading__spinner {
  left: 0;
  top: 0;
  bottom: 0;
}
.block.block-type-audio .green-audio-player .volume .volume__controls {
  z-index: 99;
}
.block.block-type-audio audio {
  display: none;
}

.block.block-type-gallery figure, .block.block-type-gallery ul.slick-slider, .block.block-type-gallery .slick-list, .block.block-type-gallery .slick-track, .block.block-type-gallery .slick-slide, .block.block-type-gallery .slick-slide > .content, .block.block-type-gallery img {
  height: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  display: block;
}
.block.block-type-gallery img {
  width: auto;
  height: 100%;
  object-position: center;
  padding: 0;
}
.block.block-type-gallery .slick-track .slick-slide {
  height: 100%;
  max-width: 100vw;
  max-width: calc(100vw - 30rem - 0.4rem);
  max-width: calc(100vw - 30rem - 3.2rem);
  overflow: hidden;
}
@media (max-width: 1600px) {
  .block.block-type-gallery .slick-track .slick-slide {
    max-width: calc(100vw - 25rem - 1.6rem);
  }
}
@media (max-width: 1000px) {
  .block.block-type-gallery .slick-track .slick-slide {
    max-width: calc(100vw - 1.6rem);
  }
}
.block.block-type-gallery .slick-track .slick-slide > .content {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
}
.block.block-type-gallery .slick-slider img {
  min-height: 100px;
  min-width: 100px;
  max-width: 100%;
  object-fit: unset;
  padding: 0.4rem 0.2rem;
}
.block.block-type-gallery .slick-slider.fixed-ratio img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.block.block-type-gallery .slick-arrow {
  background: transparent;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  z-index: 99;
  color: transparent;
}
.block.block-type-gallery .slick-arrow.slick-prev {
  right: auto;
  /* max size 128*128, hotspot in center */
  /* fallback png, recommended size 32*32 */
  /* fallback css value */
  cursor: url(/assets/img/cursor/arrow-left.svg) 17 17,pointer;
}
.block.block-type-gallery .slick-arrow.slick-next {
  left: auto;
  /* max size 128*128, hotspot in center */
  /* fallback png, recommended size 32*32 */
  /* fallback css value */
  cursor: url(/assets/img/cursor/arrow-right.svg) 17 17,pointer;
}

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