.phone {
  background: var(--dark-surface);
  border-radius: 44px;
  padding: 14px;
}

.phone--hero {
  width: 300px;
  height: 612px;
  box-shadow:
    0 40px 90px -24px rgba(0, 150, 255, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone--list {
  width: 280px;
  height: 580px;
  border-radius: 42px;
  padding: 13px;
  box-shadow:
    0 30px 70px -20px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 0, 0, 0.06);
}

.phone__screen {
  width: 100%;
  height: 100%;
  background: var(--color-black);
  border-radius: 32px;
  overflow: hidden;
}

.phone--list .phone__screen {
  border-radius: 30px;
}

.live-showcase__phones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  justify-items: center;
}

@media (max-width: 900px) {
  .live-showcase__phones {
    grid-template-columns: 1fr;
  }
}

.phone__screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
