

.pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 50px;
}

.btn {
  border: 1px solid #491e15;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background: none;
  cursor: pointer;
}

.btn-icon {
  width: 24px;
  height: 24px;
  stroke: #491e15;
}

.btn:hover {
  background-color: #491e15;
}

.btn:hover .btn-icon {
  stroke: #fff;
}

.page-link:link,
.page-link:visited {
  text-decoration: none;
  color: #343a40;
  font-size: 18px;
  height: 36px;
  width: 36px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.page-link:hover,
.page-link:active,
.page-link.page-link--current {
  background-color: #491e15;
  color: #fff;
}

.dots {
  color: #868e96;
}