@charset "UTF-8";
/* =========================================================
   Emma — Responsive Streams + Zoom + About-as-Stream
   Desktop: Streams + Zoom + About accordion
   Mobile: Horizontal cards with vertical scrolling
   ========================================================= */
/* ============== FONT IMPORTS ============== */
/*@font-face {
  font-family: 'Arial Narrow';
  src: url('../typefaces/ArialNarrowRegular.woff') format('woff'),
       url('../typefaces/ArialNarrowRegular.ttf') format('truetype');
  font-weight: 400;
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}*/
@font-face {
  font-family: "Arial Narrow";
  src: url("/assets/typefaces/arialnarrow_bold.ttf") format("truetype");
  font-weight: 700;
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  font-stretch: condensed;
}
/* ============== STYLEGUIDE ============== */
/* 
  Usage Examples:

  Colors:
    $brand-red      → #FF0000
    $bg-grey        → #e9e9e9
    $bg-light-grey  → #f6f6f6
    $text-dark      → #000000
    $text-light     → #ffffff
    $text-grey      → #111111
    $border-subtle  → rgba(0, 0, 0, 0.1)

  Spacings:
    $spacing-l    → 4.5rem   (72px)
    $spacing-m    → 2rem     (32px)
    $spacing-s    → 1.5rem   (24px)
    $spacing-xs   → 0.75rem  (12px)
    $spacing-xxs  → 0.3125rem (5px)

  Font Sizes (Desktop - 1rem = 25px):
    $font-h1        → 1rem    (25px)
    $font-copy      → 1rem    (25px)
    $font-h2        → 0.72rem (18px)
    $font-h3        → 0.56rem (14px)
    $font-link      → 0.72rem (18px)
    $font-uppercase → 1rem    (25px)

  Font Sizes (Mobile - 1rem = 22px):
    $font-h1-mobile        → 1rem    (22px)
    $font-copy-mobile      → 1rem    (22px)
    $font-h2-mobile        → 0.72rem (~16px)
    $font-h3-mobile        → 0.56rem (~12px)
    $font-link-mobile      → 0.72rem (~16px)
    $font-uppercase-mobile → 1rem    (22px)

  Font Family:
    $font-primary   → "Arial Narrow", Arial, sans-serif (bold weight via @font-face)
    $font-secondary → "Arial Narrow", Arial, sans-serif (normal weight via @font-face)
*/
/* ============== Base / resets ============== */
* {
  box-sizing: border-box;
}

html {
  font-size: 25px;
}
@media (max-width: 768px) {
  html {
    font-size: 22px;
  }
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Arial Narrow", serif;
  font-weight: 700;
  background: #e9e9e9;
  color: #FF0000;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}

@media (max-width: 768px) {
  body, * {
    font-weight: 900 !important;
    -webkit-font-smoothing: none !important;
    text-rendering: optimizeSpeed !important;
  }
  .item__title,
  .item__title .line1,
  .item__title .line2,
  .zoom__info,
  .zoom__info .year,
  .zoom__info .type,
  .zoom__info .title {
    font-weight: 900 !important;
  }
}
* {
  font-weight: 700 !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============== Variables ============== */
:root {
  /* Desktop variables */
  --main-vw: 68; /* Zoom width (fixed) */
  --p1w: 45;
  --p2w: 20;
  --p3w: 35;
  --sel-stroke: 0.3125rem;
  --sel-color: #FF0000;
  --main-border: 10px;
  --gap: 1rem;
  /* About preview sizing (narrow) */
  --about-preview-vw: 16;
  --about-min: 240px;
  --about-max: 26vw;
  --about-open-w: clamp(var(--about-min), calc(var(--about-preview-vw) * 1vw), var(--about-max));
  /* About typography knobs */
  --about-font-size: 1rem;
  --about-line: 1.6;
  --about-block-gap: 1.25rem;
  --about-section-gap: 1.75rem;
  --about-heading: 1.25rem;
  --about-subtle: color-mix(in oklab, var(--sel-color) 40%, #000 60%);
  --about-border: rgba(0, 0, 0, 0.1);
  /* Mobile variables */
  --cardW: 80vw; /* card width */
  --cardGap: 6vw; /* visible peek spacing between cards */
  --edgePad: calc((100vw - var(--cardW)) / 2); /* center first/last card */
  --vh: 1vh; /* set via JS to fix mobile UI chrome */
}

/* ============== Brand (shared) ============== */
.brand {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-family: "Arial Narrow", serif;
  font-weight: 700 !important;
  text-decoration: none;
  color: var(--sel-color);
  letter-spacing: 0.02em;
  line-height: 1;
  z-index: 100;
}

/* Mobile brand positioning */
@media (max-width: 768px) {
  .brand {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0) + 6px);
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 0.6rem;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
  }
}
/* ============== Impressum (shared) ============== */
.impressum {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  font-family: "Arial Narrow", serif;
  font-weight: 700 !important;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--sel-color);
  opacity: 0.9;
  letter-spacing: 0.01em;
  line-height: 1;
  z-index: 100;
}

.impressum:hover {
  text-decoration: underline;
}

/* Hide on mobile */
@media (max-width: 768px) {
  .impressum {
    display: none;
  }
}
/* ============== Mobile-only elements ============== */
.top-fog {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 15;
  pointer-events: none;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.78) 38%, transparent 100%);
}

.nav-arrow {
  display: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  z-index: 18;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-arrow--left {
  left: 24px;
}

.nav-arrow--right {
  right: 24px;
}

.nav-arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
}

.nav-arrow--left::before {
  border-width: 14px 18px 14px 0;
  border-color: transparent var(--sel-color) transparent transparent;
}

.nav-arrow--right::before {
  border-width: 14px 0 14px 18px;
  border-color: transparent transparent transparent var(--sel-color);
}

@media (max-width: 768px) {
  .nav-arrow {
    width: 32px;
    height: 32px;
  }
  .nav-arrow--left {
    left: 0.3125rem;
  }
  .nav-arrow--right {
    right: 0.3125rem;
  }
  .nav-arrow--left::before {
    border-width: 8px 12px 8px 0;
  }
  .nav-arrow--right::before {
    border-width: 8px 0 8px 12px;
  }
}
@media (max-width: 768px) {
  .top-fog,
  .nav-arrow {
    display: block;
  }
}
/* ============== Desktop Layout ============== */
.app--desktop {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  height: 100vh;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
}

/* Left previews */
.app__left {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--gap);
  padding: 0;
  overflow: visible;
  transition: flex-basis 0.28s ease;
}

/* Right side (Zoom + About) */
.app__rightwrap {
  flex: 0 0 auto;
  display: flex;
  align-items: stretch;
  width: clamp(0px, var(--main-vw) * 1vw, 100%);
  min-width: 0;
  padding: 0;
  gap: 0;
  transition: width 0.28s ease, gap 0.28s ease;
}

.app--desktop.has-about .app__rightwrap {
  gap: var(--gap);
  width: clamp(0px, var(--main-vw) * 1vw + var(--gap) + var(--about-open-w), 100%);
}

/* Zoom (fixed) */
.app__right {
  flex: 0 0 auto;
  width: clamp(0px, var(--main-vw) * 1vw, 100%);
  min-width: 0;
  padding: 0;
}

/* About stream (accordion) */
.stream--about {
  flex: 0 0 auto;
  width: 0;
  min-width: 0;
  overflow: hidden;
  border-left: none;
  background: #e9e9e9;
  box-sizing: border-box;
  transition: width 0.28s ease;
}

.app--desktop.has-about .stream--about {
  width: var(--about-open-w);
}

/* Left fog that blends into the red frame */
.app__left::before {
  content: "";
  position: absolute;
  left: 0;
  right: calc(-1 * var(--gap));
  top: 0;
  height: 72px;
  pointer-events: none;
  background: linear-gradient(to bottom, #ffffff, #ffffffcc 45%, transparent 100%);
  z-index: 3;
}

.app__left::after {
  content: "";
  position: absolute;
  left: 0;
  right: calc(-1 * var(--gap));
  bottom: 0;
  height: 72px;
  pointer-events: none;
  background: linear-gradient(to top, #ffffff, #ffffffcc 45%, transparent 100%);
  z-index: 3;
}

/* ============== Mobile Layout ============== */
.app--mobile {
  display: none;
  height: calc(var(--vh) * 100);
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
  position: fixed;
  inset: 0;
  padding-top: 0;
  background: #e9e9e9; /* Make sure mobile layout is visible */
}

/* Horizontal snap lane */
.hsnap {
  height: 100%;
  width: 100%;
  display: flex;
  gap: var(--cardGap);
  padding: 0 var(--edgePad);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--edgePad);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  will-change: scroll-position;
}

/* Each panel (A/B/C) — 80vw wide with peek of next card; full-height preview */
.panel {
  position: relative;
  flex: 0 0 var(--cardW);
  width: var(--cardW);
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
}

/* Vertical scroller inside each panel — fills entire height */
.vsnap {
  position: relative;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-width: none;
  padding-bottom: 16px;
}
.vsnap::-webkit-scrollbar {
  display: none;
}

/* ============== Responsive Breakpoints ============== */
@media (max-width: 768px) {
  .app--desktop {
    display: none !important;
  }
  .app--mobile {
    display: block !important;
  }
}
/* ============== Streams (shared) ============== */
.stream {
  position: relative;
  border: none;
  background: #e9e9e9;
  overflow: hidden;
  min-width: 0;
}

.app__left > .stream:nth-child(1) {
  flex: var(--p1w) 1 0;
}

.app__left > .stream:nth-child(2) {
  flex: var(--p2w) 1 0;
}

.app__left > .stream:nth-child(3) {
  flex: var(--p3w) 1 0;
}

.stream__scroller {
  position: absolute;
  inset: 0;
  overflow: auto;
  z-index: 1;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.stream__scroller::-webkit-scrollbar {
  display: none;
}

/* Selector */
.stream__selector {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
  left: 1px;
  right: 1px;
  height: 50%;
  border: none;
  outline: var(--sel-stroke) dashed var(--sel-color);
  outline-offset: calc(-1 * var(--sel-stroke));
  pointer-events: none;
  box-sizing: border-box;
}

.stream:not(.is-active) .stream__scroller {
  pointer-events: none;
  overflow: hidden;
}

.stream:not(.is-active) .stream__selector {
  display: none;
}

.stream.is-active .stream__selector {
  display: block;
}

/* ============== Items (art + about) ============== */
.item {
  width: 100%;
  display: block;
  position: relative;
  border: none;
}

.item.r-1-1 {
  aspect-ratio: 1/1;
}

.item.r-4-5 {
  aspect-ratio: 4/5;
}

.item.r-3-4 {
  aspect-ratio: 3/4;
}

.item.r-16-9 {
  aspect-ratio: 16/9;
}

.item.r-2-3 {
  aspect-ratio: 2/3;
}

.item .meta {
  display: none;
}

/* Mobile item styling */
.item__thumb {
  width: 100%;
  background: #f6f6f6;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.item.r-1-1 .item__thumb {
  aspect-ratio: 1/1;
  height: 100%;
}

.item.r-4-5 .item__thumb {
  aspect-ratio: 4/5;
  height: 100%;
}

.item.r-3-4 .item__thumb {
  aspect-ratio: 3/4;
  height: 100%;
}

.item.r-16-9 .item__thumb {
  aspect-ratio: 16/9;
  height: 100%;
}

.item.r-2-3 .item__thumb {
  aspect-ratio: 2/3;
  height: 100%;
}

.item__title {
  padding: 0.3125rem 0 0.3125rem 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #e9e9e9;
}
.item__title .line1 {
  font-size: 0.56rem;
  font-weight: 700 !important;
  color: #FF0000;
}
.item__title .line2 {
  font-size: 0.56rem;
  font-weight: 700 !important;
  color: #FF0000;
}

/* Hide mobile-specific elements on desktop */
@media (min-width: 769px) {
  .item__title {
    display: none;
  }
}
/* Hide desktop-specific elements on mobile */
@media (max-width: 768px) {
  .item__meta,
  .panel__chip {
    display: none !important;
  }
}
/* ============== About content (inside .item via JS scaling) ============== */
.about-item {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  margin: 0;
  max-width: none;
  width: 100%;
  font-size: var(--about-font-size);
  line-height: var(--about-line);
  color: var(--sel-color);
  background: transparent;
}

.about-item a {
  color: var(--sel-color);
  text-decoration: none;
}

.about-item a:hover {
  text-decoration: underline;
}

/* ============== About Page Spacing Structure ============== */
/* Basic info section - no spacing between items */
.about-item .artist-name,
.about-item .birth-info,
.about-item .location {
  margin: 0;
  padding: 0;
}

/* No spacing between basic info and socials */
.about-item .socials {
  margin-top: 0;
  margin-bottom: 0;
}

/* After socials -> spacing-m to about text */
.about-item .about-text {
  margin-top: 2rem;
  margin-bottom: 0;
}

/* After about text -> spacing-l to first section */
.about-item section:first-of-type {
  margin-top: 4.5rem;
}

/* Between sections -> spacing-l */
.about-item section + section {
  margin-top: 4.5rem;
}

/* No spacing between entries within a section */
.about-item .education-entry + .education-entry,
.about-item .exhibition-entry + .exhibition-entry,
.about-item .experience-entry + .experience-entry,
.about-item .award-entry + .award-entry,
.about-item .text-entry + .text-entry {
  margin-top: 0;
}

/* Headings */
.about-item h1, .about-item h2, .about-item h3 {
  margin: 0 0 0.35rem 0;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--sel-color);
}

.about-item h1 {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  font-weight: 800;
}

.about-item h2 {
  font-size: var(--about-heading);
  font-weight: 800;
}

.about-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

/* Lists */
.about-item ul, .about-item ol {
  padding-left: 1.25rem;
}

.about-item li {
  margin: 0.35rem 0;
}

/* Meta / separators */
.about-item .meta, .about-item small {
  color: var(--sel-color);
  opacity: 0.8;
}

.about-item hr {
  border: 0;
  border-top: 1px solid var(--about-border);
  margin: var(--about-section-gap) 0;
}

/* Optional grid helper */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
/* About page structure matching about.txt */
.about-item .about-content {
  padding: 0;
}

.about-item .artist-name {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  color: #FF0000;
}

.about-item .birth-info,
.about-item .location {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.2;
  color: #FF0000;
}

.about-item .socials {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.2;
}

.about-item .socials a {
  color: #FF0000;
  text-decoration: underline;
  font-size: 0.72rem;
}

.about-item .socials a:hover {
  text-decoration: underline;
}

.about-item .about-text {
  margin: 2rem 0 0 0;
  font-size: 1rem;
  line-height: 1.4;
  color: #FF0000;
}

.about-item section h2 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FF0000;
}

.about-item .education-entry,
.about-item .exhibition-entry,
.about-item .experience-entry,
.about-item .award-entry {
  margin-bottom: 1.5rem;
}

.about-item .period,
.about-item .year {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.2;
  color: #FF0000;
}

.about-item .title,
.about-item .exhibition-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  color: #FF0000;
}

.about-item .subtitle {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  color: #FF0000;
}

.about-item .institution,
.about-item .description,
.about-item .exhibition-type,
.about-item .exhibition-location,
.about-item .exhibition-sponsor,
.about-item .city,
.about-item .link,
.about-item .link a,
.about-item .text-line,
.about-item .text-title,
.about-item .text-publication {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  color: #FF0000;
}

.about-item .link a,
.about-item .text-title a {
  color: #FF0000;
  text-decoration: underline;
}

.about-item .link a:hover,
.about-item .text-title a:hover {
  text-decoration: underline;
}

.about-item .group-label {
  margin: 1.5rem 0 0.75rem 0;
  font-size: 0.72rem;
  color: #FF0000;
}

.about-item .text-entry p {
  margin: 0.75rem 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #FF0000;
}

.about-item .about-impressum-link {
  margin-top: 4.5rem;
}

.about-item .impressum-link {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FF0000;
  text-decoration: underline;
  display: inline-block;
}

.about-item .impressum-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .about-item .artist-name {
    font-size: 1rem;
  }
  .about-item .birth-info,
  .about-item .location,
  .about-item .about-text,
  .about-item .title,
  .about-item .exhibition-title,
  .about-item .institution,
  .about-item .description,
  .about-item .text-entry p {
    font-size: 1rem;
  }
  .about-item .socials a {
    font-size: 0.72rem;
  }
  .about-item section h2 {
    font-size: 1rem;
  }
  .about-item .period,
  .about-item .year {
    font-size: 0.56rem;
  }
  .about-item .group-label {
    font-size: 0.72rem;
  }
}
/* Timeline (Education) */
.about-item .timeline {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.about-item .timeline li {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.about-item .timeline .period {
  flex: 0 0 auto;
  min-width: 100px;
  font-weight: 500;
  opacity: 0.8;
}

.about-item .timeline .details {
  flex: 1;
}

.about-item .timeline .details strong {
  font-weight: 500;
}

.about-item .timeline .institution {
  opacity: 0.8;
  font-weight: 400;
}

/* Exhibitions list styling */
.exhibitions-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.exhibitions-list li {
  display: flex;
  gap: 2rem;
  margin: 0.75rem 0;
  align-items: flex-start;
}

.exhibitions-list .exhibition-left {
  flex: 0 0 auto;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.exhibitions-list .gallery {
  font-weight: 500;
}

.exhibitions-list .year {
  font-size: 0.9em;
  opacity: 0.7;
  font-weight: 400;
}

.exhibitions-list .city {
  font-size: 0.85em;
  opacity: 0.6;
  font-weight: 400;
}

.exhibitions-list .exhibition-right {
  flex: 1;
}

.exhibitions-list .exhibition-title {
  font-weight: 400;
  line-height: 1.4;
}

/* ============== Zoom (main) ============== */
.zoom {
  position: relative;
  height: 100%;
  border: var(--main-border) solid var(--sel-color);
  background: none;
}

.zoom.is-info-hidden .zoom__info {
  display: none;
}

.zoom__scroller {
  position: absolute;
  inset: 0;
  overflow: auto;
  cursor: ns-resize;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.zoom__scroller::-webkit-scrollbar {
  display: none;
}

.zoom__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  color: var(--sel-color);
  font-weight: 700;
  font-size: 1rem;
  background: none;
}

.zoom__info .year, .zoom__info .type {
  display: inline-block;
}

.zoom__info .title {
  margin-left: auto;
  text-align: right;
}

@media (max-width: 768px) {
  .zoom__info {
    font-size: 0 !important;
    font-weight: 700 !important;
    padding: 0.75rem !important;
    gap: 0 !important;
    display: flex !important;
  }
  .zoom__info .year,
  .zoom__info .type {
    font-size: 0.56rem;
    color: #FF0000;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
  }
  .zoom__info .year {
    margin-right: 0.25rem;
  }
  .zoom__info .title {
    font-size: 0.56rem;
    color: #FF0000 !important;
    font-weight: 700 !important;
    margin: 0;
  }
  .zoom__info .year::after,
  .zoom__info .year::before,
  .zoom__info .type::after,
  .zoom__info .type::before,
  .zoom__info .title::after,
  .zoom__info .title::before {
    content: "" !important;
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
  .zoom__info * {
    letter-spacing: 0 !important;
  }
}
/* ============== Helpers ============== */
.app, .app__left, .app__right, .stream, .zoom {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hsnap {
    scroll-behavior: auto;
  }
}
/* ============== Mobile About Page ============== */
.about-page-mobile {
  display: none;
}

@media (max-width: 768px) {
  .about-page-mobile {
    display: block;
    position: fixed;
    inset: 0;
    background: #e9e9e9;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1;
    padding: 0.75rem;
  }
  .back-to-works-mobile {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    text-decoration: none;
    color: #FF0000;
    font-size: 0.72rem;
    font-weight: 700 !important;
    text-transform: none;
    letter-spacing: 0.01em;
    z-index: 100;
    pointer-events: auto;
    background: linear-gradient(to bottom, #e9e9e9 0%, rgba(246, 246, 246, 0.95) 30%, rgba(246, 246, 246, 0.7) 60%, transparent 100%);
    height: 72px;
  }
  .back-to-works-mobile .back-arrow,
  .back-to-works-mobile .back-text {
    position: relative;
    z-index: 1;
  }
  .back-arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 12px 8px 0;
    border-color: transparent #FF0000 transparent transparent;
  }
  .about-content-mobile {
    padding: 0;
    padding-top: 60px;
  }
  .about-mobile-inner .artist-name,
  .about-mobile-inner .birth-info,
  .about-mobile-inner .location {
    margin: 0;
    padding: 0;
    line-height: 1.2;
  }
  .about-mobile-inner .artist-name {
    font-size: 1rem;
    color: #FF0000;
  }
  .about-mobile-inner .birth-info,
  .about-mobile-inner .location {
    font-size: 0.72rem;
    color: #FF0000;
  }
  .about-mobile-inner .socials {
    margin: 0;
    padding: 0;
  }
  .about-mobile-inner .socials .social-line {
    margin: 0;
    padding: 0;
    font-size: 0.72rem;
    line-height: 1.2;
    color: #FF0000;
  }
  .about-mobile-inner .socials .social-line a {
    color: #FF0000;
    text-decoration: underline;
    font-size: 0.72rem;
  }
  .about-mobile-inner .about-text {
    margin-top: 2rem;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.4;
    color: #FF0000;
  }
  .about-mobile-inner section:first-of-type {
    margin-top: 4.5rem;
  }
  .about-mobile-inner section + section {
    margin-top: 4.5rem;
  }
  .about-mobile-inner section h2 {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #FF0000;
  }
  .about-mobile-inner .education-entry,
  .about-mobile-inner .exhibition-entry,
  .about-mobile-inner .experience-entry,
  .about-mobile-inner .award-entry,
  .about-mobile-inner .text-entry {
    margin-bottom: 0;
  }
  .about-mobile-inner .education-entry + .education-entry,
  .about-mobile-inner .exhibition-entry + .exhibition-entry,
  .about-mobile-inner .experience-entry + .experience-entry,
  .about-mobile-inner .award-entry + .award-entry,
  .about-mobile-inner .text-entry + .text-entry {
    margin-top: 2rem;
  }
  .about-mobile-inner .period,
  .about-mobile-inner .year,
  .about-mobile-inner .title,
  .about-mobile-inner .subtitle,
  .about-mobile-inner .exhibition-title,
  .about-mobile-inner .exhibition-type,
  .about-mobile-inner .exhibition-location,
  .about-mobile-inner .exhibition-sponsor,
  .about-mobile-inner .institution,
  .about-mobile-inner .description,
  .about-mobile-inner .city,
  .about-mobile-inner .link,
  .about-mobile-inner .link a,
  .about-mobile-inner .text-line,
  .about-mobile-inner .text-title,
  .about-mobile-inner .text-publication {
    margin: 0;
    font-size: 1rem;
    line-height: 1.2;
    color: #FF0000;
    font-weight: 700 !important;
  }
  .about-mobile-inner .period,
  .about-mobile-inner .year {
    font-size: 0.56rem;
  }
  .about-mobile-inner .group-label {
    margin: 2rem 0 2rem 0;
    font-size: 1rem;
    color: #FF0000;
    font-weight: 700 !important;
  }
  .about-mobile-inner .link a,
  .about-mobile-inner .text-title a {
    color: #FF0000;
    text-decoration: underline;
  }
  .about-impressum-link-mobile {
    margin-top: 4.5rem;
    padding-top: 2rem;
  }
  .about-impressum-link-mobile .impressum-link-mobile {
    display: inline-block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #FF0000;
    text-decoration: underline;
    font-weight: 700 !important;
  }
}
@media (min-width: 769px) {
  .about-page-mobile {
    display: none;
  }
}
/* ============== Impressum Page ============== */
.impressum-page {
  position: fixed;
  inset: 0;
  background: #e9e9e9;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
}

.impressum-container {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  max-width: 100%;
  color: #FF0000;
}

.back-to-works-mobile-impressum {
  display: none;
}

@media (max-width: 768px) {
  .impressum-page {
    z-index: 1;
  }
  .impressum-container {
    padding-top: 72px;
  }
  .impressum-page .impressum-brand,
  .impressum-page .back-to-works {
    display: none !important;
  }
  .back-to-works-mobile-impressum {
    display: flex;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    text-decoration: none;
    color: #FF0000;
    font-size: 0.72rem;
    font-weight: 700 !important;
    text-transform: none;
    letter-spacing: 0.01em;
    z-index: 100;
    pointer-events: auto;
    background: linear-gradient(to bottom, #e9e9e9 0%, rgba(246, 246, 246, 0.95) 30%, rgba(246, 246, 246, 0.7) 60%, transparent 100%);
    height: 72px;
  }
  .back-to-works-mobile-impressum .back-arrow,
  .back-to-works-mobile-impressum .back-text {
    position: relative;
    z-index: 1;
  }
  .back-to-works-mobile-impressum .back-arrow {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 12px 8px 0;
    border-color: transparent #FF0000 transparent transparent;
  }
}
.impressum-heading {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #FF0000;
}

.impressum-content {
  margin-bottom: 4.5rem;
  font-size: 1rem;
  line-height: 1.2;
  color: #FF0000;
}

.back-to-works {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: #FF0000;
  text-decoration: none;
  border-bottom: 1px solid #FF0000;
}

.back-to-works:hover {
  border-bottom: 1px solid #FF0000;
}

.impressum-content p {
  margin: 0;
  line-height: 1.2;
}

.agb-section,
.legals-section {
  margin-bottom: 4.5rem;
}

.section-heading {
  margin-bottom: 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #FF0000;
}

.agb-content,
.legals-content {
  font-size: 1rem;
  line-height: 1.2;
  color: #FF0000;
}

.agb-content p,
.legals-content p {
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .impressum-heading,
  .section-heading {
    font-size: 1rem;
  }
  .impressum-content,
  .agb-content,
  .legals-content {
    font-size: 1rem;
  }
}/*# sourceMappingURL=style.css.map */