/* Ensure long strings wrap instead of forcing horizontal scroll */
body,
p,
span,
div,
li,
a,
h1, h2, h3, h4, h5, h6,
strong,
em,
blockquote,
td,
th,
label,
button {
  word-wrap: break-word; /* legacy support */
  word-break: normal;
}
/* Prevent URLs and long strings from breaking layouts */
a {
  overflow-wrap: anywhere;
}

/* Ensure content containers can't exceed viewport */
.container,
.row,
.wpb_row,
.wpb_column,
.nectar-section-inner,
.nectar-row,
.col,
div[class*="col-"] {
  max-width: 100%;
}

/* Prevent images and media from causing overflow */
img,
video,
iframe,
embed,
object {
  max-width: 100%;
  height: auto;
}

/* Prevent accidental horizontal scroll */
body {
  overflow-x: hidden;
}