/* =============================================================================
 * Permun – Kredi Kartı BIN logosu stilleri
 * Kart formunun üstünde banka ve kart ağı logolarını gösterir.
 * ========================================================================== */
.permun-card-logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 0;
  margin: 0 0 10px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.25s ease, max-height 0.25s ease, margin 0.25s ease;
}

.permun-card-logo-box.is-visible {
  opacity: 1;
  max-height: 48px;
  margin: 0 0 12px;
}

.permun-card-logo {
  height: 28px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  display: inline-block;
  border-radius: 4px;
}
