/**
 * Block type frontend style definition.
 * It will be enqueued both in the editor and when viewing
 * the content on the front of the site.
 */
:where(body) {
  --xwp-blocks--ad-slot--background: var(--evolve-media-theme--color--tertiary, #f2f2f2);
  --xwp-blocks--ad-slot--label-color: var(--evolve-media-theme--color--foreground, #181c25);
}

.wp-block-xwpblocks-ad-slot {
  background-color: var(--xwp-blocks--ad-slot--background);
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  height: 100px;
  text-align: center;
  padding-top: 26px;
  font-size: 12px;
}

.wp-block-xwpblocks-ad-slot::before {
  content: "Advertisement";
  text-transform: uppercase;
  font-size: 10px;
  left: 0;
  top: 0;
  width: 100%;
  position: absolute;
  height: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  color: var(--xwp-blocks--ad-slot--label-color);
}