/* deck-specs/src/scss/widget.scss */
.deck-specs {
  margin: 1.5rem 0;
}
.deck-specs__title {
  margin: 0 0 0.75rem;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
}
.deck-specs__table {
  width: 100%;
}
.deck-specs__row {
  display: flex;
  flex-flow: row wrap;
  padding: 0.75rem 1rem;
  border-top: 1px solid #CCCCCC;
}
.deck-specs__row:last-child {
  border-bottom: 1px solid #CCCCCC;
}
.deck-specs__key,
.deck-specs__val {
  flex: 1;
  text-align: left;
  margin-bottom: 0;
}
.deck-specs__key {
  font-weight: 700;
}
.deck-specs__val a {
  text-decoration: none;
}
.deck-specs__val a:hover {
  text-decoration: underline;
}
.deck-specs-title-row {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
