.thumb {
  margin-bottom: 8px;
  border-radius: 12px;
  width: 100%;
}


.grid1 {
  display: grid;
  grid-template-columns: 50px 1fr;
}
.pfp1 {
  width: 38px;
  vertical-align: top;
  position: relative;
  height: 38px;
}
.pfp1:hover .pfp-tooltip {
  opacity: 1;
}
.supa {
  width: 100%;
  border-radius: 25px;
}
.supa1 {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  margin-right: 10px;
}
.pfp-tooltip {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: -80px;
  margin-left: 20px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 10px;
  padding-left: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: rgb(255, 255, 255);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  width: 200px;
}
.ch-name {
  font-weight: bold;
  font-size: 16px;
}
.subs {
  color: grey;
  margin-top: 4px;
  font-size: 14px;
}
.video1 {
  display: inline-block;
  vertical-align: top;
  margin-right: 15px;
}
.thumb-box {
 position: relative;
 padding-bottom: -10px;
}
.time {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  position: absolute;
  bottom: 20px;
  right: 8px;
  font-size: 12px;
  font-weight: 500;
  padding: 3px;
  border-radius: 4px;
  cursor: pointer;
}
.par {
  margin-top: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 5px;
  cursor: pointer;
}
.author, .stats {
  font-size: 14px;
  color: rgb(96, 96, 96);
  margin-bottom: 0;
  margin-top: 0;
}
.author {
  margin-bottom: 5px;
  cursor: pointer;
}
.author:hover {
  color: rgb(0, 0, 0);
}
.video-grid {
  display: grid;
  column-gap:16px;
  row-gap: 40px;
}
@media (max-width: 545px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 546px) and (max-width: 799px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 800px) and (max-width: 1299px) {
  .video-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1300px) {
  .video-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}   

a {
  text-decoration: none;
  color: black;
}
