.header-main-icon {
    width: 8vw;
    height: 8vw;
}

.video-wrapper {
    display: flex;
    gap: 3vw;
    width: 100%;
    max-width: 90vw;
    margin-top: 30px;
}

.video {
    flex: 1;
    max-width: 35vw;
    display: flex;
    aspect-ratio: 16 / 9;
    background: black;
    border-radius: 0.5em;
    overflow: hidden;
}

.video video {
    width: 100%;
    height: 100%;
    border-radius: 0.5em;
    flex: 1;
    object-fit: contain;
}

.video-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/9;
  background: linear-gradient(136deg, #e5e5e5 45%, #595959 200%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  color: #393939;
  font-weight: 500;
}

.placeholder-content p {
  font-size: 1.1rem;
  line-height: 1.5;
}


@media (max-aspect-ratio: 9/16) {
    .video-wrapper {
        flex-direction: column;
        gap: 2vh;
    }

    .video {
        max-width: 100%;
    }
}