/* Our Directors section redesign — circular photo cards, scoped to .index-page (index.html only) */

.index-page .section-title h2 {
  position: relative;
  padding-bottom: 18px;
  color: #1a2c42 !important;
}
.index-page .section-title h2 a {
  color: inherit !important;
}
.index-page .section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #2C5282;
}

.index-page .director-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  row-gap: 40px;
}
@media (max-width: 991px) {
  .index-page .director-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .index-page .director-team-grid {
    grid-template-columns: 1fr;
  }
}

.index-page .single-health-care-card.style-3 {
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  padding: 10px 10px 0;
  margin-bottom: 0;
  transition: transform 0.3s ease;
}
.index-page .single-health-care-card.style-3:hover {
  transform: translateY(-6px);
  box-shadow: none;
}

.index-page .single-health-care-card.style-3 .img.board-team {
  position: relative;
  overflow: visible;
  width: 170px;
  height: 170px;
  margin: 0 auto;
  background-color: transparent;
  padding: 0;
}
.index-page .single-health-care-card.style-3 .img.board-team a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.index-page .single-health-care-card.style-3 .img.board-team::before {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  border-radius: 50%;
  border: 2px solid rgba(44, 82, 130, 0.25);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.index-page .single-health-care-card.style-3:hover .img.board-team::before {
  border-color: #2C5282;
  transform: scale(1.04);
}
.index-page .single-health-care-card.style-3 .img.board-team img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  display: block;
  box-shadow: 0 8px 20px rgba(20, 30, 60, 0.12);
  transition: transform 0.4s ease;
}
.index-page .single-health-care-card.style-3:hover .img.board-team img {
  transform: scale(1.05);
}

/* text overlay banner doesn't suit the circular treatment */
.index-page .board-team-overlay {
  display: none;
}

.index-page .board-team-content {
  background-color: transparent;
  padding: 18px 10px 0;
  text-align: center;
}
.index-page .board-team-content h3 {
  font-size: 18px;
  color: #1a2c42;
  transition: color 0.3s ease;
}
.index-page .single-health-care-card.style-3:hover .board-team-content h3 {
  color: #2C5282;
}
.index-page .board-team-role {
  text-align: center;
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2C5282;
  opacity: 0.7;
}
