.property__container {
  background-color: var(--color-bg);
  border-radius: 10px;
  color: var(--color-text);
}

.property {
  margin-bottom: 1rem;
}

.prop-string {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.prop-string.prop-string--two-columns {
  flex-direction: row;
  gap: 2rem;
}

.prop-string__column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

/* На разрешениях 1200px и меньше выводим в одну колонку */
@media (max-width: 1200px) {
  .prop-string.prop-string--two-columns {
    flex-direction: column;
    gap: 0;
  }

  .prop-string__column {
    width: 80%;
  }

  /* Расстояние между колонками должно быть таким же, как между элементами (2rem) */
  .prop-string__column + .prop-string__column {
    margin-top: 2rem;
  }
}

/* На разрешениях 980px и меньше */
@media (max-width: 980px) {
  .prop-string__column {
    width: 90%;
  }
}

/* На разрешениях 768px и меньше */
@media (max-width: 768px) {
  .prop-string__column {
    width: 100%;
  }
}

/* На разрешениях 632px и меньше */
@media (max-width: 632px) {
  .prop-string__column {
    width: 110%;
  }
}

/* На разрешениях 430px и меньше */
@media (max-width: 430px) {
  .prop-string__column {
    width: 120%;
  }
}

.property__unGroup,
.property__group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  font-size: 1.5rem;
}

.property__title {
  font-weight: 500;
  font-size: 2.6rem;
  color: var(--color-text);
}

.property__unGroup-title,
.product-page__table-name.name-group {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 500;
  margin: 4rem 0 3rem;
  color: var(--color-text);
}

/* Структура полностью скопирована из OZON с нашими названиями классов */
.product-property-item {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  width: 100%;
  font-size: 1.5rem;
}

.product-property-item:last-child {
  margin-bottom: 0;
}

.product-property-item__name,
.product-property-item__value {
  box-sizing: border-box;
  display: block;
  margin-bottom: 8px;
  position: relative;
  word-break: break-word;
}

.product-property-item__name {
  color: var(--color-text-muted);
  position: relative;
  text-align: left;
}

.product-property-item .product-property-item__name,
.product-property-item .product-property-item__value {
  margin-bottom: 0;
  width: 50%;
  min-width: 0;
}

.product-property-item__name::before {
  border-bottom: 1px dotted var(--color-text-muted);
  bottom: 0.2em;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 100%;
}

.product-property-item__name-text {
  background: #fff;
  display: inline;
  padding-right: 3px;
  position: relative;
  z-index: 1;
}

.product-property-item__value {
  padding: 0 10px 0 3px;
  color: var(--color-text);
}

.product-property-item__value-wrapper {
  align-items: center;
  display: flex;
}

.product-property-item__value-text {
  word-break: break-word;
}

.product-property-item__value-inner {
  display: inline;
}

.product-property-item__unit {
  color: var(--color-text-muted);
  margin-left: 4px;
}

.product-property-item__hint-wrapper {
  display: inline-block;
  line-height: 0;
  vertical-align: middle;
}

.product-property-item__hint-spacer {
  margin-left: 4px;
}

.product-property-item__hint-button {
  -webkit-touch-callout: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  align-items: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  box-sizing: border-box;
  color: var(--link-color, var(--accent-color, #4791ff));
  cursor: pointer;
  display: inline-flex;
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-decoration: none;
  transition: transform 0.1s cubic-bezier(0.55, 0, 1, 0.45);
  white-space: nowrap;
}

.product-property-item__hint-icon {
  color: var(--link-color, var(--accent-color, #4791ff));
  flex-shrink: 0;
}

@media (hover: hover) {
  .product-property-item__hint-button:hover {
    color: var(--link-color, var(--accent-color, #4791ff));
    opacity: 0.9;
  }
}

/* Старые классы для обратной совместимости */
.prop-name__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  background: none;
}

.prop-name__inner::after {
  content: "";
  display: block;
  border-bottom: 1px dashed #d7dbe9;
  -ms-flex: 1;
  flex: 1;
  margin: 0 0 0 0.5rem;
  position: relative;
  top: 0.4rem;
}

.product-page__table-name {
  color: var(--color-text-muted);
  font-size: 1.4rem;
  font-weight: 400;
  flex: 1 0 50%;
  padding: 0 0.5rem 0 0;
}

.property .prop-spec {
  font-size: 1.4rem;
  font-weight: 400;
  flex: 1 0 50%;
  padding: 0 0.5rem;
}

.property .product-page__table-item {
  align-items: flex-start;
}

@media (max-width: 768px) {
  .product-property-item__name,
  .product-property-item__value,
  .product-property-item__value-text {
    font-size: 1.5rem;
  }
}

