* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: var(--color-text);
}

a:visited {
    color: inherit;
  }

html {
}

img {
  display: block;
}

.visually-hidden {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip: rect(1px 1px 1px 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
}

/* Some variables are “borrowed” from getkirby.com */

:root {
  --max-content-width: 1400px;
  --gutter: 16px;

  --header-height: 38px;

  --spacing: 60px;
  --spacing-s: 16px;
  --spacing-m: 24px;
  --spacing-l: 42px;

  --color-offwhite: #c1c1c1;

  --color-page: #ffffff;
  --color-text: #000000;

  --border-width: 16px;
  --border-color: #000000;

  --color-accent: #734fe8;
}

@media screen and (max-width: 1079px) {

:root {
    --gutter: 24px;
    --spacing: 40px
}
  }

@media screen and (max-width: 719px) {

:root {
    --gutter: 16px
}
  }

/*
 * Typography
 * Base typography styles
 */

/* Font Face Declarations */

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: fallback;
}

:root {
    --font-headlines:
        "Inter", -apple-system, "system-ui", Inter, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
    --font-copy:
        "Inter", -apple-system, "system-ui", Inter, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
        "Helvetica Neue", sans-serif;
}

html {
    font-size: 62.5%;
}

@media screen and (max-width: 1079px) {

html {
        font-size: 50%
}
    }

@media screen and (max-width: 719px) {

html {
        font-size: 50%
}
    }

body {
    font-family: var(--font-copy);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-text);
    font-variation-settings: "wght" 400;
}

h1, h2, h3, h4, h5, h6, .home-name, .home-title {
    font-family: var(--font-headlines);

    margin-bottom: 0.4em;
    line-height: 1.4em;
    font-size: 1.6rem;

    font-variation-settings: "wght" 400;
}

h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong, .home-name strong, .home-title strong {
        font-variation-settings: "wght" 600;
    }

h1, .home-name, .home-title {
    font-size: 2rem;
}

h2 {
}

h3 {
}

h4 {
}

p {
    margin-bottom: 0.4em;
    line-height: 1.4em;
    font-size: 1.6rem;
    font-weight: 400;
    font-variation-settings: "wght" 400;
}

p a {
        text-decoration: underline;
    }

a {
    color: var(--color-text);
}

a:hover {
        color: var(--color-accent);
    }

a:hover {
}

strong, b {
    font-weight: 600;
}

em, i {
    font-style: italic;
}

blockquote {
    margin: var(--space-6) 0;
    padding: var(--space-4) var(--space-6);
    border-left: 4px solid var(--color-gray);

    line-height: 1.2em;
    opacity: 0.8;
    font-size: 3rem;
    margin: 1em auto;
    text-align: center;

    padding: 0 1em;
}

blockquote em {
        font-size: 1.6rem;
    }

code {
    font-family: var(--font-family-mono);
    font-size: var(--font-size-sm);
    background-color: var(--color-gray-light);
    padding: var(--space-1) var(--space-2);
    border-radius: var(--border-radius);
}

pre {
    font-family: var(--font-family-mono);
    font-size: var(--font-size-sm);
    background-color: var(--color-gray-light);
    padding: var(--space-4);
    margin: var(--space-4) 0;
    border-radius: var(--border-radius);
    overflow-x: auto;
}

pre code {
    padding: 0;
    background-color: transparent;
}

hr {
    border: 0;
    height: 1px;
    background-color: var(--color-gray);
    margin: var(--space-6) 0;
}

/* Lists */

ul, ol {
    margin: var(--space-4) 0;
    padding-left: var(--space-6);
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

li {
    margin-bottom: var(--space-2);
}

figcaption {
    font-size: 1.6rem;
}

.credits {
    font-size: 1.2rem;
    text-align: right;
    opacity: 0.5;
    display: block;
}

hr {
    border-bottom: 1px solid var(--color-text);
    margin: 10px 0 var(--gutter) 0;
    opacity: 0.2;
}

/* COMPONENTS */

.full-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 
 * Navigation
 * Navigation component styles
 */

nav ul {
    display: flex;
    list-style-type: none;
}

@media screen and (max-width: 719px) {

#work-navigation {
        display: none
}

        body.nav-open #work-navigation {
            display: block;
        }
    }

#work-navigation {
    width: 100%;
}

#work-navigation ul {
        width: 100%;

        display: grid;
        grid-template-columns:
            max-content
            1fr
            max-content;
    }

#work-navigation ul li {
            display: contents;
        }

#work-navigation ul li[aria-current="page"] a {
                color: var(--color-accent);
            }

#work-navigation ul li a {
                grid-column: 1 / -1;
                display: contents;
                width: 100%;
            }

#work-navigation ul li a:hover {
                    color: var(--color-accent);
                }

#work-navigation ul li a.linked {
                    color: var(--color-accent);
                    transition: color 0.2s ease;
                }

#work-navigation ul li span {
                border-top: 1px solid var(--color-text);
                padding: 0.25em 0;
            }

#work-navigation ul li:last-child span {
                    border-bottom: 1px solid var(--color-text);
                }

#work-navigation ul li span.col-year {
                grid-column: 1;
            }

#work-navigation ul li span.col-title {
                grid-column: 2;
                padding-left: 0.5em;
            }

#work-navigation ul li span.col-category {
                grid-column: 3;
                text-align: right;
            }

#menu-toggle {
    display: none;
}

#menu-toggle i {
        pointer-events: none;
        width: 1.5em;
        height: 1.5em;
        display: flex;
    }

#menu-toggle i.close {
        display: none;
        background-color: var(--color-accent);
        mask-image: url("../icons/close.svg");
        -webkit-mask-image: url("../icons/close.svg");
    }

#menu-toggle i.burger {
        display: flex;
        background-color: var(--color-accent);
        mask-image: url("../icons/burger.svg");
        -webkit-mask-image: url("../icons/burger.svg");
    }

#menu-toggle svg path, #menu-toggle svg rect, #menu-toggle svg circle {
            fill: var(--color-text);
        }

@media screen and (max-width: 719px) {

#menu-toggle {
        display: flex;

        align-items: center;
        justify-content: center
}
    }

#menu-toggle[aria-expanded="true"] i.close {
            display: flex;
        }

#menu-toggle[aria-expanded="true"] i.burger {
            display: none;
        }

ul#secondary-nav {
    display: flex;
    flex-direction: row;
    list-style-type: none;

    margin-bottom: var(--gutter);
    padding: 0.5em 0;
}

@media screen and (max-width: 719px) {

ul#secondary-nav {
        display: none
}

        body.nav-open ul#secondary-nav {
            display: flex;
        }
    }

ul#secondary-nav li a {
            display: block;

            text-transform: none;
            line-height: 100%;

            font-style: italic;
            font-variation-settings: "wght" 400;
        }

ul#secondary-nav li a:after {
                content: "·";
                margin: 0 0.5em;
                display: inline-block;
            }

ul#secondary-nav li:last-child a:after {
            content: "";
        }

ul#secondary-nav a[aria-current="page"] {
        color: var(--color-accent);
    }

.field label {
  display: block;
  font-weight: 600;
}

.field label abbr {
  color: var(--color-gray-500);
}

.field input[type="text"], .field input[type="email"], .field input[type="textarea"], .field .StripeElement {
  margin-top: var(--spacing-s);
  box-sizing: border-box;
  width: 100%;
  padding: var(--spacing-s);
  border: 1px solid var(--color-gray-400);
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  background-color: var(--color-page);
}

.field[data-type="radio"], .field[data-type="checkbox"] {
  display: flex;
  align-items: start;
}

.field[data-type="radio"] label, .field[data-type="checkbox"] label {
  font-weight: 400;
}

.field[data-type="radio"] input, .field[data-type="checkbox"] input {
  height: calc(1rem * var(--line-height));
  margin-right: var(--spacing-s);
  flex-shrink: 0;
}

.field[data-type="radio"] input:disabled + label, .field[data-type="checkbox"] input:disabled + label {
  color: var(--color-gray-600);
}

.field .error {
  margin-top: var(--spacing-s);
  font-size: var(--text-s);
}

.footer {
  margin-top: auto;
  position: relative;
}

@media screen and (max-width: 719px) {
    body.work .footer .dogtag {
      display: none;
    }
  }

.footer nav {
    font-family: var(--font-headlines);
  }

.footer nav ul {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-end;
      gap: 0px;
    }

.footer nav ul a {
        letter-spacing: 0.08em;
      }

.footer .legal-links ul {
      list-style-type: none;
      justify-content: center;
      align-items: flex-start;
    }

.footer .legal-links ul li a {
          text-decoration: none;
          color: var(--color-text);
        }

.footer .legal-links ul li a:hover {
            text-decoration: underline;
          }

.bottomdog {
  margin-top: auto;
  padding: var(--gutter);
}

.bottomdog .dogtag {
    display: none;
  }

@media screen and (max-width: 719px) {
      body.work .bottomdog .dogtag {
        display: flex;
        flex-direction: row;

        border-top: 1px solid var(--color-text);
        border-bottom: none;
        padding-bottom: 0;

        padding-top: var(--gutter);
      }
    }

.layout {
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
  row-gap: var(--border-width);
}

@media screen and (max-width: 1079px) {
  }

@media screen and (max-width: 719px) {

.grid {
    grid-template-columns: 1fr;
    gap: 0;
    row-gap: 4px
}
  }

.grid .grid-item {
    display: block;
    position: relative;
  }

.columns-1 .grid-item {
  grid-column-start: span 12;
}

.columns-2 .grid-item {
  grid-column-start: span 6;
}

.columns-3 .grid-item {
  grid-column-start: span 4;
}

.columns-4 .grid-item {
  grid-column-start: span 3;
}

.column {
  grid-column-start: span var(--span);
}

.full-width, .carousel-block {
  max-width: none !important;
  margin-left: calc(var(--gutter) * -1) !important;
  margin-right: calc(var(--gutter) * -1) !important;
}

.flexgrid, .article-grid {
  --grid-gutter: 24px;

  display: flex;
  flex-direction: row;
  width: 100%;
  gap: var(--grid-gutter);
}

@media screen and (max-width: 719px) {

.flexgrid, .article-grid {
    --grid-gutter: 16px
}
  }

.flexgrid.columns-4, .article-grid.columns-4 {
    --item-width: calc(25% - var(--grid-gutter) + var(--grid-gutter) / 4);
  }

@media screen and (max-width: 719px) {

.flexgrid.columns-4, .article-grid.columns-4 {
      --item-width: calc(50% - var(--grid-gutter) + var(--grid-gutter) / 2)
  }
    }

.flexgrid.columns-3, .article-grid.columns-3 {
    --item-width: calc(33% - var(--grid-gutter) + var(--grid-gutter) / 3);
  }

.flexgrid.columns-2, .article-grid.columns-2 {
    --item-width: calc(50% - var(--grid-gutter) + var(--grid-gutter) / 2);
  }

.flexgrid.columns-1, .article-grid.columns-1 {
    --item-width: 100%;
    --grid-gutter: 0px;
  }

.nav-header, .work-header, .block-header {
  /*  min-height: var(--header-height);*/

  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 719px) {

.nav-header, .work-header, .block-header {
    min-height: 0;
    padding-bottom: 6px
}
  }

@media screen and (max-width: 719px) {

.nav-header h1, .nav-header .home-name, .nav-header .home-title, .work-header h1, .work-header .home-name, .work-header .home-title, .block-header h1, .block-header .home-name, .block-header .home-title {
      font-size: 4.5vw
  }
    }

.header {
  width: 100%;
  position: relative;
}

.nav-header {

  gap: 10px;
  font-size: 2rem;
}

.nav-header .logo {
    position: relative;
    width: 100%;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }

@media screen and (max-width: 719px) {

.nav-header .home-name {
      margin: 0
  }
    }

.nav-header .home-title {
    color: var(--color-accent);
  }

@media screen and (max-width: 719px) {

.nav-header .home-title {
      margin: 0
  }
    }

@media screen and (max-width: 719px) {

.nav-header {
    min-height: 0
}
  }

.dogtag {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1vw;
}

@media screen and (max-width: 719px) {

.dogtag {
    gap: 10px;

    border-bottom: 1px solid var(--color-text);

    padding-bottom: var(--gutter)
}
  }

.dogtag .avatar {
    height: 100%;
    width: 7vw;

    aspect-ratio: 1/1;
    border-radius: 100px;
    overflow: hidden;
  }

@media screen and (max-width: 719px) {

.dogtag .avatar {
      width: 15vw
  }
    }

.dogtag .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

.dogtag .content p, .dogtag .content a {
      font-size: 2.3vw;
      margin: 0;
      line-height: 100%;
    }

@media screen and (max-width: 719px) {

.dogtag .content p, .dogtag .content a {
        font-size: 2rem;
        line-height: 1.2em
    }
      }

.dogtag .content a {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.2em;

      color: var(--color-accent);
    }

.dogtag .content a:hover:before {
        background-color: var(--color-accent);
      }

.dogtag .content a:before {
      content: "";
      display: inline-block;
      width: 1em;
      height: 1em;
      background-color: var(--color-accent);
      mask-image: url("../icons/arrow.svg");
      mask-position: center;
      mask-repeat: no-repeat;
      mask-size: contain;
      -webkit-mask-image: url("../icons/arrow.svg");
    }

.notice {
  padding: var(--spacing-m);
  background-color: var(--color-gray-300);
}

:root {
    --page-count: 20;
    --page-scroll: 25;
    --underline: rgba(64, 64, 64, 0.4);
    --spine: #000;
    --cover: #1a1a1a;
    --bg: #4d4d4d;
    --insert: #d9d9d9;
    --page: #e6e6e6;
    --radius: 2px;
}

.book-block {
    position: relative;
    border: 1px solid rgb(214, 214, 214);

    margin: 40px 0;
}

.book-block img {
        width: 100%;
        height: auto;

        z-index: 2;
    }

.page {
    height: auto; /* Höhe wird durch Inhalt bestimmt */
    width: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.page .page__number {
    position: absolute;
    color: #808080;
    bottom: 1rem;
    font-size: 1vmin;
}

.page__half--front .page__number {
    right: 1rem;
}

.page__half--back .page__number {
    left: 1rem;
}

.page__half {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto; /* Höhe wird durch Inhalt bestimmt */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: rotateY(calc(var(--rotation) * 1deg)) translate3d(0, 0, calc((0.5 * var(--coefficient)) * 1px));
}

.page__half--front {
    --rotation: 0;
    --coefficient: 0;
    backface-visibility: hidden;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.page__half--back {
    --rotation: 180;
    --coefficient: 2;
    border-radius: var(--radius) 0 0 var(--radius);
}

.book {
    position: absolute;
    width: 100%;
    height: 100%;
    min-width: 300px;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Zentriert */
    transform-style: preserve-3d;
    perspective: 3000px;
    display: flex; /* Flexbox für nebeneinander liegende Seiten */
}

.ghost__page {
    display: flex;
    flex-direction: row;
    visibility: hidden;
}

.ghost__page img {
        width: 50%;
    }

.first__page {
    top: 0;
    left: 0;
    width: 50%; /* Linke Hälfte des Buches */
    transform-origin: right center; /* Drehpunkt rechte Mitte */
    position: absolute;
    z-index: 0;
    border-radius: var(--radius) 0 0 var(--radius); /* Abgerundete Ecken links */
}

.final__page {
    top: 0;
    left: 50%; /* Rechte Hälfte des Buches */
    width: 50%; /* Halbe Breite des Buches */
    position: absolute;
    z-index: 0;
    border-radius: 0 var(--radius) var(--radius) 0; /* Abgerundete Ecken rechts */
}

.book__page {
    position: absolute;
    left: 50%; /* Beginnt in der Mitte des Buches */
    top: 0;
    border-radius: 0 var(--radius) var(--radius) 0; /* Abgerundete Ecken rechts */
    height: auto; /* Höhe wird durch Inhalt bestimmt */
    width: 50%; /* Halbe Breite des Buches */
    transform-origin: left center; /* Drehpunkt linke Mitte */
    backface-visibility: visible; /* Rückseite sichtbar machen */
    /* Wir lassen die Z-Indizes von JavaScript verwalten */
}

.book__page:not(.book__cover) .page__half {
    background:
        repeating-linear-gradient(
                0deg,
                transparent 0 1rem,
                var(--underline) 1rem calc(1rem + 1px),
                transparent calc(1rem + 1px)
            )
            0 1rem/100% 100% no-repeat,
        var(--page);
}

.carousel-block {
    /* @extend %scribble; */

    background-color: var(--border-color);
    padding: var(--border-width) 0;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.control-zone {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 25%;
    z-index: 10;
    cursor: pointer;

    pointer-events: none;
}

@media (hover: hover) {
    .control-zone {
        pointer-events: auto;
    }
}

.control-zone.left {
    left: 0;
}

.control-zone.right {
    right: 0;
}

.control-zone:hover {
}

.control-zone.left:hover {
}

.control-zone.right:hover {
}

.control-zone::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.control-zone.left::after {
    left: 40px;
}

.control-zone.right::after {
    right: 40px;
}

.control-zone:hover::after {
    opacity: 1;
}

.carousel-container {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000;
    will-change: scroll-position;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.carousel-container:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    flex-direction: row;
    gap: 20px;
    will-change: transform, scroll-position;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000;
}

.blocks .text {
        margin-bottom: var(--gutter);
    }

@media screen and (max-width: 719px) {

.blocks .text {
            margin: 0
    }
        }

.blocks .text a {
            color: var(--color-accent);
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 0.1em;
        }

.blocks .text a:before {
            content: "";
            display: inline-block;
            width: 1em;
            height: 1em;

            background-color: var(--color-accent);
            mask-image: url("../icons/arrow.svg");
            -webkit-mask-image: url("../icons/arrow.svg");
            mask-position: center;
            mask-repeat: no-repeat;
            mask-size: contain;
        }

.blocks .text p {
            font-size: 1.6rem;
        }

@media screen and (max-width: 719px) {

.blocks .text p {
                font-size: 1.6rem
        }
            }

.blocks .text em {
            font-style: normal;
            opacity: 0.5;
        }

.block {
}

.works-block {
    margin: 0 auto;
    width: 100%;
}

.works-block .grid-item {
        scroll-margin-top: var(--gutter);
    }

.works-block .grid-item figure figcaption {
                display: none;
            }

.works-grid {
    display: flex;
    flex-direction: column;
    gap: var(--gutter);
}

.article-grid .article {
        width: var(--item-width);
        background-color: #fff;
        padding: 20px;
        gap: 24px;
    }

.gallery {
    margin-bottom: var(--gutter);
}

.gallery ul {
        list-style-type: none;

        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: var(--gutter);
        row-gap: var(--border-width);
    }

.gallery ul li {
            max-height: 95vh;
        }

figure.image-block {
    margin-bottom: var(--gutter);
    width: 100%;
    height: 100%;
    max-height: 95vh;
}

figure figcaption.image-caption {
        position: absolute;
        transform: translateY(100%);
        bottom: 0px;
        left: 0px;
        width: 100%;
        text-align: right;

        padding: 3px 10px;

        font-style: italic;
    }

figure img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: var(--focus);

        max-height: 90vh;
    }

.fullscreen {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    z-index: 1000;
}

/* 
 * Work Navigation
 * Navigation zwischen Work-Seiten derselben Kategorie
 */

.next-link {
    display: inline-block;
    width: 3vw;
    height: 3vw;

    background-color: var(--color-text);
    mask-size: 100%;
    mask-image: url("../icons/caret.svg");
    -webkit-mask-image: url("../icons/caret.svg");
}

.next-link:hover {
        background-color: var(--color-accent);
    }

@media screen and (max-width: 719px) {

.next-link {
        height: 3rem;
        width: 3rem;
        background-color: var(--color-accent)
}
    }

@media screen and (max-width: 719px) {

.work-pagingation {
        position: absolute;
        top: -20px;
        right: var(--gutter);
}
    }

.work-pagingation {
    padding: 0;

    margin-top: auto;
}

.prev-next-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-headlines);
}

img-comparison-slider {
    visibility: hidden;
    width: 100%;

    cursor: col-resize !important;
}

img-comparison-slider img {
        width: 100%;
        height: 100%;
    }

img-comparison-slider:focus {
        border: 0;
        outline: 0;
    }

img-comparison-slider {

    --divider-color: #fff;
    --default-handle-color: var(--color-accent);
}

img-comparison-slider::part(first) {
    border: 4px solid red;
}

img-comparison-slider [slot="first"] {
}

img-comparison-slider [slot="second"] {
    display: none;
}

img-comparison-slider.rendered {
    visibility: inherit;
}

img-comparison-slider.rendered [slot="second"] {
    display: unset;
}

/* Your layout styles assumed existing */

[data-zoomable="true"] {
    cursor: zoom-in;
}

.gallery-close, .gallery-nav {
    display: none;
}

.gallery-nav {
    width: 100%;

    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.gallery-nav .gallery-prev {
        mask-image: url(../icons/caret.svg);
        -webkit-mask-image: url(../icons/caret.svg);
        transform: rotate(180deg);
    }

.gallery-nav .gallery-next {
        mask-image: url(../icons/caret.svg);
        -webkit-mask-image: url(../icons/caret.svg);
    }

.wrapper.zoomed {
    position: fixed;
    z-index: 500;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-page);

    padding: var(--gutter);

    display: flex;
    flex-direction: column;
}

.wrapper.zoomed .blocks .text {
        display: none;
    }

.wrapper.zoomed button {
        display: inline-block;
        width: 3vw;
        height: 3vw;
        background-color: var(--color-accent);
        mask-size: 100%;
        font-size: 0;
    }

@media screen and (max-width: 719px) {

.wrapper.zoomed button {
            width: 3rem;
            height: 3rem
    }
        }

.wrapper.zoomed .layout, .wrapper.zoomed .grid, .wrapper.zoomed .column, .wrapper.zoomed .blocks, .wrapper.zoomed .grid-item {
        width: 100%;
        height: 100%;
        position: static;
    }

.wrapper.zoomed .gallery-close, .wrapper.zoomed .gallery-nav {
        display: flex;
    }

.wrapper.zoomed .gallery-close {
        mask-image: url(../icons/close.svg);
        -webkit-mask-image: url(../icons/close.svg);
    }

.wrapper.zoomed .work-header {
        padding-bottom: var(--gutter);
        gap: 20px;
        align-items: center;
    }

.wrapper.zoomed .work-header h1, .wrapper.zoomed .work-header .home-name, .wrapper.zoomed .work-header .home-title {
            margin-bottom: 0;
        }

.wrapper.zoomed .work-header .category {
            margin-left: auto;
        }

.wrapper.zoomed .work-content {
        flex: 1;

        position: relative;
        width: 100%;
    }

.wrapper.zoomed .work-content [data-zoomable="true"] {
            position: absolute;
            z-index: 1;
            width: 100%;
            height: 100%;
            top: 0px;
            left: 0px;

            cursor: zoom-out;

            opacity: 0;
        }

.wrapper.zoomed .work-content [data-zoomable="true"].active {
                z-index: 99;
                opacity: 1;
            }

.wrapper.zoomed .work-footer {
        padding-top: var(--gutter);
        position: relative;
        z-index: 30;
    }

/* TEMPLATES */

aside {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 50%;
    height: 100%;

    padding: var(--gutter);
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 719px) {

aside {
        position: relative;
        width: 100%;
        margin: 0;
        gap: 10px
}
    }

main {
    margin-left: 50%;
    width: 50%;

    padding: var(--gutter);

    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 719px) {

main {
        width: 100%;
        margin: 0;
        min-height: 0;
        flex: 1;
        padding-top: 0
}
    }

article.article {
    display: flex;
    flex-direction: row;
    gap: var(--gutter);
}

body {
    min-height: 100vh;
    background-color: var(--color-page);
    color: var(--color-text);
    display: flex;
    flex-direction: column;
}
