/* Detail page screenshot area: fixed size, no layout shift */
.screenshot-container {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-radius: 12px;
  background: #f5f7fa;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 992px) {
  .screenshot-container {
    height: 280px;
  }
}

@media (max-width: 576px) {
  .screenshot-container {
    height: 220px;
  }
}

.screenshot-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;       /* prevent stretching; fill container */
  object-position: top center;
}

.screenshot-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #99a3ad;
  flex-direction: column;
  gap: 8px;
}