[id] {
    scroll-margin-top: 60px;
}
.overview{
    margin-top: -200px;
}
.bg-gradient {
    background: #FFFDF8;
    background: linear-gradient(180deg, rgba(255, 253, 248, 1) 9%, rgba(238, 228, 209, 1) 100%);
}
.article-text, .article-text-only {
  overflow: hidden;
  transition: max-height 0.4s ease;
  line-height: 1.6;
}
.article-text {
  flex: 1;
  line-height: 1.6;
  overflow: hidden;
  width: 100%;
}
.article-h2{
    color: var(--color-gold-500);
    font-size: 20px;
    margin-left: 0;
}
.article-title-container .hero-title{
  color: #343434;
}
.article-title-container .hero-subtitle{
  color: #343434;
}
.article-gradient-bar-right{
    height: 3px;
    width: 20%;
    background: linear-gradient(-90deg, rgb(186, 132, 23) 34%, rgba(227, 205, 170, 0.6) 89%, rgba(227, 205, 170, 0) 100%);
}
.article-bigTitle{
    font-size: 1.875rem;
      color: #343434;
      font-weight: 500;
      margin-bottom: 16px;
}

/* toggle 按鈕 */
.toggle-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  margin-top: 8px;
  text-decoration: none;
}

.toggle-btn p {
  margin: 0;
}

.toggle-icon {
  display: inline-block;
  font-size: 18px;
  margin-left: 8px;
}

.article-box {
    width: 100%;
}

.article-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
}

.article-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  color: #88553a;
  margin: 16px auto;
}

.toggle-btn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #b98417;
  margin-top: 16px;
}

/* 內容區 */
.article-content {
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 18px;
}
.article-text-flex{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}
.article-text-flex-wrap{
  grid-template-columns: repeat(1,1fr);
}
/* 展開狀態 */
.article-content.is-open {
  max-height: 2000px; /* 足夠大即可 */
}

.article-more{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.article-more p{
    color: #b98417;
}
.article-more-line{
    border-bottom: 1px solid #b98417;
}
.article-content-picBox {
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
}
.article-pic{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.article-pic img{
    width: 100%;
    height: auto;
  display: block;
  margin-top: 20px;
  min-height: 100px;
}
.article-title-sm{
  color: #b98417;
  font-weight: 600;
  font-size: 20px;
  position: relative;
  padding-left: 16px;
  margin: 20px 0;
}
.article-title-sm::before{
  content: '';
  display: block;
  background: #b98417;
  width: 8px;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.article-title span{
  color: #000000;
  font-size: 20px;
}
.article-text table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 10px 0;
}
.article-text td {
  padding: 3px;
  border: 1px solid #000000;
  font-size: 16px;
  background-color: #fff;
}
.article-text thead td{
  background-color: #e3e3e3;
}
.article-text tbody td:nth-child(1){
  background-color: #e3e3e3;
}
.br{
  display: none;
}
@media (max-width: 1200px) {
  .overview {
      margin-top: 0px;
  }
}
@media (max-width: 580px) {
  .br{
    display: block;
  }
  .article-title-container .hero-subtitle {
    font-size: 14px;
  }
  .article-bigTitle{
    font-size: 1.4rem;
  }
  .overview {
      margin-top: 0px;
  }
  .article-h2{
    font-size: 18px;
  }
  .article-title{
    font-size: 20px;
    line-height: 1.4;
  }
  .article-content{
    font-size: 16px;
  }
  .toggle-btn{
    font-size: 14px;
  }
  .article-title span{
  font-size: 16px;
}
  .article-text-flex{
    grid-template-columns: repeat(1, 1fr);
    justify-content: center;
    align-items: center;
  }
  .article-pic img{
    width: 70%;
    margin-top: 0;
  }
  .article-text td{
    font-size: 14px;
  }
}