.store-locator,
.glossary {
  font-family: var(--font-family-primary);
  padding: 2rem;
  max-width: 1536px;
  margin: auto;
}

.store-locator section,
.glossary section {
  padding-top: 40px;
  border-bottom: 1px solid var(--color-neutral-1-200);
}

.store-locator section:last-of-type,
.glossary section:last-of-type {
  border: none;
}

.store-locator section:first-child,
.glossary section:first-child {
  padding-top: 0;
}

.stores-wrapper,
.ingredients-wrapper,
dl {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
}

.store,
.ingredient {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-bottom: 40px;
  padding: 0 16px 16px 0;
  box-sizing: border-box;
}

hr {
  padding: 0;
  margin: 0;
}

h2 {
  padding-bottom: 24px;
  margin: 0;
  font-family: var(--font-family-primary);
  display: flex;
  align-items: center;
  font-size: var(--mobile-font-size-3xl);
  font-style: normal;
  font-weight: var(--font-weight-medium);
  line-height: var(--mobile-font-leading-2xl);
  letter-spacing: var(--mobile-font-tracking-2);
  text-transform: uppercase;
}

h2 .store-title-divider {
  color: var(--color-neutral-1-200);
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-medium);
  font-size: var(--mobile-font-size-xl);
  padding: 0 12px 0 12px;
}

h2 .store-title-location {
  color: var(--color-neutral-1-600);
  text-transform: uppercase;
}

.store-title,
.ingredient-title {
  font-family: var(--font-family-primary);
  font-size: var(--mobile-font-size-lg);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-style: normal;
  font-weight: var(--font-weight-medium);
  line-height: var(--mobile-font-leading-base);
  letter-spacing: var(--mobile-font-tracking-1);
}

.store-description {
  font-size: var(--mobile-font-size-sm);
  text-transform: uppercase;
  color: var(--color-neutral-1-600);
  margin-bottom: 12px;
  font-style: normal;
  font-weight: var(--font-weight-light);
  line-height: var(--mobile-font-leading-base);
  letter-spacing: var(--mobile-font-tracking-1);
}

.ingredient-description {
  font-size: var(--mobile-font-size-lg);
  color: var(--color-neutral-1-600);
  margin-bottom: 12px;
  font-style: normal;
  font-weight: var(--font-weight-light);
  line-height: var(--mobile-font-leading-base);
  letter-spacing: var(--mobile-font-tracking-1);
}

.store-address {
  font-size: var(--mobile-font-size-base);
  font-weight: var(--font-weight-light);
  line-height: var(--mobile-font-leading-base);
  letter-spacing: var(--mobile-font-tracking-1);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.store-phone {
  font-size: var(--mobile-font-size-base);
  font-style: normal;
  font-weight: var(--font-weight-light);
  line-height: var(--mobile-font-leading-base);
  letter-spacing: var(--mobile-font-tracking-1);
}

@media only screen and (min-width: 992px) {

  .store,
  .ingredient {
    width: 33.33%;
  }
}

@media only screen and (min-width: 1200px) {

  .store,
  .ingredient {
    width: 25%;
    padding: 0 20px 20px 0;
  }
}
