body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  padding: 2rem;
  display: flex;
  justify-content: center;
}

.blog-post-card {
  background-color: white;
  border-radius: 10px;
  width: 350px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.post-img {
  width: 100%;
  display: block;
  border-bottom: 3px solid #ddd;
}

.post-content {
  padding: 1rem;
}

.post-title {
  color: #333;
  margin: 0.5rem 0;
}

.post-excerpt {
  color: #666;
  margin: 0.5rem 0 1rem 0;
}

.read-more {
  display: inline-block;
  color: lightgrey;
  background-color: #097052;
  padding: 0.5rem 1rem;
  margin: 0.5rem 0;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: lightgrey;
  color: #097052;
}
