/* Keep accessible fieldset legends visually inside their section cards. */
fieldset {
  padding: 0 24px 24px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 22px #173f350d;
}

legend {
  float: left;
  display: flex;
  width: calc(100% + 48px);
  max-width: none;
  min-height: 64px;
  align-items: center;
  gap: 11px;
  margin: 0 -24px 20px;
  padding: 15px 24px;
  border-bottom: 1px solid #e5ebee;
  background: #f8faf9;
  font-size: 1.25rem;
  line-height: 1.25;
}

legend + * {
  clear: both;
}

legend span {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
}

input[readonly] {
  background: #f3f6f7;
  color: #46545a;
}

.field-status {
  min-height: 1.2em;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 400;
}

@media (max-width: 760px) {
  fieldset {
    padding: 0 14px 18px;
  }

  legend {
    width: calc(100% + 28px);
    min-height: 58px;
    margin: 0 -14px 16px;
    padding: 13px 14px;
    font-size: 1.08rem;
  }

  legend span {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }
}
