/* =========================
   3D ART SECTION
========================= */

.three-d-art-page {
  background: #000;
}

/* ===== INTRO ===== */

.three-d-art-page .section-intro {
  padding: 120px 64px 80px;
  text-align: center;
}

.three-d-art-page .section-intro h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  font-family: var(--font-body);
}

/* ===== GALLERY (MATCHES GRAPHIC + DIGITAL) ===== */

.asym-gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px 160px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;

  align-items: start;
}

/* ===== TILE BASE ===== */

.tile {
  background: #111;
  border-radius: 16px;
  overflow: hidden;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.45),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* Images */

.tile img {
  width: 100%;
  height: auto;
  display: block;
}

/* Videos */

.media-tile video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Optional: subtle motion polish */
.media-tile {
  background: #000;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .asym-gallery {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 32px 120px;
  }
}
