/* Container principal do banner */
.spell-highlight-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Imagem de fundo */
.spell-highlight-banner__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

/* Overlay */
.spell-highlight-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5); /* default, sobrescrito via inline */
}

/* Conteúdo (texto) */
.spell-highlight-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
}

.spell-highlight-banner__title {
  margin: 0;
  font-weight: bold;
}

/* Imagem flutuante */
.spell-highlight-banner__floating {
  position: absolute;
  z-index: 3;
  transform: translate(-50%, -50%);
}
.spell-highlight-banner__content{
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}