.suggested-articles-section {
  margin: 50px 0;
  text-align: center;
}

.articles-grid {
  display: flex;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.article-card {
  display: flex;
  flex-direction: column;
  width: clamp(200px, 30%, 300px);
  background-color: #fff;
  box-shadow: 0 0 5px #a6a6a6;
  border-radius: 10px;
  overflow: hidden;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #000;
}

.article-card img {
  height: 200px;
  object-fit: cover;
}

.article-card:hover {
  transform: scale(1.1);
}

.article-card h3 {
  margin-bottom: 0 !important;
  padding: 10px;
}

.article-card p {
  padding: 0 20px 20px;
}

.suggested-articles-content {
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .article-card {
    width: 100%;
  }
}
