/* banner img */
.banner-bg {
  background: url('/ver2/images/article/article-banner.webp') center center / cover no-repeat;
}

.article-bg{
    background: url('/ver2/images/article/article-background.png') repeat;
}

/* 所有文章列表 */
.article-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-card h3 {
  font-size: 16px;
  margin: 16px;
  color: #333;
  line-height: 1.4;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  margin-top: auto;
  margin-top: 10px;
}

.card-footer .tag {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.card-footer .more-btn {
  padding: 6px 12px;
  background: #4e3c2b;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.card-footer .more-btn:hover {
  background: #8c6b4a;
}

/* 平板：2列 */
@media (max-width: 1024px) {
  .article-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 手機：1列 */
@media (max-width: 600px) {
  .article-list {
    grid-template-columns: 1fr;
  }
}