/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/
:root {
    --cnvs-themecolor: #ed6c00;
    --cnvs-themecolor-rgb: 237, 108, 0;
    --cnvs-body-font:  "Microsoft JhengHei", Helvetica, sans-serif;
    --cnvs-primary-font:  "Microsoft JhengHei", Helvetica, sans-serif;
    --cnvs-secondary-font: "Microsoft JhengHei", Helvetica, sans-serif;
    
}
#header {
    --cnvs-primary-menu-font-size: 1rem;
}
.home .grid-filter-wrap{ display:none;}
.list-group {
    --bs-list-group-active-bg: #9ed16b;
    --bs-list-group-active-border-color: #9ed16b;
}
.text-truncate-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;      /* 顯示行數：1行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.limit-5-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  min-height: calc(1.5em * 5); /* 預留 5 行高度 */
  line-height: 1.5em;
}
.grid-filter li a {
    padding: 10px;
}