.hbm-withdrawal-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 12px 0 18px;
}

.hbm-withdrawal-methods--single {
  grid-template-columns: 1fr;
}

.hbm-withdrawal-card {
  border: 1px solid #dbe3f0;
  border-radius: 10px;
  padding: 16px 18px;
  background: #ffffff;
  box-shadow: 0 2px 0 rgba(15, 23, 42, 0.03);
}

.hbm-withdrawal-card--stripe {
  background: #f7fbff;
  border-color: #cfe0ff;
}

.hbm-withdrawal-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.hbm-withdrawal-card__header h4 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.hbm-withdrawal-card__meta {
  margin: 0;
  font-size: 12px;
  color: #4b5563;
}

.hbm-withdrawal-card__note {
  margin: 8px 0 0;
  font-size: 12px;
  color: #6b7280;
}

.hbm-withdrawal-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.hbm-withdrawal-pill {
  border: 1px solid #bbf7d0;
  background: #ecfdf3;
  color: #065f46;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 700;
}

.hbm-withdrawal-pill--manual {
  border-color: #fcd34d;
  background: #fef3c7;
  color: #92400e;
}

.hbm-withdrawal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  border: 1px solid #dbe3f0;
  background: #f5f8ff;
  font-size: 12px;
  font-weight: 600;
  color: #1f4b99;
  text-decoration: none;
}

.hbm-withdrawal-link:hover,
.hbm-withdrawal-link:focus {
  background: #eef3ff;
  border-color: #c7d7f0;
  text-decoration: none;
}

.hbm-withdrawal-hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .hbm-withdrawal-methods {
    grid-template-columns: 1fr;
  }
}
