.article-heading {
  font-size: 50px;
  color: #31b1b8;
  margin-bottom: 60px;
  align-items: center;
}

.news-section {
  width: 100%;
  min-height: 100vh;
  background: #fff;
  padding: 60px 20px;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.news-title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.news-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}

.news-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.news-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.4;
}

.news-date {
  font-size: 12px;
  color: #999;
  margin-top: auto;
  text-align: right;
}

.pagination {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.pagination button {
  padding: 6px 12px;
  border: 1px solid #ccc;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
  font-family: 'Nunito', sans-serif;
}

.pagination button:hover:not(:disabled) {
  background-color: #f0f0f0;
}

.pagination button:disabled {
  background-color: #eee;
  cursor: default;
  font-weight: bold;
}

@media (max-width: 768px) {
  .news-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .news-cards {
    grid-template-columns: 1fr;
  }
}