.product-usp-with-image__container.page-width {
  max-width: 1400px;
  padding: 0 30px;
}
.product-usp-with-image__container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.product-usp-with-image__content,
.product-usp-with-image__image {
  width: 33%;
}

.product-usp-with-image__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;

  gap: 20px;
}

.product-usp-with-image__usp-item {
  & .usp-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;
  }

  & .usp-item--mobile {
    display: none;
  }

  & .usp-item__text {
    width: calc(100% - 112px);
  }

  & .usp-item__heading {
    color: #100F0F;
    text-align: right;

    font-family: "New Spirit";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;

    margin: 0 0 15px;
  }

  .usp-item__content,
  .accordion__content-inner {
    p {
      color: #2C2926;
      text-align: right;
      font-family: Inter;
      font-size: 15px;
      font-style: normal;
      font-weight: 400;
      line-height: 165%;
      
      &:first-child {
        margin-top: 0;
      }

      &:last-child {
        margin-bottom: 0;
      }
    }
  }

  &:has(.icon--left-aligned) .usp-item__heading,
  &:has(.icon--left-aligned) .usp-item__content p {
    text-align: left;
  }

  .usp-item__icon {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 82px;
    height: 82px;

    &.icon--left-aligned {
      order: -1;
    }

    & > img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
}

.product-usp-with-image__image {
  display: flex;
  justify-content: center;
  align-items: center;

  width: 34%;
  height: auto;

  & > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: -1;
  }

  &::selection {
    background: transparent;
  }

  &:has(.image--mobile) .image--mobile {
    display: none;
  }
}

@media screen and (max-width: 989px) {
  .product-usp-with-image__container.page-width {
    padding: 0 20px;
  }

  .product-usp-with-image__container {
    flex-direction: column;
  }

  .product-usp-with-image__content,
  .product-usp-with-image__image {
    width: 100%;
  }

  .product-usp-with-image__image {
    order: -1;

    margin-bottom: 20px;
  }

  .product-usp-with-image__content {
    gap: 0;
  }

  .product-usp-with-image__usp-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    width: 100%;

    & .usp-item--desktop {
      display: none;
    }

    & .usp-item--mobile {
      display: block;
    }

    & .usp-item__heading {
      font-size: 18px;
      margin: 0;
    }

    & .accordion {
      margin: 0;

      & summary {
        padding: 2rem 0 1.5rem;
      }

      & .summary__title {
        align-items: center;
        flex: 0 0 auto;
        width: calc(100% - 14px);
      }

      & .summary__title + .icon-plus,
      & .summary__title ~ .icon-minus {
        position: absolute;
        width: 14px;
        height: 14px;

        top: calc(50% - 7px);
        right: 0;

        color: #7B6B5D;
        stroke-width: 2px;
      }

      & .summary__title ~ .icon-minus {
        display: none;
      }

      & details[open] {
        & .summary__title ~ .icon-minus {
          display: block;
        }

        & .summary__title + .icon-plus {
          display: none;
        }
      }

      & .accordion__content {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.3s ease;
        margin-bottom: 0;
        padding: 0
      }

      & details[open] + .accordion__content {
        grid-template-rows: 1fr;
        padding-bottom: 16px;
      }

      & .accordion__content-inner {
        overflow: hidden;

        & p {
          text-align: left;
        }
      }
    }

    .usp-item__icon {
      display: flex;
      justify-content: center;
      align-items: center;

      width: 54px;
      height: 54px;

      margin-right: 15px;

      &.icon--left-aligned {
        order: -1;
      }

      & > img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }
  }

  .product-usp-with-image__content.content--right .product-usp-with-image__usp-item:last-child {
    border-bottom: none;
  }

  .product-usp-with-image__image {
    width: 100%;

    & > img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      z-index: initial;
    }

    &:has(.image--mobile) {
      width: 80%;
      margin-left: auto;
      margin-right: auto;

      .image--mobile {
        display: block;
      }
      
      .image--desktop {
        display: none;
      }
    }
  }
}