.blog-page {
  background: radial-gradient(circle at center, #453373 0%, #1B042E 100%);
  color: #fff;
  font-family: 'Georgia', serif;
  padding: 20px;
}

.blog-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 0;
}

.blog-subtitle {
  text-align: center;
  font-style: italic;
  margin-top: 5px;
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.blog-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: auto;
}

.blog-post {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.blog-post h2 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.date {
  font-size: 0.9rem;
  color: #ddd;
  margin-bottom: 15px;
}

.snippet {
  text-align: justify;
  font-size: 1rem;
  margin-bottom: 15px;
}

.read-more {
  color: #f3caff;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #fff;
  text-shadow: 0 0 10px #f3caff;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
