
/* =======================
       Main Container 
   ======================= */
    
   .video-grid{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(232px, 1fr));
      column-gap: 20px;
      row-gap: 40px;
    }
/* ===========================
         Upper Part
   =========================== */

    .div-video-thumbnail{
      vertical-align: top;
      margin-bottom: 10px;
      position: relative;
    }
    .img-thumbnail{
      width: 100%;
    }
    .video-time{
      position: absolute;
      font-family: Roboto, Arial, sans-serif;
      font-size: 12px;
      bottom: 11px;
      right: 4px;
      color: white;
      font-weight: 500;
      background-color: rgba(0, 0, 0, 0.9);
      font-size: 12px;
      padding: 2px 5px;
      border-radius: 2px;
      box-sizing: border-box;
    }
     
/* ===========================
         Bottom Part
   =========================== */
   .div-video-info{
      display: grid;
      grid-template-columns: 50px 1fr;
    }

  

    .div-channel-pic{
      width: 50px;
      display: inline-block;
      vertical-align: top;
    }
    .channel-pic{
      width: 40px;
      border-radius: 100%;
    }


/* ===========================
     Right Part: Video Info 
   =========================== */


    .div-video-text{
      display: inline-block;;
    }
    .video-title{
      margin-top: 0;
      font-weight: 500;
      font-size: 14px;
      line-height: 20px;
      margin-bottom: 15px;
    }
 
    .channel-autor,
    .video-views{
      color:  rgb(96, 96, 96);
      font-size: 12px;
      margin:0;
    }
    .video-views{
      margin-top: 5px;
    }