.post-card {
  padding: 1.25rem;
  border-radius: 12px;
  background: #202020;
  transition: all 0.3s ease;
}

.post-card:hover {
  box-shadow: 0 4px 15px rgba(255, 97, 5, 0.3);
  transform: translateY(-5px);
}

.post-title {
  color: #ffffff;
  font-size: 1.25rem;
}

.post-desc {
  color: #b8b8b8;
}
.blog-btn-read-more {
  outline: none;
  border: none;
  border-radius: 4px;
  background-color: #ff9d80;
  color: black;
  transition: background-color 0.3s;
}
.blog-btn-read-more:hover {
  background-color: #ff7a50;
  color: black;
}
