.spec {
  margin-top: calc(4rem + 2vw);
}
.spec h2 {
  font-family: "TT Norms";
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1.5em;
}
@media (max-width: 1000px) {
  .spec h2 {
    padding: 0.5em calc(1rem + 4vw);
  }
}
@media (min-width: 1001px) {
  .spec h2 {
    padding: 0.5em 1em;
  }
}
.spec dl {
  display: flex;
  flex-wrap: wrap;
}
.spec dl dt {
  border: 1px solid yellowgreen;
  flex: 1 1 69%;
}
.spec dl dd {
  border: 1px solid yellowgreen;
  flex: 1 1 30%;
}

table {
  width: 100%;
}
table tr {
  display: flex;
  align-items: center;
  gap: 2em;
}
@media (max-width: 1000px) {
  table tr {
    padding: 0.5em calc(1rem + 4vw);
  }
}
@media (min-width: 1001px) {
  table tr {
    padding: 0.5em 1em;
  }
}
table tr:nth-of-type(odd) {
  background-color: #f2f2f2;
}
table tr td:nth-child(1) {
  flex: 1;
}
table tr td:nth-child(2) {
  white-space: nowrap;
}