.blogs .wrapper {
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.blogs .wrapper h1 {
  text-align: center;
  font-size: 42px;
  width: 75%;
}

.blogs .wrapper h2 {
  font-family: Badscript;
  font-size: 18px;
  line-height: 34px;
  text-align: center;
}

/* blog grid */
.blogs .wrapper ul.grid {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

/* pagination */
.blogs .paginatie {
  display: flex;
  justify-content: center;
  margin-top: 120px;
  gap: 6px;
}
.blogs .paginatie .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  font-family: OpenSans;
  font-weight: 700;
  font-size: 16px;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  border: 1px solid #bfbfbf;
}
.blogs .paginatie .page-numbers:hover {
  text-decoration: none;
}
.blogs .paginatie .page-numbers.current {
  background-color: #485544;
  color: white;
  border: 1px solid #485544;
}

.blogs .paginatie img {
  width: 9px;
  height: 15px;
}
.blogs .paginatie .prev img {
  transform: rotate(180deg);
}
@media screen and (max-width: 1180px) and (orientation: portrait),
  screen and (max-width: 1024px) {
  .blogs .wrapper ul.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .blogs .wrapper h2 {
    font-size: 14px;
  }
  .blogs .wrapper h1 {
    font-size: 26px;
    width: 100%;
  }
  .blogs .wrapper ul.grid {
    margin-top: 40px;
    grid-template-columns: 1fr;
  }
  .blogs .paginatie {
    margin-top: 50px;
  }
}
