.insight_article_style {
  color: rgb(0,0,0);
  font-family: 'Abhaya Libre', serif;
  padding-bottom: 100px;
}

.insight_article_style h1 {
  padding-top: 10px;
  padding-bottom: 30px;
  font-size: 30px;
  font-weight: bold;
}

.insight_article_style h2 {
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 30px;
  font-weight: bold;
}

.insight_article_style h3 {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 25px;
  font-weight: bold;
}

.insight_article_style h4 {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 22.5px;
  font-weight: bold;
}

.insight_article_style h5 {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}

.insight_article_style p {
  font-size: 20px;
  line-height: 30px;
  justify-content: space-between;
  align-items: center;
  text-align: justify;
}

.insight_article_style ol {
  font-size: 20px;
  line-height: 30px;
  justify-content: center;
  align-items: center;
}

.insight_article_style p.left-align {
  display: block;
  text-align: left;
}

@media (max-width: 768px) {
  .insight_article_style img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .insight_article_style h1 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .insight_article_style h2 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .insight_article_style h3 {
    text-align: center;
  }
}

.insight_article_style p a {
  color: rgb(212, 175, 54);
  display: inline-flex;
}

.insight_article_style img {
  display: block;
  margin: 0 auto;
  max-width: 80%;
  padding-bottom: 50px;
}

.insight_article_style a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: rgb(212, 175, 54);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
  margin: auto;
}

.insight_article_style a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

