/* Executive Team Page Static Pre-compiled Styles (our-team.css) */

/* Team Container 2-Column Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 1280px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Card Container */
.team-card {
  background-color: #0f172a; /* slate-900 */
  border: 1px solid #1e293b; /* slate-800 */
  border-radius: 1.5rem; /* rounded-3xl */
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 640px) {
  .team-card {
    padding: 2rem;
  }
}

.team-card:hover {
  border-color: rgba(24, 180, 214, 0.5);
}

/* Avatar Frame & Image Sizing (Bigger Picture on Left Side) */
.team-avatar-container {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 2px solid rgba(51, 65, 85, 0.8);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  width: 180px !important;
  height: 180px !important;
  min-width: 180px !important;
  min-height: 180px !important;
}

@media (min-width: 640px) {
  .team-avatar-container {
    width: 210px !important;
    height: 210px !important;
    min-width: 210px !important;
    min-height: 210px !important;
  }
}

.team-avatar-img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: top !important;
  transition: transform 0.5s ease;
}

.team-avatar-container:hover .team-avatar-img {
  transform: scale(1.05);
}

/* Feature Boxes at Bottom of Card */
.team-boxes-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(30, 41, 59, 0.5);
}

@media (min-width: 640px) {
  .team-boxes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.team-pill-box {
  padding: 0.875rem 1rem;
  border-radius: 0.875rem;
  background-color: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(51, 65, 85, 0.6);
}

.team-pill-title {
  color: #18B4D6;
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.team-pill-value {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.375;
}
