.video-items {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(2, 1fr);
  @media (max-width: 1366px) {
    gap: 30px;
  }
  @media (max-width: 1024px) {
    gap: 20px;
  }
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
  article {
    figure {
      position: relative;
      padding: 8px;
      margin-bottom: 1em;
      background-color: transparent;
      border: 1px dashed rgba(255, 255, 255, 0.6);
      border-radius: var(--br-md);
      transition: background-color 0.3s ease, border-color 0.3s ease;
      .thumbnail {
        width: 100%;
        border-radius: var(--br-sm);
        z-index: 1;
      }
      .play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
      }
      &:hover {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 1);
      }
    }
    h3 {
      text-align: center;
      margin: 0;
    }
  }
}
