/* Set the default paragraph font for the whole page */
body {
  font-family: 'Lato', sans-serif;
  /* Fallback to a generic sans-serif */
  font-size: 18px;
  line-height: 1.6;
  background-color: #F8F9FA;
  color: #374151;
  /* Default paragraph color */
}

/* Set the header font for all heading levels */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  /* Use the bold weight you imported */
  color: #111827;
}

.article-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 860px;
}

.post {
  margin-bottom: 50px;
  width: 100%;
}

.article-wrapper h1 {
  margin: 0 auto 20px;
}

.entry-content {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.63;
}

.entry-content li:first-child {
  margin-top: 0px;
}

.entry-content li {
  color: #7798be;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.63;
  padding-left: 13px;
  margin-top: 15px;
}

.article-wrapper p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.63;
  max-width: 100%;
}

.entry-content p:last-child {
  margin-bottom: 0;
  margin-top: 30px;
}

@media screen and (min-width:1070px) {
  .main-wrapper {
    margin: 0 auto;
    width: 100%;
  }
}

img {
  max-width: 400px;
}

.article-wrapper ol,
.article-wrapper ul {
  margin: 30px 0 0;
  padding: 30px 30px 30px 45px;
  background-color: #ffffff;
  border-radius: 5px;
  display: block;
  list-style: disc outside;
  width: 100%;
}

.article-wrapper li {
  color: #7798be;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.63;
  padding-left: 13px;
  margin-top: 15px;
}

.article-layout-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.article-sidebar {
  width: 220px;
  min-height: 600px;
  background: #f7f9fa;
  border: 1px solid #e0e0e0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
  padding: 1.5em 1em;
  font-size: 1em;
  color: #444;
  flex-shrink: 0;
}

.article-wrapper {
  flex: 1 1 0%;
  max-width: 800px;
  margin: 0 2em;
}