.feature img {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  border-radius: 0.5rem;
}

/* Popup lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none !important;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox:target {
  display: flex !important;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}

.lightbox .close {
  position: absolute;
  inset: 0;
}
