/* =========================================================
   GoLive Asia – Teams (Card Grid)
   ========================================================= */

.gla-team-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .gla-team-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.gla-team-card {
  display: flex; 
  gap: 18px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  transition: background-color 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  cursor: pointer;
}

.gla-team-card:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.10);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.gla-team-card--link {
  text-decoration: none;
  color: inherit;
  display: flex;
}

/* Left Photo */
.gla-team-photo {
  width: 98px;
  height: 98px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 98px;
  background: #eee;
}

.gla-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right content */
.gla-team-info {
  min-width: 0;
}

.gla-team-name {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  padding-bottom: 6px;
}

.gla-team-name a {
  text-decoration: none;
}

.gla-team-position {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.55);
}

/* Social */
.gla-team-social {
  display: flex;
  gap: 8px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.gla-team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  text-decoration: none;
  transition: background-color 150ms ease, transform 150ms ease;
}

.gla-team-social a:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

/* Divi icon font */
.gla-team-social i {
  font-family: "ETmodules";
  font-style: normal;
  font-weight: normal;
  speak: none;

  font-size: 16px;
  line-height: 1;
}

/* Divi Unicode */
.gla-team-social .social_facebook:before  { content: "\e093"; }
.gla-team-social .social_twitter:before   { content: "\e094"; }
.gla-team-social .social_instagram:before { content: "\e09a"; }
.gla-team-social .social_linkedin:before  { content: "\e09d"; }
.gla-team-social .social_youtube:before   { content: "\e0a3"; }
.gla-team-social .icon_globe:before       { content: "\e0e2"; }