.post-details {
  min-width: 200px;
  max-width: 48%;
  width: 100%;
  margin-right: 2%;
  margin-bottom: 30px;
}

.post-details>a {
  display: flex;
  flex-direction: column;
}

.post-details img {
  width: 100%;
  height: 240px;
  border-radius: 15px;
  transition: all 0.2s ease;
}

.post-details img:hover {
  filter: blur(1px);
  cursor: pointer;
}

.post-title {
  font-size: 15px;
  font-weight: bold;
  color: var(--dark-color);
}

.post-title:hover {
  color: var(--primary-color);
  cursor: pointer;
}

@media (max-width: 500px) {
  .post-details {
    max-width: 100%;
  }
}
