/**
 * Shared college / university logo framing across public and admin surfaces.
 * Fixed slot size + object-fit: contain keeps logos visually consistent
 * regardless of source aspect ratio or transparent padding.
 */

.ncpa-college-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-sizing: border-box;
  background: transparent;
}

.ncpa-college-logo-slot--rankings {
  width: 1.5em;
  height: 1.5em;
}

.ncpa-college-logo-slot--md {
  width: 40px;
  height: 40px;
}

.ncpa-college-logo-slot--lg {
  width: 60px;
  height: 60px;
}

.ncpa-college-logo-slot__img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
