/* TLC Experience spread */

/* ---- mobile ---- */
.tlc-exp__mobile { background: var(--tlc-ink); padding: 5rem 1.25rem; }
@media (min-width: 640px) { .tlc-exp__mobile { display: none; } }
.tlc-exp__m-head { margin-bottom: 2.5rem; text-align: center; }
.tlc-exp__m-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.tlc-exp__m-img { height: 56vw; overflow: hidden; border-radius: 0.75rem; border: 1px solid color-mix(in srgb, var(--tlc-brass) 15%, transparent); }
.tlc-exp__m-img img { height: 100%; width: 100%; object-fit: cover; }
.tlc-exp__m-caption { margin: 2rem 0 0; text-align: center; font-size: 1rem; line-height: 1.625; color: var(--tlc-fog); }

.tlc-exp__heading {
  margin: 0.75rem 0 0;
  font-family: var(--tlc-font-display);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  letter-spacing: -0.01em;
  color: var(--tlc-ivory);
}

/* ---- desktop ---- */
.tlc-exp__desktop { display: none; position: relative; background: var(--tlc-ink); height: calc(1800px + 100vh); }
@media (min-width: 640px) {
  .tlc-exp__desktop { display: block; }
  .tlc-exp__heading { font-size: clamp(1.8rem, 4vw, 3.5rem); }
}

.tlc-exp__sticky {
  position: sticky;
  top: 2.5rem;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tlc-exp__headline {
  position: absolute;
  top: 5%;
  z-index: 30;
  width: 100%;
  padding: 0 1rem;
  text-align: center;
  pointer-events: none;
  opacity: 0;
}

.tlc-exp__trio { position: relative; display: flex; align-items: center; justify-content: center; height: 65vh; width: 100%; }

.tlc-exp__side {
  position: absolute;
  width: 24vw;
  max-width: 20rem;
  height: 48vh;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid color-mix(in srgb, var(--tlc-brass) 15%, transparent);
  box-shadow: 0 28px 70px -18px rgba(0, 0, 0, 0.75);
  opacity: 0;
  will-change: transform, opacity;
}
.tlc-exp__center {
  position: relative;
  z-index: 10;
  width: 30vw;
  max-width: 25rem;
  height: 56vh;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--tlc-brass) 25%, transparent);
  box-shadow: 0 44px 110px -20px rgba(0, 0, 0, 0.9);
}
.tlc-exp__side img, .tlc-exp__center img { height: 100%; width: 100%; object-fit: cover; }

.tlc-exp__caption {
  position: absolute;
  bottom: 9%;
  z-index: 30;
  max-width: 24rem;
  padding: 0 1.5rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--tlc-fog);
  opacity: 0;
}
