/* ==========================================================
   Organization Settings — hero card, section cards, bank cards
   ========================================================== */

/* Hero identity card */
.org-hero {
  background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.04) 0%, rgba(var(--bs-primary-rgb), 0.01) 100%);
  border: 1px solid rgba(var(--bs-primary-rgb), 0.08);
}

.org-hero__avatar {
  width: 56px;
  height: 56px;
  background: var(--bs-primary);
  color: #fff;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.org-hero__avatar i {
  font-size: 1.75rem;
}

.org-hero__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bs-body-emphasis-color);
  margin: 0;
  line-height: 1.3;
}

.org-hero__subtitle {
  font-size: 0.875rem;
  color: var(--bs-secondary-color);
  margin: 0;
}

.org-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(var(--bs-primary-rgb), 0.15);
  font-size: 0.8125rem;
  color: var(--bs-primary);
  white-space: nowrap;
}

.org-hero__chip i {
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Section card — used for General / Address / Bank cards */
.org-section {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0.75rem;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.org-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.org-section__title {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bs-body-emphasis-color);
  margin: 0;
}

.org-section__icon {
  width: 28px;
  height: 28px;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--bs-primary-rgb), 0.08);
  color: var(--bs-primary);
  font-size: 0.9375rem;
}

.org-section__body {
  padding: 1.25rem;
  flex: 1;
}

.org-currency-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.125rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(var(--bs-primary-rgb), 0.08);
  color: var(--bs-primary);
}

/* Field rows inside cards (show page) */
.org-field__label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bs-secondary-color);
  margin: 0 0 0.125rem;
}

.org-field__value {
  font-size: 0.9375rem;
  color: var(--bs-body-emphasis-color);
  margin: 0;
  word-break: break-word;
}

.org-field__value--empty {
  color: #ADB5BD;
  font-style: italic;
}

/* Compact field spacing in form cards */
.org-section .form-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bs-secondary-color);
  margin-bottom: 0.375rem;
}

.org-section .form-control,
.org-section .form-select {
  font-size: 0.9375rem;
}
