.video-reel {
    margin: 60px 0;
}

.video-reel__container {
    display: grid;
    gap: 40px;
}

.video-reel__text {
    display: grid;
    gap: 20px;
}

h2.video-reel__title {
    font: 400 24px/1.2 'Cera Pro', sans-serif;
    border: 0;
    padding: 0;
    margin: 0;
}

.video-reel__paragraphs p {
    margin: 0 0 20px;
    padding: 0;
}

.video-reel__paragraphs p:last-of-type {
    margin: 0;
}

.video-reel__cta {
    width: fit-content;
}

.video-reel__video {
    position: relative;
}

.video-reel__video.playing .video-reel__video-button {
    opacity: 0;
    pointer-events: none;
}

.video-reel__video.playing .video-reel__video-media {
    filter: brightness(1);
    pointer-events: auto;
}

.video-reel__video-media {
    position: relative;
    width: calc(100% - 50px);
    padding-bottom: 50px;
    filter: brightness(0.7);
    transition: filter 300ms ease-in-out;
    z-index: 2;
    pointer-events: none;
}

.video-reel__video::before {
    content: '';
    display: block;
    position: absolute;
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    right: 0;
    bottom: 0;
    background: #F8F5EB;
    z-index: 1;
}

.video-reel__video-button {
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
    width: 150px;
    height: auto;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 0;
    outline: 0;
    opacity: 0.7;
    transition: opacity 300ms ease-in-out;
    cursor: pointer;
    z-index: 3;
}

.video-reel__video-icon {
    display: block;
    width: 100%;
    height: auto;
}

@media only screen and (min-width: 1280px) {
    .video-reel__container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}