/* ============================================================
   PISTEKAUPPA  (/pistekauppa/)
   Full content-width store embed on a brand-styled card that
   grows to the embed's own height (no internal scroll).
   ============================================================ */

.store-embeds {
  display: block;
  margin: 22px 0 8px;
  width: 100%;
}

/* Card spans the full content width — no max-width cap, no centering. */
.store-card {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;              /* embed sits flush; card clips it to the rounded corners */
}

/* Height matched to the CasinoHub store's real content height, measured per
   breakpoint. It's a min-height:100vh app that posts no resize message, so the
   iframe is fixed to fit its content: no internal scroll, no dark gap below.
   Narrow (mobile/tablet) stacks to ~945–969px; desktop 2-column is ~823px. */
.store-embed {
  width: 100%;
  background: transparent;
  height: 985px;
}
@media (min-width: 1200px) {
  .store-embed { height: 845px; }
}
.store-embed iframe {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;   /* content width — beat the iframe's inline max-width:960px */
  border: 0;
  display: block;
  background: transparent;
}
