/* LGF Cafe Team Cards Widget Styles */
.lgf-cafe-team-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;
}
.lgf-cafe-team-card {
  background: var(--card-bg, #0B1A2F);
  border: 3px solid var(--card-border, #FFD54F);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  max-width: 350px;
  min-width: 260px;
  flex: 1 1 300px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.18s, box-shadow 0.18s;
}
.lgf-cafe-team-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}
.lgf-cafe-team-avatar {
  background: var(--avatar-bg, #FFD54F);
  color: var(--avatar-text, #1A2636);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  border: 3px solid var(--card-border, #FFD54F);
  transition: box-shadow 0.18s;
}
.lgf-cafe-team-name {
  color: var(--name-color, #FFD54F);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
.lgf-cafe-team-role {
  color: var(--role-color, #fff);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5em;
  justify-content: center;
  margin-top: 0.5rem;
}
.lgf-cafe-team-subtitle {
  color: var(--subtitle-color, #FFD54F);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0.2rem;
}
.lgf-cafe-team-desc {
  color: var(--desc-color, #B0BED0);
  font-size: 1.05rem;
  text-align: center;
  margin-top: 1.2rem;
}
.lgf-cafe-team-dots {
  display: flex;
  gap: 0.3em;
  justify-content: center;
  margin-top: 1.5rem;
}
.lgf-cafe-team-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--card-border, #FFD54F);
  opacity: 0.5;
  display: inline-block;
  transition: opacity 0.18s;
}
.lgf-cafe-team-dot.active { opacity: 0.8; }
.lgf-cafe-team-dot.inactive { opacity: 0.3; }

/* Responsive Styles */
@media (max-width: 900px) {
  .lgf-cafe-team-cards {
    gap: 1.2rem;
    max-width: 100%;
  }
  .lgf-cafe-team-card {
    max-width: 90vw;
    min-width: 220px;
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 600px) {
  .lgf-cafe-team-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .lgf-cafe-team-card {
    width: 100%;
    max-width: 98vw;
    min-width: 0;
    padding: 1.2rem 0.5rem;
  }
  .lgf-cafe-team-avatar {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }
  .lgf-cafe-team-name {
    font-size: 1.3rem;
  }
} 