/* Specs [paper] — 670:24588: фон #f7f7f7, отступы 130/110, промежуток 40 */
.specs {
  background: var(--paper);
  padding: clamp(64px, 6.7708vw, 130px) var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.specs__title {
  font-size: clamp(26px, 2.7083vw, 52px);
  font-weight: 900;
  line-height: normal;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.specs__list { width: 100%; }
.spec {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  font-size: 16px;
  line-height: normal;
}
.spec + .spec { border-top: 1px solid rgba(207, 164, 79, 0.25); }
.spec dt { font-weight: 600; color: rgba(24, 29, 36, 0.55); }
.spec dd { font-weight: 700; color: var(--ink); text-align: end; }

@media (max-width: 599px) {
  .spec { flex-direction: column; gap: 4px; }
  .spec dd { text-align: start; }
}
