.logo-carousel-section {
  padding: 60px 0 80px;
  background: #ffffff;
}

.logo-carousel-title {
  text-align: center;
  margin-bottom: 40px;
}

.logo-carousel-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.logo-carousel-title p {
  color: #666;
  margin-top: 8px;
}

.logo-carousel {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.logo-column {
  position: relative;
  flex: 1 1 0;
  height: 180px;
  overflow: hidden;
  opacity: 0;
  animation: columnFadeIn 0.5s ease-out forwards;
}

@media (max-width: 768px) {
  .logo-column {
    height: 110px;
  }
}

@keyframes columnFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.logo-slot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slot svg,
.logo-slot img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* Enter animation */
@keyframes logoEnter {
  0%   { opacity: 0; transform: translateY(10%); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0);   filter: blur(0); }
}

/* Exit animation */
@keyframes logoExit {
  0%   { opacity: 1; transform: translateY(0);    filter: blur(0); }
  100% { opacity: 0; transform: translateY(-20%); filter: blur(6px); }
}

.logo-slot.entering {
  animation: logoEnter 0.5s ease-out forwards;
}

.logo-slot.exiting {
  animation: logoExit 0.3s ease-in forwards;
}
