.blog-post-card {
  background-color: white;
  border-radius: 10px;
  width: 350px;
  text-align: left;
  margin: 40px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.post-img {
  width: 100%;
  border-bottom: 2px solid #ccc;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.post-content {
  padding: 20px;
}

.post-title,
.post-excerpt {
  color: #333;
  margin: 10px 0;
}

.read-more {
  color: white;
  background-color: #0077cc;
  margin: 10px 0;
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #005fa3;
}