.article-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.card-img-top-container {
  position: relative;
  border-radius: 0.375rem 0.375rem 0 0 !important;
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #dc3545;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.article-categories .badge {
  transition: opacity 0.2s ease;
}

.article-categories .badge:hover {
  opacity: 0.85;
}

.card-title a:hover {
  color: #0d6efd !important;
}