.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

.the-content * {
  word-break: break-word;
  overflow-wrap: break-word;
}
.the-content img {
  max-width: 100%;
}
.the-content :is(h1, h2, h3, h4, h5, h6):not(:first-child) {
  margin-top: 1.5em;
}

/* https://www.modularscale.com/?1&em&1.2 */

.the-content h1 {
  font-size: 2.074rem;
}

.the-content h2 {
  font-size: 1.728rem;
}

.the-content h3 {
  font-size: 1.44rem;
}

.the-content h4 {
  font-size: 1.2rem;
}

.the-content h5 {
  font-size: 1rem;
}

.the-content h6 {
  font-size: 0.833rem;
}

.the-content strong {
  font-weight: 600;
}

.the-content a {
  color: #696c6d;
}
.the-content a:hover {
  color: var(--link-hover-color, #ce8460);
}
.the-content ol,
.the-content ul {
  padding-left: 20px;
}
.the-content ol li,
.the-content ul li {
  margin-bottom: 10px;
}
.the-content ul {
  padding-left: 0;
  margin-bottom: 20px;
  list-style-type: none;
}
.the-content ul li {
  padding-left: 20px;
  position: relative;
}
.the-content ul li::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: var(--primary-color, #ce8460);
  left: 3px;
  top: 8px;
}
.the-content .notices {
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}
.the-content .notices p {
  padding: 10px;
  margin-bottom: 0;
}
.the-content .notices p::before {
  position: absolute;
  top: 2px;
  color: #fff;
  font-family: "themify";
  font-weight: 900;
  content: "\e717";
  left: 10px;
}
.the-content .notices.note p {
  border-top: 30px solid #6ab0de;
  background: #f0f0f0;
}
.the-content .notices.note p::after {
  content: "Note";
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem;
}
.the-content .notices.tip p {
  border-top: 30px solid #78C578;
  background: #f0f0f0;
}
.the-content .notices.tip p::after {
  content: "Tip";
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem;
}
.the-content .notices.info p {
  border-top: 30px solid #F0B37E;
  background: #f0f0f0;
}
.the-content .notices.info p::after {
  content: "Info";
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem;
}
.the-content .notices.warning p {
  border-top: 30px solid #E06F6C;
  background: #f0f0f0;
}
.the-content .notices.warning p::after {
  content: "Warning";
  position: absolute;
  top: 2px;
  color: #fff;
  left: 2rem;
}
.the-content blockquote {
  font-size: 20px !important;
  color: #696c6d;
  padding: 20px 40px;
  border-left: 2px solid var(--primary-color, #ce8460);
  margin: 40px 0;
  font-weight: bold;
  background: #f0f0f0;
}
.the-content blockquote p {
  margin-bottom: 0 !important;
}
.the-content pre {
  display: block;
  padding: 9.5px;
  margin: 10px 0px 10px;
  white-space: pre-wrap;
}
.the-content code {
  margin-bottom: 0 !important;
  font-size: 100%;
}

table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
}
table td,
table th {
  padding: 0.75rem;
  vertical-align: top;
  margin-bottom: 0;
}
tr:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
th {
  font-weight: 500;
}
thead {
  margin-bottom: 0;
}
thead tr {
  border-bottom: 1px solid #ddd;
}
tbody {
  margin-bottom: 0;
}

/* Forms */
input {
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"] {
  border: solid 1px #ccc;
  display: block;
  padding: 8px 4px;
}

label {
  margin-bottom: 0;
}
