/* Logged-in ad campaign workspace refinements. */
.db-advertise-workspace-section .db-builder,
.db-advertise-workspace-section .db-dashboard-panel {
  border-radius: 26px;
}
.db-advertise-workspace-section .db-builder-progress {
  background: linear-gradient(135deg, #d71920, #10273b);
}
.db-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.db-payment-grid > * {
  border: 1px solid var(--db-line);
  border-radius: 18px;
  background: #fff;
  padding: 18px;
}
@media (max-width: 820px) {
  .db-payment-grid {
    grid-template-columns: 1fr;
  }
}
