@media (min-width: 960px) {
  .text-with-image__context-group {
    margin-block-start: calc(var(--top-pos, 0) * 1px);
  }
}
.text-with-image__image-with-product {
  position: relative;
  display: flex;
  flex-shrink: 0 !important;
  border-radius: var(--product-card-border-radius, 10px);
}
.text-with-image__image-with-product-show-line::after {
  position: absolute;
  inset-block-start: 0;
  display: block;
  width: 90%;
  height: 95%;
  content: "";
  border-block-end: 1px solid #fff;
}
.text-with-image__image-with-product-show-line--bottom-left::after {
  inset-inline-end: 0;
  border-inline-start: 1px solid #fff;
}
.text-with-image__image-with-product-show-line--bottom-right::after {
  inset-inline-start: 0;
  border-inline-end: 1px solid #fff;
}
.text-with-image__image-with-product--high {
  height: 700px;
}
.text-with-image__image-with-product--low {
  height: 500px;
}
.text-with-image__image-with-product .hover-scale__image {
  width: 100%;
}
.text-with-image__image-with-product .empty-image-class {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgb(var(--color-image-background));
}
.text-with-image__image-with-product-link {
  width: 100%;
}
.text-with-image__image-with-product-link > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.text-with-image__image-with-product-card {
  position: absolute;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: calc(100% - 80px);
  height: 80px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 6px 30px 0 rgb(0 0 0 / 8%);
}
.text-with-image__image-with-product-card--bottom-left {
  inset-block-end: 5%;
  inset-inline-start: 10%;
}
.text-with-image__image-with-product-card--bottom-right {
  inset-block-end: 5%;
  inset-inline-end: 10%;
}
.text-with-image__image-with-product-title-wrapper {
  max-width: calc(100% - 82px);
}
.text-with-image__image-with-product-title {
  overflow: hidden;
  color: #000;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-with-image__image-with-product-image {
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
  margin-inline-start: auto;
}
.text-with-image__image-with-product-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 960px) {
  .text-with-image__image-with-product--high,
  .text-with-image__image-with-product--low {
    width: 450px;
  }

  .text-with-image__image-with-product-card {
    min-width: 300px;
    padding-block: 4px;
    padding-inline: 10px 4px;
  }
}
@media (max-width: 959px) {
  .text-with-image__image-with-product-card {
    width: 80px;
    min-width: 80px;
    padding: 4px;
  }

  .text-with-image__image-with-product-image {
    overflow: hidden;
    border-radius: 6px;
  }
}
.text-with-image-section {
  word-break: break-word;
  background-color: rgb(var(--color-background));
}
