.articles-hero {
  background: linear-gradient(90deg, rgba(124, 45, 18, 0.25) 0%, rgba(217, 119, 6, 0.08) 50%, transparent 100%);
  border-bottom: 1px solid rgba(217, 119, 6, 0.25);
}

.article-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.article-card:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.article-card-image {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-card-image img {
  transform: scale(1.08);
}

.article-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 8, 5, 0.85) 100%);
}

.article-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: rgba(217, 119, 6, 0.9);
  color: #1a0f00;
  font-size: 0.75rem;
  font-weight: 700;
}

.article-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-title {
  font-family: 'Zcool QingKe HuangYou', 'Noto Serif SC', cursive;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-main);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.article-card-summary {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.article-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.article-card-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.article-card-link:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .article-card:hover {
    transform: scale(1.02) translateY(-4px);
  }
}
