.block_themeeditor.teams-section-minimal {
  padding: 80px 20px 10px;
}
.block_themeeditor.teams-section-minimal .team-block {
  margin-bottom: 30px;
}
.block_themeeditor.teams-section-minimal .team-block .inner-box {
  background: transparent;
  padding: 15px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.block_themeeditor.teams-section-minimal .team-block .inner-box:hover {
  transform: translateY(-6px);
}
.block_themeeditor.teams-section-minimal .team-block .image-box {
  width: 180px;
  height: 180px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
}
.block_themeeditor.teams-section-minimal .team-block .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
.block_themeeditor.teams-section-minimal .team-block .image-box:hover img {
  filter: grayscale(0%);
}
.block_themeeditor.teams-section-minimal .team-block .name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 4px;
}
.block_themeeditor.teams-section-minimal .team-block .role {
  font-size: 0.95rem;
  color: #888888;
}
