main.single-blog {
   article.post {
      h2 {
         font-size: var(--bs-h3-font-size, 1.75rem);
      }

      h3 {
         font-size: var(--bs-h4-font-size, 1.5rem);
      }

      h4 {
         font-size: var(--bs-h5-font-size, 1.25rem);
      }
   }

   .content-sidebar-blogs {
      img {
         border-radius: 20px;
      }

      .content {
         border-bottom-left-radius: 20px;
         border-bottom-right-radius: 20px;

         .description {
            .title {
               display: -webkit-box;
               -webkit-box-orient: vertical;
               overflow: hidden;
               text-overflow: ellipsis;
               line-clamp: 2;
               -webkit-line-clamp: 2;
            }

            .extract {
               display: -webkit-box;
               -webkit-box-orient: vertical;
               overflow: hidden;
               text-overflow: ellipsis;
               line-clamp: 2;
               -webkit-line-clamp: 2;
            }
         }
      }
   }
}