.production-cards-wrapper {
    margin-top: 4rem;
}

.video-wrapper {
    position: relative;
    width: 560px;
    max-width: 100%;
    margin: 0 auto;
    cursor: pointer;
    aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Overlay play button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: #b19367;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 25px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.production-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.production-cards-wrapper .production-card:nth-child(odd) {
    flex-direction: row-reverse;
}

.production-card {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.production-card > div {
    flex: calc(50% - 20px);
}

.production-card-title-wrapper h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #030712;
}

.production-img-video-wrapper,
.video-wrapper {
    height: 25rem;
    border-radius: 1.5rem;
    overflow: hidden;
}

.production-card-description-wrapper p {
    color: #6b7280;
    font-weight: 400;
    line-height: 150%;
    font-size: 16px;
}

.production-card-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

@media (max-width: 1024px) {
    .production-cards-wrapper .production-card:nth-child(odd) {
        flex-direction: column-reverse;
    }
    .production-cards-wrapper .production-card:nth-child(odd) {
        flex-direction: column;
    }

    .production-card > div {
        flex: 100%;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .production-cards-wrapper {
        gap: 2.625rem;
    }
    .production-card {
        flex-direction: column;
    }
    .production-img-video-wrapper {
        height: 18rem;
    }

    .video-wrapper {
        height: 18rem;
    }
}
