/* === team-grid.css === */

/* Siatka układu — responsywna */
#grid-container.cbp {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
  align-items: start;
}

/* Kafelek lekarza */
.cbp-item {
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cbp-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Obrazek */
.cbp-caption-defaultWrap img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 2px solid #e0e0e0;
}

/* Tekst */
.detail {
  padding: 10px 15px;
}

.detail h6 {
  margin: 10px 0 5px;
  font-weight: 600;
  font-size: 16px;
}

.detail span {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.detail div {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* Responsywne marginesy */
@media (max-width: 576px) {
  #grid-container.cbp {
    gap: 20px;
  }
  .detail h6 {
    font-size: 15px;
  }
}


