.wp-block-query-pagination {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 40px;

  .wp-block-query-pagination-previous {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;

    &::before {
      display: block;
      content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='19' viewBox='0 0 18 19' fill='none'%3E%3Cpath d='M5.86875 8.74992L14.25 8.74992C14.4625 8.74992 14.6406 8.82179 14.7844 8.96554C14.9281 9.10929 15 9.28742 15 9.49992C15 9.71242 14.9281 9.89054 14.7844 10.0343C14.6406 10.178 14.4625 10.2499 14.25 10.2499L5.86875 10.2499L9.54375 13.9249C9.69375 14.0749 9.76562 14.2499 9.75937 14.4499C9.75312 14.6499 9.675 14.8249 9.525 14.9749C9.375 15.1124 9.2 15.1843 9 15.1905C8.8 15.1968 8.625 15.1249 8.475 14.9749L3.525 10.0249C3.45 9.94992 3.39687 9.86867 3.36562 9.78117C3.33437 9.69367 3.31875 9.59992 3.31875 9.49992C3.31875 9.39992 3.33437 9.30617 3.36562 9.21867C3.39687 9.13117 3.45 9.04992 3.525 8.97492L8.475 4.02492C8.6125 3.88742 8.78438 3.81867 8.99063 3.81867C9.19688 3.81867 9.375 3.88742 9.525 4.02492C9.675 4.17492 9.75 4.35304 9.75 4.55929C9.75 4.76554 9.675 4.94367 9.525 5.09367L5.86875 8.74992Z' fill='%234A5849'/%3E%3C/svg%3E");
      width: 18px;
      height: 19px;
      flex-shrink: 0;
    }
  }
  .wp-block-query-pagination-next {
    display: flex;
    align-items: center;
    gap: 10px;

    &::after {
      display: block;
      content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='19' viewBox='0 0 18 19' fill='none'%3E%3Cpath d='M5.86875 8.74992L14.25 8.74992C14.4625 8.74992 14.6406 8.82179 14.7844 8.96554C14.9281 9.10929 15 9.28742 15 9.49992C15 9.71242 14.9281 9.89054 14.7844 10.0343C14.6406 10.178 14.4625 10.2499 14.25 10.2499L5.86875 10.2499L9.54375 13.9249C9.69375 14.0749 9.76562 14.2499 9.75937 14.4499C9.75312 14.6499 9.675 14.8249 9.525 14.9749C9.375 15.1124 9.2 15.1843 9 15.1905C8.8 15.1968 8.625 15.1249 8.475 14.9749L3.525 10.0249C3.45 9.94992 3.39687 9.86867 3.36562 9.78117C3.33437 9.69367 3.31875 9.59992 3.31875 9.49992C3.31875 9.39992 3.33437 9.30617 3.36562 9.21867C3.39687 9.13117 3.45 9.04992 3.525 8.97492L8.475 4.02492C8.6125 3.88742 8.78438 3.81867 8.99063 3.81867C9.19688 3.81867 9.375 3.88742 9.525 4.02492C9.675 4.17492 9.75 4.35304 9.75 4.55929C9.75 4.76554 9.675 4.94367 9.525 5.09367L5.86875 8.74992Z' fill='%234A5849'/%3E%3C/svg%3E");
      width: 18px;
      height: 19px;
      transform: scaleX(-1);
      flex-shrink: 0;
    }
  }

  .wp-block-query-pagination-numbers {
    display: flex;
    align-items: center;
    .page-numbers {
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;

      &.current {
        border-radius: 99px;
        border: 2px solid #3D8526;
      }

      &.dots {

      }
    }
  }
}