.cw-hero-section {
  position: relative;
  width: 100%;
}

.cw-hero-section__background-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 1;
}

/* Oculta inicialmente la imagen móvil */
.cw-hero-section__background-img.mobile-image {
  display: none;
}

.cw-hero-section__content {
  position: absolute;
  top: 0%;
  z-index: 2;
  width: 100%;
}

/* BEM Modifier for removing padding and margin for child divs */
.cw-hero-section__content--no-pm div {
  padding: 0 !important;
  margin: 0 !important;
}

.cw-hero-section__content .block-editor-block-list__layout {
  padding: 20px;
}

@media (max-width: 768px) {
  /* Muestra la imagen móvil y oculta la de escritorio */
  .cw-hero-section__background-img.desktop-image {
    display: none;
  }

  .cw-hero-section__background-img.mobile-image {
    display: block;
  }

}


/*# sourceMappingURL=cw_hero_section.min.css.map*/