.quote-attachments {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding: 18px;
  border: 1px solid rgba(174, 116, 35, .3);
  border-radius: 12px;
  background: rgba(255, 250, 242, .76);
}

.quote-attachments__label {
  display: block;
  margin: 0;
  color: #302419;
  font-weight: 800;
}

.quote-attachments__label span {
  color: #76695c;
  font-weight: 600;
}

.quote-attachments input[type="file"] {
  width: 100%;
  min-height: 48px;
  padding: 8px;
  border: 1px solid rgba(115, 75, 27, .28);
  border-radius: 9px;
  background: #fff;
  color: #302419;
  font: inherit;
}

.quote-attachments input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 10px 14px;
  border: 0;
  border-radius: 7px;
  background: #bd842f;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.quote-attachments input[type="file"]:focus-visible {
  outline: 3px solid rgba(184, 126, 43, .35);
  outline-offset: 2px;
}

.quote-attachments__help,
.quote-attachments__status {
  margin: 0;
  color: #6b5e52;
  font-size: 13px;
  line-height: 1.55;
}

.quote-attachments__status[data-state="ok"] {
  color: #24633b;
  font-weight: 700;
}

.quote-attachments__status[data-state="error"] {
  color: #9a2e21;
  font-weight: 800;
}

@media (max-width: 620px) {
  .quote-attachments {
    padding: 14px;
  }

  .quote-attachments input[type="file"]::file-selector-button {
    display: block;
    width: 100%;
    margin: 0 0 8px;
  }
}
