/* ============================================================
   Figma Plugins (#figma-plugins) — simple placeholder
   ------------------------------------------------------------
   Each card's black "preview" box previously held a custom
   animated SVG illustration. Those are replaced with a single
   small, flat Figma mark — a clean placeholder (no gradient,
   no motion). The original .pv markup stays in the HTML but is
   hidden; the dark box is kept.
   ============================================================ */

/* black preview box — fixed height, clipped */
#figma-plugins .framer-w7ff68,   /* card 1 — Gravity Token Sync */
#figma-plugins .framer-1akydrn,  /* card 2 — Get in Line */
#figma-plugins .framer-157nsr {  /* card 3 — Export Variants */
  height: 238px !important;
  padding: 0 !important;
  gap: 0 !important;
  overflow: hidden !important;
}

/* inner container → flat dark ground, centered placeholder mark */
#figma-plugins .pv {
  position: relative;
  width: 100%;
  height: 100%;
  background: #141416;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hide the old illustration + its caption */
#figma-plugins .pv > * { display: none !important; }

/* the placeholder: a small Figma mark */
#figma-plugins .pv::after {
  content: "";
  width: 44px;
  height: 44px;
  background: url("/images/figma-mark.svg") center / contain no-repeat;
}
