.post-cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.post-card {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f6f4f4;
  padding: 20px;
}

.post-card img {
  height: 80px !important;
  object-fit: contain;
}
.post-content p {
  text-align: center;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: break-word;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.5em;
  font-size: 20px;
}

.post-card h3 {
  font-size: 25px;
  font-weight: 600;
  font-family: "Inter", Sans-serif;
  margin-bottom: 10px;
}

.post-card a {
  font-size: 17px;
}

.pagination {
  display: flex;
  justify-content: end;
  margin: 20px 50px;
}

.pagination a,
.pagination span {
  margin: 0 5px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  color: #0073e6;
  text-decoration: none;
}

.pagination .current {
  background-color: #0073e6;
  color: #fff;
  border-color: #0073e6;
}
form {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

form input[type="text"] {
  padding: 10px;
  width: 80%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  padding: 10px 15px;
  border: none;
  background-color: #0073e6;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

form button:hover {
  background-color: #005bb5;
}

@media (max-width: 520px) {
  .post-card {
    width: 100%;
  }
}
