
/* Correzioni autonome e responsive, senza dipendenze dal costruttore. */
html, body { max-width: 100%; }
img, svg, video, iframe { max-width: 100%; }
.wb-picture-wrapper { max-width: 100%; }
@media (max-width: 767px) {
  .wb_content { max-width: 100%; }
  .wb_google_maps_overlay { overflow-wrap: anywhere; }
}
.independent-404 {
  box-sizing: border-box;
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  color: #ffffff;
  background: #1f2933;
  font-family: Poppins, Arial, sans-serif;
}
.independent-404 h1 { margin: 0; font-size: clamp(4rem, 18vw, 9rem); line-height: 1; }
.independent-404 p { margin: 0; font-size: 1.15rem; }
.independent-404 a {
  justify-self: center;
  display: inline-block;
  margin-top: .5rem;
  padding: .8rem 1.2rem;
  border: 2px solid currentColor;
  border-radius: .35rem;
  color: #ffffff;
  text-decoration: none;
}
.independent-404 a:hover, .independent-404 a:focus-visible { color: #1f2933; background: #ffffff; }
