.single-recipe-main-image {
    transition: background-color 0.5s ease;
}

.single-recipe-main-image.cinematic {
    background-color: #2E080E;
    z-index: 100000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px 0;
    animation: cinematic 2s ease-in-out;
}

@keyframes cinematic {
    0% {
        background-color: currentColor;
    }
    100% {
        background-color: #2E080E;
    }
}

.single-recipe-main-image.cinematic .video-button {
    animation: posBottom 1s forwards;
}

@keyframes posBottom {
    0% {
        bottom: 50%;
    }
    100% {
        bottom: 60px;
    }
}

.video-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-recipe .video-button {
    position: absolute;
    cursor: pointer;
    z-index: 1;
    padding: 14px 30px;
    background-color: var(--white);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: bottom 1s ease;
    bottom: 50%;
}

.video-button--icon {
    margin-inline-end: 12px;
}

.button-icon--text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--red);
}

.single-recipe .icon-pause {
    width: 21px;
    height: 25px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='24' viewBox='0 0 16 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0H6V24H0V0Z' fill='%23A32136'/%3E%3Cpath d='M10 0H16V24H10V0Z' fill='%23A32136'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 21px;
}

.single-recipe .icon-play {
    width: 17px;
    height: 19px;
    background-image: url("data:image/svg+xml,%3Csvg width='19' height='21' viewBox='0 0 19 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M-9.17939e-07 21L0 -8.30516e-07L19 10.5L-9.17939e-07 21Z' fill='%23A32136'/%3E%3C/svg%3E%0A");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 17px;
}

.single-recipe--instructions {
    padding: 60px 0 clamp(0.625rem, -4.3264rem + 20.1072vw, 10rem);
}

.single-recipe--instructions p {
    margin-bottom: 5px;
}
.single-recipe--instructions .back-link {
    text-decoration: underline;
}
.single-recipe--instructions .back-link:hover {
    text-decoration: none;
}
@media (max-width: 480px) {
    .single-recipe .video-button {
        bottom: 30%;
    }
}