.article-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.article-image-link {
  display: block;
}

.article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-image-placeholder {
  width: 100%;
  height: 200px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #64748b;
}

.article-body {
  padding: 1rem;
}

.article-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.article-title a {
  text-decoration: none;
  color: #0f172a;
}

.article-title a:hover {
  color: #2563eb;
}

.article-lead {
  color: #475569;
  font-size: 0.95rem;
  min-height: 56px;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.75rem;
}
