/* Dynamic crew pages */

.dynamic-profile .profile-image {
  background: none !important;
  overflow: hidden;
}

.dynamic-profile .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.86) contrast(1.06);
}

.crew-projects-section {
  padding: 58px var(--pad);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 90% 8%, rgba(104,201,190,.12), transparent 32%),
    #030505;
}

.crew-project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.crew-project-card {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #020303;
  display: flex;
  align-items: end;
  padding: 28px;
}

.crew-project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.78) contrast(1.06);
  transition: transform .55s ease, filter .55s ease;
}

.crew-project-card:hover img {
  transform: scale(1.045);
  filter: brightness(.95) contrast(1.04);
}

.crew-project-card .shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 34%, rgba(0,0,0,.88)),
    linear-gradient(90deg, rgba(0,0,0,.52), transparent 58%);
  z-index: 1;
}

.crew-project-card div:not(.kicker) {
  position: relative;
  z-index: 2;
}

.crew-project-card h3 {
  color: var(--white);
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: .86;
  letter-spacing: -.045em;
  text-transform: uppercase;
  margin: 0;
}

.crew-project-card p {
  margin-top: 18px;
  color: #c9d9d6;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  max-width: 420px;
}

.crew-empty-state {
  padding: 38px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}

.crew-empty-state h3 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 58px);
  line-height: .9;
  letter-spacing: -.04em;
  text-transform: uppercase;
  margin: 0;
}

.crew-empty-state p {
  color: var(--muted);
  margin-top: 18px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

@media (max-width: 1100px) {
  .crew-project-grid {
    grid-template-columns: 1fr;
  }

  .crew-project-card {
    min-height: 460px;
  }
}
