hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}


Single Centered Video

    .single-video-container {
      max-width: 960px;
      margin: 0 auto;
      padding: 20px;
    }

    .single-video-wrapper {
      position: relative;
      width: 100%;
      height: 0;
      padding-bottom: 56.25%;
      overflow: hidden;
      border-radius: 12px;
      border: 2px solid #fba980;
    }

    .single-video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 12px;
    }

/* 
 Three Centered Video 

.video-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 20px;
    }

    .video-wrapper {
      position: relative;
      flex: 1 1 30%; 
      min-width: 280px;
      max-width: 400px;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: 12px;
      border: 2px solid #fba980;
    }

    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    @media (max-width: 1024px) {
      .video-wrapper {
        flex: 1 1 45%; 
}
 

    @media (max-width: 640px) {
      .video-wrapper {
        flex: 1 1 100%; 
  }

*/
    
    
/*#header {
    background-color: #000000 !important;
    }*/

/*#wrap {
    background: #000000 !important; 
    padding: 1px 30px 0;
    background-position: center;
    background-size: cover;
}
*/

.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.video-wrapper {
  position: relative;
  flex: 1 1 30%; 
  min-width: 280px;
  max-width: 400px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid #fba980;
  background-color: #000;
  cursor: pointer;
}

.video-wrapper img.thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-wrapper .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  background: rgba(0,0,0,0.6) url('https://img.icons8.com/ios-filled/50/ffffff/play.png') no-repeat center center;
  background-size: 32px 32px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
}

.video-wrapper:hover .play-button {
  background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 1024px) {
  .video-wrapper {
    flex: 1 1 45%; 
  }
}

@media (max-width: 640px) {
  .video-wrapper {
    flex: 1 1 100%; 
  }
}

