/* PURA — Bild-Entdecken (Instagram-ähnlicher Feed-Prototyp) */
.explore-shell {
  min-height: 100vh;
  background: var(--bg, #e9e6e2);
  color: var(--ink, #1b1a18);
}
.explore-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 248, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line, #e4e0da);
}
.explore-header .wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.explore-brand {
  font-family: var(--display, "Schibsted Grotesk", sans-serif);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: inherit;
}
.explore-brand .dot { color: var(--accent, #9a948c); }
.explore-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-left: auto;
}
.explore-filters select,
.explore-filters button {
  font-family: var(--sans, system-ui, sans-serif);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line, #e4e0da);
  border-radius: 6px;
  background: var(--paper, #fbfaf8);
  color: inherit;
  cursor: pointer;
}
.explore-intro {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 32px 0.5rem;
}
.explore-intro h1 {
  font-family: var(--display, "Schibsted Grotesk", sans-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  margin: 0 0 0.35rem;
}
.explore-intro p {
  color: var(--muted, #6f6a64);
  font-size: 0.95rem;
  max-width: 52ch;
}
.explore-status {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0.75rem 40px;
  font-size: 0.8rem;
  color: var(--muted, #6f6a64);
}
.explore-masonry {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 26px;
  max-width: 1800px;
  margin: 0 auto;
  padding: 1rem 40px 2rem;
  overflow-anchor: none;
}
.explore-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Mobil: eine Spalte — Smartphones portrait (bis 767px) */
@media (max-width: 767px) {
  .explore-shell {
    -webkit-overflow-scrolling: touch;
  }
  .explore-masonry {
    padding: 0.5rem 18px 1.5rem;
    gap: 0;
  }
  .explore-col {
    gap: 20px;
  }
  .explore-intro,
  .explore-status,
  .explore-header .wrap,
  .explore-section-toolbar {
    padding-left: 18px;
    padding-right: 18px;
  }
}
.explore-cell {
  margin-bottom: 0;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--paper, #fbfaf8);
  box-shadow: var(--shadow-soft, 0 1px 2px rgba(28,26,24,.04));
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  contain: layout style;
}
.explore-cell:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift, 0 2px 6px rgba(28,26,24,.05));
}
.explore-cell-media {
  position: relative;
  overflow: hidden;
  background: #ddd8d2;
  width: 100%;
}
.explore-cell-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ddd8d2;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.explore-cell.explore-cell-ready .explore-cell-media img {
  opacity: 1;
}
.explore-cell-meta {
  padding: 0.55rem 0.75rem 0.65rem;
  font-family: var(--sans, "Hanken Grotesk", system-ui, sans-serif);
  font-size: 0.8rem;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.explore-meta-fotograf {
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink, #1b1a18);
}
.explore-meta-ort {
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--muted, #6f6a64);
}
.explore-sentinel {
  height: 1px;
  width: 100%;
  pointer-events: none;
}
.explore-section { padding-bottom: 2rem; }
.explore-section-toolbar {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0.75rem 40px 0;
  display: flex;
  justify-content: flex-end;
}
.explore-rubrik-select {
  font-family: var(--sans, "Hanken Grotesk", system-ui, sans-serif);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line, #e4e0da);
  border-radius: 6px;
  background: var(--paper, #fbfaf8);
  color: inherit;
}
.explore-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(27, 26, 24, 0.94);
  color: #f5f3f0;
  flex-direction: column;
}
.explore-overlay.open { display: flex; }
.explore-overlay-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 2;
}
.explore-overlay img {
  flex: 1;
  object-fit: contain;
  width: 100%;
  max-height: calc(100vh - 140px);
  padding: 3rem 1rem 0;
}
.explore-overlay-meta {
  padding: 1rem 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  line-height: 1.5;
}
.explore-overlay-meta h2 {
  font-family: var(--display, "Schibsted Grotesk", sans-serif);
  font-size: 1rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
}
.explore-overlay-meta .credit {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
.explore-overlay[hidden] { display: none !important; }
.explore-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted, #6f6a64);
  width: 100%;
}
