.tena-productfinder {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}

.finder-cell {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.finder-cell video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.tena-productfinder {
  margin: 0;
}

.tena-productfinder-intro {
  margin: 0 0 24px 0;
}

.tena-finder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.finder-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #eee;
  aspect-ratio: 1 / 1;
}
.finder-cell {
  border-radius: 5px;
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .5);
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, .5);
  margin: 10px;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.finder-cell:hover {
  -webkit-box-shadow: 0 0 10px 2px rgba(0, 0, 0, .7);
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, .7);
}

.finder-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.finder-title {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 3;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  pointer-events: none;
}

.finder-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  z-index: 2;
  transition: opacity .25s ease;
  pointer-events: none;
}

.finder-cell.show-cta .finder-overlay {
  opacity: 1;
  pointer-events: auto;
}

.finder-cta {

  border: 3px solid #09205C;
  height: 100%;
  width: 100%;
  font-weight: 600;
  border-radius: 4px;
}
