.blog-post {
  display: flex;
  flex-direction: column;
  margin: 3rem auto;
}

.blog-post-image img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.blog-post-content {
  text-align: left;
}

.blog-post-date {
  color: #999;
  font-size: 14px;
  margin-bottom: 5px;
}

.blog-post-title {
  color: #333;
  font-size: 24px;
  margin-bottom: 15px;
}

.blog-post-excerpt {
  color: #666;
  font-size: 16px;
  margin-bottom: 20px;
}

.blog-post-read-more {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #007bff;
  padding: 10px 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.blog-post-read-more:hover {
  background-color: #007bff;
  color: #fff;
}
