#contactList {
  display: flex;
  gap: 5rem;
}
#contactList > ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
#contactList > div {
  flex: 4;
}
#contactList > ul button {
  text-align: left;
  border-radius: 4px !important;
  width: 100%;
  background-color: var(--color-grey);
  color: var(--color-dark-grey);
  padding: 14px 10px;
}
#contactList > ul button.active,
#contactList > ul button:hover {
  background-color: var(--color-primary-green);
  color: #fff;
}
.address-tab-content {
  display: flex;
  gap: 5rem;
}
.address-tab-content > p {
  color: var(--color-dark-grey);
}
.address-tab-content > p > a {
  color: inherit;
  text-decoration: none;
}

@media only screen and (max-width: 876px) {
  #contactList {
    flex-direction: column;
  }
  #contactList > ul {
    flex-direction: row;
  }
  #contactList > ul > li {
    flex: 1;
  }
  #contactList > ul button {
    text-align: center;
  }
}
@media only screen and (max-width: 603px) {
  #contactList > ul {
    flex-wrap: nowrap;
    overflow: auto;
  }
  #contactList > ul button {
    padding: 6px 12px;
    font-size: 18px;
  }
  #contactList {
    gap: 1rem;
  }
  .address-tab-content {
    flex-direction: column;
    gap: 1rem;
  }
}
