/* Third-party iframe embed: a fixed-size centred frame on the card surface, optional note below.
   The frame's inner content is provider-owned; the theme only sizes and frames it. */
.kit .embed-frame__frame {
  display: block;
  margin: 0 auto;
  border: none;
  max-width: 100%;
  width: var(--embed-frame-width, 900px);
  height: var(--embed-frame-height, 600px);
  background: rgba(var(--color-card-background));
  border-radius: var(--kit-radius);
}

.embed-frame__note {
  text-align: center;
  font-size: 13.5px;
  color: rgba(var(--color-light-text));
  margin: 20px 0 0;
}

.embed-frame__note p {
  margin: 0;
}

.kit .embed-frame__note a {
  color: rgba(var(--color-highlight));
  text-decoration: underline;
}

@media (max-width: 800px) {
  .kit .embed-frame__frame {
    width: 100%;
    height: var(--embed-frame-height-mobile, 480px);
  }
}
