* {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Roboto", sans-serif;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:root {
  --text-primary: #222222;
}

.two-in-a-row-products-header {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 0 8px;
}
.two-in-a-row-products-header__view-all {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  cursor: pointer;
  margin-top: 4px;
}

.two-in-a-row-typo {
  word-break: break-word;
}

.view-all {
  white-space: nowrap;
}

.two-in-a-row-products-header__view-all svg {
  display: none;
  /* Arrow icon hidden. To re-enable, remove this rule. */
}

.two-in-a-row-products-wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 20px;
}

.two-in-a-row-product-card:nth-last-child(-n+2) {
  margin-bottom: 0 !important;
}