/* ABOUTME: Styles consent-gated HTML placeholders before provider content is activated. */
/* ABOUTME: Preserves inferred embed dimensions and centers explanatory copy. */

[data-consent-placeholder] {
  box-sizing: border-box;
  display: grid;
  place-items: center;
  width: var(--consent-placeholder-width, 100%);
  max-width: 100%;
  height: var(--consent-placeholder-height, auto);
  aspect-ratio: var(--consent-placeholder-aspect-ratio, auto);
  padding: 1rem;
  border: 5px dashed lightgrey;
  text-align: center;
}

[data-consent-placeholder] > :first-child {
  margin-top: 0;
}

[data-consent-placeholder] > :last-child {
  margin-bottom: 0;
}
