.where-to-buy-section {
  display: flex;
  width: 100%;
  padding-block: 40px;
  padding-inline: 26px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 40px 40px;
  position: relative;

  @media screen and (min-width: 768px) {
    margin: 0 auto;
    padding-block: 80px;
    border-radius: 0 0 60px 60px;
  }

  .where-to-buy-bg-image-right {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    z-index: 0;
    display: none;

    @media screen and (min-width: 768px) {
      display: block;
    }
  }

  .where-to-buy-bg-image-left {
    position: absolute;
    top: 20px;
    left: 0;
    width: auto;
    height: auto;
    z-index: 0;
    display: none;

    @media screen and (min-width: 768px) {
      display: block;
    }
  }

  .where-to-buy-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 1;

    @media screen and (min-width: 768px) {
      gap: 40px;
    }

    .where-to-buy-content-heading {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;

      .where-to-buy-title {
        :is(p) {
          text-align: center;
          font-family: "Highgate", serif;
          font-size: 27px;
          font-style: normal;
          font-weight: 700;
          line-height: 107%;

          @media screen and (min-width: 768px) {
            font-size: 48px;
          }
        }
      }
      .where-to-buy-description {
        :is(p) {
          text-align: center;
          font-family: "Highgate", serif;
          font-size: 20px;
          font-style: normal;
          font-weight: 500;
          line-height: 107%;

          @media screen and (min-width: 768px) {
            font-size: 24px;
          }
        }
      }
    }

    .where-to-buy-content-items {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      column-gap: 17px;
      row-gap: 26px;
      width: 100%;

      @media screen and (min-width: 768px) {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 27px;
        row-gap: 41px;
        width: unset;
      }

      .where-to-buy-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .where-to-buy-item-link {
          display: flex;
          width: 100%;
          height: 100%;
          align-items: center;
          justify-content: center;
          text-decoration: none;
          padding: 21px 11px;
          border-top-left-radius: 5px;
          border-top-right-radius: 5px;

          @media screen and (min-width: 768px) {
            padding: 35px 20px;
          }
        }

        .where-to-buy-item-logo {
          display: flex;
          width: 133px;
          height: auto;

          @media screen and (min-width: 768px) {
            width: 200px;
          }
        }

        .where-to-buy-item-description-link {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 100%;
          text-decoration: none;
        }

        .where-to-buy-item-description {
          display: flex;
          width: 100%;
          align-items: center;
          justify-content: center;
          padding: 10px;
          border-bottom-left-radius: 5px;
          border-bottom-right-radius: 5px;

          @media screen and (min-width: 768px) {
            padding: 15px;
          }

          :is(p) {
            font-family: "Highgate", serif;
            font-size: 10.493px;
            font-style: normal;
            font-weight: 700;
            line-height: 100%;
            text-transform: uppercase;
            text-align: center;

            @media screen and (min-width: 768px) {
              font-size: 16px;
            }
          }
        }
      }
    }
  }
}
