/* ===========================================
   Product images on marketing pages (IconsHelper-free, uses marketing_picture).
   .shot frames a screenshot or composition with one hairline; no shadows, no tilt.
   =========================================== */

@layer components {
  .shot {
    margin: 0;

    img {
      display: block;
      width: 100%;
      height: auto;
    }

    .shot__caption {
      margin-top: var(--space-3);
      font-size: var(--text-sm);
      color: var(--color-text-muted);
    }
  }

  /* Screenshots of the app sit on paper with a hairline edge */
  .shot--framed img {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
  }
}
