.atg-sponsors {
  background-color: #0E1A27;
}

.atg-sponsors-content {
  width: clamp(1280px, 73vw, 1440px);
}

.atg-sponsors-heading h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 1.71rem + 0.45vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.atg-sponsors-logo .logo-flex-wrap {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
  justify-items: center;
}

.atg-sponsors-logo .logo-item {
  width: 100%;
  aspect-ratio: 4 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  background-color: rgba(245, 245, 246, 0.05);
  transition: background-color 0.2s ease;
}

.atg-sponsors-logo .logo-item:hover {
  background-color: rgba(245, 245, 246, 0.1);
}

.atg-sponsors-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 1.0;
  transition: opacity 0.2s ease;
}

.atg-sponsors-logo .logo-item:hover img {
  opacity: 1;
}

@media (max-width: 1532px) {
  .atg-sponsors-content {
    width: width: clamp(768px, 67vw, 1440px);
  }

  .atg-sponsors-logo .logo-flex-wrap {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px;
  }
}

@media (max-width: 1151px) {
  .atg-sponsors-content {
    width: 100%;
  }

  .atg-sponsors-logo .logo-flex-wrap {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .atg-sponsors {
    display: none;
  }
}