.pagination {
  margin-bottom: 50px;

  .page {
    display: block;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    a {
      width: 36px;
      height: 36px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
  }

  .current {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-radius: 100%;
  }

  svg {
    width: 20px;
    height: 100%;
  }
  color: var(--color-black);
  font-weight: var(--font-weight-book);
  a {
    text-decoration: none;
    color: inherit;

    &:hover {
      color: var(--color-secondary);

      svg {
        path {
          fill: var(--color-black);
        }
      }
    }
  }

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
