/* Shared engine, two products. Marketplace is procurement; Classifieds is local offers. */
.bid-surface {
  --bid-pad: 1rem;
  color: inherit;
}
.bid-surface h2,
.bid-surface h3 {
  margin: 0 0 0.4rem;
}
.bid-surface__lede {
  margin: 0 0 1rem;
  max-width: 40rem;
  line-height: 1.45;
}
.bid-surface--marketplace .bid-card {
  border-left: 4px solid #1d4ed8;
}
.bid-surface--classifieds .bid-card {
  border-left: 4px solid #c2410c;
}
.bid-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 720px) {
  .bid-grid--2 {
    grid-template-columns: 1fr 1fr;
  }
}
.bid-card,
.bid-panel {
  background: #fff;
  color: #111827;
  border-radius: 14px;
  padding: var(--bid-pad);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.bid-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}
.bid-field label {
  font-size: 0.82rem;
  font-weight: 650;
}
.bid-field input,
.bid-field select,
.bid-field textarea {
  min-height: 44px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font: inherit;
}
.bid-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.bid-btn {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 650;
  cursor: pointer;
}
.bid-btn--primary {
  background: #1d4ed8;
  color: #fff;
}
.bid-surface--classifieds .bid-btn--primary {
  background: #c2410c;
}
.bid-btn--ghost {
  background: #f3f4f6;
  color: #111827;
}
.bid-compare {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.bid-compare table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
}
.bid-compare th,
.bid-compare td {
  border-bottom: 1px solid #e5e7eb;
  padding: 0.65rem;
  text-align: left;
  vertical-align: top;
}
.bid-status {
  display: inline-block;
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  background: #e5e7eb;
  font-size: 0.75rem;
  font-weight: 700;
}
.bid-note {
  font-size: 0.85rem;
  color: #4b5563;
}
.bid-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.rfq-more {
  margin: 0.5rem 0 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.6rem 0.85rem;
}
.rfq-more summary {
  cursor: pointer;
  font-weight: 650;
  min-height: 44px;
  display: flex;
  align-items: center;
}
@media (max-width: 720px) {
  .bid-compare table {
    min-width: 28rem;
  }
  .bid-field input,
  .bid-field select,
  .bid-field textarea,
  .bid-btn {
    width: 100%;
  }
}
