/* Device frames: original account captures remain uncropped and fully readable. */
.client-screen,
.client-screen:hover {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
  min-width: 0;
  margin-inline: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  background: none;
  text-decoration: none;
}
.client-phone {
  display: block;
  position: relative;
  padding: 7px;
  border: 1px solid #66717a;
  border-radius: 28px;
  background: linear-gradient(125deg, #32383e, #0a0d10 34%, #15191e 78%, #454d55);
  box-shadow: inset 0 0 0 1px #0b0e12, 0 16px 30px -16px #000b, 0 2px 4px #0006;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.client-phone::before,
.client-phone::after {
  content: "";
  position: absolute;
  width: 2px;
  border-radius: 2px;
  background: #647079;
}
.client-phone::before { left: -3px; top: 70px; height: 33px; box-shadow: 0 40px #647079; }
.client-phone::after { right: -3px; top: 94px; height: 48px; }
.client-screen .client-phone img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: none;
  transform: none;
}
.client-screen .client-screen-open {
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 17px 4px 0;
  padding: 0 0 9px;
  border-bottom: 1px solid #ffffff29;
  color: #c5d0d8;
  font-size: 11px;
  letter-spacing: .03em;
  line-height: 1.6;
}
.client-screen .client-screen-open > span { color: #89cce8; font-size: 18px; }
.client-screen:hover .client-phone { border-color: #a0b4c2; box-shadow: inset 0 0 0 1px #0b0e12, 0 18px 32px -14px #000c, 0 0 20px #8bcce608; }
.client-screen:hover .client-screen-open { color: #fff; border-color: #89cce8; }
.client-screen:focus-visible { outline: 2px solid #89cce8; outline-offset: 9px; border-radius: 28px 28px 0 0; }
@media (max-width: 480px) {
  .client-screen { width: 220px; }
}
@media (prefers-reduced-motion: reduce) {
  .client-phone { transition: none; }
}
