/* Org unit public profile (emblem + bio) */
.org-unit-profile-panel__layout {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem;
}

@media (min-width: 576px) {
  .org-unit-profile-panel__layout {
    grid-template-columns: minmax(7rem, 9rem) 1fr;
    align-items: start;
  }
}

@media (max-width: 575.98px) {
  .org-unit-profile-panel__layout > .attachment-media-slot {
    max-width: 9rem;
  }
}

.org-unit-profile-panel__bio {
  white-space: pre-wrap;
}

.org-unit-profile-emblem {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.org-unit-profile-emblem__image {
  display: block;
  max-height: 220px;
  width: auto;
  border-radius: 0.5rem;
  border: 1px solid var(--bs-border-color);
  background: #fff;
}
