.articles-section {
  max-width: 1280px;
  margin: 100px auto;
  padding: 0 20px;
}

.articles-section .section-title {
  color: rgb(26, 16, 91);
  font-size: 28px;
  margin-bottom: 32px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.article-card {
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-thumb {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.article-info {
  padding: 28px;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-info h3 {
  font-size: 18px;
  margin: 0 0 8px;
  font-weight: bold;
  color: rgb(26, 16, 91);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-info p {
  font-size: 14px;
  margin: 0 0 12px;
  color: rgb(26, 16, 91);

  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-info a {
  display: inline-block;
  background-color: #503AA8;
  color: white;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-top: auto;
}
