main {
  grid-template-columns: repeat(12, 1fr);
}

#page-header {
  margin-bottom: 0;
}

.slider {
  grid-column: 1 / span 12;
}
.swiper {
  overflow: initial;
}
.swiper-slide {
  text-align: left;
  height: auto;
  justify-content: start;
}

.swiper-slide::-webkit-scrollbar {
  width: 0;
  display: none;
}

.swiper-slide-header {
  padding: var(--margin-width) var(--margin-width) calc(var(--margin-width) / 2)
    var(--margin-width);
  position: sticky;
  top: var(--margin-width);
  z-index: 2;
  background-color: var(--light-color);
  display: flex;
  align-items: center;
  column-gap: var(--gutter-width);
  box-shadow: 0 20px 20px var(--light-color);
}

.swiper-slide-header h1 {
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 2.4rem;
}

.swiper-button-prev,
.swiper-button-next {
  display: none;
}

.opening > * {
  display: inline-block;
  font-size: 0.85rem;
}

.opening-color {
  height: 0.7rem;
  width: 0.7rem;
  border-radius: 100%;
  margin-right: 0.5rem;
}

.expositions-container {
  position: sticky;
  top: 180px;
}

.flux-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--season-color);
  z-index: 4;
}

.scroller {
  max-width: 100%;
}

.scroller__inner {
  display: flex;
  gap: var(--margin-width);
  flex-wrap: wrap;
  padding-block: 0.5rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 60s) linear infinite;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.flux-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.flux-item * {
  text-wrap: nowrap;
  font-size: 1rem;
}

.flux-item h3 {
  text-transform: capitalize;
}

.flux-item img {
  height: 2rem;
}
/* 
.flux-item br {
  display: contents;
} */

.focus {
  width: fit-content;
  position: relative;
  display: flex;
  margin: auto;
}

.focus a {
  padding: 2rem 0;
  transition: all 0.3s ease-in-out;
}

.focus-date {
  text-transform: capitalize;
}

.focus h1 {
  font-family: "ReviewWide";
  text-align: center;
  color: var(--season-color);
}

footer {
  padding: var(--gutter-width) var(--margin-width) 4rem var(--margin-width);
}

@media screen and (max-width: 1000px) {
  .swiper-button-next,
  .swiper-button-prev {
    position: relative;
    width: 10%;
    height: 100%;
    top: 0;
    margin: 0;
    color: var(--dark-color);
    font-weight: bold;
    top: 0;
    position: absolute;
    display: flex;
  }
  .swiper-button-prev {
    left: -1.5rem;
    justify-content: center;
  }
  .swiper-button-next {
    right: -1.5rem;
    justify-content: center;
  }
  .expositions-container {
    position: relative;
    top: auto;
  }
  .swiper-slide-header {
    top: 0;
  }

  .swiper-slide {
    max-height: calc(100vh - 12rem);
    overflow: auto;
  }
}
