/* Таблица характеристик с «точками» */
.attrs {
  width: 100%;
  border-collapse: collapse;
}
.attrs tr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 4px 0;
}
.attrs th,
.attrs td {
  border: 0;
  background: var(--clr-surface);
  z-index: 1;
  position: relative;
}
.attrs th {
  font-weight: 500;
  color: var(--clr-muted);
  text-align: left;
}
.attrs td {
  font-weight: 600;
  text-align: right;
}
.attrs tr::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 50%;
  border-bottom: 1px dotted #999;
  transform: translateY(-50%);
  z-index: 0;
}
.attrs th span,
.attrs td span {
  background: var(--clr-surface);
  position: relative;
  padding: 0 4px;
}

/* Заголовок блока атрибутов */
.attrs__title {
  margin: 0 0 8px;
  font-weight: 600;
  color: var(--accent);
}
