@import '../helpers/helpers';

.store-locator-lookup {
  width: 100%;

  &__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    width: 100%;
  }

  &__card {
    border: 1px solid $gray-light;
    border-radius: 10px;
    padding: 12px 16px 12px 12px;
    position: relative;
    color: $gray-dark;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    &-footer {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;

      svg {
        color: $blue;
        font-size: 1.15em;
      }
    }

    &:hover,
    &:focus {
      text-decoration: none;
      color: $gray-dark;
    }
  }

  &__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 0;
  }
}

@include media-breakpoint-down(sm) {
  .store-locator-lookup {
    &__wrapper {
      grid-template-columns: 1fr;
    }
  }
}
