.page-news {
  width: 90%;
  max-width: 1500px;
  margin: 40px auto;
  font-family: "Swei-R", "Noto Sans TC", sans-serif;
}

.page-news .container {
    padding: unset;
    max-width: 1500px !important;
}

.section-title {
  font-family: "Swei-B";
  font-size: 2rem;
  color: #3a5c65;
  margin-bottom: 20px;
}

.video-section .swiper {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}

.video-card {
  position: relative;
  display: block;
  text-align: center;
  cursor: pointer;
  color: #333;
}

.video-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.video-title {
  margin-top: 10px;
  font-size: 1rem;
  font-family: "Swei-B";
  color: #3a5c65;
}

/* 縮圖與標題區塊分離 */
.video-thumbnail-block,
.video-title-block {
  text-align: center;
  margin-bottom: 15px;
}

.video-thumbnail-block img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.video-thumbnail-block img:hover {
  transform: scale(1.05);
}

.video-title-block a {
  display: inline-block;
  font-family: "Swei-B";
  font-size: 1rem;
  color: #3a5c65;
  transition: color 0.3s ease;
}

.video-title-block a:hover {
  color: #2a4c54;
}

.video-swiper .swiper-button-next,
.video-swiper .swiper-button-prev {
  color: #333;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.video-swiper .swiper-button-next {
  right: 10px;
}

.video-swiper .swiper-button-prev {
  left: 10px;
}

.video-swiper .swiper-button-next::after,
.video-swiper .swiper-button-prev::after {
  font-size: 18px;
}

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

.news-card {
  background-color: #fff;
  border: 1px solid #ddd;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: cover;
}

.news-title {
  font-family: "Swei-M";
  font-size: 1rem;
  color: #3a5c65;
  padding: 12px;
}

.pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination .page-numbers {
  font-family: "Swei-R";
  margin: 0 6px;
  padding: 8px 12px;
  background-color: #3a5c65;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}

.pagination .current {
  background-color: #7fabb4;
}

.video-title-block a,
.news-title {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 限制顯示行數 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: start;
}

@media screen and (min-width: 1024px) {
  .news-list {
    grid-template-columns: repeat(2, 1fr); /* 桌機一行兩篇 */
  }
}