.article-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: box-shadow 0.2s ease;
  overflow: hidden;
    margin-bottom: 1.5rem; /* adjust as needed */
}

.article-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #007BFF;
}

.card-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 1em;
  gap: 1em;
}

.card-content {
  flex: 1;
}

.card-content h2 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-size: 1.25em;
}

.card-content p {
  margin: 0;
  color: #555;
}

.card-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.article-card:hover .card-arrow {
  transform: translateX(4px);
}
