/* TLC Container scroll */
.tlc-cs { display: flex; flex-direction: column; background: var(--tlc-ink); }
.tlc-cs__stage {
  height: 60rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.5rem;
}
@media (min-width: 768px) { .tlc-cs__stage { height: 80rem; padding: 5rem; } }

.tlc-cs__perspective { width: 100%; position: relative; padding: 2.5rem 0; perspective: 1000px; }
@media (min-width: 768px) { .tlc-cs__perspective { padding: 10rem 0; } }

.tlc-cs__header { max-width: 64rem; margin: 0 auto; text-align: center; }
.tlc-cs__heading {
  margin: 1rem 0 0;
  font-family: var(--tlc-font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--tlc-ivory);
}
.tlc-cs__subtext { margin: 1rem auto 0; max-width: 36rem; font-size: 1.125rem; color: color-mix(in srgb, var(--tlc-ivory) 60%, transparent); }

.tlc-cs__card {
  max-width: 64rem;
  margin: -3rem auto 0;
  height: 30rem;
  width: 100%;
  border: 4px solid #6c6c6c;
  padding: 0.5rem;
  background: #222222;
  border-radius: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  transform: rotateX(20deg) scale(1.05);
  will-change: transform;
}
@media (min-width: 768px) { .tlc-cs__card { height: 40rem; padding: 1.5rem; } }

.tlc-cs__screen {
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
  background: #18181b;
}
@media (min-width: 768px) { .tlc-cs__screen { padding: 1rem; } }
.tlc-cs__screen img { height: 100%; width: 100%; object-fit: cover; object-position: center; border-radius: 1rem; }
