.spotlight {
    overflow: hidden;
    position: relative;
    display: flex;

    min-height: 430px;

    .spotlight-context {
        padding: 36px;
        position: relative;
        color: white;

        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;

        z-index: 3;
    }

    .wrap-image {
        position: absolute;
        height: 100%;
        width: 100%;

        .picture {
            height: 100%;
            width: 100%;

            .picture-image {
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
        }
    }

    .spotlight-gradient {
        background-image: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.5),
            transparent
        );
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2;
    }

    .spotlight-context-content {
        height: 100%;
        max-width: unset;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;

        @screen sm {
            max-width: 70%;
        }
    }

    .spotlight-context-button {
        margin-top: 24px;
    }
}
