body {
  font-family: "Arial", sans-serif;
  background-color: #fffafc;
  margin: 0;
  padding: 20px;
  line-height: 1.8;
}

.article-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
}

.article-list h1 {
  font-size: 2em;
  color: #e75480;
  margin-bottom: 30px;
  text-align: center;
}

.article-card {
  background-color: #fff;
  border: 1px solid #f0c6d2;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.article-card:hover {
  background-color: #fff7fa;
  box-shadow: 0 2px 10px rgba(231, 84, 128, 0.1);
  transform: translateY(-2px);
}

.article-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-card h2 {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #e75480;
}

.article-card p {
  color: #555;
  font-size: 0.95em;
}

.article-card .date {
  font-size: 0.8em;
  color: #999;
  display: block;
  margin-top: 10px;
}

.back-to-blog {
  margin-top: 40px;
  text-align: center;
}

.back-to-blog a {
  display: inline-block;
  background-color: #e75480;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.back-to-blog a:hover {
  background-color: #d74470;
}
.share-buttons {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.share-buttons a,
.share-buttons button {
  background-color: #ffe4e8;
  color: #333;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.85em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.share-buttons a:hover,
.share-buttons button:hover {
  background-color: #ffd0da;
  transform: scale(1.05);
}

.share-buttons i {
  font-size: 1em;
}
