/*
 * Override frontend cuối cùng của từng dự án.
 *
 * Thứ tự khuyến nghị:
 * baseproject-* -> project-ui.css -> CSS theo trang/tính năng -> style.css
 *
 * Giữ file này nhỏ, chỉ dùng cho các điều chỉnh cuối cùng khó đặt vào module cụ thể.
 * Màu, font token, button, card và component dùng chung đặt trong project-ui.css.
 * Header/home/footer hoặc tính năng lớn nên đặt trong file riêng và khai báo
 * trước style.css tại templates/layout/css.php.
 */

 .meta-toc {
    display: none;
 }

 .gc-page-content {
   display: flex;
 }

.gc-page-content img {
    height: 100%;
    object-fit: contain;
    margin-left: 20px;
  }

   @media (max-width: 768px) {
   .gc-page-content {
     flex-direction: column;
   }

   .gc-page-content img {
     height: 120px;
     margin-left: 0px;
   }
 }
