.content__wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    min-width: 360px;
    margin: 0 auto;
  }
  
  .articles__wrapper {
      width: 88.35%;
  }
  
  .article__list_wrapper {    
    display: flex;
    justify-content: space-between;  
  }
  
  .article_thumbnail {
    margin-left: 23px;
  }
  
  .thumbnail-link {
    display: inline-block;
    width: 208px;
    height: 121px;  
    background-repeat: no-repeat;
    /* background-position: center center; */
    background-size: cover;
    border-radius: 4px;
  }
  
  .pagination {
    display: flex;
    justify-content: center;    
  }
  
  @media screen  and (max-width: 768px) {
      .articles__wrapper {
          width: 100%;
      }
      
      .post-summary {
          display: none !important;
      }
  
      .mobile__time {
          margin-top: -20px;
      }
  
      .item-inner > .title > a {
          font-size: 17px;
          font-weight: 500;
          line-height: 1.25;
          letter-spacing: -0.03em;
          display: -webkit-box;
          overflow: hidden;
          white-space: normal;
          text-overflow: ellipsis;
          -webkit-line-clamp: 2;
          webkit-box-orient: vertical;
          word-wrap: break-word;
      }
  
      .thumbnail-link {
          width: 120px;
          height: 70px;
      }        
  }