.custom-video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.custom-video-item {
  flex: 1 1 calc(50% - 26px); /* 50% width minus the gap */
  box-sizing: border-box;
}
.custom-video-item h3 {
  margin-top: 0px;
}
@media (max-width: 700px) {
  .custom-video-item {
    flex: 1 1 100%;
  }
}
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  border-radius: 24px;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 0;
  z-index: 1;
}
.youtube-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.youtube-play-button {
  width: 68px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 14%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.youtube-play-button::before {
  content: '';
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
