.entrance {
  grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr);
  gap: clamp(32px, 4.5vw, 82px);
}

.entrance-copy {
  position: relative;
  z-index: 2;
}

.collection-tombstone {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 660px);
  aspect-ratio: 1.18;
  justify-self: end;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, .68));
  transform: translateZ(0);
  transition: filter .6s ease, transform .6s ease;
}

.collection-tombstone::after {
  content: "";
  position: absolute;
  inset: auto 9% 2% 9%;
  height: 8%;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(230, 168, 64, .2), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.collection-tombstone:hover,
.collection-tombstone:focus-visible {
  filter: drop-shadow(0 31px 42px rgba(0, 0, 0, .76)) brightness(1.035);
  transform: translateY(-4px);
}

.collection-tombstone:focus-visible {
  outline: 1px solid #f5ce7d;
  outline-offset: 8px;
}

.collection-tombstone-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 980px) {
  .entrance {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
    gap: 28px;
  }

  .collection-tombstone {
    width: min(100%, 520px);
  }
}

@media (max-width: 720px) {
  .entrance {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 22px;
    padding: 38px 20px 54px;
  }

  .collection-tombstone {
    width: min(94vw, 460px);
    justify-self: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .collection-tombstone {
    transition: none;
  }
}
