  .video-tile {
    text-align: center;
    padding: 3rem 1.5rem;
    background-color: var(--color-light);
    border-radius: 8px;
  }

  .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 2rem auto 0;
    aspect-ratio: 16 / 9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
  }

  .responsive-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    display: block;
  }

  @media (max-width: 500px) {
    .video-wrapper {
      aspect-ratio: 4 / 3;
    }
  }