@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');

body {
  position: relative;
  font-family:sans-serif;
  background-color: #f5f1ed;
  font-size: 16px;
  color:#424242;
  line-height: 1.7;
  transition: background-color 0.5s ease;
  font-family: 'Noto Sans TC', sans-serif;
  scroll-behavior: smooth;
}
a{
  text-decoration: none;
}
::selection {
  background-color: #0B433A; 
  color: #FF6339
}


.wrapper {
  transform-origin: center bottom 0px;
  transition: all 0.5s ease 0s;
  background-color: #f5f1ed;
  padding-bottom: 50px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.14);
}
body.tight .wrapper {
  transform: translateY(-60px) scale(0.9);
}

@media screen and (max-width: 768px) {
  .wrapper{
    box-shadow:none;
  }
  body.tight .wrapper{
    transform: none;
  }

}
/* 
---------------------------------------------------------------------------------------------
preloader
---------------------------------------------------------------------------------------------
*/

.js div#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #000;
}
.lds-facebook {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 80px;
  height: 80px;

}
.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: #fff;
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.lds-facebook div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}
.lds-facebook div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}
.lds-facebook div:nth-child(3) {
  left: 56px;
  animation-delay: 0;
}
@keyframes lds-facebook {
  0% {
    top: 8px;
    height: 64px;
  }
  50%, 100% {
    top: 24px;
    height: 32px;
  }
}


/* 
---------------------------------------------------------------------------------------------
reveal block
---------------------------------------------------------------------------------------------
*/
.reveal-holder {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.reveal-holder .reveal-block {
  position: absolute;
  top: 0;
  width: 100%;
  height: 101%;
  background: #0B433A;
}
.reveal-holder .reveal-block::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:#FF6339;
  transition-property: transform;
  transition-duration: 0.5s;
}
.reveal-block.top.aos-animate::before,
.reveal-block.bottom.aos-animate::before {
  transform: scaleY(1);
}

.reveal-block.left.aos-animate::before,
.reveal-block.right.aos-animate::before {
  transform: scaleX(1);
}

.reveal-block.top::before {
  transform: scaleY(0);
  transform-origin: 0% 100%;
}

.reveal-block.left::before {
  transform: scaleX(0);
  transform-origin: 100% 0%;
}

.reveal-block.right::before {
  transform: scaleX(0);
  transform-origin: 0% 100%;
}

.reveal-block.bottom::before {
  transform: scaleY(0);
  transform-origin: 100% 0%;
}

/* AOS animate */
[data-aos=reveal-top],
[data-aos=reveal-left],
[data-aos=reveal-right],
[data-aos=reveal-bottom] {
  transition-property: transform;
  transition-delay: 0.3s;
}

[data-aos=reveal-top] {
  transform: scaleY(1);
}
[data-aos=reveal-top].aos-animate {
  transform: scaleY(0);
  transform-origin: 100% 0%;
}

[data-aos=reveal-left] {
  transform: scaleX(1);
}
[data-aos=reveal-left].aos-animate {
  transform: scaleX(0);
  transform-origin: 0% 100%;
}

[data-aos=reveal-right] {
  transform: scaleX(1);
}
[data-aos=reveal-right].aos-animate {
  transform: scaleX(0);
  transform-origin: 100% 0%;
}

[data-aos=reveal-bottom] {
  transform: scaleY(1);
}
[data-aos=reveal-bottom].aos-animate {
  transform: scaleY(0);
  transform-origin: 0% 100%;
}

[data-aos=reveal-item] {
  visibility: hidden;
  transition-property: visibility;
  transition-duration: 0s;
}
[data-aos=reveal-item].aos-animate {
  visibility: visible;
}

/* 
---------------------------------------------------------------------------------------------
header + navigation
---------------------------------------------------------------------------------------------
*/

header {
  position: fixed;
  width: 100%;
  max-width: 100%;
  height:auto;
  top:0;
  left:0;
  padding: 10px 0px 13px;
  z-index: 1030;
}
.stick-header header{
  background-color:#f4e9e1;
}
.topnav{
  transition:500ms ease;
  background:transparent;
}
.topnav.scrolled{
  background:#f4e9e1;
}


header .logo{
  max-height: 23px;
}
header .logo-g{
  max-height: 23px;
  display: none;
}
.topnav.scrolled .logo,.stick-header .logo{
  display: none;
}
.topnav.scrolled .logo-g,.stick-header .logo-g{
  display: block;
}



nav ul{
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
}
nav ul .nav-item{
  display: inline-block;
  padding: 0 15px;
  font-size: 0.9em;
  font-family: 'Noto Serif TC', serif;
  font-weight: 700;
}
nav ul .nav-item .nav-link{
  color: #fff;
  text-decoration: none;
  padding-bottom: 3px;
  white-space: nowrap;
  padding: 0;
}
nav ul .nav-item a:hover{
  color: #FF6339;
}
nav ul .nav-item a:active,nav ul .nav-item a:focus{
  color: #FF6339;
}
nav ul .nav-item a span{
  font-size: 0.7em;
  color: #fff;
  display: inline-block;
}
nav ul .nav-item a:hover span{
  color: #FF6339;
}

.stick-header .topnav .nav-item .nav-link{
  color:#0B433A ;
}
.stick-header .topnav .nav-item .nav-link:hover{
  color:#FF6339 ;
}

.topnav.scrolled .nav-item .nav-link{
  color:#0B433A ;
}
.topnav.scrolled .nav-item .nav-link:hover{
  color:#FF6339 ;
}



.dropdown-menu {
  background-color: #0B433A;
  border: none;
  border-radius: 0;
}

.dropdown-item {
  color: #ffffff;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #0B433A;
  color: #ffffff;
}



/* 
---------------------------------------------------------------------------------------------
mobile nav
---------------------------------------------------------------------------------------------
*/

.bot-nav{
  position: fixed;
  left: 50%;
  bottom:0;  
  transform: translate(-50%);
  z-index: 99999;
  padding:15px 15px 20px;
  width: 100%;
}
.bot-nav::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
    background-color: rgba(16,18,27,.4);
  -webkit-backdrop-filter:blur(20px);
  backdrop-filter: blur(20px);
  z-index: -1;
}
.bot-nav .logo{
  max-height: 20px;
}

#toggle {
  display: block;
  width: 28px;
  height: 16px;
  margin:14px 0 0;
}
#toggle span:after,
#toggle span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -9px;
}
#toggle span:after {
  top: 9px;
}
#toggle span {
  position: relative;
  display: block;
}
#toggle span,
#toggle span:after,
#toggle span:before {
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s;
  backface-visibility: hidden;
  border-radius: 2px;
}
/* on activation */
#toggle.on span {
  background-color: transparent;
}
#toggle.on span:before {
  transform: rotate(45deg) translate(5px, 5px);
}
#toggle.on span:after {
  transform: rotate(-45deg) translate(7px, -8px);
}
#toggle.on + #menu {
  opacity: 1;
  visibility: visible;
}
#menu {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  margin-bottom:64px;
  width: 100%;
  padding:15px;
  z-index: 999;
  background-color: rgba(16,18,27,.4);
  -webkit-backdrop-filter:blur(20px);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
}
#menu ul li{
  list-style: none;
  padding:30px 15px 5px;
  letter-spacing: 0.1em;
  font-size: 2em;
  line-height: 1.1;
}
#menu ul li a{
  color: #fff;
  font-family: 'Noto Serif TC', serif;
  font-weight: 700;
}
#menu ul li a span{
  display: block;
  list-style: none;
  font-size: 15px;
  letter-spacing: 0;
  padding-right: 15px;
}





/* 
---------------------------------------------------------------------------------------------
 index-side-nav
---------------------------------------------------------------------------------------------
*/
.index-side-nav {
  position: fixed;
  top: 50%;
  right:20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 998;
}

.index-side-link-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.index-side-nav a {
  text-decoration: none;
  font-size: 13px;
  color: #FF6339;
  padding: 15px 0;
  transition: background 0.3s;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.index-side-nav a:hover {
  background: #f8f8f8;
}

.index-side-nav .dot {
  font-size: 10px;
  color: #FF6339;
  margin-top: 4px;
  pointer-events: none; /* 不干擾 hover */
}

@media screen and (max-width: 768px) {
  .index-side-nav {
    display: none;
  }
}

/* 
---------------------------------------------------------------------------------------------
 index banner slider
---------------------------------------------------------------------------------------------
*/
.index-slider-banner{
}
.index-slider-banner .carousel-indicators{
  left: auto;
  margin-right:1%;
}

.index-slider-banner .carousel-indicators [data-bs-target] {
  position: relative;
  width: 30px;
  height: 5px;
  border: none;
  border-radius: 15px;
  background-color: #fff;
}
.index-slider-banner .carousel-indicators [data-bs-target] span {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #FF6339;
  border-radius: inherit;
}

/*image banner*/
.imgbg-container {
  height: 95vh;
  width: 100%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
/*video banner*/
.videobg-container {
  height: 95vh;
  width: 100%;
  position: relative;
}
.videobg-container:after,.imgbg-container:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 100%);
  top: 0;
  left: 0;
}
.videobg-container video {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}

/*slider-banner-content*/
.slider-bg-content{
  z-index: 1;
  position: absolute;
  left: 5%;
  bottom:70px;
  width: 60%
}
.slider-bg-content h2{
  font-family: 'Noto Serif TC', serif;
  font-size: 2.8em;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom:5px;
  color: #fff;
}

.slider-bg-content .tags-container {
    display: flex; /* 使用 Flexbox 讓子元素排列在同一行 */
    flex-wrap: wrap; /* 允許內容換行（如果超出容器寬度） */
    gap: 0; /* 預設間距為 0 */
    margin-bottom: 15px;
}
.slider-bg-content .tags-container .tag {
    font-size: 0.9em;
    background-color:#FF6339;
    color: #fff;
    padding:0 6px;
    margin: 0; /* 移除多餘的上下間距 */
}
/* 當有多個 <p> 時，加入間距 */
.slider-bg-content .tags-container .tag + .tag {
    margin-left: 4px; /* 設定左側間距，間距大小可自行調整 */
}



/*.vid-bg-content{
  z-index: 1;
  position: absolute;
  left: 0;
  bottom:5%;
  width: 100%
}

.banner-content{
  height: 100%;
}
.banner-content-detail{
  width: 100%;
  margin-bottom:50px;
}
.banner-content-detail h2{
  font-family: 'Noto Serif TC', serif;
  font-size: 3em;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom:5px;
  color: #fff;
}
.banner-content-detail .category{
  font-size: 0.9em;
  color: #fff;
  font-weight: 500;
  font-family: 'Noto Serif TC', serif;
  font-style: italic;
  letter-spacing: 0.2em;
}
.banner-article:hover .category {
  color: #FF6339;
}
.banner-content-detail p{
  font-weight: 300;
  line-height: 1.5;
  margin:10px 0;
  color: #fff;
  letter-spacing: 0.05em;
}

.bannerhr {
  width: 100%;
  height: 1px;
  background:rgba(255, 255, 255, .5);
  margin: 0 auto;
}
.banner-article:hover .bannerhr {
  background-color: #FF6339;
  animation: bannerLine 2s ease infinite;
}
@keyframes bannerLine {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  45% {
    transform-origin: left;
    transform: scaleX(1);
  }
  55% {
    transform-origin: right;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}*/

@media screen and (max-width: 768px) {
  .index-slider-banner{
    margin-top: 0;
  }
  .imgbg-container,.videobg-container{
    height: 400px;
  }
  .slider-bg-content{
    z-index: 1;
    position: absolute;
    left:0;
    bottom:8%;
    width: 100%;
    padding: 15px;
  }
  .slider-bg-content h2{
    font-family: 'Noto Serif TC', serif;
    font-size: 1.5em;
    line-height: 1.4;
    font-weight: 700;
    color: #fff;
  }
  .index-slider-banner .carousel-indicators{
    left: 0;
    margin-right:15%;
  }


  /*.vid-bg-content{
    left: 0;
    top:0;
    bottom:0;
  }
  .banner-content-detail{
    padding-top: 100px;
    margin-bottom:0
  }
  .banner-content-detail .category{
    display: inline-block;
    background-color:rgba(255, 99, 57, .5) ;
    padding:1px 5px;
    margin-bottom: 5px;
  }
  .banner-article:hover .category {
    color: #fff;
  }
  .bannerhr {
    display: none;
  }
  .banner-content-detail h2{
    font-size: 2.2em;
    margin-bottom: 70px;
  }
  .banner-content-detail p{
    font-size: 1.1em;
    font-weight: 500; 
    margin:0;
  }
  .banner-article{
    margin-bottom: 20px;
  }*/
}

/* 
---------------------------------------------------------------------------------------------
tags-section
---------------------------------------------------------------------------------------------
*/

.tags-section{
  padding:80px 0 30px;
}
.tags-section .tags-readmore{
  font-size: 13px;
  color:#0B433A;
}
.title-style-line-right {
  display: flex;
  align-items: center;
  gap: 3em;
  padding:0 10px;
}
.title-style-line-right::after {
  content: '';
  height: 1px;
  background: #0B433A;
  flex-grow: 1;
}
.title-style-line-right h2 {
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
  color: #0B433A;
}
.title-style-line-right h2 span {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #0B433A;
  font-family: 'Noto Serif TC', serif;
  margin:10px 0 35px;
  letter-spacing:-0.05em
}


.newsroom-index-item {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.newsroom-col-stretch .newsroom-index-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.newsroom-index-item h3{
  color: #0B433A;
  font-family: 'Noto Serif TC', serif;
  font-size:1.1em;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 0;
}
.newsroom-index-item .newsroom-item-date{
  color: #0B433A;
  margin-bottom:5px;
}

.newsroom-index-item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.newsroom-index-item .tags-container {
    display: flex; /* 使用 Flexbox 讓子元素排列在同一行 */
    flex-wrap: wrap; /* 允許內容換行（如果超出容器寬度） */
    gap: 0; /* 預設間距為 0 */
    margin-bottom: 15px;
}
.newsroom-index-item .tags-container .tag {
    font-size: 0.7em;
    color: #FF6339;
    border:1px solid #FF6339;
    padding:0 6px;
    margin: 0; /* 移除多餘的上下間距 */
}
/* 當有多個 <p> 時，加入間距 */
.newsroom-index-item .tags-container .tag + .tag {
    margin-left: 4px; /* 設定左側間距，間距大小可自行調整 */
}


@media screen and (max-width: 768px) {
  .tags-section{
    padding: 30px 0;
    margin-top: 20px;
  }
  .tags-section .tag-card{
    padding:0 5px;
  }
  .title-style-line-right h2 {
    font-size: 20px;
  }
  .title-style-line-right h2 span {
    display: block;
    font-size: 15px;
    margin-bottom: 0;
  }
  .newsroom-index-item h3{
    font-size: 1em;
  }
  .newsroom-index-item .newsroom-item-date{
    margin-top: 5px;
  }
  .newsroom-index-item .tags-container .tag{
    font-size: 11px;
  }
}  




/* 
---------------------------------------------------------------------------------------------
index topic / issue
---------------------------------------------------------------------------------------------
*/

/*.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none; 
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    content: '';
    display: inline-block;
    width: 20px; 
    height: 20px; 
    background-color: currentColor; 
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" class="bi bi-chevron-left" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M11.354 1.354a.5.5 0 0 1 0 .707L5.707 8l5.647 5.647a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z"/> </svg>') no-repeat center / contain;
}
.carousel-control-next-icon::after {
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="%23ffffff" class="bi bi-chevron-right" viewBox="0 0 16 16"> <path fill-rule="evenodd" d="M4.646 1.354a.5.5 0 0 0 0 .707L10.293 8 4.646 13.646a.5.5 0 0 0 .708.708l6-6a.5.5 0 0 0 0-.708l-6-6a.5.5 0 0 0-.708 0z"/> </svg>') no-repeat center / contain;
}

.carousel-control-prev,
.carousel-control-next,
.carousel-control-prev:hover,
.carousel-control-next:hover  {
    color:#fff; 
}
*/
#topic-slide .carousel-control-prev {
  margin-left: -25px;
}

#topic-slide .carousel-control-next {
  margin-right: -25px;
}

.index-issue-warp{
  padding:0;
  background-color: #0B433A;
}


.topic-warp{
  position: relative;
  padding:50px;
  background-size: cover;
  background-position: center;
}
.topic-warp:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg_dot.png);
  top: 0;
  left: 0;
}
.topic-intro{
  z-index: 2;
  color: #fff;
  font-family: 'Noto Serif TC', serif;
}
.topic-intro .topic{
  font-size: 1em;
  margin-bottom: 40px;
}
.topic-intro h2 {
  font-size: 1.6em;
  font-weight: bold;
  position: relative;
  line-height: 1.5;
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 2px solid #fff;
}
.topic-intro p{
  font-size: 0.8em;
  font-style: italic;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.topic-intro a{
  color: #424242;
}
.topic-intro .category{
  font-size: 0.9em;
  margin-bottom: 0;
  padding-bottom: 8px;
  color: #FF6339;
}
.topic-card{
  color: #424242;
  box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.1);
}
.topic-card:hover{
  box-shadow: 0 30px 60px 0 rgba(255, 99, 57, 0.3);
  transition: .8s ease;
}
.topic-card img{
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

.topic-content{
  padding:15px 20px 20px;
  background: #fff;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.topic-content h3{
  font-family: 'Noto Sans TC', sans-serif;
  font-size:1em;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  min-height: 50px;
  font-family: 'Noto Serif TC', serif;
}

@media screen and (max-width: 768px) {
  .topic-warp{
    padding:60px 15px;
  }
  .topic-intro p{
    font-size: 1em;
    font-style: italic;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  .topic-intro .topic{
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .topic-intro .category{
    font-size: 1em;
    font-weight: bold;
    margin-top: 30px;
  }

  #topic-slide .carousel-control-prev,#topic-slide .carousel-control-next {
    display: none;
  }

}

/* 
---------------------------------------------------------------------------------------------
index - featured warp
---------------------------------------------------------------------------------------------
*/
.feature-section{
  padding: 100px 0 0;
}


.featured-warp{
  position: relative;
  height: 550px;
}

.featured-bg{
  position: relative;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  clip-path: inset(0 0 0 25%); /* 初始狀態下顯示80%寬度 */
  transition: clip-path 0.5s ease-in-out;
}

.feature-content-warp{
  position: absolute;
  max-width: 35%;
  top:0;
  left: 0;
/*  transform: translate(0,-50%);*/
}

.feature-content-warp h2 {
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
  color: #0B433A;
  margin:20px 0 70px;
}
.feature-content-warp h2 span {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #0B433A;
  font-family: 'Noto Serif TC', serif;
  margin:10px 0 35px;
  letter-spacing: -0.05em;
}

.featured-content{
  background-color: #fff;
  padding: 30px;
}
.featured-content .category{
  font-weight: 300;
  color: #FF6339;
  font-size: 15px;
}
.featured-content h3{
  font-size: 1.5em;
  line-height: 1.5;
  font-weight: bold;
  position: relative;
  margin: 30px 0 30px;
  font-family: 'Noto Serif TC', serif;
}
.featured-content a{
  color: #424242;
}
.featured-content a:hover{
  color: #888;
}
.featured-content p{
  font-size: 0.8em;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .feature-section{
    padding: 50px 0;
  }

  .featured-warp{
    height: auto;
  }
  .featured-bg{
    position: relative;
    width: 100%;
    height: 300px;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path:none; 
  }

  .feature-content-warp{
    position: relative;
    display: block;
    top:0;
    transform:none;
    min-width: 100%;
  }
  .feature-content-warp h2{
    display: none;
  }
  .featured-content{
    min-width: 100%;
    padding: 20px;
  }
  .featured-content h3{
    font-size: 1.2em;
    font-weight: bold;
    position: relative;
    border-left:none;
    padding-left: 0;
    margin: 15px 0 20px;
    font-family: 'Noto Serif TC', serif;
  }
}


/* 
---------------------------------------------------------------------------------------------
index - editorial
---------------------------------------------------------------------------------------------
*/
.index-editorial-section{
  padding: 100px 0;
}

.index-readmore{
  text-align: center;
  margin: 3.5em auto 0;
}
.index-readmore a{
  color: #FF6339;
}
.index-readmore a i{
  padding-left: 10px;
}


.editorial-collapse {
  display: flex;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.editorial-collapse .thumb {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: flex 0.4s ease;
  text-decoration: none;
  color: inherit;
}

.editorial-collapse .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.editorial-collapse .thumb .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding:10px 20px;
  background:#fff;
  color: #0B433A;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: opacity, transform;
  min-height: 110px;
}
.editorial-collapse .thumb .content h3{
  font-size: 1.2em;
  font-weight: 700;
  font-family: 'Noto Serif TC', serif;
}
.editorial-collapse .thumb .content p{
  font-size: 0.8em;
  font-weight: 300;
  margin-bottom:5px;
}

.editorial-collapse:hover .thumb {
  flex: 1;
}

.editorial-collapse .thumb:hover {
  flex: 2;
  z-index: 1;
}

.editorial-collapse .thumb:hover .content {
  opacity: 1;
}

@media (max-width: 767px) {
  .index-editorial-section{
    padding: 30px 0;
  }
  .editorial-collapse {
    flex-direction: column;
    height: auto;
  }

  .editorial-collapse .thumb {
    flex: none;
    height: auto;
    margin-bottom: 1em;
    overflow: hidden;
  }

  .editorial-collapse .thumb img {
    height: 250px;
  }

  .editorial-collapse .thumb .content {
    position: static;
    background: #ffffff;
    color: #333;
    opacity: 1;
    transform: none;
  }
}


/* 
---------------------------------------------------------------------------------------------
index - Think Do Deliver
---------------------------------------------------------------------------------------------
*/

.features-thumbnail{
  min-width: 100%;
  background-size: cover;
  background-position: center;
  aspect-ratio: 4 / 3;
  position: relative;
  background-size: 100%;
  transition: all 0.3s ease-in-out;
}
.features-thumbnail i{
  color: #fff;
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 30px;
  font-size: 1.5em;
}
.features-thumbnail:hover {
 box-shadow: 2.5px 4.33px 15px 0px rgba(0, 0, 0, 0.4);
 background-size: 105%;
} 
.features-thumbnail a{
  color: #fff;
}
.features-thumbnail .category-warp{
  position: absolute;
  top: 15px;
  left: 20px;
  display: flex; /* 使用 Flexbox 讓子元素排列在同一行 */
  flex-wrap: wrap; /* 允許內容換行（如果超出容器寬度） */
  gap: 0; /* 預設間距為 0 */
}

.features-thumbnail .category{
  display: inline-block;
  font-size: 0.8em;
  font-family: 'Noto Serif TC', serif;
  color:#fff!important;
  padding:0 3px;
  background-color: #FF6339;
  border-radius: 3px;
}
/* 當有多個 <p> 時，加入間距 */
.features-thumbnail .category + .category {
    margin-left: 10px; /* 設定左側間距，間距大小可自行調整 */
}







.features-latest-content{
  position:absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .8) 100%);
  padding:80px 20px 20px 20px;
  align-items: start;
}
.features-latest-content h3{
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0;
  font-family: 'Noto Serif TC', serif;
}
.features-latest-content a{
  color: #fff;
}

.fancy-heading {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  position: relative;
  margin:80px 0 40px;
}
.fancy-heading::before,
.fancy-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #ccc;
  margin: 0 16px;
}



@media screen and (max-width: 768px) {
  .features-warp{
    padding-bottom: 30px;
  }
  .features-img{
    background-image:none!important;
    min-height: 200px;
  }
  .features-img:after {
    background:none;
  }
  .features-content{
    min-height:200px;
    padding: 15px 15px 30px;
  }
  .features-content h3{
    font-size: 1em;
    color:#424242;
    border-color:#424242;;
  }
  .features-content p{
    color:#424242;
  }
  .features-thumbnail{
    margin-bottom: 15px;
  }
}

/* 
---------------------------------------------------------------------------------------------
issue slider (tag)
---------------------------------------------------------------------------------------------
*/

.issuechannel-warp{
  padding: 50px 0 ;
}
.issuechannel-warp .card {
  border:none;
  border-radius: 0;
  background-color: #0B433A;
  position: relative;
}
.issuechannel-warp .card  img {
  opacity: 0.3;
}
.issuechannel-warp .card:hover img {
  transition: 0.5s;
  opacity: 1;
}
.issuechannel-warp .card h4{
  font-family: 'Noto Serif TC', serif;
  font-size: 1.2em;
  margin: 0;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.2em;
  font-weight: bold;
  width: 100%;
}
.issuechannel-warp .btn{
  font-size: 1em;
}
.issuechannel-warp h2{
  font-family: 'Noto Serif TC', serif;
  position: relative;
  font-size: 2em;
}
.issuechannel-warp h2:before{
  content: "";
  width: 100%;
  background-color: #424242;
  height: 2px;
  position: absolute;
  left: 0;
  bottom:15px ;
}
.issuechannel-warp h2 span{
    background-color: #f5f1ed;
    padding-right:10px;
    display: inline-block;
    position: relative;
    font-weight:500;
}

@media screen and (max-width: 768px) {
  .issuechannel-warp .card h4{
    font-size: 0.9em;
    font-weight: 700;
    letter-spacing: 0;
  }
}



/* 
---------------------------------------------------------------------------------------------
index - videoarea
---------------------------------------------------------------------------------------------
*/
.index-video-area{
  padding: 0;
}

.index-video-area .banner-bg{
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.index-video-area .banner-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; 
  background: linear-gradient(to right, black 0%, transparent 20%, transparent 80%, black 100%);
  opacity: 0.3;
}

.index-video-area .carousel-indicators{
  justify-content:center;
}

.index-video-area .desc{
  padding: 50px 0 0;
  min-height: 630px;
  z-index: 2;
}

.index-video-area .index-video-content{
  padding: 40px;
  width: 90%;
  float: right;
  color: #fff;
}

.index-video-area .index-video-content h3{
  font-size: 1.6em;
  font-family: 'Noto Serif TC', serif;
  font-weight: 700;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #fff;
}
.index-video-area .index-video-content h5{
  font-size: 1.1em;
  margin-bottom: 10px;
  font-weight: 700;
}
.index-video-area .index-video-content p{
  font-size: 0.9em;
  margin-bottom: 0;
  font-weight: 300;
}

.index-video-area .index-video-content a{
  color:#fff
}
.index-video-area .index-video-content a:hover{
  color:#fff
}

.index-video-area .btn-custom{
  display: inline-block;
  margin:3em 0 0;
  background-color: rgba(0, 0, 0, 0.3);
  padding:5px 30px 8px;
  border-radius:3px;
}
.index-video-area .btn-custom:hover{
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
}

.index-video-area .btn-custom i{
}
.index-video-area .btn-custom span{
  padding-left: 8px;
}

.vid-partner {
  padding:10px 80px 10px 20px;
  position: absolute;
  bottom: 20%;
  right: 0;
/*  transform: translate(0%, -50%);*/
  background-color: rgba(255, 99, 57,.8);
  border-top-left-radius:3px;
  border-bottom-left-radius:3px;
}
.vid-partner h6{
  font-size: 0.8em;
  font-weight: 300;
  color: #fff;
  margin-bottom:0;
}
.vid-partner p{
  font-size: 1.1em;
  color: #fff;
  margin-bottom: 0;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .index-video-area{
    padding: 50px 0;
  }
  .index-video-area .banner-bg{
    min-height: 450px;
  }

  .index-video-area .banner-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to top, black 0%, transparent 100%);
    opacity: 0.9;
  }

  .index-video-area .desc{
    padding: 0;
    min-height: 0;
  }
  .index-video-area .index-video-content{
    width:100%;
    padding:50px 25px 0;
    color: #fff;
  }
  .index-video-area .index-video-content h3{
    font-size: 1.2em;
    padding:10px 0;
    margin-bottom:10px;
    border-left:none;
    border-bottom: 1px solid #fff;
  }
  .index-video-area .index-video-content p{
    font-size: 0.8em;
    text-align: justify;
  }
  .index-video-area .btn-custom{
    display: inline-block;
    margin:2em auto 0;
    background-color: #fff;
    padding:5px 30px 8px;
    color: #0B433A!important;
  }
  .vid-partner {
    padding:10px 20px 10px;
    bottom: 10%;
    background-color: rgba(255, 99, 57, .6);
  }
  .vid-partner h6{
    font-size: 11px;
  }
  .vid-partner p{
    font-size: 13px;
  }
}


/* 
---------------------------------------------------------------------------------------------
footer
---------------------------------------------------------------------------------------------
*/
.index-donow{
  padding: 100px 0;
}
.index-donow h2 {
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
  color: #0B433A;
  text-align: center;
}
.index-donow h2 span {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: #0B433A;
  font-family: 'Noto Serif TC', serif;
  margin:10px 0 35px;
  text-align: center;
}

.index-donow-img{
  position: relative;
  background-image: url('../images/LINE_ALBUM_240717_116.jpg');
  background-size: cover;
  background-position: center;
  min-height: 500px;
  border-radius: 1em;
  margin: 20px 0;
}
.index-donow-img::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, .8), transparent);
  border-radius:1em;
}

.index-donow-content{
  color: #fff;
  padding:0 30px;
  z-index: 5;
  position: absolute;
  width: 45%;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
}

.index-donow-content h3{
  font-size: 1.6em;
  margin-bottom:5px;
  font-weight: bold;
  font-family: 'Noto Serif TC', serif;
  text-align: left;
}
.index-donow-content h4{
  font-size: 1.3em;
  margin-bottom:5px;
  font-weight: 500;
  font-family: 'Noto Serif TC', serif;
}
.index-donow-content p{
  border-top: 1px solid #fff;
  margin-top: 20px;
  padding-top: 20px;
  font-size: 0.9em;
  font-weight: 300;
  text-align: justify;
}

.donow-link{
  font-size: 0.9em;
  display: inline-block;
  color: #fff;
  border-radius: 30px;
  padding: 8px 30px;
  border:1px solid #fff;
  margin:20px auto 0;
}
@media screen and (max-width: 768px) {
  .index-donow{
    padding: 50px 0;
  }
  .index-donow-content{
    width:100%
  }
  .index-donow-content h2{
    font-size: 2em;
    padding-bottom:15px;
    margin-bottom:15px;
  }
  .index-donow-img{
    min-height: 400px;
  }
  .index-donow-img::before {
    background: linear-gradient(to top, rgba(0, 0, 0,1), transparent);
  }

}





/* 
---------------------------------------------------------------------------------------------
footer
---------------------------------------------------------------------------------------------
*/
footer {
  position: relative;
  width: 100%;
  padding:20px 0;
  background:#f4e9e1;
}
footer p{
  color:#0B433A;
  font-size: 0.8em;
}
footer a {
  color:#0B433A;
  text-decoration: none;
}
footer a:hover{
  color:#0B433A;
}
.copyright-link{
  margin:0;
  padding: 0;
}
.copyright-link li{
  font-size: 0.8em;
  display: inline;
  padding:0 15px;
}
.footer-social{
  margin-top: -8px;
}
.footer-social a{
  font-size: 1.2em;
  padding:0 10px;
}
@media screen and (max-width: 768px) {
  footer{
    padding:30px 0 80px;
  }
  .footer-social{
    margin:0 0 20px ;
  }
  .footer-social a{
    font-size: 2em;
    padding: 0 20px;
  }
  .copyright-link{
    margin-bottom: 20px;
  }
  .copyright-link li{
    font-size:13px;
    padding: 0 5px;
  }
  footer p{
    font-size:13px;
  }
}

/* 
---------------------------------------------------------------------------------------------
single page
---------------------------------------------------------------------------------------------
*/
.single-banner{
  background-color:rgb(54, 52, 50, 1.0);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  padding: 100px 0 40px;
  position: relative;
}
.single-banner h1{
  font-size: 2.5em;
  font-weight: bold;
  font-family: 'Noto Serif TC', serif;
  color: #fff;
  margin-bottom: 0;
}
.single-page-warp{
  padding-top: 40px;
}
.single-page-warp .article-content h3{
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .single-banner{
    padding-top: 50px;
  }
}

/* 
---------------------------------------------------------------------------------------------
  article list page
---------------------------------------------------------------------------------------------
*/
.ct-warp{
  margin: 0 auto;
  padding-top: 5em;
}
.category-list-warp{
  position: relative;
}


.category-list-nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  font-family: sans-serif;
}
.category-list-nav-item {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  padding: 0.25rem 0.5rem 0.1rem;
  transition: color 0.3s, border-bottom 0.3s;
  border-bottom: 1px solid transparent;
}
.category-list-nav-item:hover {
  color: #FF6339;
  border-bottom: 1px solid #FF6339;
}



.list-introtitle{
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.list-introtitle:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/bg_dot.png);
  top: 0;
  left: 0;
}
.list-intro-content{
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  padding:30px;
  z-index: 2;
}
.list-intro-content h2{
  font-size: 2em;
  font-family: 'Noto Serif TC', serif;
  font-weight: 700;
  margin-bottom:15px;
}
.list-intro-content h6{
  font-size: 0.8em;
  font-weight: 900;
  margin-bottom:0;
}
.list-intro-content p{
  font-size: 0.8em;
  font-family: 'Noto Serif TC', serif;
  font-weight: 300;
  margin-bottom: 30px;
}
.list-intro-content .readmore{
  color: #fff;
  border:1px solid #fff;
  padding: 5px 10px;
  border-radius: 3px;
  transition: all 0.2s ease;
  font-size: 0.9em;
}
.list-intro-content .readmore:hover{
  color: #0B433A;
  background-color: #fff;
}

/**/
.list-intro-item{
  margin:15px 0;
}
.list-intro-item .tag{
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 0.9em;
    display: flex; /* 使用 Flexbox 確保內容在同一行 */
    gap: 0; /* 預設間距為 0 */
}
.list-intro-item .tag a {
    text-decoration: none;
    color: #0B433A;
    font-family: 'Noto Serif TC', serif;
    font-style: italic;
    margin-right: 0; /* 預設右邊沒有額外間距 */
}

/* 當有多個 <a> 時，設置間距 */
.list-intro-item .tag a + a {
    margin-left: 15px; /* 為每個後續的 <a> 添加左側間距 */
}

.list-intro-item h3{
  font-size: 1.2em;
  font-weight: 700;
  font-family: 'Noto Serif TC', serif;
  line-height: 1.5;
  margin-bottom:0;
  letter-spacing: 0.05em;
  text-align: justify;
}
.list-intro-item a h3{
  color: #000;
}
.list-intro-item a h3:hover{
  color: #555;
}
.list-intro-img{
  width: 120px;
  height: 120px;
  object-fit: cover;
}


/**/
.category-list{
  padding-top: 75px;
}
.category-list .list-item{
  margin-bottom: 30px;
}
/*.category-list .list-item:hover{
  background-color: #fff;
  box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.1);
}*/

.category-list .list-item {
  position: relative;
  overflow: hidden;
}
.category-list .list-item::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: top 0.5s ease-in-out;
  z-index: -1;
}
.category-list .list-item:hover::before {
  top: 0;
}
.category-list .list-item .category-content {
  position: relative;
  z-index: 2; /* Ensure content is above the background */
}

.category-content{
  position: relative;
  padding:20px 15px;
  height: 100%;
  transition: all 0.3s ease-out;
}
.category-content a{
  color: #000;
}
.category-list .category-content{
  height: 100%;
}
.category-list-img{
  width:100%; height:100%;
  object-fit: cover;
}

.category-list .list-item:hover .category-list-img{
  filter: blur(2px);
  transition: 1s;
}


.category-content .category {
    margin-bottom: 15px;
    font-size: 0.8em;
    display: flex; /* 使用 Flexbox 確保內容在同一行 */
    gap: 0; /* 預設間距為 0 */
}

.category-content .category a {
    text-decoration: none;
    color: #FF6339;
    font-family: 'Noto Sans TC', sans-serif;
    margin-right: 0; /* 預設右邊沒有額外間距 */
}

/* 當有多個 <a> 時，設置間距 */
.category-content .category a + a {
    margin-left: 15px; /* 為每個後續的 <a> 添加左側間距 */
}




.category-content h2{
  font-size: 1.15em;
  font-weight: 700;
  font-family: 'Noto Serif TC', serif;
  line-height: 1.5;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  text-align: justify;
}

.category-content p{
  font-size: 0.8em;
  font-family: 'Noto Serif TC', serif;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 15px;
  font-weight: 200;
}

.category-content .date{
  font-family: 'Noto Serif TC', serif;
  color: #666;
  font-size: 0.7em;
  letter-spacing: 0.1em;
  margin-bottom: 0;
  font-style: italic;
}

/*.category-content .tags{
  margin-bottom:0px;
}
.category-content .tags a{
  font-size: 0.8em;
  line-height: 2.2;
  font-weight: 300;
  margin-right:10px;
  text-decoration: none;
  color:#0B433A;
  padding-bottom: 3px;
}
.category-content .tags a:before {
  content: "#";
  padding:0 1px 0;
  color:#0B433A
}*/

@media screen and (max-width: 768px) {
  .list-introtitle{
    min-height: 250px;
  }
  .list-intro-content{
    padding:30px 15px;
  }
  .category-list {
    padding-top: 15px;
  }
  .ct-warp{
    margin:1em auto 5em;
  }

  .category-list-nav {
    gap: 0.3rem;
    margin-top: 1.5rem;
  }
  .category-list-nav-item {
    font-size: 0.85rem;
  }

}
/* 
---------------------------------------------------------------------------------------------
page pagination
---------------------------------------------------------------------------------------------
*/
.ex-pagination{
  position: relative;
  margin:30px 0 0;
}
.ex-pagination a{
  display: block;
  padding: 50px 0;
  text-align: center;
  font-size: 1.3em;
  color:#0B433A;
}
.ex-pagination a:hover{
  color:#FF6339;
  background-color:#0B433A;
}
@media screen and (max-width: 768px) {
  .category-content h2{
    margin-bottom: 20px;
  }
  .category-content .category{
    margin-bottom: 20px;
  }
  .category-content{
    padding:20px 0px 10px;
  }
}

/* 
---------------------------------------------------------------------------------------------
article page
---------------------------------------------------------------------------------------------
*/
.article-top-banner{
  min-height: 70vh;
  position: relative;
  background-attachment: fixed; /* 背景固定 */
  background-size: cover;       /* 背景覆盖 */
  background-repeat: no-repeat; /* 防止重复 */
  background-position: center bottom; /* 背景居中 */
}
.article-warp{
  position: relative;
  padding-top: 50px;
  /*padding-bottom: 150px;*/
}
.article-warp a{
  color: #FF6339;
}

/*side recommand*/
.recommand-article-list{
  padding-top: 150px;
  padding-bottom: 5em;
}
.recommand-article-list h4 {
  display: flex;
  font-size:1.2em;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.recommand-article-list h4::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background-color: #333;
  margin-left: 10px;
}
.recommand-article-list img{

}

.recommand-article-list .category-warp{
  font-size: 0.7em;
  margin-bottom: 3px;
  color: #888;
}
.recommand-article-list .category-warp a{
  color: #888;
}
.recommand-article{
  padding-bottom: 10px;
  border-bottom: 1px dotted #888;
  margin-bottom: 10px;
}

.recommand-article:last-of-type{
  padding-bottom:0;
  border-bottom:none;
  margin-bottom:0;
}

.recommand-article h5{
  font-size: 1em;
  font-family: 'Noto Serif TC', serif;
  font-weight: 400;
}
.recommand-article a{
  color: #888;
}
.recommand-article a:hover{
  color: #424242;
}
@media screen and (max-width: 768px) {
  .recommand-article-list{
    padding:0px 0 100px;
  }
}


/*article-content*/
.article-content{
  /*padding-bottom: 5em;*/
}

/*article-top-content*/
.article-top-content{
  max-width: 800px;
  margin: auto;
}
.article-top-content .category-warp{
  font-size: 0.7em;
  margin-bottom: 50px;
  display: flex; /* 使用 Flexbox 布局 */
  align-items: center; /* 垂直置中對齊 */
  flex-wrap: nowrap; /* 禁止換行 */
  gap: 15px; /* 控制子元素之間的間距  */
  white-space: nowrap; /* 確保文字不會因為換行符號自動折行 */
}
.article-top-content .category-warp .category{
  display: inline-flex; /* 讓 <a> 保持 inline 排版，並支援 Flexbox 排列 */
}
.article-top-content .category-warp .category-2{
  display: flex;
  flex-wrap: wrap; /* 確保可以換行 */
  gap: 0; /* 預設間距為 0 */
}
.article-top-content .category-warp .category-2 > a {
    margin-right: 0; /* 確保單一 a 沒有間距 */
}
/* 當有超過一個 <a> 時，加入間距 */
.article-top-content .category-warp .category-2 > a + a {
    margin-left: 8px; /* 設定間距 */
}






.article-top-content .article-title{
  margin: auto;
  position: relative;
  display: block;
  text-align:justify;
}
.article-top-content .article-title h1{
  font-weight: 700;
  font-family: 'Noto Serif TC', serif;
  line-height: 1.5;
  margin-bottom: 10px;
  display: inline-block;
  text-align: justify;
  font-size: 2.5em;
}
.article-top-content .intro{
  
}
.article-top-content .intro h6{
  font-family: 'Noto Serif TC', serif;
  font-size:1.3em;
  line-height: 2;
  font-weight: 500;
  color:#777;
}

.article-top-content .date-warp{
  margin:80px auto 5px;
  font-size: 0.7em;
}

.article-author-warp{
  margin:0px auto 5px;
}
.article-author-warp .author{
  font-size: 0.7em;
  display: inline-block;
  font-weight: 400;
  padding:0 30px 0 0;
  margin: 0;
  color: #777;
}
.article-author-warp .author span{
  font-weight: 500;
  color: #424242;
}


.content-hr{
  max-width: 680px;
  margin:120px auto 100px;
  border-bottom:1px solid #ccc;
}

.article-content .summary{
  max-width: 800px;
  margin: 80px auto;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 30px 0;
}

.article-content .summary h3{
  font-family: 'Noto Serif TC', serif;
  max-width: 800px;
  margin-bottom: 20px;
  padding: 0;
}

.article-content .summary p{
  font-family: 'Noto Serif TC', serif;
  font-style: italic;
  color:#777;
  font-size: 1em;
  line-height: 1.7;
  max-width: 800px;
  margin: auto;
  font-weight: 500;
}


/* article-content */
.article-content h3{
  position: relative;
  display: block;
  max-width: 680px;
  font-weight: bold;
  font-family: 'Noto Serif TC', serif;
  font-size: 1.5em;
  padding-top: 1.7em;
  margin:0 auto 1.7em;
}

.article-content h4{
  position: relative;
  display: block;
  max-width: 680px;
  font-weight: bold;
  font-family: 'Noto Serif TC', serif;
  font-size: 1.1em;
  padding-top: 1.7em;
  margin:0 auto 1.2em;
}


.article-content p{
  text-align: justify;
  max-width: 680px;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  margin:0 auto 2.5em;
}

.article-content p:last-of-type{
  margin-bottom: 0;
}

.article-content ul{
  text-align: justify;
  max-width: 710px;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  margin:0 auto;
}


/*.article-content figure{
  margin:0 0 3em;
  max-width: 90%;
}
.article-content figure img{
  display: block;
  width: 100%;
}*/

.article-content figure{
  position: relative;
  margin:4em auto;
  max-width: 100%;
  text-align: end;
}

.article-content figure img{
  display: block;
  width: 100%;
}
.article-content figure figcaption{
  display: inline-block;
  margin:0 0 0 auto;
  text-align: end;
  font-size: 0.8em;
  max-width: 90%;
  padding:1em 0 1em 1em;
  color: #777;
  border: 1px solid;
  border-image-slice: 1;
  border-width: 1px;
  border-top:0;
  border-left:0;
  border-right:0;
  border-image-source: linear-gradient(to left, #FF6339, transparent);
}


.article-tags{
  margin-top: 5em;
}
.tag-badge {
  background-color: #f8f8f8;
  color: #212529;
  border: 1px solid rgba(0,0,0,0.05);
  padding: 0.38rem 0.6rem;
  font-size: 0.8rem;
  font-weight: normal;
}
.tag-badge::before {
  content: "#";
  margin-right: 2px; 
}
@media (max-width: 576px) {
  .tag-badge { font-size: 0.82rem; padding: 0.28rem 0.5rem; }
}




.single-fig figcaption{
  display: inline-block;
  margin:0 0 0 auto;
  text-align: end;
  font-size: 0.8em;
  max-width:100%;
  padding:1em 0 1em 1em;
  color: #777;
  border: 1px solid;
  border-image-slice: 1;
  border-width: 1px;
  border-top:0;
  border-left:0;
  border-right:0;
  border-image-source: linear-gradient(to left, #FF6339, transparent);
}




.references {
  font-family: "Times New Roman", serif;
  font-size: 13px;
  margin:80px auto;
  max-width: 680px;
  padding-top: 20px;
  border-top:1px solid #666;
  color: #666;
  font-style: italic;
}
.references ol {
  padding-left: 20px;
}
.references li {
  margin-bottom: 5px;
}


.author-card {
  max-width: 680px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: left;
  padding: 30px 50px;
  margin:80px auto;
}
.author-card h5{
  font-size: 1em;
  margin-bottom: 5px;
  color: #333;
  font-family: 'Noto Serif TC', serif;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.author-card p {
  font-size:0.8em;
  color: #666;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .author-card {
    padding: 20px;
  }
  .article-content figure figcaption{
    max-width: 100%;
    font-size: 11px;
  }
  .article-content figure{
    margin:1em auto;
  }

}



.org-card{
  max-width: 680px;
  background-color: #fff;
  padding: 30px;
  margin:3em auto;
}
.org-card img{
  border-radius: 50%;
  max-width: 80%;
  margin: auto;
}
.org-card h6{
  font-size: 1em;
  font-family: 'Noto Serif TC', serif;
  font-weight: bold;
  margin-bottom: 15px;
}
.org-card p{
  font-size: 0.8em;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .org-card{
    padding:30px 15px;
  }
  .org-card img{
    width: 100%;
  }
}





/*.tags-warp{
  max-width: 700px;
  margin:0 auto 50px;
  text-align: center;
}
.tags-warp .tags{
    font-size: 1.13em;
    display: inline-block;
    color: rgb(74,74,74);
    margin-bottom: 5px;
    font-weight: 400;
    padding-right: 10px;
}
.tags-warp .tags:before {
    content: "#";
    padding-left: 10px;
    color: rgb(74,74,74);
}*/


/* progress bar */
#progress-bar {
  --scrollAmount: 0%;
  background-color:#FF6339;
  width: var(--scrollAmount);
  height: 3px;
  position: fixed;
  top: 47px;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  #progress-bar {
    top: 0px;
  }
}


/* same topic*/
.same-topic-warp{
  max-width: 680px;
  margin:4em auto 0;
  position: relative;
  background-color: #f6f6f6;
  padding:40px;
}
.topic-logo-bg{
  width: 100%;
}

.topic-logo-bg h4{
  font-family: 'Noto Serif TC', serif;
  position: relative;
  font-size: 1.1em;
  color: #0B433A;
  margin-bottom: 15px;
  padding-top: 0;
}
/*.topic-logo-bg h4:before{
  content: "";
  width: 100%;
  background-color: #444444;
  height: 1px;
  position: absolute;
  left: 0;
  bottom:10px ;
}*/
.topic-logo-bg h4 span{
    background-color: #f5f1ed;
    padding-right:10px;
    display: inline-block;
    position: relative;
    font-weight:500;
}

.topic-logo-bg h5{
  font-family: 'Noto Serif TC', serif;
  position: relative;
  font-size: 1.5em;
  line-height: 1.5;
  color: #424242;
  margin-bottom: 30px;
  font-weight: 700;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
}


.topic-logo-bg p{
  font-family: 'Noto Serif TC', serif;
  margin-bottom: 2em;
  text-align: center;
}
.topic-logo{
  margin-bottom: 50px;
  text-align: center;
}
.topic-logo img{
  margin: auto;
  filter: drop-shadow(1px 3px 2px rgb(0 0 0 / 0.4));
}
.same-topic-warp a{
  color:#424242;
}
.topi-list-item-warp{
  padding-bottom: 0;
}
.same-topic-warp .list-item{
  margin-top: 20px;
  background-color: #fff;
}
.same-topic-warp .recommand-content{
  background-color: #fff;
  padding: 15px 15px 15px 0;
}
.same-topic-warp .recommand-content .category{
  font-size: 0.8em;
  margin-bottom: 10px;
  font-family: 'Noto Serif TC', serif;
  font-style: italic;
}
.same-topic-warp .recommand-content h2{
  font-size: 1.13em;
  margin-bottom:0;
  font-family: 'Noto Serif TC', serif;
  font-weight: 700;
  line-height: 1.5;
}


.todolist-card{
  width: 100%;
  margin:3em auto;
  max-width: 680px;
  padding:30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0px, rgba(128, 128, 128, 0.1) 1px, rgba(0, 0, 0, 0) 0px), linear-gradient(90deg, rgba(0, 0, 0, 0) 0px, rgba(128, 128, 128, 0.1) 1px, rgba(0, 0, 0, 0) 0px);
  background-size: 1em 1em, 1em 1em;
  background-color: #fff;
  font-family: 'Noto Serif TC', serif;
}
.todolist-card h3{
  font-size: 1.2em;
  margin-bottom:20px;
  display: inline-block;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMjAwMTA5MDQvL0VOIgogICAgICAgICAgICAgICJodHRwOi8vd3d3LnczLm9yZy9UUi8yMDAxL1JFQy1TVkctMjAwMTA5MDQvRFREL3N2ZzEwLmR0ZCI+Cgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgICB3aWR0aD0iMWluIiBoZWlnaHQ9IjAuNWluIgogICAgIHZpZXdCb3g9IjAgMCAzMDAgMTUwIj4KICA8cGF0aAogICAgICAgIGZpbGw9IiNmZmUwMDAiIHN0cm9rZT0ibm9uZSIKICAgICAgICBkPSJNIDEyLjAwLDQ4LjAwCiAgICAgICAgICAgQyAxMi4wMCw1MC4wOSAxMS43OSw1NC45OSAxMi42MCw1Ni43MgogICAgICAgICAgICAgMTUuNTksNjMuMTggMjYuMDksNTYuNjQgMzMuMDAsNjMuMDAKICAgICAgICAgICAgIDMwLjg0LDYzLjE4IDIzLjA1LDYzLjg3IDIxLjgwLDY1LjAyCiAgICAgICAgICAgICAxOC4wMiw2Ny44OCAyMS4yOSw3Ni4zNSAyMS44MCw4MC4wMAogICAgICAgICAgICAgMjEuODAsODAuMDAgMjEuODAsODYuMDAgMjEuODAsODYuMDAKICAgICAgICAgICAgIDIxLjgwLDg2LjAwIDQwLjAwLDg3LjAwIDQwLjAwLDg3LjAwCiAgICAgICAgICAgICAzOS45Myw4OC44OCA0MC4wNiw5MS4wNCAzOC45OCw5Mi42OQogICAgICAgICAgICAgMzcuNTEsOTQuOTMgMzUuMTUsOTQuNzUgMzIuNTksOTYuMjAKICAgICAgICAgICAgIDI4LjMzLDk4LjYxIDI2Ljg3LDEwMi4yMiAyNy4zNCwxMDcuMDAKICAgICAgICAgICAgIDI3LjM0LDEwNy4wMCAzMC4wMiwxMjMuNDEgMzAuMDIsMTIzLjQxCiAgICAgICAgICAgICAzMS44MiwxMjUuNzUgNDAuMDEsMTI3Ljk1IDQzLjAwLDEyOC4wMAogICAgICAgICAgICAgNDMuMDAsMTI4LjAwIDg3LjAwLDEyOC4wMCA4Ny4wMCwxMjguMDAKICAgICAgICAgICAgIDg4LjA4LDEyMS41NiA5MS4xNiwxMjEuODAgOTcuMDAsMTIyLjA0CiAgICAgICAgICAgICA5Ny4wMCwxMjIuMDQgMTA5LjAwLDEyMy4wMCAxMDkuMDAsMTIzLjAwCiAgICAgICAgICAgICAxMDkuMDAsMTIzLjAwIDEyOC4wMCwxMjMuMDAgMTI4LjAwLDEyMy4wMAogICAgICAgICAgICAgMTI4LjAwLDEyMy4wMCAxODIuMDAsMTIyLjAwIDE4Mi4wMCwxMjIuMDAKICAgICAgICAgICAgIDE5NC41OCwxMjEuOTcgMTg4LjQyLDExOS4wMyAyMDEuMDAsMTE5LjAwCiAgICAgICAgICAgICAyMDEuMDAsMTE5LjAwIDI0My4wMCwxMTkuMDAgMjQzLjAwLDExOS4wMAogICAgICAgICAgICAgMjQzLjAwLDExOS4wMCAyNTguMDAsMTE4LjAwIDI1OC4wMCwxMTguMDAKICAgICAgICAgICAgIDI1OS41MywxMDkuMTAgMjY2LjAxLDExMy4zNyAyNzAuNDAsMTA5LjE1CiAgICAgICAgICAgICAyNzIuNjEsMTA3LjAzIDI3Mi4zMCwxMDAuODUgMjcyLjAwLDk4LjAwCiAgICAgICAgICAgICAyNzIuMDAsOTguMDAgMjgwLjAwLDk3LjAwIDI4MC4wMCw5Ny4wMAogICAgICAgICAgICAgMjgwLjAwLDk0LjEwIDI4MC4yNiw4OC41NSAyNzkuMjYsODYuMDIKICAgICAgICAgICAgIDI3Ni40OSw3OC45OCAyNjQuNjMsNzYuODggMjU4LjAwLDc2LjAwCiAgICAgICAgICAgICAyNjUuMTUsNjkuMTkgMjc2LjQwLDczLjAzIDI3NC44NSw2Mi4wNAogICAgICAgICAgICAgMjc0LjQ3LDU5LjM1IDI3My43Myw1OC44NSAyNzIuMDAsNTcuMDAKICAgICAgICAgICAgIDI4MS42OCw1My43NyAyODEuMDAsNTQuMjggMjgxLjAwLDQ0LjAwCiAgICAgICAgICAgICAyODEuMDAsNDQuMDAgMjU4LjAwLDQyLjM4IDI1OC4wMCw0Mi4zOAogICAgICAgICAgICAgMjUwLjAwLDQwLjg0IDI1MS40OCwzOC4wMyAyMzUuMDAsMzguMDAKICAgICAgICAgICAgIDIzNS4wMCwzOC4wMCAxODkuMDAsMzkuMDAgMTg5LjAwLDM5LjAwCiAgICAgICAgICAgICAxODkuMDAsMzkuMDAgMTc3LjAwLDM5LjgyIDE3Ny4wMCwzOS44MgogICAgICAgICAgICAgMTc3LjAwLDM5LjgyIDE1OS4wMCwzOC4wMCAxNTkuMDAsMzguMDAKICAgICAgICAgICAgIDE1OS4wMCwzOC4wMCAxMjguMDAsMzguMDAgMTI4LjAwLDM4LjAwCiAgICAgICAgICAgICAxMTYuOTAsMzguMDIgMTIwLjE2LDM5LjQwIDExMy4wMCw0MC42NwogICAgICAgICAgICAgMTEzLjAwLDQwLjY3IDk3LjAwLDQyLjE3IDk3LjAwLDQyLjE3CiAgICAgICAgICAgICA5Ny4wMCw0Mi4xNyA4Ny4wMCw0My44MyA4Ny4wMCw0My44MwogICAgICAgICAgICAgODcuMDAsNDMuODMgNTcuMDAsNDUuMDAgNTcuMDAsNDUuMDAKICAgICAgICAgICAgIDU3LjAwLDQ1LjAwIDMyLjAwLDQ4LjAwIDMyLjAwLDQ4LjAwCiAgICAgICAgICAgICAzMi4wMCw0OC4wMCAxMi4wMCw0OC4wMCAxMi4wMCw0OC4wMCBaIiAvPgo8L3N2Zz4K');
  background-position: 50% 50%;
  padding: 5px 25px;
  background-repeat: no-repeat;
  background-size: cover; 
  font-style: italic;
}
.todolist-card p{
  font-size: 0.8em;
  margin-bottom:1em;
}
.todolist-card p:last-of-type{
  margin-bottom: 0;
}
.todolist-card ul{
  font-size: 0.8em;
  margin-bottom:1em;
}


/**/
.media-contact{
  display: block;
  border-top: 1px solid #555;
  border-bottom:1px solid #555;
  padding:40px 15px;
  margin-top: 100px;
}
.media-contact h6{
  font-size:20px ;
}
.media-contact p{
  max-width:100%;
}
.media-name{
  margin-top: 20px!important;
  margin-bottom: 5px!important;
  font-size: 1em;
}
.media-email{
  margin-bottom: 0!important;
  font-size: 0.8em;
}



/*esg-article-page*/

.toc-card {
  font-family: "Noto Sans TC", sans-serif;
  z-index: 1000;
}

.toc-card h4 {
  display: flex;
  font-size:1.2em;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.toc-card h4::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background-color: #333;
  margin-left: 10px;
}
.toc-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.toc-card li {
  font-size: 0.9em;
  margin: 0.5em 0;
}

.toc-card a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.toc-card a:hover {
  color: #FF6339;
  text-decoration: underline;
}

.toc-card a.active {
  color: #FF6339;
  font-weight: bold;
}


.intro-summary {
  max-width: 800px;
  margin: 80px auto;
  padding: 30px 0;
}
.intro-summary h3 {
  font-family: 'Noto Serif TC', serif;
  max-width: 800px;
  margin-bottom: 20px;
  padding: 0;
}

.intro-summary p {
  font-size: 1em;
  line-height: 1.7;
  max-width: 800px;
  margin: auto;
}


.esg-img-gallary{
  margin:3em auto;
}

 blockquote {
    position: relative;
    max-width: 680px;
    padding: 3rem 1.25rem;
    font-style: italic;
    margin: 3em auto;
    border-top:1px dotted #000;
    border-bottom:1px dotted #000;
  }
  blockquote::before {
    content: "“";
    position: absolute;
    left: 12rem;
    top: 2rem;
    font-size: 20rem;
    line-height: 1;
    opacity: 0.07;
    font-weight: bold;
  }

  blockquote .quotes {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.3em!important;
    margin-bottom: 20px!important;
    font-weight: bold!important;
    text-align: justify!important;
  }
  blockquote .author {
    font-size: 0.9em!important;
    font-style: normal!important;
    text-align: right!important;
  }

  /* 排除 Instagram 的嵌入 */
  blockquote.instagram-media,
  blockquote.instagram-media::before,
  blockquote.instagram-media * {
    all: unset;
    display: revert;
  }

  .ig-embed-center {
    display: flex;
    justify-content: center;
    margin: 2em auto;
  }

  .ig-embed-center blockquote {
    margin: 0 !important;
  }


.esg-card-header {
  background:#f8f8f8;
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 700px;
  margin:4em auto 2em;
}
.esg-card-header img {
  max-width:60px;
}
.esg-card-header h4 {
  font-weight: bold;
  font-family: 'Noto Serif TC', serif;
  font-size: 1.5em;
  padding-top:0;
  margin:0
}


.stage-h3 {
  position: relative;
  font-family: "Noto Serif TC", serif;
  z-index: 0;
}
.stage-h3::after {
  content: attr(data-number); /* 讀取 data-number */
  position: absolute;
  left: 0;
  transform: translateY(-0%) scale(3); /* 放大並置中 */
  font-weight: 700;
  font-style: italic;
  color: rgba(0,0,0,0.05);
  z-index: -1;
  pointer-events: none;
  line-height: 1;
}




.stage-card{
  width: 100%;
  margin:3em auto;
  max-width: 680px;
  padding: 20px;
  background-color:#f8f8f8;
}
.stage-card h5{
  font-size: 1.1em;
  margin-bottom:10px;
  border-bottom: 1px solid #000;
  display: inline-block;
  font-family: 'Noto Serif TC', serif;
  font-weight: bold;
}
.stage-card p{
  font-size:1em;
  margin-bottom:0.8em;
}
.stage-card p:last-of-type{
  margin-bottom: 0;
}
.stage-card ul{
  margin:0;
  padding-left:1em;
}
.stage-card li{
  font-size: 1em;
  margin-bottom:0;
}
.stage-card li:last-of-type{
  margin-bottom: 0;
}

.esg-page-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 680px;
  background-color: #fff;
  padding: 30px;
}
.esg-page-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 0.5px solid #000;
  padding-bottom: 15px;
}
.esg-page-feature-item:last-child{
  border:none;
  padding-bottom: 0;
}
.esg-page-feature-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.esg-page-feature-content h5{
  margin: 0 0 0.3rem 0;
  font-weight: 700;
  font-size: 1em;
  font-family: 'Noto Serif TC', serif;
}
.esg-page-feature-content p {
  margin: 0;
}


.impact-grid-light{
  max-width: 700px;
  margin: auto;
}
.impact-item-light {
  border: 1px solid #0B433A;
  transition: transform 0.3s, box-shadow 0.3s;
}

.impact-item-light:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  background-color: #f8f8f8;
}

.impact-number-light {
  font-weight: 700;
  font-size: 2rem;
  color: #0B433A; /* 數字顏色 */
  margin-bottom: 0.5rem;
}

.impact-label-light {
  font-size: 0.8em;
  color: #333;
}





  .summary-card {
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    margin:5em auto 0;
    font-family: "Noto Sans TC", sans-serif;
    border: 1px solid #eee;
  }

  .summary-header {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
  }

  .summary-header:hover {
    background: #f7f7f7;
  }
  .summary-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 10px;
    background: #fff;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .summary-content.open {
    padding: 20px;
    max-height: 500px; /* 足夠容納內容的高度 */
  }

  .summary-content h5 {
    margin-top: 0;
    font-size: 16px;
  }

  .summary-content ul {
    padding-left: 18px;
    margin: 0;
  }

  .summary-content li {
    margin-bottom: 8px;
    line-height: 1.6;
  }






.zenith-card {
  padding: 20px 0 10px;
  border:1px solid #000;
  max-width: 700px;
  margin:1em auto 0;
  line-height: 1.7;
  background-color:rgba(255, 255, 255,.5);
}

.zenith-card-title {
  margin:0;
  border-bottom: 1px solid #000;
  text-align: center;
  position: relative;
  padding:0 0 20px!important;
  margin:0!important;
  font-weight: bold;
  font-family: 'Noto Serif TC', serif;
  font-size: 1.5em;
}

.zenith-card-list {
  list-style-type: none;
  padding:20px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.zenith-card-list li {
  background: rgba(255,255,255,0.8);
  border-radius: 12px;
  padding:10px 15px 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zenith-card-list li:hover {
  background: rgba(255,255,255,0.8);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.14);
}

.zenith-card-list .list-title {
  font-weight: 700;
  font-size: 1.1em;
  padding-top: 0;
  margin-bottom: 6px;
  font-family: 'Noto Serif TC', serif;
}

.zenith-card-list .list-content {
  line-height: 1.6;
  padding: 0;
}



@media screen and (max-width: 768px) {
  .article-top-banner {
    min-height: 40vh;
    background-attachment: scroll;
  }
  .article-top-content .category-warp {
    margin-bottom:20px;
  }
  .content-hr {
    margin:50px 0;
  }
  .article-warp{
    padding:25px 10px 0;
  }
  .article-warp .date-warp{
    margin:0;
  }
  .article-top-content .article-title h1{
    font-size: 1.6em;
    margin-bottom:0
  }
  .article-content .intro{
    padding: 15px 0 20px;
  }
  .article-top-content .intro h6 {
    font-size: 1em;
    line-height: 1.5;
  }
  .article-banner{
    max-width:100%;
    margin:0 auto 4em;
  }
  .tags-warp{
    margin:0 auto 30px;
  }
  .tags-warp .tags{
    font-size: 1em;
  }
  .article-banner{
    margin-bottom: 30px;
  }
  .article-content{
    padding-bottom: 1em;
  }
  .article-content figure{
    max-width: 100%;
  }
  .article-author-warp .author {
    padding-right: 15px;
  }
  .same-topic-warp{
    padding:15px;
  }
  .same-topic-warp .recommand-content{
    padding: 15px;
  }
  .article-content .summary{
    margin:30px 0;
    padding: 20px 0;
  }
  .article-content .summary p {
    font-size: 0.9em;
  }
}

/* 
---------------------------------------------------------------------------------------------
contact page
---------------------------------------------------------------------------------------------
*/
.contact-warp{
  margin: 5em auto;
  min-height: 100vh;
}
.contact-warp a{
  color: #FF6339;
}
.contact-card {
  max-width: 600px;
  margin: 60px auto;
  border-left:10px solid #0B433A;
}
.contact-warp .social-icons a {
  color: #495057;
  font-size: 1.7em;
  margin-right:20px;
  transition: color 0.3s;
}
.contact-warp .social-icons a:hover {
  color:#FF6339;
}

.contact-card2 {
  max-width: 600px;
  margin: 60px auto;
}

@media screen and (max-width: 768px) {
  .contact-card2 {
    max-width: 600px;
    margin: 0px auto;
  }
}


/* 
---------------------------------------------------------------------------------------------
video media page
---------------------------------------------------------------------------------------------
*/
.media-warp{
  background-color: #000;
}
.media-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: white;
}

.media-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 0;
}

.media-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%);
  z-index: 1;
}

.media-hero-content{
  position: absolute;
  z-index: 2;
  bottom: 100px;
  left: 3em;
}

.media-hero-content h2{
  width: 80%;
  font-size: 1.8em;
  line-height: 1.5;
  font-weight:700;
  margin:10px 0 30px;
}

.btn-play{
  background-color: rgba(255, 255, 255, .2);
  color: #fff;
  padding: 10px 20px;
  font-size: 1.2em;
  border-radius: 5px;
}
.btn-play span {
  padding-left: 10px;
}

.media-list{
  padding-bottom: 7em;
}

.media-card{
  background-color: rgba(255,255,255,.1);
  color: #fff;
  margin-bottom: 30px;
}
.media-card .card-body{
  padding:15px 15px;
}
.media-card .card-body h6{
  margin-bottom: 0;
  font-size: 1em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .media-hero {
    height: 70vh;
  }
  .media-hero-content{
    left: 1em;
    bottom: 5%;
  }
  .media-hero-content h2{
    font-size: 1.2em;
  }
}


/* 
---------------------------------------------------------------------------------------------
issue page
---------------------------------------------------------------------------------------------
*/

.issue-warp{
  padding: 150px 0 50px;
  font-family: 'Noto Serif TC', serif;
}

.issue-warp a{
  color: #000;
}

.issue-title{
  text-align: center;
  margin-bottom: 5em;
  font-family: 'Noto Serif TC', serif;
}
.issue-title h1{
  font-weight: bold;
  font-size: 3em;
  font-family: 'Noto Serif TC', serif;
}
.issue-title p{
  color: #777;
  font-size: 1em;
  letter-spacing: 0.5em;
  padding-left: 0.5em;
  font-family: 'Noto Serif TC', serif;
  margin-bottom: 0;
}

.issue-banner-content{
  position: relative;
  margin: 3em 0 0;
  max-width: 70%;
  padding-left: 30px;
}


.issue-hr {
    height: 1px; /* 線條的高度 */
    background: linear-gradient(to right, rgba(0,0,0,0), #FF6339, rgba(0,0,0,0));
    margin: 60px auto;
    width: 100%;
}

.issue-banner-content::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 50%;
    height: 30%;
    border-left: 1px solid #FF6339;
    transition: all 0.3s;
  }

.issue-banner-content h2{
  display: block;
  font-size: 1.6em;
  margin-bottom: 25px;
  transition: all 0.3s;
  font-weight: 700;
}
.issue-banner-content p{
  font-size: 0.9em;
  color:#777;
  transition: all 0.3s;
}

.issue-banner-content:hover::before {
    height: 100%;
}  
.issue-banner-content:hover a{
  color: #FF6339;
}
.issue-banner-content:hover p{
  color: #000;
}
.issue-warp .list-item{
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s;
}
.issue-warp .list-item .list-item-content h2{
  font-size: 1.6em;
  font-weight: 700;
  line-height: 1.6;
}
.issue-warp .list-item .list-item-content .tags{
  margin: 20px 0 30px;
  font-size: 0.9em;
}

.issue-warp .list-item .list-item-content .tags a{
  color:#FF6339;
}

.issue-warp .list-item .list-item-content .tags ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.issue-warp .list-item .list-item-content .tags li {
    display: inline;
}
.issue-warp .list-item .list-item-content .tags li:not(:last-child)::after {
    content: " / ";
}

.issue-warp .list-item .list-item-content p{
  font-size: 0.9em;
  margin-bottom: 0;
  color: #777;
  font-weight: 200;
}

.issue-warp .list-item:hover{
  background-color: #fff;
}
.issue-warp .list-item:hover h2{
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
}
.issue-warp .list-item:hover p{
  color: #000;
}

/**/
.issue-banner-detail-content h2{
  display: block;
  font-size: 1.6em;
  transition: all 0.3s;
  font-weight: 700;
  color:#FF6339;
  margin:50px 0 0;
}
.issue-detail-p p{
  font-family: 'Noto Sans TC', sans-serif;
  text-align: justify;
  font-size: 1em;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 0 auto 2em;
}
.issue-detail-p p:last-of-type {
  margin-bottom: 0;
}

.issue-article-warp{
  padding: 50px 0;
  background-color: #d9d9d9;
}
.issue-card{
  padding: 15px;
  font-family: 'Noto Serif TC', serif;
}
.issue-card .category{
  color: #FF6339;
  margin: 15px 0;
  font-size: 0.9em;
}
.issue-card h2{
  font-size: 1.2em;
  text-align: justify;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: bold;
}
.issue-card a h2{
  color: #333;
}
.issue-card p{
  font-size: 0.9em;
  text-align: justify;
  margin-bottom: 15px;
}
.issue-card .date{
  color: #777;
  margin-bottom: 0;
}


.issue-project-card{
    width: 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.issue-project-card:hover {
    transform: scale(1.2); /* 縮小到80% */
}


.issue-project{
  padding: 100px 0;
}

.issue-project-title h3{
  font-size: 3em;
  color: #999;
  display: inline-block;
  border-bottom: 1px solid #999;
  padding-bottom: 15px;
  font-family: 'Noto Serif TC', serif;
  margin-bottom: 50px;
}

.issue-project-card-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 5px;
}
.issue-project-card {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all 1s;
}
.issue-project-card:hover {
    transform: scale(1.1);
}
.issue-staff{
  padding-bottom: 3em;
}
.issue-staff p{
  text-align: center;
  font-size: 0.9em;
  margin-bottom: 5px;
  color: #666;
}

@media screen and (max-width: 768px) {
  .issue-warp{
    padding-top: 5em;
  }
  .issue-banner-content{
    position: relative;
    max-width: 100%;
    margin-top: 25px;
    padding-left:0px;
  }
  .issue-banner-content::before{
    border: none;
  }
  .issue-warp .list-item{
    padding: 0;
  }
  .issue-warp .list-item .list-item-content h2{
    margin-top: 25px
  }
}

/* 
---------------------------------------------------------------------------------------------
about
---------------------------------------------------------------------------------------------
*/

.about{
  margin-top: 50px;
}


.about-intro{
  position: relative;
  height: 90vh;
}
.background-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 88%;
  object-fit: cover;
  z-index: 1;
   clip-path: polygon(150px 0, 100% 0, 100% 100%, 0 100%, 0 300px);
}
.about-intro .title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  font-size: 2.8em;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  padding: 15vh 5vw 0;
  font-family: 'Noto Serif TC', serif;
}

.about-intro .subtitle {
  position: absolute;
  bottom: 10vh;
  left: 5vw;
  z-index: 2;
  font-size: 1em;
  max-width: 480px;
  text-align: justify;
  font-family: 'Noto Serif TC', serif;
}

.green-bar-top {
  position: absolute;
  top: 10vh;
  right: 0;
  height: 10px;
  width: 15vw;
  background-color: #0B433A;
  z-index: 2;
}

.green-bar-bottom {
  position: absolute;
  bottom: 48vh;
  left: 0;
  height: 5px;
  width: 10vw;
  background-color:#0B433A;
  z-index: 2;
}



.aboutbanner{
  background-image: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)),url(../images/about.jpg);;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
}

.about-text-intro{
  position: relative;
  padding:8em 0 5em;
}

.aboutbanner-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 25px;
}

.aboutbanner-item .eng {
  flex: 1;
  font-size: 2em;
  color: #fff;
  font-weight: 700;
  text-align: right;
  padding-right: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255,.5);
}
.aboutbanner-item .eng::first-letter {
  color: #FF6339;
  font-weight: 900;
  font-family: 'Noto Serif TC', serif;
  padding-right: 3px;
}
.aboutbanner-item .zh {
  flex: 2;
  line-height: 1.8;
  padding-left: 1.5rem;
  color: #fff;
  font-size: 1.2em;
  font-weight: 500;
  font-family: 'Noto Serif TC', serif;
  margin-bottom:0;
  text-align: left;
}


.logo-warp{
  border-top: 5px solid #FF6339;
  border-bottom: 5px solid #FF6339;
  padding: 3em 0;
  background-color: #ccc;
}
.logo-warp h3{
  font-size: 2em;
  color: #0B433A;
  font-family: 'Noto Serif TC', serif;
  border-bottom: 2px solid #0B433A;
  padding-bottom: 10px;
  display: inline-block;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.logo-warp p{
  font-size: 1em;
  color: #0B433A;
  font-family: 'Noto Serif TC', serif;
  font-weight: 300;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.logo-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  position: relative;
}

/* 加入上下左右單邊線條（不交接） */
.logo-cell::after,
.logo-cell::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
}

/* 水平線（上方） */
.logo-cell:not(:nth-child(-n+3))::before {
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
}

/* 垂直線（左側） */
.logo-cell:not(:nth-child(3n+1))::after {
  top: 10%;
  left: 0;
  width: 1px;
  height: 80%;
}

.logo-cell img {
  width: 100%;
  transition: filter 0.3s ease;
}

.logo-cell:hover img {
  filter: none;
}

@media screen and (max-width: 768px) {
  .about{
    margin-top: 0;
  }
  .about-intro{
    height:80vh;
  }
  .about-intro .title{
    padding:7vh 15px 0;
    font-size: 2em;
    line-height: 1.5;
  }
  .about-intro .subtitle{
    bottom:1vh;
    left:0;
    padding:15px;
    font-size: 1em;
    font-family: sans-serif;
    border-top:  1px solid #000;
  }
  .background-image{
    height:100%;
    width: 100%;
    opacity: 0.1;
  }
  .green-bar-top,.green-bar-bottom{
    display: none;
  }
  .about-text-intro{
    padding: 3em 15px;
  }
  .aboutbanner-item .eng{
    font-size: 1em;
  }
  .aboutbanner-item .zh{
    font-size: 1em;
  }
  .logo-wall {
      grid-template-columns: repeat(2, 1fr);
  }
  .logo-cell{
    padding:5px;
  }
  .logo-cell::after,
  .logo-cell::before {
    background-color: rgba(0, 0, 0, 0);
  }

  /* 水平線（上方） */
  .logo-cell:not(:nth-child(-n+3))::before {
    height: 0px;
  }

}



/**/
/**/
/**/
.partner-banner{
  position: relative;
}
.partner-banner h2{
  color: white;
  position: absolute;
  top: 150px;
  left: 5%;
  font-size: 2.5em;
  line-height: 1.6;
  font-family: 'Noto Serif TC', serif;
  font-weight: 900;
  border-bottom: 2px solid #fff;
  padding-bottom: 15px;
}

.partner-banner h3{
  color: white;
  position: absolute;
  top: 250px;
  left: 5%;
  font-size: 1.5em;
  line-height: 1.6;
  font-weight: 500;
}

#stripes {
  height: 60vh;
  background: linear-gradient(80deg, #0B433A 15%, #116256 70%, #52B1A0 94%);
  clip-path: polygon(100% 0, 100% 70%, 0 99%, 0 0);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
}

#stripes :nth-child(1) {
  grid-area: 1 / 1 / span 4 / span 2;
  background-color: #0B433A;
  clip-path: polygon(0 0, 100% 0%, 100% 60%, 0% 100%);
}

#stripes :nth-child(2) {
  grid-area: 1 / 3 / span 3 / span 2;
  background-color: #105347;
  clip-path: polygon(0 0, 100% 0%, 100% 74%, 0% 100%);
  transform: translateY(-30px);
}

#stripes :nth-child(3) {
  grid-area: 1 / 5 / span 2 / span 2;
  background-color: #166B5F;
  clip-path: polygon(0 0, 100% 0, 99% 5%, 0 70%);
}

#stripes :nth-child(4) {
  grid-area: 3 / 11 / span 3 / span 2;
  background-color: #259B88;
  clip-path: polygon(0 23%, 100% 0%, 100% 77%, 0% 100%);
}

#stripes :nth-child(5) {
  grid-area: 8 / 1 / span 5 / span 4;
  background-color: #105347;
  clip-path: polygon(0 23%, 100% 0%, 100% 80%, 0% 100%);
  transform: translateY(10px);
}


.partner-intro{
  padding:2em 0 5em;
}
.partner-intro h4{
  font-size: 2em;
  font-weight: 700;
  font-family: 'Noto Serif TC', serif;
  font-weight: bold;
  line-height:1;
  margin-top: -1em;
  margin-bottom: 30px;
}
.partner-intro .point{
  border-left: 5px solid #0B433A;
  padding-left: 10px;
}
.partner-intro img{
  clip-path: polygon(10% 0%, 100% 0%, 100% 90%, 90% 100%, 0% 100%, 0% 10%);
}


.partner-whoweare{
  background-color: #0B433A;
  color: #fff;
  padding: 4em 0;
}
.partner-whoweare h4{
  font-size: 2em;
  font-weight: 700;
  font-family: 'Noto Serif TC', serif;
  font-weight: bold;
  line-height:1;
  margin-bottom:0;
}
.partner-whatwedo{
  background-color: #fff;
  color: #0B433A;
  text-align: center;
}
.partner-whatwedo p{
  font-size: 1.5em;
  font-weight: bold;
  font-family: 'Noto Serif TC', serif;
  font-weight: bold;
  line-height:1.6;
  margin-bottom:0;
}
.partner-whatwedo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/**/

.partner-donate{
  padding: 8em 0;
}
.partner-donate .intro{
  font-size: 1.5em;
  font-weight: bold;
  font-family: 'Noto Serif TC', serif;
  line-height:1.6;
  margin-bottom:15px;
  text-align: center;
}
.p-d-card-list{
  margin-top:5em;
}

.p-d-card-list > div {
  display: flex;
}
.p-d-card {
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.p-d-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.p-d-card h6 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0B433A;
  margin-bottom: 1em;
}

.p-d-card h5 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 1rem;
  font-family: 'Noto Serif TC', serif;
  color: #000;
}

.p-d-card p {
  font-size: 1rem;
  line-height: 1.6;
}




/**/
.our-service{
  padding:3em 0 0;
  background-color: #fff;
  text-align: center;
}
.our-service h3 {
  font-family: 'Noto Serif TC', serif;
  font-size: 2em;
  font-weight: 900;
  color: #000;
}
.our-service-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.our-service-card img {
  width: 100%;
  aspect-ratio: 1 / 1; /* 瀏覽器支援好，強制正方 */
  object-fit: cover;
}
.our-service-card .content{
  padding:40px 30px;
  background-color: #fff;
}
.our-service-card h6 {
  font-family: 'Noto Serif TC', serif;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #000;
  border-bottom: 1px solid #000;
  padding-bottom: 0.75rem;
}
.our-service-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
  color: #000;
}



/* Why Us Section */
.why-us {
    padding: 6rem 2rem;
    background-color: #0B433A;
    position: relative;
    overflow: hidden;
}
.why-us .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom:0;
    position: relative;
}
.why-us .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.5));
    margin: 1rem auto 0;
}
.why-us .problems {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin:1em 0;
    position: relative;
    min-height: 600px;
}
.why-us .problem-circle {
    position: absolute;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us .problem-circle:nth-child(1) {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-130%, -50%);
}

.why-us .problem-circle:nth-child(2) {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.why-us .problem-circle:nth-child(3) {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(30%, -50%);
}

.why-us .problem-content {
    position: absolute;
    width: 200px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.why-us .problem-text {
    font-size: 24px;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

.why-us .problem-circle circle {
    stroke-width: 1;
    stroke-dasharray: 1508;
    stroke-dashoffset: 1508;
    transition: stroke-dashoffset 1s ease-in-out;
}



.partner-corpbanner{
  background-image: linear-gradient(to top, rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)),url(../images/article/48/1.jpg);;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  position: relative;
}
.partner-corpbanner .intro{
  width: 90%;
  max-width: 700px;
  background-color: #0B433A;
  padding:3em;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left:5%;
  transform: translate(0,-50%);
}
.partner-corpbanner .intro a{
  color:#FF6339 ;
}
.aboquote {
    padding: 50px 0;
    position: relative;
    margin-bottom: 0;
}
.aboquote p {
    font-size: 1.5em;
    font-weight: 700px;
    text-align: center;
    font-style: italic;
    font-family: 'Noto Serif TC', serif;
    font-weight: bold;
    line-height: 1.7;
}
.aboquote:before {
  position: absolute;
  font-family: 'FontAwesome';
  top: 0;
  content:"\f10d";
  font-size: 120px;
  color: rgba(255,255,255,0.1);
}


@media screen and (max-width: 768px) {
  .partner-banner h2{
    top: 80px;
    font-size: 2em;
  }
  .partner-banner h3{
    font-size: 1em;
    top: 160px;
  }
  #stripes{
    height: 50vh;
  }
  .partner-intro h4{
    margin-top: 0;
    line-height: 1.5;
  }
  .partner-whoweare{
    padding: 2em 0;
  }
  .partner-whoweare h4{
    margin-bottom: 30px;
  }
  .partner-whoweare p{
    text-align: center;
  }
  .partner-whatwedo p{
    margin: 20px 0;
    font-size: 1em;
    font-family: sans-serif;
  }
  .partner-donate{
    padding: 3em 15px;
  }
  .partner-donate .intro{
    font-size: 1em;
    text-align: left;
  }
  .why-us .section-title{
    font-size: 2em;
  }
}




/* 
---------------------------------------------------------------------------------------------
Do now / Project page
---------------------------------------------------------------------------------------------
*/

.project-warp{
  margin: 0em auto;
  padding-top: 5em;
  min-height: 100vh;
}
/**/
.project-container {
  margin-top: 3rem;
}

.donow-card{
  margin-bottom: 30px;
}
.donow-card-content{
  background-color: #fff;
  padding: 15px;
}
.donow-card-content h3{
  font-size: 1.5em;
  line-height:1.5;
  font-family: 'Noto Serif TC', serif;
  font-weight: bold;
  margin-bottom: 15px;
}

.donow-card-content a {
  color: #000;
}

.donow-card-content .category{
  font-size:0.8em;
  color: #FF6339;
  font-family: 'Noto Serif TC', serif;
  margin-bottom: 15px;
}
.progress{
  height: 0.8em;
  margin-bottom: 15px;
}
.donow-card-content .progress-bar{
  background-color: #0B433A;
  height: 0.8em;
}
.donow-card-content .tag{
  background-color:#0B433A;
  padding: 3px 5px;
  font-size: 0.7em;
  color: #fff;
  display: inline-block;
  border-radius: 3px;
}
.donow-card-content .date{
  font-size: 0.7em;
  text-align: end;
  padding-top: 5px;
}
.donow-card-content .date span{
  padding-left: 10px;
}

@media (max-width: 768px) {
  .project-warp{
    margin:1em auto 5em;
  }
}
/* 
---------------------------------------------------------------------------------------------
newsroom
---------------------------------------------------------------------------------------------
*/
.newsroom-warp{
  margin: 5em auto 0;
  /*padding-bottom: 8em;*/
}

/**/
.newsroom-container {
  margin-top: 3rem;
}
.newsroom-container a{
  color: #fff;
}
.newsroom-divider {
  border-bottom:1px solid #000;
  padding-bottom: 50px;
}


.newsroom-card {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s ease;
}

.newsroom-card:hover {
  transform: scale(1.02);
}

.newsroom-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent);
  padding: 5em 1.5em 20px;
  width: 100%;
  transition: transform 0.4s ease;
}

.newsroom-date {
  color:#fff;
  font-size: 13px;
  margin-bottom:5px;
}

.newsroom-card h3 {
  font-family: 'Noto Serif TC', serif;
  font-weight: 900;
  font-size:1.2em;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin-bottom: 0;
}
.newsroom-card h4 {
  font-family: 'Noto Serif TC', serif;
  font-weight: 900;
  font-size:1.2em;
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin-bottom: 0;
  width: 100%;
}


.newsroom-card p{
  width: 70%;
  font-size: 0.8em;
  margin-top: 15px;
  margin-bottom: 0;
}

/**/
.newsroom-item {
  transition: all 0.3s ease;
  background-color: transparent;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
  color:#424242;
}

.newsroom-item img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}
.newsroom-item h3{
  font-family: 'Noto Serif TC', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
.newsroom-item p{
  font-size: 1em;
  color:#818181;
  margin-bottom: 0;
}
.newsroom-item-date{
  font-size: 0.75em;
  margin-bottom: 10px;
}
.newsroom-item:hover{
  opacity: 0.8;
}


@media (max-width: 768px) {
  .newsroom-warp{
    margin: 1em auto 5em;
  }
  .newsroom-container {
    margin-top:0;
  }
  .newsroom-row {
    flex-direction: column;
  }
  .newsroom-col-stretch {
    width: 100% !important;
  }
  .newsroom-card {
    aspect-ratio: 4 / 3;
    margin-top: 20px;
  }
  .newsroom-card p{
    display: none;
  }
}








/* 
---------------------------------------------------------------------------------------------
editorial page
---------------------------------------------------------------------------------------------
*/
.editorial-warp{
  margin:0 auto;
  padding-top: 5em;
}

.editorial-warp-title{
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 0;
}
.editorial-warp-title::before,
.editorial-warp-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #ccc;
}

.editorial-warp-title h2 {
  font-family: 'Noto Serif TC', serif;
  display: flex;
  gap: 1rem; /* 控制每個字的距離 */
  margin: 0;
  font-size: 2.5em;
  font-weight: 700;
  white-space: nowrap;
}


.editorial-section {
  position: relative;
}
.edi-rec{
  margin-top: 8em;
}
.editorial-section h4 {
  display: flex;
  font-size:1.2em;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.editorial-section h4::after {
  content: '';
  flex-grow: 1;
  height: 1px;
  background-color: #333;
  margin-left: 10px;
}




.editorial-sub-content{
  border-bottom: 1px solid #ccc;
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
  color: #000;
}
.editorial-sub-content:hover{
  opacity: 0.8;
}
.editorial-text-group .editorial-sub-content:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.editorial-sub-content p {
  font-weight: 300;
  font-size: 0.8em;
  margin-bottom: 3px;
}
.editorial-sub-content h3{
  font-family: 'Noto Serif TC', serif;
  font-size: 1.1em;
  margin-bottom:0;
  font-weight: 700;
  line-height: 1.5;
}
.editorial-thumb {
  width: 25%;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 0; /* 確保無圓角 */
}

/**/
.editorial-center-content {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding-left: 2em;
  padding-right: 2em;
}
.editorial-center-content a{
  color: #000;
}
.editorial-center-content a:hover{
  color: #555;
}
.editorial-center-content h3{
  font-family: 'Noto Serif TC', serif;
  font-size: 1.6em;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: justify;
}
.editorial-center-content p{
  font-size: 0.9em;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 20px;
}
.editorial-center-content .date{
  font-size: 0.8em;
  margin-bottom: 15px;
}
.editorial-center-content-img {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 比例 = 9/16 = 0.5625 */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.editorial-center-content-img:hover{
  opacity: 0.8;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}


/**/
.editorial-card {
  background-size: cover;
  background-position: center;
  min-height: 100%;
  height: 100%;
  position: relative;
  box-shadow: inset 0 0 0 1000px rgba(0,0,0,0.1); /* 黑色遮罩 */
}
.editorial-card-text{
  position: relative;
  background-color: #0B433A;
  padding:20px 15px;
}
.editorial-card-text p{
  font-size: 13px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  margin-bottom: 10px;
}
.editorial-card-link{
  display: block;
  font-size: 13px;
  color: #fff;
  border-bottom: 1px solid #fff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  text-decoration: none;
  width: fit-content;
}

@media (max-width: 768px) {
  .editorial-warp{
    margin:1em auto 5em;
    padding:0;
  }
  .editorial-center-content{
    margin-bottom: 30px;
    border:none;
    padding:0 15px;
  }
  .editorial-card{
    min-height: 150px;
    margin-top:30px;
  }
}


/* 
---------------------------------------------------------------------------------------------
5W1H
---------------------------------------------------------------------------------------------
*/

.w51h{
  background-color: #000;
  color: #fff;
  padding: 100px 0;
}
.w51h h3{
  font-size: 1.5rem;
  border-bottom: 0.5px solid #fff;
  padding-bottom: 8px;
}

.w51h .section-block {
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.w51h .section-title {
  font-weight: 600;
  font-size: 14px;
  color: #FF6339;
}
.w51h .section-subtitle {
  font-size: 9px;
  color: #fff;
}

.w51h ul{
  padding-left: 12.5px;
  margin-bottom: 0;
}

.w51h p, .w51h li{
  font-size: 12.5px;
  margin-bottom:0;
}
.w51h .spthx{
  font-style: italic;
}



/* Footer2 */
.footer2 {
  width: 100%;
  position: relative;
  padding: 50px 0 30px;
  margin-top: 3em;
  background-color:#0B433A ;
}
.footer2 p{
  font-size: 13px;
  color:#fff;
}
.footer2 a {
  color:#fff;
}
.footer2 a:hover {
  color:#FF6339;
}
.footer2 ul{
  margin-bottom:15px;
  padding:0;
}
.footer2 ul li{
  display: inline;
  margin-left:15px;
  padding:0;
  font-size: 13px;
}
.footer2 .ft-logo{
  max-width: 80px;
  margin:0 0 15px;
}
.footer2 .footer-social{
  font-size: 25px;
  line-height:35px;
  margin:0 10px;
}


.footer-banner{
  margin-top:1em;
}
.footer-banner-bg {
  background:no-repeat center center;
  background-size: cover;
  height: 100%;
}
.footer-banner .banner-card {
  width: 100%;
  padding:50px;
  background:#0B433A;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.footer-banner .banner-card .cta-emerald-title {
  font-size: 1.7em;
  font-weight: bold;
  color: #0B433A;
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* 手機版不擠在一行 */
  color: #fff;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
}
.footer-banner .banner-card .cta-emerald-title img {
  height: 0.8em; /* 跟文字高度比例一致 */
  margin: 0 0.3em; /* 左右間距 */
  display: inline-block;
  vertical-align: middle;
}
.footer-banner .banner-card p{
  color: #fff;
  margin:2em 0 3em;
  font-size: 0.9em;
  text-align: justify;
}
.footer-banner .banner-card .btn{
  background-color: #FF6339;
  color: #fff;
}


.btn-gallery-download{
  background: #0B433A;
  color: #fff!important;
}
.btn-gallery-download:hover{
  background: #0B433A;
  color: #fff!important;
  opacity: 0.8;
}



@media (max-width: 768px) {
  .footer-banner-bg{
    min-height: 200px;
  }
  .footer-banner .banner-card{
    padding: 15px;
  }
  .footer-banner .banner-card .cta-emerald-title{
    font-size: 1.5em;
  }
  .footer-banner .banner-card p{
    margin-bottom: 2em;
  }
}
