/* What's New セクションのスタイル */
.whats-new-section {
  padding: 40px 0;
}

.whats-new-section .container {
  max-width: 700px;
  margin: 0 auto;
}

.whats-new-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}

.entries-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.x-link {
  display: inline-block;
  padding: 10px 15px;
  background-color: #1da1f2;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 10px;
}

.x-link:hover {
  background-color: #0d95e8;
  transform: scale(1.05);
}
