@charset "UTF-8";

#anchor-links + div .content_wrapper {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 850px !important;
  margin: 0 auto;
}

#anchor-links + div .content_wrapper a {
  width: calc(33% - 15px) !important;
  text-align: center;
  display: block;
  margin: 0 !important;
}

@media (max-width: 900px) {
  #anchor-links + div .content_wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
  }

  #anchor-links + div .content_wrapper a {
    width: 100% !important;
  }

  #anchor-links + div .content_wrapper a span {
    padding: 12px 15px;
  }

  #anchor-links + div .content_wrapper > :last-child:nth-child(odd) {
    grid-column: 1/-1;
    justify-self: center;
    width: calc(50% - 10px) !important;
  }
}