@font-face {
  font-family: "Slussen-Medium";
  src: url("../fonts/slussen-medium.woff2") format("woff2");
}

@font-face {
  font-family: "Slussen-Bold";
  src: url("../fonts/slussen-bold.woff2") format("woff2");
}

@font-face {
  font-family: "Slussen-Extended-Bold";
  src: url("../fonts/slussen-extended-bold.woff2") format("woff2");
}

* {
  margin: 0;
  padding: 0;
}

:root {
  --standard: 1rem;
  --primary: #000;
  --white: #fff;
  --grey: #e1ddd3;
  --brown: #a29c92;

  --text: 1rem;
  --small: 0.75rem;

  --medium: "Slussen-Medium";
  --bold: "Slussen-Bold";
  --extended-bold: "Slussen-Extended-Bold";
}

html {
  font-family: var(--medium);
  color: var(--primary);
}

body {
  font-size: var(--text);
}

img {
  width: 100%;
  transition: opacity 0.4s ease;
}

* {
  scrollbar-width: none;
  /* Firefox */
}

*::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.small {
  font-size: var(--small);
  text-transform: uppercase;
  font-family: var(--medium);
}

.logo {
  font-family: var(--extended-bold);
  display: block;
}

.mobile-logo {
  font-family: var(--extended-bold);
  display: none;
}

.button {
  font-size: var(--small);
  text-transform: uppercase;
  font-family: var(--medium);
  transition: 0.6s;
}

.button:hover {
  opacity: 0.5;
}

/* -------------------- page transitions --------------------*/

body {
  overflow-x: hidden;
}

#swup {
  will-change: opacity;
}

html.is-animating #swup {
  transition: opacity 0.7s cubic-bezier(0.85, 0.09, 0.15, 0.91);
}

html.is-leaving #swup {
  opacity: 0;
}

html.is-rendering #swup {
  opacity: 0;
  animation: swupFadeIn 0.7s cubic-bezier(0.85, 0.09, 0.15, 0.91) forwards;
}

@keyframes swupFadeIn {
  to {
    opacity: 1;
  }
}


/* -------------------- login --------------------*/

.loginarea {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.loginarea button {
  background-color: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  border: 1px solid #000;
  border-radius: 6px;
  cursor: pointer;
}

.loginarea button:hover {
  background-color: #fff;
  color: #000;

}

form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

}

label {
  margin-right: 0.5rem;
}

/* -------------------- cookie --------------------*/

#cc-main {
  /** Change font **/
  --cc-font-family: var(--medium);

  /** Change button primary color to black **/
  --cc-btn-primary-bg: #000000;
  --cc-btn-primary-border-color: #000000;
  --cc-btn-primary-hover-bg: #444444;
  --cc-btn-primary-hover-border-color: #444444;
  --cc-secondary-color: #000000;
  --cc-secondary-hover-bg: #000000;
  --cc-btn-secondary-bg: #dedede;

  /** Also make toggles the same color as the button **/
  --cc-toggle-on-bg: var(--cc-btn-primary-bg);

  /** Make the buttons a bit rounder **/
  --cc-btn-border-radius: 0px;
  --cc-modal-border-radius: 0px;
}


#cc-main #cm__title,
#cc-main .cm__btn {
  font-weight: normal
}

#cc-main #cm__title {
  font-family: var(--medium);
  color: #000;
}

#cc-main .cm__btns {
  border-top: none;
}

/* -------------------- BASE --------------------*/


main {
  padding: var(--padding);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* Or 100% depending on your container setup */
}

footer {
  margin-top: auto;
  /* This pushes the footer to the bottom */
}

li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}

p {
  margin-bottom: 2rem;
}

header,
footer {
  padding: var(--standard) 0;
  width: auto;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
}

.header-inner {
  margin: 0 var(--standard);
  display: flex;
  justify-content: right;
  align-items: center;
}

.topleft {
  padding: 1rem;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
}


.footer-inner {
  margin: 0 var(--standard);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  display: flex;
  gap: var(--standard);
}

.spacer {
  height: 14vh;
  width: 100%;
}

.spacer-small {
  height: 7vh;
  width: 100%;
}

.link::before {
  content: '(';
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.85, 0.09, 0.15, 0.91);
}

.link::after {
  content: ')';
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.85, 0.09, 0.15, 0.91);
}

.link:hover::before,
.link:hover::after,
.link.is-active::before,
.link.is-active::after {
  opacity: 1;
}

/* -------------------- menu --------------------*/


.menu a::before {
  content: '(';
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.85, 0.09, 0.15, 0.91);
}

.menu a::after {
  content: ')';
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.85, 0.09, 0.15, 0.91);
}

.menu a:hover::before,
.menu a:hover::after,
.menu a.is-active::before,
.menu a.is-active::after {
  opacity: 1;
}

/* -------------------- home --------------------*/

.bigname {
  position: fixed;
  top: 47.5vh;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
  font-family: var(--extended-bold);
  font-size: 14vw;
  letter-spacing: -0.04em;
  z-index: 2;
  pointer-events: none;
}

.featured-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: var(--standard);
  bottom: var(--standard);
  left: var(--standard);
  position: fixed;
  z-index: -1;
  filter: grayscale(1) blur(0.5px);
  width: 66.666%;
  opacity: 0.07;
}

.featured-gallery img {
  align-self: self-end;
  justify-self: self-end;
}

.intro {
  height: 100vh;
  height: 100svh;
  width: 100vw;
  width: 100svw;
  position: absolute;
  top: 0;

}

.intro-inner {
  position: absolute;
  bottom: var(--standard);
  left: var(--standard);
  width: 40%;
}

.projectlist {
  position: fixed;
  top: 8rem;
  left: 46vw;
  filter: blur(0.5px);

}

.listproject {
  display: grid;
  font-size: var(--small);
  text-transform: uppercase;
  font-family: var(--medium);
  opacity: 0.07;
  grid-template-columns: 1fr 4fr 1fr 2fr 3fr;
  gap: 1rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, calc((100vw - (2 * var(--standard))) / 12));
  grid-template-rows: repeat(15, auto);
  margin: 5vw var(--standard) 8vw var(--standard);
  gap: 3rem 0;
  grid-auto-flow: row;
  grid-template-areas:
    ". a a a . . . . . . . ."
    ". a a a . . . . . . . ."
    ". a a a . . . . b b b ."
    ". . . . . . . . b b b ."
    ". . . . . . . . b b b ."
    ". . . . c c c c . . . ."
    ". . d d . . . . . . . ."
    ". . d d . . . e e . . ."
    ". . . . . . . e e . . ."
    ". . . f f f . . . . . ."
    ". . . f f f . . . . . ."
    ". . . f f f . . g g g ."
    ". . . . . . . . g g g ."
    ". h h . . . . . g g g ."
    ". h h . . . . . . . . ."
}


.a {
  grid-area: a;
  z-index: 1;
}

.b {
  grid-area: b;
  z-index: 3;
}

.d {
  grid-area: d;
  z-index: 3;
}

.e {
  grid-area: e;
  z-index: 1;
}

.f {
  grid-area: f;
  z-index: 3;
}

.c {
  grid-area: c;
  padding: 6rem 0;
  text-align: center;
  max-width: 48ch;
  margin: 0 auto;
  z-index: 3;
}

.g {
  grid-area: g;
  z-index: 3;
}

.h {
  grid-area: h;
  z-index: 1;
}


.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8vw 5vw;
  margin: 0 auto 5vw auto;
  width: min(1920px, 90vw);
}

.big-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8vw 5vw;
  margin: 0 auto 5vw auto;
  width: min(1920px, 90vw);
}

.intro-text{
    max-width: 46ch;
    margin: 0 auto;
    text-align: center;
}

.card__body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.card__image{
    box-shadow:
      0px 1px 14px 0px rgba(0, 0, 0, 0.14);
}

/* figcaption{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  padding: 0 2rem;
} */

.project-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: filter 0.6s cubic-bezier(0.85, 0.09, 0.15, 0.91);
  display: block;
}

/* -------------------- general height --------------------*/

.viewport-content {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100vh;
  min-height: 100svh;
  gap: var(--space);
}


/* -------------------- Projects home --------------------*/

.project-img-wrapper {
  position: relative;
  display: inline-block;
  line-height: 0;
  overflow: hidden;
  background-color: #fff;
  width: 100%;
}

.project-img-wrapper::before {
  content: "";
  display: block;
  padding-top: 140%;
}

.project-img-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.85, 0.09, 0.15, 0.91);

  mix-blend-mode: difference;
  pointer-events: none;
}

.project-img-wrapper .project-img {
  transition: 0.6s cubic-bezier(0.85, 0.09, 0.15, 0.91);
}


.project:hover .project-img {
  scale: 1.1;
  filter: blur(7px);
}

.project-img-wrapper:hover::after {
  opacity: 1;
}

/* Remove display: flex from the title itself */
.project-title {
  display: block;
  text-align: center;
  margin-top: 1rem;
  padding: 0 2rem;
  hyphens: auto;
  transition: 0.6s cubic-bezier(0.85, 0.09, 0.15, 0.91);

}

.project:hover .project-title {
  opacity: 0.4;
}

/* .project-title::before {
  content: '(';
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.85, 0.09, 0.15, 0.91);
}

.project-title::after {
  content: ')';
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.85, 0.09, 0.15, 0.91);
}

.project:hover .project-title::before,
.project:hover .project-title::after {
  opacity: 1;
} */

.project,
.index-img,
.index-title {
  transition: opacity 0.4s cubic-bezier(0.85, 0.09, 0.15, 0.91);
}

.filter-spacer {
  height: 2rem;
  width: auto;
}

/* -------------------- Intro home --------------------*/



.work-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0vh 0 14vh 0;
}

/*--------------------Project---------------------*/


/* main {
  min-height: 0;
  position: relative;
} */

/* .splide,
.splide__track,
.splide__list {
  height: 100vh !important;
  height: 100svh !important;
}

.splide__slide {
  height: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10vh;
}

.splide__slide img {
  height: 100%;
  width: auto;
  max-width: 80%;
  object-fit: contain;
} */

.title-container {
  position: fixed;
  top: 0;
  left: 50vw;
  transform: translateX(-50%);
  padding: 1rem 0;
  z-index: 9998;

}

.overview-container {
  position: fixed;
  bottom: 0;
  left: 50vw;
  transform: translateX(-50%);
  padding: 1rem 0;
  z-index: 9998;
  cursor: pointer;
}

.project-description {
  max-width: 64ch;
  margin-bottom: var(--standard);
}

.utilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: var(--standard);
  gap: var(--standard);

}



/* -------------------- index slider --------------------*/


/* Initially COLLAPSED */
.index-wrapper {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
  visibility: hidden;
}

/* OPEN state */
.index-wrapper.is-open {
  max-height: 2000px;
  /* Large enough for content */
  opacity: 1;
  visibility: visible;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Trigger Button */
.index-trigger {
  cursor: pointer;
  font-size: var(--small);
  text-transform: uppercase;
  font-family: var(--medium);
}

/* Images */
.index-img {
  cursor: pointer;
  position: relative;
}

/* Ensure clicks hit the div, not the img */
.index-img img {
  pointer-events: none;
}

/* -------------------- filter --------------------*/



/* =========================================
   FILTER DRAWER (ADJUSTED FOR YOUR STRUCTURE)
   ========================================= */

/* 1. The Drawer Container */
.filter-wrapper {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: hsla(0, 0%, 100%, 0.9);
  backdrop-filter: blur(0.5px);
  /* box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12); */
  z-index: 9999;
  height: auto;
  min-height: 2rem;

  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(0);
}

.filter-wrapper.is-open {
  transform: translateY(0);
}

/* 2. The Trigger Link */
.filter-link {
  height: 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  /* background: #ffffffdd;
  backdrop-filter: blur(0.5px); */
  user-select: none;
  font-size: var(--small);
  text-transform: uppercase;
  font-family: var(--medium);
  transition: all 0.2s ease;
  position: relative;
}

/* .filter-link:hover {
  opacity: 0.5;
} */

/* 3. Content Area & Nested Structure */
/* Your PHP has: .filter-wrapper > .filter-group > .filter > .filter-group */
.filter-content {
  padding: 1.5rem;
  width: 100%;
  box-sizing: border-box;
  max-height: none;
  overflow-y: visible;
}

/* If JS adds .scrolling class */
.filter-wrapper.scrolling .filter-content {
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* The outer wrapper for the filter groups (from your PHP) */
.filter {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  /* Space between the two main groups */
  width: auto;
  /* max-width: 800px; */
  /* Optional: limit width on large screens */
  margin: var(--standard) auto;
}

.filter-complete {
  display: flex;
  flex-wrap: wrap;
  /* Space between tags */
  align-items: center;
  flex-direction: row;
}

/* The individual groups inside .filter */
.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  /* Space between tags */
  align-items: center;
  flex-direction: row;
}

/* 4. Filter Tags (with .small modifier) */
.filter-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--small);
  text-transform: uppercase;
  font-family: var(--medium);
  cursor: pointer;
  transition: all 0.4s ease;
  user-select: none;
  line-height: 1;
}

.filter-tag:hover::before {
  content: '●';
  font-size: 1.4em;
  transform: translateY(-10%);
  margin-right: 0.25em;

}

.filter-tag::before {
  content: '○';
  font-size: 1.4em;
  transform: translateY(-10%);
  margin-right: 0.25em;

}

.filter-tag.is-active::before {
  content: '●';
  font-size: 1.4em;
  transform: translateY(-10%);
  margin-right: 0.25em;

}

/* Specific style for the .small class in your PHP */
.filter-tag.small {
  padding: 0.3rem 0.7rem;
  font-size: var(--small);
  border-radius: 2rem;
  /* Slightly less round if preferred, or keep 9999px */
}

/* 5. Project Fade Animations */
.project,
.index-img,
.index-title {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .filter-content {
    padding: 1rem;
  }

  .filter {
    gap: 1rem;
  }

  .filter-tag.small {
    padding: 0.25rem 0.6rem;
    font-size: var(--small);
  }
}

/*--------------------SPLIDE---------------------*/

/* Main slider */
.main-splide,
.main-splide .splide__track,
.main-splide .splide__list {
  height: 100vh;
  height: 100svh;
}

.main-splide .splide__slide {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10vh;
}

.main-splide .splide__slide img {
  height: 100%;
  width: auto;
  max-width: 80%;
  object-fit: contain;
}

.splide__arrows {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.splide__arrow {
  /* all: unset; */
  border: none;
  margin: 0;
  padding: 0;
  pointer-events: initial;
  background-color: #ffffff00;
  font-size: 1.4rem;
  font-family: var(--medium);
  cursor: pointer;
  width: 33.333vw;
}

.splide__arrow--prev {
  padding-left: var(--standard);
  text-align: left;
}

.splide__arrow--next {
  padding-right: var(--standard);
  text-align: right;

}

/* -------------------- index --------------------*/

.index-grid {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  gap: var(--standard);
  padding: 0 var(--standard);
}

.index-title {
  padding: 1rem var(--standard) 0.5rem var(--standard);
}

.index-img {
  overflow: hidden;
  align-self: start;
  line-height: 0;
  min-width: 0;
}

.index-img img {
  display: block;
  max-width: 100%;
  transition: scale 0.4s ease, filter 0.4s ease;
}

.index-img:hover img {
  scale: 1.15;
  filter: blur(7px);
}

.index-name {
  hyphens: auto;
}

/* -------------------- about --------------------*/

.about-grid {
  display: grid;

  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(1, auto);

  grid-auto-flow: row;
  grid-template-areas:
    "i i i i . . j j";
  gap: var(--standard);
  padding: var(--standard);
}

.i {
  grid-area: i;
}

.j {
  grid-area: j;
}

.cv {
  display: grid;
  grid-template-columns: 0.6fr 1fr 1fr;
  gap: 0 var(--standard);
}

.imprint-grid {
  display: grid;
  gap: var(--standard);
  margin: 0 var(--standard);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}


/* -------------------- mobile menu --------------------*/

.menu-trigger {
  display: none;
}

.menu {
  display: inline-block;
}


.mobile-menu {
  display: none;

}

.small-menu {
  position: absolute;
  bottom: var(--standard);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(var(--standard) / 2)
}



/* -------------------------------------- Mobile --------------------------------------*/
/* -------------------------------------- Mobile --------------------------------------*/
/* -------------------------------------- Mobile --------------------------------------*/

/* -------------------------------------- 1200 --------------------------------------*/



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

  .index-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));

  }

}

/* -------------------------------------- 1080 --------------------------------------*/



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

  .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .big-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .index-grid {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .about-grid {
    display: grid;

    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(1, auto);

    grid-auto-flow: row;
    grid-template-areas:
      "i i i i i . j j";
    gap: var(--standard);
    padding: var(--standard);
  }

}

.mobile-visible {
  display: none;
}

/* -------------------------------------- 880 --------------------------------------*/

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

  .about-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);

    grid-auto-flow: row;
    grid-template-areas:
      "j ."
      "i i";
    gap: var(--standard);
    padding: var(--standard);
  }

  .cv {
    grid-template-columns: 1fr 1fr;
    gap: 0 var(--standard);
    margin-bottom: var(--standard);
  }

  .mobile-visible {
    display: block;
  }

  .spacer {
    height: 4rem;
  }

  .logo {
    display: none;
  }

  .mobile-logo {
    display: block;
  }

  :root {
    --text: 0.8rem;
    --small: 0.6rem;
  }

  .project-grid {
    display: grid;
    grid-template-columns: repeat(9, calc((100vw - (2 * var(--standard))) / 9));
    grid-template-rows: repeat(13, auto);
    margin: 5vw var(--standard) 8vw var(--standard);
    gap: 3rem 0;
    grid-auto-flow: row;
    grid-template-areas:
      "a a a . . . . . ."
      "a a a . . . . . ."
      ". . . . . . b b b"
      ". . . . . . b b b"
      ". d d . . . . . ."
      ". d d . . e e . ."
      ". . . . . e e . ."
      ". . f f f . . . ."
      ". . f f f . . . ."
      ". . . . . . g g g"
      "h h . . . . g g g"
      "h h . . . . . . ."
      "c c c c c c c c c"
  }

  .c {
    text-align: left;
  }


  .projectlist {
    position: fixed;
    top: 33vh;
    left: var(--standard);
    filter: blur(0.5px);
  }

  .listproject {
    font-size: 0.5rem;
  }

  .main-splide .splide__slide {
    padding: 10vw;
  }

  .main-splide .splide__slide img {
    max-width: 90%;

  }

  .thumbs-grid {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 10vw;
    padding: 10vw;
  }

  /* -------------------- mobile menu --------------------*/


  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.85, 0.09, 0.15, 0.91);
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: initial;
  }

  .mobile-menu .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-bottom: 4rem;
  }

  .menu-close {
    position: absolute;
    top: var(--standard);
    right: var(--standard);
    cursor: pointer;
  }

  .menu-trigger {
    display: inline-block;
    cursor: pointer;
  }

  .menu {
    display: none;
  }

  .menu a {
    font-size: 2rem;
  }

}

/* -------------------------------------- 680 --------------------------------------*/

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

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10vw 10vw;
    margin: 0 auto 10vw auto;
    width: min(1920px, 80vw);

  }

  .big-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10vw 10vw;
    margin: 0 auto 10vw auto;
    width: min(1920px, 80vw);
  }


  .index-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .imprint-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

}

/* -------------------------------------- 480 --------------------------------------*/

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

  .index-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

}
