.video-wall {

  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;

    h2 {
      text-align: center;
    }
  }

  iframe {
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(min(var(--count, 1), 4), 1fr);
    gap: 32px;

    .video-button {
      text-wrap: balance;
      font-size: clamp(1.3rem, 2.1vw, 1.6rem);
      line-height: 1.3;

      &,
      & img {
        width: 100%;
      }
    }

    @media (max-width: 1000px) {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
  }

}

.video-wall+.video-wall {
  margin-top: 100px;
}