/**
 * SEO Paragraph / Product Component
 * Mobile-first styling with rem units
 */
.seo-paragraph-product {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  position: relative;
  background-color: transparent;
}
.seo-paragraph-product .seo-paragraph-border-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  flex-shrink: 0;
}
.seo-paragraph-product .seo-paragraph-border-wrapper.seo-paragraph-border-wrapper-bottom {
  transform: rotate(180deg);
}
.seo-paragraph-product .seo-paragraph-border {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  flex: none;
}
.seo-paragraph-product .seo-paragraph-border .seo-paragraph-border-inner {
  width: 100%;
  height: 0;
  position: relative;
}
.seo-paragraph-product .seo-paragraph-border .seo-paragraph-border-inner .seo-paragraph-border-decorative {
  position: absolute;
  inset: -1px 0 0 0;
  width: 100%;
  height: 1px;
  background-color: var(--grey-line, #D9D9D9);
}
.seo-paragraph-product .seo-paragraph-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 2.4rem 3.6rem;
  text-align: right;
}
@media (width > 768px) {
  .seo-paragraph-product .seo-paragraph-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 25.4rem;
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 5.2rem 0;
  }
}
.seo-paragraph-product .seo-paragraph-desktop-heading {
  display: none;
}
@media (width > 768px) {
  .seo-paragraph-product .seo-paragraph-desktop-heading {
    display: block;
    color: #000;
    text-align: right;
    font-family: "Simpler", sans-serif;
    font-size: 3.5rem;
    font-style: normal;
    font-weight: 900;
    line-height: 110%;
    margin: 0;
    flex-shrink: 0;
  }
}
.seo-paragraph-product .seo-paragraph-text-container {
  width: 100%;
  box-sizing: border-box;
}
@media (width > 768px) {
  .seo-paragraph-product .seo-paragraph-text-container {
    max-width: 70rem;
    width: 100%;
    align-self: flex-start;
  }
}
.seo-paragraph-product .seo-paragraph-text {
  font-family: "Simpler", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
  text-align: right;
  margin: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  direction: rtl;
}
.seo-paragraph-product .seo-paragraph-text * {
  max-width: 100%;
  box-sizing: border-box;
}
.seo-paragraph-product .seo-paragraph-text .material-finish-label {
  font-weight: 700;
  display: inline;
}
.seo-paragraph-product .seo-paragraph-text .seo-paragraph-heading {
  font-weight: 700;
  white-space: nowrap;
}
@media (width > 768px) {
  .seo-paragraph-product .seo-paragraph-text {
    color: #000;
    text-align: right;
    font-family: "Simpler", sans-serif;
    font-size: 2.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    direction: rtl;
    max-width: 100%;
  }
  .seo-paragraph-product .seo-paragraph-text .material-finish-label {
    font-weight: 400;
  }
  .seo-paragraph-product .seo-paragraph-text .seo-paragraph-heading {
    font-weight: 400;
  }
}
