.blog-container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.post {
  background: #71ab23;
  border: 1px solid #71ab23;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.post:hover {
  transform: translateY(-4px);
  background-color: #65991f;
  border-color: #4b6f19;
}

.post h2 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #fff;
}

.post .meta {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 1rem;
}

.post p {
  font-size: 1rem;
  color: #fff;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #0032db;
  color: #f0f0f0;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.read-more:hover {
  background: #001e83;
}
