.hero-art {
  background: #dfe7d5;
  isolation: isolate;
}

.home-hero-photo,
.home-hero-photo img,
.project-detail-photo,
.project-detail-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.home-hero-photo img {
  object-fit: cover;
  object-position: center;
}

.hero-art .photo-chip {
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
}

.project-photo-card {
  overflow: hidden;
  padding: 16px;
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 25px 25px 0 #103e2d;
}

.project-detail-photo {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
}

.project-detail-photo img {
  object-fit: cover;
  object-position: center;
}

.project-photo-notes {
  padding: 18px 6px 5px;
}

.project-photo-notes .phone-top {
  margin-bottom: 12px;
}

.project-photo-notes ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 13px;
  padding: 0;
  list-style: none;
}

.project-photo-notes li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 9px;
  border-radius: 4px;
  background: #e8ecd9;
  font-size: 12px;
  font-weight: 700;
}

.project-photo-notes li b {
  display: grid;
  place-items: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--forest);
  color: white;
}

.project-photo-notes small {
  color: var(--muted);
}

.guides-footer {
  margin-top: 30px;
  text-align: right;
}

@media (max-width: 800px) {
  .home-hero-photo img {
    object-position: 55% center;
  }

  .project-photo-card {
    box-shadow: 14px 14px 0 #103e2d;
  }

  .project-photo-notes ul {
    grid-template-columns: 1fr;
  }

  .project-photo-notes li {
    font-size: 13px;
  }

  .hero-art .photo-chip {
    right: 14px;
    bottom: 14px;
  }

  .guides-footer {
    margin-top: 24px;
    text-align: left;
  }
}
