/* --- PARTNERMÁRKÁINK --- */
.brand-strip {
  background: linear-gradient(180deg, #f9f9f9, #f0f0f0);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-align: center;
  padding: 3rem 1rem 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.brand-strip h2 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.brand-strip h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: var(--red);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}

/* Logók rácsban */
.brand-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Logók stílusa */
.brand-logos img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.9);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.brand-logos img:hover {
  filter: grayscale(0%) brightness(1.1);
  opacity: 1;
  transform: scale(1.05);
}

/* Mobil optimalizálás */
@media (max-width: 600px) {
  .brand-strip {
    padding: 2rem 0.5rem;
  }
  .brand-logos {
    gap: 1.2rem;
  }
  .brand-logos img {
    max-height: 45px;
  }
}

