.app-real-preview {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
}

.app-real-preview::before { opacity: 0.16; }

.app-real-preview img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(128px, 48%);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid rgba(143, 182, 201, 0.32);
  background: #07090b;
  box-shadow:
    0 24px 58px -30px rgba(0, 0, 0, 0.96),
    0 0 34px -24px rgba(143, 182, 201, 0.38);
}

.phone-capture {
  width: min(100%, 340px);
  min-height: 0;
  aspect-ratio: auto;
  padding: 0.82rem;
  display: block;
  border-radius: 42px;
}

.phone-capture::before { display: none; }

.phone-capture img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 30px;
  border: 1px solid rgba(241, 239, 232, 0.08);
  background: #07090b;
  box-shadow:
    0 32px 78px -44px rgba(0, 0, 0, 0.98),
    0 0 0 1px rgba(241, 239, 232, 0.025) inset;
}

.real-screenshots {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: start;
}

.screenshot-shot {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  min-width: 0;
  position: relative;
  overflow: visible;
}

.screenshot-shot img {
  display: block;
  width: 100%;
  max-width: 330px;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin-inline: auto;
  border-radius: 1.45rem;
  border: 1px solid rgba(143, 182, 201, 0.22);
  background: #07090b;
  box-shadow:
    0 34px 76px -52px rgba(0, 0, 0, 0.98),
    0 0 0 1px rgba(241, 239, 232, 0.025) inset;
}

.screenshot-shot.is-featured img {
  box-shadow:
    0 42px 94px -56px rgba(0, 0, 0, 1),
    0 0 58px -44px rgba(143, 182, 201, 0.34),
    0 0 0 1px rgba(241, 239, 232, 0.035) inset;
}

.screenshot-shot figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 980px) {
  .real-screenshots { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
  .phone-capture { width: min(100%, 320px); }
}

@media (max-width: 780px) {
  .app-real-preview {
    justify-content: center;
    min-height: 260px;
  }

  .app-real-preview img { width: min(150px, 56%); }
  .screenshot-shot img { max-width: 300px; border-radius: 1.15rem; }
  .screenshot-shot figcaption { font-size: 0.86rem; }
}

@media (max-width: 620px) {
  .real-screenshots { grid-template-columns: 1fr; }
  .screenshot-shot img { max-width: min(100%, 280px); }
}
