/* hero a pantalla completa y centrado */
.hero-full{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-top: 10vh;  /* evita que tape el header fijo */
  padding-bottom: 20vh; /* espacio para el formulario */
}

/* traemos el bloque del iframe hacia "dentro" del hero */
.embed-substack{
  position: relative;
  z-index: 5;
  margin-top: -18vh;  /* SUBE el bloque hasta solaparlo con el hero */
  display: flex;
  justify-content: center;
}

/* ancho y look del iframe */
.embed-substack iframe{
  width: min(640px, 90vw) !important;
  height: 120px !important;
  border: 0 !important;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* en móviles, ajusta la superposición para que no se corte */
@media (max-width: 960px){
  .hero-full{ padding-bottom: 24vh; }
  .embed-substack{ margin-top: -14vh; }
  .embed-substack iframe{ height: 140px !important; }
}