/* Project detail — full-width hero, full image at natural size */

body.projects {
  overflow-x: clip;
}

.pdetail-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fff;
  line-height: 0;
}

.pdetail-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.pdetail-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: clamp(48px, 8vw, 96px);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
}
