.article-area h1 {
  color: #71a0b4;
  font-size: 30px;
  display: block;
  vertical-align: middle;
  position: relative;
  font-weight: 900;
  text-align: center;
  margin: 20px auto;
  letter-spacing: 0.15em;
}

.article-list {
  width: 80%;
  list-style: none;
  padding: 0;
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.article-item a {
  text-decoration: none;
  color: inherit;
}

.article-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px;
  color: #222;
}

.article-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}
