.n-scrollytelling__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px 42px 18px 10px;
    box-sizing: border-box;
    opacity: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    z-index: 11;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.n-scrollytelling__caption--visible {
    opacity: 1;
}

.n-scrollytelling__caption-cta {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    border: 0;
    border-radius: 16px;
    z-index: 15;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: 50% 45%;
    vertical-align: baseline;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3csvg width='4' height='11' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M3.024 1.784c0 .32-.117.592-.352.816a1.14 1.14 0 0 1-.816.32c-.33 0-.613-.107-.848-.32a1.11 1.11 0 0 1-.336-.816c0-.32.117-.587.352-.8.235-.224.512-.336.832-.336.32 0 .592.112.816.336.235.213.352.48.352.8ZM.864 3.848h1.984V11H.864V3.848Z' fill='white'/%3e%3c/svg%3e");
    background-size: 4px 13px;
    border: solid 2px white
}



.n-scrollytelling__caption-cta:hover {
    cursor: pointer;
}


@include oGridRespondTo($from: M) {
    .n-scrollytelling__caption-cta {
        display: none;
    }

    // Background only spans the width of text when the text only contains the credit
    .n-scrollytelling__caption {
        padding: 13px 20px 10px 15px;
        opacity: 1;
    }

    // Background spans full width the screen text contains credit and caption
    .n-scrollytelling__caption--has-caption {
        width: 100%;
    }
}
