.c-whitepaperCover {
    position: relative;
    overflow: hidden;
    padding-bottom: 145%;
    border-radius: 4px;
    box-shadow: 0 6px 11px rgba(0,0,0,0.1),
                0 0 40px rgba(0,0,0,.1);
    background-size: cover;
    background-color: var(--white);
}

@media screen and (min-width: 400px) {
    .c-whitepaperCover {
        font-size: 1.3em;
    }
}

@media screen and (min-width: 960px) {
    .c-whitepaperCover {
        font-size: 1em;
    }
}

.c-whitepaperCover__body {
    position: absolute;
    right: 8%;
    left: 0;
    bottom: 5%;
    min-height: 25%;
    padding: 6.5% 6.5% 9%;
    border-radius: 0 8px 8px 0;
    background-color: var(--papaya);
}

.c-whitepaperCover__title {
    position: relative;
    margin: 0;
    font-family: var(--fam-headings);
    font-size: var(--size-normal);
    color: var(--white);
}

.c-whitepaperCover::before {
    content: '';
    position: absolute;
    display: block;
    top: 9%;
    right: -5%;
    width: 50%;
    height: 35%;
    border: 2px solid var(--sapphire);
    border-radius: 11px;
    z-index: 3;
}

.c-whitepaperCover::after {
    content: '';
    position: absolute;
    top: 41%;
    right: 25%;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background-color: var(--indigo);
    z-index: 3;
}

/**
 * Version 2
 */
.c-whitepaperCover--2::before {
    top: 18%;
    left: -5%;
    right: auto;
}

.c-whitepaperCover--2::after {
    top: 93%;
    right: 16%;
}

/**
 * Version 3
 */
.c-whitepaperCover--3::before {
    top: 45%;
    left: -10%;
    right: auto;
    z-index: 0;
    border-color: var(--indigo);
}

.c-whitepaperCover--3::after {
    top: -1%;
    right: 8%;
    background-color: var(--sapphire);
}
