/* ============================================================
   BOSFOR — standalone SEO film page (/film/<slug>/)
   Same exhibit body as the sidebar, centered in the page.
   ============================================================ */

.film-page {
  min-height: 100vh;
  padding:
    calc(var(--topbar-h, 0px) + var(--navx-h, 66px) + 20px)
    clamp(16px, 3vw, 40px)
    72px;
  display: flex;
  justify-content: center;
}

.film-page__shell {
  position: relative;
  width: min(720px, 100%);
  background: #050505;
}

.film-page__shell > .exhibit__share {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 6;
}

.film-page #filmMount.exhibit__scroll {
  height: auto;
  overflow: visible;
  -webkit-overflow-scrolling: auto;
}

.film-page .exhibit__hero {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.film-page .exhibit__metaline {
  align-items: center;
}
.film-page .exhibit__metaline .status {
  font-size: inherit;
  line-height: 1;
}
.film-page .exhibit__metaline .status::before {
  flex: 0 0 auto;
}

.film-page__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 8px clamp(26px, 5vw, 56px) 48px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.film-page__back:hover {
  color: var(--ink-90);
  border-bottom-color: var(--ink-40);
}

/* SEO fallback before / without JS */
.film-page__seo {
  padding: 0 clamp(26px, 5vw, 56px) 40px;
}
.film-page__seo .exhibit__title { margin-bottom: 18px; }
.film-page__seo .exhibit__metaline { margin-bottom: 0; }
.film-page__seo-cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 28px;
  background: #111;
}
.film-page__seo p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-90);
  margin: 0 0 16px;
}

@media (max-width: 640px) {
  .film-page {
    padding-top: calc(var(--topbar-h, 0px) + var(--navx-h, 66px) + 12px);
    padding-bottom: 56px;
  }
  .film-page .exhibit__hero { aspect-ratio: 3 / 2; }
}
