/*********************************************************
  APPLE THEME – MEET THE TEAM (Screenshot-style)
**********************************************************/

.apple-meet-the-team-wrapper {
  padding: 96px 20px;
  position: relative;
  overflow: hidden;
}

/* Optional subtle vignette */
.apple-meet-the-team-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.apple-meet-the-team {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 44px 52px;
  box-sizing: border-box;
}

/* Header */
.apple-meet-the-team__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.apple-meet-the-team__ornament {
  width: 180px;
  height: 2px;
  margin: 0 auto 18px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 168, 58, 0.95),
    rgba(255, 255, 255, 0)
  );
  position: relative;
}

.apple-meet-the-team__ornament::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: rgba(255, 168, 58, 0.95);
  border-radius: 2px;
}

.apple-meet-the-team__title {
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.apple-meet-the-team__subtitle {
  margin: 0 auto;
  max-width: 640px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-color, rgba(0, 0, 0, 0.75));
}

/* CTA */
.apple-meet-the-team__cta {
  margin-top: 18px;
}

.apple-meet-the-team__ctaBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.apple-meet-the-team__ctaBtn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Grid: handles 1..N employees */
.apple-meet-the-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  align-items: start;
  margin-top: 30px;
}

/* Card */
.apple-meet-the-team__card {
  max-width: 360px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.apple-meet-the-team__card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 30px 86px rgba(0, 0, 0, 0.6); */
  border-color: var(--dark-background-color);
}

/* Photo area (screenshot look: large portrait) */
.apple-meet-the-team__photoWrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.06);
}

.apple-meet-the-team__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Name plate */
.apple-meet-the-team__plate {
  background: rgba(0, 0, 0, 0.72);
  padding: 14px 16px 16px;
  text-align: center;
  position: relative;
}

.apple-meet-the-team__plateAccent {
  height: 3px;
  width: 64%;
  margin: 0 auto 10px;
  background: rgba(255, 168, 58, 0.95);
  border-radius: 999px;
}

.apple-meet-the-team__name {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
}

.apple-meet-the-team__role {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 245, 247, 0.75);
}

/* Optional bio under plate */
.apple-meet-the-team__bio {
  margin: 0;
  padding: 14px 16px 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-color, rgba(0, 0, 0, 0.75));
}

/* Empty */
.apple-meet-the-team__empty {
  text-align: center;
  padding: 40px 10px 10px;
  color: var(--text-color, rgba(0, 0, 0, 0.75));
}

/* Responsive */
@media (max-width: 900px) {
  .apple-meet-the-team-wrapper {
    padding: 76px 16px;
  }

  .apple-meet-the-team {
    padding: 42px 22px 40px;
  }

  .apple-meet-the-team__title {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .apple-meet-the-team__title {
    font-size: 30px;
  }

  .apple-meet-the-team__grid {
    gap: 18px;
  }
}
