/* Organization artwork remains unchanged; grayscale is a presentation treatment. */
.organization {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 100%;
  vertical-align: middle;
  text-align: left;
  letter-spacing: normal;
}
.organization-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 48px;
  flex: 0 0 108px;
  padding: 6px;
  border-radius: 6px;
  background: #e5e5e5;
}
.organization-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 96px;
  max-height: 36px;
  object-fit: contain;
  filter: grayscale(100%);
}
.organization-name {
  min-width: 0;
  overflow-wrap: anywhere;
}
.organization-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.organization-dates {
  display: block;
  flex-basis: 100%;
  margin-top: 0.5rem;
}
@media (max-width: 639px) {
  .organization {
    gap: 0.625rem;
  }
  .organization-logo-frame {
    width: 88px;
    height: 40px;
    flex-basis: 88px;
  }
  .organization-logo {
    max-width: 76px;
    max-height: 28px;
  }
}
/* Official reverse marks need a dark field to retain their white lettering. */
.organization-logo-frame:has(img[src$="concordia.svg"]),
.organization-logo-frame:has(img[src$="deloitte.svg"]),
.organization-logo-frame:has(img[src$="snhu.svg"]) {
  background: #303030;
}
