  /*Sidebar*/
  
  .categories-list {
    padding: 0;
    list-style: none;
    margin-top: 10px;
  }
  
  .categories-list li {
    margin-bottom: 8px;
  }
  
  .categories-list li a {
    font-weight: 700;
    color: #353535 !important;
    transition: 0.25s ease-in-out;
  }
  
  .categories-list li a:hover {
    color: #0050C3 !important;
  }
  
  .most-viewed-posts ul {
    margin-top: 20px;
    list-style: none;
    padding: 0;
  }
  
  .most-viewed-posts li {
    display: flex;
    margin-bottom: 20px;
  }
  
  .most-viewed-posts .post-thumbnail {
    height: 100px;
    min-width: 140px;
    margin-right: 10px;
  }
  
  @media (max-width: 1150px) {
    .most-viewed-posts .post-thumbnail {
      max-width: 140px;
    }
  }
  
  .most-viewed-posts .post-thumbnail img {
    border-radius: 16px;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .most-viewed-posts .post-content .post-title {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    color: #0050C3;
    transition: 0.25s ease-in-out;
  }
  
  .most-viewed-posts .post-content p {
    margin: 0;
    font-size: 13px;
    color: #666;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  
  .most-viewed-posts .post-content p a {
    text-transform: capitalize;
    color: #666;
    transition: 0.25s ease-in-out;
  }
  
  .most-viewed-posts .post-content p a:hover {
    opacity: 0.8;
  }
