/* news.html(會館公告) — 大部分 layout 已使用共用 .hero-banner / .list-* / .pagination / .date */

/* ----- 頁面專屬:左側裝飾色塊(beige square 從左側微露出) ----- */
.news-section.list-section {
  background: #fff;
}

.news-section.list-section::before {
  content: "";
  position: absolute;
  left: -159px;
  top: 100px;
  width: 570px;
  height: 319px;
  background: #f4e9e0;
  border-radius: 15px;
  z-index: 0;
  pointer-events: none;
}

/* ----- 頁面專屬:容器寬度 950px ----- */
.list-shell.news-shell {
  --list-shell-w: 950px;
}

/* ----- 頁面專屬:上方 2 大卡 grid + 下方 6 list ----- */
.news-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* ----- 響應式 ----- */
@media (max-width: 1023px) {
  .news-section.list-section::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .news-feature-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .news-list {
    gap: 32px;
  }
}

/* ----- Hero (per-page) ----- */
.news-hero {
  width: 100%;
  aspect-ratio: 1440 / 450;
  background: url('../../assets/news-hero.png') center/cover no-repeat;
}

@media (max-width: 767px) {
  .news-hero {
    aspect-ratio: 4 / 3;
  }
}
