.IconLinkList {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}.IconLinkList.Theme--pink .IconLinkItem {
    color: #ffffff;
  }.IconLinkList.Theme--pink .IconLinkItem-icon {
    background-color: #ffffff;
    color: var(--clr-secondary);
  }.IconLinkList.Theme--green .IconLinkItem {
    color: #ffffff;
  }.IconLinkList.Theme--green .IconLinkItem-icon {
    background-color: #ffffff;
    color: var(--clr-primary);
  }.IconLinkList > * {
    flex: 0 1 calc(100% / 2 - 5px);
    height: auto;
  }.IconLinkList > *:nth-child(n + 3) {
    margin-top: 10px;
  }@media screen and (max-width: 370px) {.IconLinkList {
    display: block;
}
  }@media screen and (min-width: 769px) {
    .IconLinkList > * {
      flex: 0 1 auto;
      height: auto;
    }

    .IconLinkList > *:nth-child(n + 2) {
      margin: 0 0 0 10px;
    }
  }
