/* Real Offiqa UI screenshots used by roadmap pages. */
.product-screenshot {
  --product-screenshot-inset: clamp(0.55rem, 1.5vw, 1rem);
  margin: clamp(2rem, 5vw, 4.5rem) auto;
  padding: var(--product-screenshot-inset);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.product-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  background: var(--surface-2);
}

.product-screenshot figcaption {
  margin: 0.7rem 0.2rem 0.1rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.product-screenshot-label {
  color: var(--ink-2);
  font-weight: 700;
}

.product-screenshot--portrait {
  max-width: 42rem;
}

.product-screenshot--wide {
  max-width: 76rem;
}

.product-screenshot--landscape {
  max-width: 76rem;
}

@media (max-width: 720px) {
  .product-screenshot {
    margin-block: 2rem;
    border-radius: var(--r-lg);
  }

  .product-screenshot figcaption {
    font-size: 0.72rem;
  }
}
