
/* Styl zespołu - zgodny z obecnym layoutem */

.zespol-wrapper {
  margin-top: 2rem;
  font-family: 'Inter', sans-serif;
}

.zespol-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.zespol-lider,
.zespol-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}

.czlonek-zespolu {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 1rem;
  width: calc(33.333% - 1.333rem);
  min-width: 240px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.czlonek-zespolu:hover {
  background-color: #eef1f4;
  transform: translateY(-2px);
}

.czlonek-zespolu .signatureContainer {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.czlonek-zespolu img.authorPhoto {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.czlonek-zespolu .authorTxt {
  font-size: 0.95rem;
  color: #333;
}

.czlonek-zespolu .authorTxt .authorName {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.czlonek-zespolu .authorTxt .authorFunction {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Mobilki */
@media (max-width: 1024px) {
  .czlonek-zespolu {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 600px) {
  .czlonek-zespolu {
    width: 100%;
  }
}
