.sample-work-image {
  color: inherit;
  cursor: pointer;
  isolation: isolate;
  text-decoration: none;
}

.sample-work-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(17, 27, 43, .5));
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.sample-work-image img {
  position: relative;
  z-index: 1;
}

.sample-work-image .project-label,
.sample-open-label {
  position: absolute;
  z-index: 3;
}

.sample-open-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  opacity: 0;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

.sample-work-image:hover::after,
.sample-work-image:focus-visible::after,
.sample-work-image:hover .sample-open-label,
.sample-work-image:focus-visible .sample-open-label {
  opacity: 1;
}

.sample-work-image:hover .sample-open-label,
.sample-work-image:focus-visible .sample-open-label {
  transform: translateY(0);
}

.sample-work-image:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 5px;
}

@media (hover: none) {
  .sample-open-label {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sample-work-image::after,
  .sample-open-label {
    transition: none;
  }
}
