/* Styles for the articles summary page */
.articles-title {
  font-size: 2.4rem;
  color: #31add7;
  margin-bottom: 32px;
  text-align: center;
}

.article-main {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(49, 173, 215, 0.07);
  padding: 48px 32px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.article-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.article-list li {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e6f7fb;
}
.article-list li:last-child {
  border-bottom: none;
}
.article-list a {
  font-size: 1.25rem;
  color: #31add7;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.article-list a:hover {
  color: #218bb0;
  text-decoration: underline;
}
.article-list p {
  margin: 8px 0 0 0;
  color: #444;
  font-size: 1.05rem;
}
@media (max-width: 700px) {
  .article-container {
    padding: 16px 4px;
    margin: 18px 0;
  }
  .article-list a {
    font-size: 1.05rem;
  }
}
