.wysiwyg img {
  max-width: 100%;
  width: inherit;
  height: auto !important;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.wysiwyg p, .wysiwyg ul, .wysiwyg ol {
  margin-bottom: 20px;
}
.wysiwyg p:nth-last-child(1) {
  margin-bottom: 0;
}
.wysiwyg b, .wysiwyg strong {
  font-weight: bold;
}
.wysiwyg em {
  font-style: italic;
}
.wysiwyg a {
  color: var(--grn);
  text-decoration: underline;
}
.wysiwyg a:hover {
  text-decoration: none;
}
.wysiwyg ul {
  list-style-type: disc;
  padding-left: 30px;
}
.wysiwyg ol {
  list-style-type: decimal;
  padding-left: 30px;
}
.wysiwyg li {
  list-style-type: inherit;
}
.wysiwyg sup {
  vertical-align: super;
  font-size: smaller;
}
.wysiwyg sub {
  vertical-align: sub;
  font-size: smaller;
}
.wysiwyg blockquote {
  background-color: #efefef;
}
.wysiwyg table {
  border-collapse: collapse;
}
.wysiwyg th, .wysiwyg td {
  border: solid 1px #efefef;
}
.wysiwyg video {
  width: 100%;
  height: auto;
  max-height: 90vh;
  background-color: #f0f0f0;
}
.wysiwyg .player {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.wysiwyg .player iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media (max-width: 480px) {
  .wysiwyg p, .wysiwyg ul, .wysiwyg ol {
    margin-bottom: 15px;
  }
}