.partner-title-wrapper {
  position: relative;
  z-index: 12;
  max-width: 400px;
  margin: 0 auto;
}

.partner-title-wrapper h3 {
  font-size: 2rem;
  text-align: center;
  color: #ffff;
}

.partner-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
  position: relative;
  z-index: 10; /* FONTOS: a videó alatt legyen */
}

.partner-block a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.85); /* áttetsző világos háttér */
  padding: 1rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px); /* opcionális, elmosás a videóra */
}

.partner-block a:hover {
  transform: scale(1.05);
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.partner-block img {
  max-height: 150px;
  max-width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.2)); /* logóra is árnyék */
}

.partner-block span {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #222;
  font-weight: 500;
}
