#hero-rotating-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-base);
  color: var(--text-color);
  background-color: var(--bg-light);
  min-height: 100vh;
}

#hero-rotating {
  width: 100%;
  min-height: 100vh;
  background-size: cover; /* hace que se ajuste al ancho completo */
  background-position: center center; /* recorta desde el centro */
  background-repeat: no-repeat; /* no repetir la imagen */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  border-radius: var(--radius-base);
  transition: background-image 1s ease-in-out;
}
