.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 8px;
  padding: 4px 8px;
}

.logo-wrapper:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.logo-wrapper.logo-small {
  width: 50px;
  height: 50px;
}

.logo-wrapper.logo-medium {
  width: 180px;
  height: 80px;
}

.logo-wrapper.logo-large {
  width: 250px;
  height: 120px;
}

.logo-image {
  max-width: 100%;
  height: auto;
  width: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(26, 26, 26, 0.08));
  transition: filter 0.3s ease;
}

.logo-wrapper:hover .logo-image {
  filter: drop-shadow(0 4px 8px rgba(26, 26, 26, 0.15));
}

.logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1f5a45 0%, #163c33 100%);
  border-radius: 6px;
  color: var(--color-white);
  font-weight: 700;
}

.logo-fallback-text {
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}
