.thumbnail {
  position: relative;
  z-index: 1;
  height: fit-content;
}

.thumbnail > video {
  z-index: 1;
  border-radius: 10px;
  position: relative;
  aspect-ratio: 16 / 9;
  height: 23vw;
  border: 4px solid #f8f0e3;
  box-shadow: 2px 2px 8px #41361e4e;
}

@media screen and (max-width: 680px) {
  .thumbnail > video {
    height: 50vw;
  }
}

.thumbnail::after {
  content: 'LIVE';
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 2;
  font-family: 'Acronym';
  color: #f8f0e3;
  font-size: 18px;
  font-weight: 500;
  background-color: #ff0000;
  padding: 1px 5px;
  width: fit-content;
  height: auto;
  border-radius: 5px;
  box-shadow: -1px 1px 3px #41361e;
}

.thumbnail:hover::after {
  content: 'JK, NOT LIVE';
}