/* =========================================================================
   Fotos Nosotros (La Manada) — composición SUPERPUESTA calcada de Recurso 7
   (viewBox 593.8 × 355.74). Card grande (grupo) + card chica encima de su esquina
   inferior-izquierda, pill «TALENTO» y estrellita arriba-izquierda. Marcos
   polaroid (blanco, borde café, sombra dura). Posiciones = % exactos del arte.
   ========================================================================= */
.mu-team {
  --tm-card: #fff;
  --tm-border: #513224;
  --tm-name: #1A1A1A;
  --tm-role: #5a5148;
  --tm-pill: #c2e535;
  --tm-pill-ink: #00330b;
  --tm-radius: 14px;

  position: relative;
  width: 100%;
  max-width: var(--tm-max, 900px);
  margin: 0 auto;
  aspect-ratio: 593.8 / 355.74;
  container-type: inline-size;
  background: transparent;            /* SIN fondo propio: hereda el de la página */
  font-family: "Fredoka", "Baloo 2", system-ui, sans-serif;
}
.mu-team, .mu-team * { box-sizing: border-box; }

/* ── Tarjetas polaroid (posicionadas por su CENTRO) ──────────────────── */
.mu-team__card {
  position: absolute;
  margin: 0;   /* <figure> trae margin:40px por defecto → descolocaba las tarjetas */
  background: var(--tm-card);
  border: 0.34cqw solid var(--tm-border);
  border-radius: var(--tm-radius);
  padding: 1.2cqw 1.2cqw 1.3cqw;
  box-shadow: 0.7cqw 0.6cqw 0 rgba(0, 0, 0, 0.5);
  transform: rotate(var(--tilt, 0deg));   /* posicionadas por su esquina sup-izq; giran sobre su centro */
  transform-origin: 50% 50%;
  transition: transform 0.22s cubic-bezier(.2,.9,.3,1.1), box-shadow 0.22s ease;
}
.mu-team__card:hover {
  transform: rotate(calc(var(--tilt, 0deg) * 0.4)) translateY(-1.2cqw) scale(1.02);
  box-shadow: 1cqw 0.9cqw 0 rgba(0, 0, 0, 0.5);
  z-index: 6;
}
.mu-team__card--featured { left: 15.44%; top: 0.30%; width: 84.38%; z-index: 1; }
.mu-team__card--small    { width: 27.77%; z-index: 2; }

.mu-team__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--tm-radius) - 0.5cqw);
  overflow: hidden;
  background: transparent;   /* sin patrón de relleno; con foto se cubre igual */
}
.mu-team__card--featured .mu-team__photo { aspect-ratio: 16 / 9.4; }
.mu-team__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mu-team__cap { text-align: center; padding: 0.9cqw 0.3cqw 0.1cqw; }
.mu-team__name { display: block; font-weight: 700; font-size: 2.08cqw; line-height: 1.1; color: var(--tm-name); }
.mu-team__role { display: block; font-weight: 400; font-size: 1.62cqw; line-height: 1.2; color: var(--tm-role); margin-top: 0.2cqw; }
.mu-team__card--featured .mu-team__name { font-size: 2.4cqw; }
.mu-team__card--featured .mu-team__role { font-size: 1.72cqw; }

/* ── Pill «TALENTO» (decoración, arriba-izquierda) ───────────────────── */
.mu-team__pill {
  position: absolute;
  left: 10.37%; top: 29.37%;
  z-index: 4;
  transform: translate(-50%, -50%) rotate(6.62deg);
  background: var(--tm-pill);
  color: var(--tm-pill-ink);
  font-family: "xanti-typewriter-variable", "Fredoka", monospace;
  font-style: italic; font-weight: 800;
  font-size: 2.05cqw; letter-spacing: 0.02em; text-transform: uppercase;
  padding: 0.7cqw 2cqw; border-radius: 999px;
  border: 0.3cqw solid var(--tm-pill-ink); white-space: nowrap;
  box-shadow: 0.35cqw 0.35cqw 0 var(--tm-pill-ink);
}

/* ── Estrellita (Recurso 8), bajo la pill ────────────────────────────── */
.mu-team__star {
  position: absolute;
  left: 13.4%; top: 39.68%;
  width: 10.76%;
  z-index: 3;
  transform: translate(-50%, -50%) rotate(-4deg);
  pointer-events: none;
}

/* ── Móvil: se apila (sin superponer) ────────────────────────────────── */
@media (max-width: 700px) {
  .mu-team { aspect-ratio: auto; display: flex; flex-direction: column; align-items: center; gap: 22px; max-width: 360px; container-type: normal; }
  .mu-team__card { position: static; transform: none; width: 100% !important; padding: 10px; border-width: 2px; box-shadow: 5px 5px 0 rgba(0,0,0,.5); }
  .mu-team__card:hover { transform: translateY(-3px); }
  .mu-team__photo, .mu-team__card--featured .mu-team__photo { aspect-ratio: 4 / 3; }
  .mu-team__name { font-size: 16px; } .mu-team__role { font-size: 12px; }
  .mu-team__card--featured .mu-team__name { font-size: 18px; } .mu-team__card--featured .mu-team__role { font-size: 13px; }
  .mu-team__pill { position: static; transform: rotate(-3deg); order: -1; align-self: flex-start; font-size: 13px; padding: 5px 14px; border-width: 2px; box-shadow: 2px 2px 0 var(--tm-pill-ink); }
  .mu-team__star { display: none; }
}
