.highlight {
  padding-left: var(--spacing-600);
  padding-right: var(--spacing-600);
  padding-bottom: var(--spacing-500);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ax-grid-gutter);
  justify-content: center;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.highlight .icon-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  outline: none;
  padding: 6px 4px;
}

.highlight .icon-row:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

.highlight .icon-row .text {
  padding-left: 0;
  margin-top: var(--spacing-100);
  font-size: var(--body-font-size-s);
  font-weight: bold;
  color: var(--color-black);
}

.highlight .icon-row img {
  width: 40px;
  height: 40px;
  max-width: unset;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .highlight {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: var(--spacing-200) var(--spacing-600) var(--spacing-600);
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: nowrap;
    box-sizing: border-box;
  }

  .highlight .icon-row {
    flex-direction: column;
    text-align: center;
    min-width: 132px;
    align-items: center;
  }

  .highlight .icon-row .text {
    margin-top: var(--spacing-100);
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .highlight {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-200) var(--spacing-600);
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: nowrap;
    box-sizing: border-box;
  }

  .highlight .icon-row {
    flex-direction: row;
    text-align: left;
    min-width: 132px;
  }

  .highlight .icon-row .text {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: var(--spacing-100);
  }
}
