/* Workouts Unlimited plugin styles */





/* ===== TEAM GRID LAYOUT ===== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin: 30px 0 0;
  justify-content: center;
}

.team-grid.cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.team-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.team-grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.team-grid.cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.team-grid.cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

/* Tablet */
@media (max-width: 980px) {
  .team-grid[class*="cols-"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 600px) {
  .team-grid[class*="cols-"] {
    grid-template-columns: 1fr;
  }
}

/* Card styling */
.team-grid__card {
  display: block;
  background: #ffffff;
  border: 1px solid #d7dde4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-grid__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.team-grid__profile-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.team-grid__content {
  padding: 14px 16px 16px;
}







/* ===== TEAM GRID TITLE STYLE ===== */

.team-grid__name {
  background: #ccc;
  color: #111111;
  margin: 0;
  padding: 14px 16px;
  font-size: 18px;
  text-align: center;
  border-top: 1px solid #e4e9ef;
  border-bottom: 1px solid #e4e9ef;
}

.team-grid__card:hover .team-grid__name {
  background: #eef3f8;
}




.team-grid__img {
  width: 100%;
  height: auto;
  display: block;
}

.team-grid__excerpt {
  margin: 10px 0 0;
  color: #374151;
  font-size: 14px;
  line-height: 1.45;
}

.team-grid__contact {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  border-top: 1px solid #eceff3;
  padding-top: 12px;
}

.team-grid__contact-item a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #111827;
  font-size: 15px;
  line-height: 1.35;
}

.team-grid__contact-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 999px;
  background: #eef3f8;
  color: #0f4c81;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.team-grid__contact-icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

.team-grid__contact-item a:hover {
  color: #0f4c81;
}

/* ===== TEAM CONTACT INFO ===== */

.team-contact-info {
  display: grid;
  gap: 8px;
}

.team-contact-info__item a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.35;
}

.team-contact-info__icon {
  width: 20px;
  text-align: center;
  padding-right: 10px;
  font-size: 20px;
}

.team-contact-info__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.team-tagline {
  margin: 0;
  color: #000000;
  font-weight: 700;
}

.team-member-data__tagline {
  margin: 0 0 12px;
}

.team-member-data__content {
  margin-top: 14px;
}
