/* ============================================================
   THE HUMAN ELEMENT — PROYECTO
   ============================================================ */

.project-hero { max-width: 1100px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 40px) 16px; }
.project-hero__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--he-grey-light);
}
.project-hero__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.project-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--he-ink);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-hero__nav--prev { left: 16px; }
.project-hero__nav--next { right: 16px; }
.project-hero__dots { position: absolute; bottom: 16px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; }
.project-hero__dot { width: 7px; height: 7px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.6); border: none; padding: 0; cursor: pointer; }
.project-hero__dot.is-active { background: var(--he-orange); }

.project-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px 24px;
  padding: 0 0 32px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--he-grey);
}
.project-meta__item { display: flex; flex-direction: column; gap: 4px; }
.project-meta__label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--he-grey-dark); }
.project-meta__value { font-size: 15px; color: var(--he-ink); }

@media (max-width: 640px) {
  .project-hero__nav { width: 36px; height: 36px; }
}
