@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap");

:root {
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --page-bg: #0a0a0a;
  --page-bg-soft: #080814;
  --panel: #10101c;
  --panel-soft: #171729;
  --accent: #e0b973;
  --accent-soft: rgba(224, 185, 115, 0.18);
  --accent-strong: rgba(224, 185, 115, 0.6);
  --text: #f7f7fb;
  --muted: #a5a5bf;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.9);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --transition-fast: 160ms ease-out;
  --transition-med: 220ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}

html,
body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--page-bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

a {
  color: inherit;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  max-width: 100%;
  background: var(--page-bg);
  border-bottom: 1px solid var(--border-subtle);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 0 clamp(1.5rem, 5vw, 2.5rem);
  overflow: visible;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  text-align: center;
  padding: 1.25rem 1rem 1.5rem;
  padding-right: 20px;
  width: 100%;
  max-width: 100%;
}

.site-header-portrait {
  display: block;
  margin: 0 0 1rem;
  flex-shrink: 0;
  min-width: 0;
}

.site-header-portrait img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 1 !important;
  visibility: visible !important;
}

.site-header-name {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #ffffff;
  width: auto;
  max-width: 100%;
  flex-shrink: 0;
  min-width: 0;
  overflow-wrap: break-word;
}

.site-header-tagline {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b5b5c8;
}

.page {
  max-width: 1120px;
  margin: 1.7rem auto 2.4rem;
  padding: 2rem clamp(1.5rem, 5vw, 3rem) 2.4rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(148, 163, 184, 0.15), transparent 55%),
    radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.8), transparent 60%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(3, 7, 18, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-soft);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1.3rem;
  border-bottom: 1px solid var(--border-subtle);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 10% 0%, rgba(224, 185, 115, 0.7), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(59, 130, 246, 0.9), transparent 65%),
    linear-gradient(135deg, #020617, #020617);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  padding-bottom: 0.25rem;
  opacity: 0.9;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-strong), transparent);
  transition: width var(--transition-med);
}

.nav-links a:hover {
  color: var(--accent);
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  padding: 1.6rem 0 2.4rem;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.1rem;
}

.hero-text .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 3.4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-lead {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-highlight {
  background: radial-gradient(circle at top left, rgba(224, 185, 115, 0.22), transparent 58%),
              radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.9), transparent 60%),
              linear-gradient(135deg, var(--panel-soft), #020617);
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  padding: 0.9rem 0.9rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  box-shadow: var(--shadow-soft);
}

.hero-image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}

.strip-image {
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.8);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform-origin: center;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.strip-image-1 { background-image: url("images/IMG_3985.JPEG"); }
.strip-image-2 { background-image: url("images/IMG_4104.JPEG"); }
.strip-image-3 { background-image: url("images/IMG_4194.JPEG"); }

.hero-highlight:hover .strip-image-1 {
  transform: translateY(-4px) rotate(-2deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.hero-highlight:hover .strip-image-2 {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.9);
}

.hero-highlight:hover .strip-image-3 {
  transform: translateY(-3px) rotate(1.5deg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.7rem 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-meta div {
  display: flex;
  flex-direction: column;
}

.meta-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.7rem;
}

.meta-value {
  color: var(--text);
  margin-top: 0.1rem;
}

.section {
  padding: 1.9rem 0 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.7rem;
}

.section-header-gallery {
  justify-content: center;
  text-align: center;
}

.gallery-title {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.6rem;
}

.section h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-subtitle {
  margin: 0;
  max-width: 360px;
  font-size: 0.9rem;
  color: var(--muted);
}

.section-subtitle code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.82rem;
  padding: 0.15rem 0.35rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
  grid-auto-flow: dense;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Neue Galerie: 4 Spalten Desktop, 1 Spalte Mobile */
.gallery-grid-webseite {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: row;
}

.gallery-grid-webseite .gallery-item {
  transition: transform 0.3s ease, opacity 0.5s ease-out, box-shadow 0.3s ease;
}

.gallery-grid-webseite .gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 0;
  border-radius: 22px;
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.18), transparent 60%),
              linear-gradient(145deg, #020617, #020617);
  border: 1px solid rgba(15, 23, 42, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transform-origin: center;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}


.gallery-item-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.gallery-item picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.gallery-item img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1 !important;
  visibility: visible !important;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item.is-video-playing img {
  opacity: 0;
}

/* Alle Bildunterschriften in der Galerie ausblenden (Ausnahme: .gallery-caption-memory) */
.gallery-item figcaption,
.gallery-item p,
.gallery-item span {
  display: none !important;
}

/* Ausnahme für Gedenk-Unterschriften (z. B. Stolperstein): sichtbar */
.gallery-item figcaption.gallery-caption-memory {
  display: block !important;
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  margin: 0;
  margin-top: 0.35rem;
  padding: 0.5rem 0.75rem 0.6rem;
  font-size: 0.7rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(165, 165, 191, 0.78);
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85), transparent);
  opacity: 1;
  transform: none;
}

/* Dunkler Verlauf über dem Bild – verschwindet beim Hover */
.gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, transparent 40%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.08), transparent 65%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-item:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55);
  border-color: rgba(148, 163, 184, 0.5);
}

.gallery-item:hover::before {
  opacity: 0;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.03);
  opacity: 0.98;
}

.gallery-more {
  display: block;
  overflow: hidden;
}

.gallery-more.hidden {
  display: none;
}

.gallery-more .gallery-item:not(.revealed) {
  aspect-ratio: auto;
  height: 0;
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  transition: opacity 0.5s ease-out, min-height 0.5s ease-out;
}

.gallery-more .gallery-item.revealed {
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 0;
  opacity: 1;
  transform: translateY(0);
}

.gallery-load-more-wrap {
  text-align: center;
  margin: 2.2rem 0 0;
}

.gallery-load-more-btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text);
  background: var(--page-bg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.gallery-load-more-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.35);
}

.gallery-load-more-btn:focus {
  outline: 1px solid rgba(255, 255, 255, 0.3);
  outline-offset: 2px;
}

.gallery-load-more-wrap.is-hidden {
  display: none;
}

.section-split {
  padding-top: 2.2rem;
}

/* Über mich – dunkles Anthrazit, edler Look (keine negativen Margins für Safari-Stabilität) */
.section-about {
  padding: 3.5rem clamp(1.5rem, 5vw, 3rem) 3.5rem;
  background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%);
  border-radius: var(--radius-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.about-title {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0f0f0;
  margin: 0 0 1.7rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 320px) 1fr;
  align-items: start;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-portrait {
  position: relative;
}

.about-portrait img {
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.about-body {
  min-width: 0;
}

.lead {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.4;
  color: #f0f0f0;
  margin: 0 0 1.5rem;
  letter-spacing: 0.01em;
}

.about-body p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: #f0f0f0;
  font-family: var(--font-sans);
}

.about-body p:last-of-type {
  margin-bottom: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 1.6rem;
}

.split-text {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.7));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 1.4rem 1.5rem 1.4rem;
}

.split-text p {
  margin: 0 0 0.9rem;
  font-size: 0.92rem;
  color: var(--muted);
}

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

.split-meta {
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.06), transparent 60%),
              linear-gradient(145deg, #020617, #020617);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.28);
  padding: 1.35rem 1.4rem;
}

.split-meta h3 {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.split-meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.split-meta li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.4rem;
}

.split-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, var(--accent), transparent 60%);
}

.section-contact {
  padding-top: 2.3rem;
}

.contact-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0.5rem 3rem;
}

.contact-intro {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
}

.contact-email {
  margin: 0;
  font-size: 1rem;
}

.contact-email .contact-link {
  color: var(--text);
}

.contact-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-links li {
  margin-bottom: 1rem;
}

.contact-links li:last-child {
  margin-bottom: 0;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-link {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 300;
  position: relative;
  transition: color 0.25s ease;
}

.contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}

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

.contact-link:hover::after {
  width: 100%;
}

.legal-body {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.legal-body p {
  margin: 0 0 0.9rem;
}

.impressum-note {
  font-size: 0.82rem;
  color: rgba(165, 165, 191, 0.75);
  margin-top: 1.2rem;
}

.impressum-note a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.impressum-note a:hover {
  color: rgba(165, 165, 191, 0.95);
}

.btn-ghost {
  margin-top: 0.4rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: transparent;
  color: var(--muted);
  cursor: default;
}

.page-footer {
  margin-top: 2.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.legal-links {
  margin-top: 0.35rem;
  font-size: 0.74rem;
  color: var(--muted);
}

.legal-links a {
  color: inherit;
  text-decoration: none;
}

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

.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-inner {
  position: relative;
  max-width: 100%;
  max-height: 100vh;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.2), transparent 55%),
              #020617;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.95);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-inner img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100vh;
  object-fit: contain;
  border-radius: 0;
  border: none;
  margin: 0;
}

.lightbox-close {
  position: absolute;
  top: 0.35rem;
  right: 0.5rem;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  color: rgba(249, 250, 251, 0.9);
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-close:hover {
  background: rgba(15, 23, 42, 1);
}

.lightbox-title {
  display: none;
  margin: 0.6rem 1rem 0;
  padding: 0;
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(248, 250, 252, 0.75);
  text-align: center;
}

@keyframes page-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 880px) {
  .sticky-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .page {
    margin: 1.2rem auto 2rem;
    padding-inline: 1.5rem;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 1rem;
    font-size: 0.78rem;
  }

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

  .hero-highlight {
    order: -1;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header-gallery {
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .gallery-grid-webseite {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item.wide {
    grid-column: span 2;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-portrait {
    justify-self: center;
  }

  .about-portrait img {
    max-width: 280px;
  }
}

@media (max-width: 600px) {
  .shell-bar {
    padding-inline: 1.1rem;
  }

  .page {
    border-radius: 0;
    margin: 0;
    border-left: none;
    border-right: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .gallery-grid-webseite {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }
}
