.rich-text {
  position: relative;
  background-color: rgb(var(--color-background));
}

.rich-text .block-button-group .button {
  white-space: normal;
}

.rich-text__background-image {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  user-select: none;
}

.rich-text__background-image img,
.rich-text__background-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a.rich-text__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

.rich-text__content {
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.rich-text__content > * {
  pointer-events: auto;
}

/* 电脑端正文字号可配置（默认稍大，仅作用于正文 .rte，不影响标题/移动端） */
@media (min-width: 960px) {
  .rich-text__content .rte {
    font-size: var(--rich-text-font-pc, 18px);
  }
}
