/* Hero header styles */
.org-kicker {
  font-size: var(--cp-size-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cp-color-text-muted);
  font-weight: 600;
  margin-bottom: 16px;
}

.org-title {
  font-family: var(--cp-font-body);
  font-size: var(--cp-size-page-title);
  font-weight: 600;
  line-height: 1.35;
  color: var(--cp-color-text-primary);
  margin: 0 0 12px;
}

.org-subtitle {
  font-size: var(--cp-size-body);
  color: var(--cp-color-text-secondary);
  line-height: var(--cp-line-height-body);
  max-width: 700px;
  margin: 0;
}

.org-hero {
  background: var(--cp-color-surface);
  border-radius: 20px;
  height: 185px;
  padding: 30px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--cp-color-border-subtle);
}

.org-hero__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: nowrap;
}

.org-hero__content {
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
  min-width: 0;
}

.org-hero__actions {
  flex: 0 0 50%;
  width: 50%;
  max-width: 50%;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 12px;
}

.org-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  min-width: 260px;
}

.org-stat {
  background: var(--cp-color-surface);
  border-radius: 16px;
  padding: 12px 16px;
  border: 1px solid var(--cp-color-border-subtle);
  text-align: center;
}

.org-stat__label {
  font-size: var(--cp-size-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cp-color-text-muted);
  display: block;
}

.org-stat__value {
  font-family: var(--cp-font-body);
  font-size: var(--cp-size-section-title);
  font-weight: 600;
  color: var(--cp-color-text-primary);
}

@media (max-width: 992px) {
  .org-hero__row {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .org-hero__content,
  .org-hero__actions {
    flex-basis: 100%;
  }

  .org-hero__actions {
    justify-content: flex-start;
    padding-right: 0;
  }
}
