.preview-video {
  height: 178px;
  width: 314px;
  object-fit: fill;
  
}

.thumbnail-kris {
  height: 178px;
  width: 314px;
  object-fit: fill;
  
}

.video-preview {
  position: relative;
}

.thumbnail-sultan {
  width: 36px;
  height: 36px;
  border-radius: 90px;
}

.channel-picture-container {
  position: relative;
  display: inline-block;
}

.channel-tooltip {
  pointer-events:none;
  position: absolute;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  width: 200px;
  padding: 12px;
  top: 55px;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}

.channel-picture-container:hover .channel-tooltip {
  opacity: 1;
}

.channel-tooltip-picture {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  margin-right: 8px;
  
}

.channel-tooltip-name {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 4px;
}

.channel-tooltip-stats {
  font-size: 14px;
  color: rgb(96, 96, 96);
}

.video-title {
  margin-top: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  width: 250px;
  margin-bottom: 10px;
}

.thumbnail-row {
  margin-bottom: 8px;
  position: relative;
  max-width: 314px;
  height: 178px;
}

.video-author,
.video-stats {
  font-size: 12px;
  color: rgb(96, 96, 96);
  margin-bottom: 8px;
}

.video-author {
  margin-top: 4px;
}



.video-info-grid {
  display: grid;
  grid-template-columns: 50px 1fr;
  
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  column-gap: 16px;
  row-gap: 40px;
}

@media(max-width: 750px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(min-width: 751px) and (max-width: 999px) {
  .video-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media(min-width: 1400px) {
  .video-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .video-title {
    font-size: 16px;
    line-height: 24px;
  }
}

.video-time {
  font-size: 12px;
  font-weight: 500;
  border-radius: 2px;
  padding: 4px;
  background-color: black;
  color: white;
  position: absolute;
  bottom: 8px;
  right: 5px;
  z-index: 200;
}
