

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

 .thumbnail {
  width: 100%;
}

.thumbnail-row {
  margin-bottom: 8px;
  position: relative;
}

@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:1000px) {
  .video-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}


.video-time {
 font-size: 12px;
 font-weight: 500;
 padding:  4px;
 border-radius: 2px;
 background-color: black;
 color: white ;
 position: absolute;
 bottom: 8px;
 right: 5px;
}
  
.video-info-grid {
  display: grid;
  grid-template-columns: 40px 1fr;
}

.channel-picture {
  width: 40px;
}

.profile-pictures {
   width:  36px;
   border-radius: 25px;
}

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

.video-title-link {
  text-decoration: none;
  color: black;
}

.description-video, 
.status-video{
  font-size: 12px;
  color: rgb(96, 96, 96);
  line-height: 18px;
  margin-left: 10px;
}

.profile-pictures-container {
position: relative;
display: inline-block;

}

.channel-tooltip {
  background-color: white;
  width: 200px;
  padding: 12px 12px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  position: absolute;
  top: 55px;
  z-index: 300;

  opacity: 0;
  pointer-events: none;

  display: flex;
  align-items: center;
  transition: opacity 0.15s;
}

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

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

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


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