@charset "UTF-8";
 :root {
    --brown_text: #5E4B45;
    --almond_cream: #E5DACF;
    --soft_rose: #C38E81;
    --sage_mist: #C6BFA9;
    --linen_white: #FEF3ED;
    --muted_accent: #A18F88;
    --fresh_olive: #A8A388;
    --dusty_rose: #B07D70;
    --dusty_blue: #A4B7C1;
    --slate_blue: #8DA4AE;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%);
    background: rgba(195, 142, 128, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid var(--linen_white);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.play-button:hover {
    background: rgba(195, 142, 128, 0.8);
}

.front_reel_video,
.scene_videos {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    cursor: pointer;
}

.scene_videos {
    margin-bottom: 10px;
}

.front_reel_video img,
.front_reel_video iframe,
.scene_videos img,
.scene_videos iframe {
    width: 100%;
    height: 100%;
    display: block;
}

@media (min-width: 768px) {
    .front_reel_video,
    .scene_videos {
        width: 90%;
    }
    .scene_videos {
        margin-bottom: 20px;
    }
    .play-button {
        width: 100px;
        height: 100px;
    }
    .play-button::before {
        border-left: 40px solid var(--linen_white);
        border-top: 24px solid transparent;
        border-bottom: 24px solid transparent;
    }
}