@font-face {
  font-family: 'Konrad-Regular';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../assets/fonts/NNKonradSTD-Regular.woff2") format("woff2"),
    url("../assets/fonts/NNKonradSTD-Regular.woff") format("woff");
}

:root {
  font-family: 'Konrad-Regular', Times, serif;
  font-feature-settings: 'liga' 1, 'calt' 1;
}

html {
  font-family: 'Konrad-Regular';
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  overflow-y: hidden;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  background-color: #121212;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: hidden;
  scrollbar-width: none;
  box-sizing: border-box;
  font-family: 'Konrad-Regular', Times, serif;
  font-size: 1.7vh;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255);
}

body::-webkit-scrollbar {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

/* ––––––––––––––––––– BUTTONS & LINKS ––––––––––––––––––– */
button {
  padding: 0;
  border: none;
  text-align: center;
  text-decoration: none;
  background: none;
  font-family: 'Konrad-Regular', Times, serif;
  font-size: 1.7vh;
  font-style: normal;
  font-weight: 100;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255);
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
}

button:hover {
  text-shadow: 0 0 10px #cdcdcd;
  cursor: pointer;
}

a {
  text-decoration: none;
}

a:link,
a:visited,
a:active {
  color: rgba(255, 255, 255);
}

a:hover {
  text-shadow: 0 0 10px #cdcdcd;
}

ul {
  padding-inline-start: 0;
  list-style-type: none;
}

ul>li {
  display: inline-block;
}

/* ––––––––––––––––––– HEADER ––––––––––––––––––– */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 5vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  background: transparent;
  z-index: 500;
  font-family: 'Konrad-Regular', Times, serif;
  font-size: 1.7vh;
  font-weight: 100;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255);
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
}

.menu {
  display: grid;
}

.menu ul {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.menu a {
  text-decoration: none;
}

/* ––––––––––––––––––– FOOTER ––––––––––––––––––– */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  background: transparent;
  z-index: 500;
  font-family: 'Konrad-Regular', Times, serif;
  font-size: 1.7vh;
  font-weight: 100;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255);
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
}

.description {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 200px;
  min-height: 2.2vh;
  height: 100%;
}

.projectinfo-footer {
  margin: 0;
  padding: 0;
  pointer-events: none;
}

body.page-home .projectinfo-footer {
  pointer-events: auto;
  cursor: pointer;
}

body.page-home .projectinfo-footer:hover {
  text-shadow: 0 0 10px #cdcdcd;
}

/* ––––––––––––––––––– MAIN CONTENT ––––––––––––––––––– */
.main-content {
  position: fixed;
  top: 5vh;
  bottom: 5vh;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ––––––––––––––––––– HOME — ZOOM STACK ––––––––––––––––––– */
.zoom-viewport {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1500px;
  pointer-events: none;
}

.image-stack {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  pointer-events: none;
}

.image-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 90vw;
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0;
  transition: opacity 0.2s ease;
  cursor: pointer;
  pointer-events: none;
  display: block;
}

.image-card.visible {
  opacity: 1;
}

.image-card picture {
  display: block;
  line-height: 0;
}

.image-card img {
  display: block;
  width: auto;
  height: 70vh;
  max-width: 90vw;
  max-height: 70vh;
  object-fit: contain;
  pointer-events: none;
}

/* ––––––––––––––––––– PROJECTS LIST  ––––––––––––––––––– */
body.page-projects .footer {
  display: none;
}

.projects-overview {
  position: relative;
  z-index: 1;
  padding: 0 15px;
  overflow-y: scroll;
  height: 100vh;
}

.projects-list {
  width: 100%;
  margin-top: 8rem;
}

.project-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  cursor: pointer;
  padding: 3rem 0;
}

.proj-year {
  flex-shrink: 0;
  margin-left: 2rem;
  opacity: 1;
}

.proj-info {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.project-row:hover .proj-title,
.project-row:hover .proj-year {
  text-shadow: 0 0 10px #cdcdcd;
}

.project-row:hover .proj-info {
  opacity: 1;
}

.preview-badge {
  opacity: 0.5;
}

.commissioned-badge {
  opacity: 1;
}

/* ––––––––––––––––––– PREVIEW IMAGES ––––––––––––––––––– */
.preview-images-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.project-image-preview {
  position: fixed;
  width: 250px;
  height: 250px;
  aspect-ratio: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  right: 5%;
  z-index: 0;
  --y-offset: 0px;
  overflow: hidden;
}

.project-image-preview.active {
  opacity: 1;
}

.preview-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  object-fit: contain;
  background: transparent;
}

.preview-img.active {
  opacity: 1;
}

.projects-menu-container .project-image-preview {
  --y-offset: -40vh;
}

.bubble-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 300;
  perspective: 1200px;
}

/* ––––––––––––––––––– ROW PREVIEW OVERLAY ––––––––––––––––––– */
.row-preview-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 0;
}

.row-preview-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + var(--ox, 0vw)), calc(-50% + var(--oy, 0vh))) scale(0.04);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.row-preview-card.in {
  opacity: 1;
  transform: translate(calc(-50% + var(--ox, 0vw)), calc(-50% + var(--oy, 0vh))) scale(1);
}

.row-preview-overlay.leaving .row-preview-card {
  opacity: 0;
  transform: translate(calc(-50% + var(--ox, 0vw)), calc(-50% + var(--oy, 0vh))) scale(0.04);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.row-preview-card img {
  display: block;
  height: 22vh;
  width: auto;
  max-width: 32vw;
  max-height: 22vh;
  object-fit: contain;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ––––––––––––––––––– SWIPER ––––––––––––––––––– */
.swiper {
  width: 100%;
  height: 100%;
  background: transparent;
  overflow: hidden;
  z-index: 1;
  scrollbar-width: none;
}

.swiper::-webkit-scrollbar,
.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-wrapper {
  height: 100%;
  margin: 0;
  padding: 0;
  will-change: transform;
  scrollbar-width: none;
}

.swiper-slide {
  width: auto !important;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-slide img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

#swiperView {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: #121212;
}

/* ––––––––––––––––––– PROJECT PAGE ––––––––––––––––––– */
.show-overview-btn {
  color: rgba(255, 255, 255);
}

.scroll-mobile-btn {
  display: none;
}

.overview-view {
  padding: 0 15px;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: 100%;
  z-index: 1;
}

.overview-images {
  flex-shrink: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  margin-top: 0;
  margin-bottom: 3rem;
}

.overview-image {
  flex-shrink: 0;
}

.overview-image img {
  display: block;
  object-fit: contain;
}

.overview-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 0 1rem 0;
  margin-top: auto;
}

.project-text {
  text-transform: none;
  width: 40%;
  position: fixed;
  bottom: 5vh;
  left: 15px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
  transition-delay: 150ms;
  padding-top: 0.5rem;
}

.project-text p {
  margin: 0 0 0.5em 0;
}

.project-text p:last-child {
  margin-bottom: 0;
}

.project-navigation {
  position: fixed;
  justify-content: flex-end;
  bottom: 5vh;
  right: 15px;
  display: flex;
  align-items: flex-end;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
  padding-top: 1rem;
  width: auto;
  gap: 2rem;
}

.project-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
}

.project-nav-link.prev {
  align-items: flex-start;
}

.project-nav-link.next {
  align-items: flex-end;
}

.nav-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  order: 1;
  white-space: nowrap;
}

.nav-thumbnail {
  order: 2;
  width: 120px;
  height: 80px;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.project-nav-link:hover .nav-thumbnail {
  opacity: 1;
}

.nav-label {
  white-space: nowrap;
}

.exhibition-separator {
  display: none;
}

/* ––––––––––––––––––– EXHIBITIONS LIST — Desktop/Mobile toggle ––––––––––––––––––– */
.exh-desktop { display: inline; }
.exh-mobile  { display: none; }

/* ––––––––––––––––––– INFO PAGE ––––––––––––––––––– */
.info-page {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  padding: 0 15px;
  max-width: 100%;
}

/* Desktop: make info-page a scrollable container */
@media (min-width: 769px) {
  body.page-info .info-page {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 0;
    padding: 2vh 15px 2vh 15px;
    overflow-y: auto;
    box-sizing: border-box;
  }

  body.page-info .footer,
  body.page-imprint .footer {
    display: none;
  }

  .info-fixed-links {
    z-index: 600;
  }
}

.info-row {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 1rem 0;
}

.info-label {
  padding-top: 0.1rem;
}

.info-content {
  grid-column: 2/4;
  font-size: 1.7vh;
}

.info-content p {
  text-transform: none;
  margin: 0 0 0.5rem 0;
  font-size: 1.7vh;
}

.info-content h1,
.info-content h2,
.info-content h3,
.info-content h4 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0 0 0.5rem 0;
}

.info-photo {
  position: fixed;
  top: 4rem;
  right: 15px;
}

.info-photo .profile-pic {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  display: block;
}

.info-list {
  padding: 0;
  margin: 0 0 0.5rem 0;
}

.info-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 0.15rem 0;
  list-style: none;
}

.info-title {
  text-transform: none;
}

a.info-title:hover {
  text-shadow: 0 0 10px #cdcdcd;
}

.info-fixed-links {
  position: fixed;
  bottom: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  z-index: 500;
}

/* ––––––––––––––––––– MOBILE ––––––––––––––––––– */

@media (max-width: 768px) {

  .main-content {
    top: 0 !important;
    bottom: 0 !important;
    /*padding: 0 12px;*/
    box-sizing: border-box;
    overflow: hidden;
  }

  body.page-exhibition .main-content {
    overflow: visible;
    padding: 0;
  }

  /* ––––––––––––––––––– MOBILE Header ––––––––––––––––––– */

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 12px 12px 0px 12px;
    gap: 0;
    z-index: 500;
    background: transparent;
  }

  .header .logo {
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
    line-height: 1;
    padding: 0;
    margin: 0;
    letter-spacing: 0;
    font-size: 3vw;
    opacity: 0;
    transition: opacity 0.15s ease;
  }

  .header .logo.ready {
    opacity: 1;
    font-size: var(--title-size);
  }

  .header .menu {
    display: block;
    width: 100%;
    margin-top: 0.1em;
  }

  .header .menu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    overflow: hidden;
    max-height: 20em;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.25s ease;
    opacity: 1;
    margin: 0;
    padding: 0;
  }

  .header .menu ul.hidden {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
  }

  .header .menu ul li {
    display: block;
  }

  .header .menu ul li a,
  .header .menu ul li a button,
  .header .menu ul li button {
    font-size: var(--title-size, 3vw);
    letter-spacing: 0;
    line-height: 1.25;
    display: block;
    padding: 0;
  }

  .header.ready .menu ul li a,
  .header.ready .menu ul li a button,
  .header.ready .menu ul li button {
    font-size: var(--title-size);
  }

  .nav-toggle-btn {
    display: block;
    margin-top: 0.05em;
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
    padding: 0;
    letter-spacing: 0;
    font-family: 'Konrad-Regular', Times, serif;
    font-size: var(--title-size, 3vw);
    line-height: 1.2;
    align-self: flex-start;
    text-transform: uppercase;
  }

  .header.ready .nav-toggle-btn {
    font-size: var(--title-size);
  }

  /* ––––––––––––––––––– MOBILE Footer ––––––––––––––––––– */

  .footer {
    background: transparent !important;
    height: auto !important;
    padding: 12px !important;
    line-height: 1.2 !important;
  }

  .footer,
  .footer .projectinfo-footer,
  .footer #homeProjectTitle,
  .footer #exhibitionDescription,
  .footer .show-overview-btn,
  .footer .description {
    font-size: var(--title-size) !important;
    letter-spacing: 0 !important;
  }

  /* ––––––––––––––––––– MOBILE Home ––––––––––––––––––– */

  body.page-home .header {
    background: transparent !important;
  }

  body.page-home .footer {
    height: auto;
    padding: 12px;
    background: transparent !important;
  }

  body.page-home .projectinfo-footer {
    visibility: hidden;
  }

  body.page-home .zoom-viewport {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
  }

  body.page-home .image-card {
    height: 55vh;
    max-width: 92vw;
    width: auto;
  }

  body.page-home .image-card img {
    width: auto;
    height: 55vh;
    max-width: 92vw;
    max-height: 55vh;
    object-fit: contain;
  }

  body.page-home .zoom-viewport {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2;
    perspective: 800px;
  }

  /* ––––––––––––––––––– MOBILE Project List ––––––––––––––––––– */

  body.page-projects .footer {
    display: none;
  }

  .projects-overview {
    padding: 12px;
    padding-top: var(--header-height);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    height: 100vh;
    box-sizing: border-box;
  }

  .projects-list {
    margin-top: 0;
    padding-top: 0.5rem;
    width: 100%;
  }

  .project-row {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: none;
    gap: 1rem;
  }

  .proj-title {
    font-size: var(--title-size, 3vw);
    text-align: left;
    flex: 3;
  }

  .proj-year {
    margin-left: 0;
    opacity: 1;
    font-size: var(--title-size, 3vw);
    flex-shrink: 0;
    text-align: right;
  }

  .proj-info {
    display: none;
  }

  .proj-year {
    display: block;
    opacity: 1;
  }

  .bubble-container {
    display: none;
  }

  /* ––––––––––––––––––– MOBILE Exhibitions List ––––––––––––––––––– */

  body.page-exhibitions .exh-desktop { display: none; }
  body.page-exhibitions .exh-mobile {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }
  body.page-exhibitions .exh-mobile span {
    display: block;
  }
  body.page-exhibitions .project-row {
    align-items: flex-start;
  }

  /* ––––––––––––––––––– MOBILE Exhibition Page ––––––––––––––––––– */

  body.page-exhibition .swiper {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    padding: 0 12px 0 0;
  }

  body.page-exhibition .swiper-wrapper {
    flex-direction: column;
    transform: none !important;
    height: auto;
    width: 100%;
  }

  body.page-exhibition .swiper-slide {
    width: 100%;
    height: auto;
  }

  body.page-exhibition .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    /*padding: 0 12px;*/
    box-sizing: border-box;
  }

  body.page-exhibition .swiper-slide:last-child {
    padding-bottom: 0;
  }

  body.page-exhibition .exhibition-next-btn {
    position: fixed;
    bottom: 12px;
    right: 12px;
    font-size: var(--title-size) !important;
    letter-spacing: 0;
    z-index: 600;
  }

  body.page-exhibition .footer .projectinfo-footer {
    flex: 1;
    min-width: 0;
    line-height: 1.25;
    padding-right: 4rem;
  }

  /* ––––––––––––––––––– MOBILE Project Page ––––––––––––––––––– */

  body.page-project #overviewView {
    padding-top: 0;
  }

  body.page-project .overview-images {
    padding-top: 0;
    padding-bottom: 0.5rem;
    gap: 0;
    margin: 0;
  }

  body.page-project .main-content {
    top: 0;
    bottom: 0;
  }

  body.page-project .header {
    background: transparent;
  }

  body.page-project .show-overview-btn {
    display: none;
  }

  .project-title-anchor {
    height: 0;
    overflow: visible;
    pointer-events: none;
  }

  .project-sticky-title {
    position: sticky;
    opacity: 0;
    transition: opacity 0.15s ease;
    pointer-events: none;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: 'Konrad-Regular', Times, serif;
    font-size: var(--title-size, 3vw);
    font-weight: 100;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #fff;
    box-sizing: border-box;
    width: 100%;
    z-index: 10;
    line-height: 1.25;
  }

  .project-sticky-title.visible {
    opacity: 1;
    pointer-events: auto;
  }

  .scroll-mobile-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: rgba(255, 255, 255);
    font-family: 'Konrad-Regular', Times, serif;
    font-size: var(--title-size) !important;
    font-weight: 100;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 600;
    padding: 0;
  }

  body.page-project .overview-image {
    margin: 0;
    padding: 0;
    line-height: 0;
  }

  body.page-project .overview-image img {
    width: 100%;
    height: auto;
    display: block;
    padding: 0;
    box-sizing: border-box;
  }

  .project-navigation {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }

  .project-sticky-title.visible {
    opacity: 1;
    pointer-events: auto;
    padding: 0 12px;
  }

  .header--filled {
    background-color: #121212 !important;
  }

  .project-sticky-title.header--filled {
    background-color: #121212 !important;
  }

  .overview-bottom {
    padding: 0 12px;
  }

  /* ––––––––––––––––––– MOBILE Info Page ––––––––––––––––––– */

  body.page-info {
    overflow: hidden !important;
    height: 100dvh;
  }

  .info-page {
    margin-top: 0;
    position: fixed;
    top: var(--header-height, 35vw);
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 12px 4rem 12px;
    box-sizing: border-box;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .info-row {
    margin-top: 0;
  }

  .info-content {
    font-size: 3.5vw;
    letter-spacing: 0.5px;
    line-height: normal;
  }

  .info-label {
    font-size: var(--title-size, 3vw);
  }

  body.page-info .info-row,
  body.page-imprint .info-row {
    display: block;
    padding: 0;
  }

  body.page-imprint .info-content {
    width: 100%;
    box-sizing: border-box;
  }

  body.page-info .info-label {
    display: block;
    padding: 0;
    cursor: pointer;
    line-height: 1.25;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #121212;
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  body.page-info .info-content {
    padding: 0;
  }

  .info-photo {
    position: static;
    margin-bottom: 1rem;
  }

  .info-photo .profile-pic {
    max-width: 160px;
  }

  .info-list .info-year,
  .info-list .info-title {
    font-size: 3.5vw;
  }

  .info-fixed-links {
    position: static !important;
    margin-top: 2rem;
    align-items: flex-start;
    line-height: 1.25;
    gap: 0;
    font-size: var(--title-size) !important;
  }

  .info-fixed-links a {
    font-size: var(--title-size) !important;
    letter-spacing: 0;
  }

  body.page-imprint {
    overflow-y: auto !important;
  }

  body.page-info .info-row {
    display: flex;
    flex-direction: column;
  }

  body.page-info .info-content {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    min-height: 0;
  }

  body.page-info .info-row:not(:has(.info-list)) {
    max-height: none;
    overflow: visible;
  }

  /* ––––––––––––––––––– GLOBAL OVERRIDES ––––––––––––––––––– */

  @media (max-width: 769px) {
    .info-fixed-links {
      position: relative !important;
      bottom: 12px;
      right: 15px;
      margin-top: 0;
      align-items: flex-end;
      z-index: 600;
      font-size: var(--title-size) !important;
    }

    .info-fixed-links a {
      font-size: var(--title-size) !important;
      letter-spacing: 0;
    }
  }

  @media (max-width: 768px) {
    body.page-exhibition .swiper-slide.exhibition-separator {
      width: 100% !important;
      height: auto !important;
      min-height: unset !important;
      display: flex !important;
      padding: 0.5rem 12px;
      box-sizing: border-box;
      align-items: center;
      justify-content: flex-start;
      font-family: 'Konrad-Regular', Times, serif;
      font-size: 3.5vw;
      letter-spacing: 0;
      color: #fff;
      text-transform: uppercase;
    }
  }

  @media (min-width: 769px) {
    body.page-exhibition .swiper-slide.exhibition-separator {
      width: 0 !important;
      height: 0 !important;
      overflow: hidden !important;
      padding: 0 !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }
  }

  /* ––––––––––––––––––– MOBILE INFO LINKS FINAL OVERRIDE ––––––––––––––––––– */
  @media (max-width: 768px) {
    body.page-info .info-fixed-links,
    body.page-imprint .info-fixed-links {
      
      position: relative !important;
      bottom: auto !important;
      right: 0 !important;
      margin-top: 2rem;
      align-items: flex-end;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
  }

  .scroll-down-btn {        /* ← hier einfügen */
    display: none !important;
  }
}

/* ––––––––––––––––––– EXHIBITION NEXT BTN ––––––––––––––––––– */
.exhibition-next-btn {
  color: rgba(255, 255, 255);
  font-family: 'Konrad-Regular', Times, serif;
  font-size: 1.7vh;
  font-weight: 100;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}

.exhibition-next-btn:hover {
  text-shadow: 0 0 10px #cdcdcd;
}