.news-page {
  max-width: 1080px;
  margin: 24px auto 40px;
  padding: 0 16px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.news-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  background: #f6f8fb;
}

.news-card img {
  display: block;
  width: 100%;
  height: auto;
}

.news-detail-btn {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 40px;
  padding: 0 16px;
  border-radius: 20px;
  background: rgba(22, 120, 240, 0.9);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.news-detail-btn:hover {
  background: rgba(15, 97, 197, 0.95);
}

.news-pagination {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.news-pagination a,
.news-pagination span {
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid #cfd6df;
  color: #2a3440;
  text-decoration: none;
  font-size: 14px;
  background: #fff;
}

.news-pagination .is-current {
  border-color: #1678f0;
  color: #1678f0;
  font-weight: 700;
}

.news-empty {
  text-align: center;
  color: #6f7e8d;
  padding: 30px 0;
}

