.video-section {
    padding: 80px 0;
    background: #2B1D16;
    color: white;
    text-align: center;
}

.video-wrapper {
    width: 100%;
    max-width: 420px;
    margin: auto;

    border-radius: 22px;
    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

    position: relative;
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 9/16;
    height: auto;
    display: block;
    border: none;
}

iframe {
    width: 100%;
    height: 500px;
    border: none;
}

@media(max-width:768px) {
  iframe {
    height: 250px;
  }
}

