/* 最新動向 */
.hero-bg-image {
    object-position: top;
}

.news-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-title {
    font-size: 36px;
    color: #333333;
    line-height: 45px;
    margin-bottom: 20px;
}

.news-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;

    display: flex;
    flex-direction: column;

}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.news-content {
    padding: 30px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #333;
    line-height: 25px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-date,
.news-subtitle {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.news-content>p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.news-detail {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

#demo-laypage-theme-1 {
    padding-bottom: 0;
}

/*
文章詳情
*/
#news_detail {
    padding: 80px 0px;
    margin: 0 10px;
  }

  #news_detail video {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  
  .news-detail-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .news-title {
    font-size: 42px;
    color: #333333;
    line-height: 53px;
    margin-bottom: 20px;
  }
  
  .news-info {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    align-items: center;
  }
  
  .news-info span:first-child {
    color: #777777;
    text-align: left;
    font-size: 14px;
  }
  
  .news-info a {
    text-decoration: none;
    font-size: 14px;
    color: #777777;
    line-height: 30px;
    display: inline-block;
    padding-right: 35px;
    background: url("/image/back.png") no-repeat center right;
    background-size: contain;
  }
  
  .news-info a:hover {
    color: #1d523e;
  }
  
  #blogDetailMain .news-content {
    margin-top: 25px;
    padding: 15px 0px;
    line-height: 36px;
    font-size: 16px;
    color: #333333;
    min-height: 400px;
  }
  
  .news-content img {
    max-width: 100%;
    height: auto !important;
  }
  
  .news-content p {
    margin-bottom: 12px;
    text-indent: 2em;
  }
  
  .news-box {
    width: 100%;
    margin-top: 35px;
    padding-top: 20px;
    line-height: 36px;
    display: flex;
    justify-content: space-between;
    border-top: solid 1px #ccc;
  }
  
  .news-box a {
    color: #777777;
    font-size: 14px;
    line-height: 18px;
    text-decoration: none;
    display: inline-block;
  }
  
  .news-box a:hover {
    color: var(--main-color);
  }
  
  .news-title {
    text-align: center;
  }
  
  /*
  文章詳情結束
  */