/* Legal Info Table */
.legal-info {
  width: 100%;
  max-width: 1200px;
}

.legal-info__row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.legal-info__row--last {
  border-bottom: none;
}

.legal-info__label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  min-height: 48px;
  padding: 6px 16px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  color: #353535;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  flex: 0 0 320px;
  height: fit-content;
  align-self: flex-start;
}

.legal-info__value {
  flex: 1;
  color: #333333;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 890px) {
  .legal-info__row {
    flex-direction: column;
    align-items: flex-start;
    border-bottom: none;
    gap: 16px;
    padding-top: 0;

  }
  .legal-info__label {
    width: 100%;
    height: fit-content;
    min-height: auto;
    flex: 0 0 auto;
  }
  .legal-info__value {
    width: 100%;
  }
}