/*
 * Read More Plugin
 *  by Reece Como
 *  9 Jan 2018
 *
 * Expanded from: "Text Fade Out / Read More Link | CSS-Tricks"
 * https://css-tricks.com/text-fade-read-more/
 */
.read-more {
    max-height: 120px;
    position: relative;
    overflow: hidden;
}

.read-more .prompt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    margin: 0;
    padding-top: 60px;
    padding-bottom: 9px;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0), white);
}

.read-more .prompt .button {
    padding: 5px 30px;
    border-radius: 99px;
    box-shadow: 0 0 15px 5px white;
    text-shadow: 1px 1px rgba(0,0,0,.3);
    background-color: #000;   /* zwarte knop */
    color: #fff;              /* witte tekst */
    text-decoration: none;    /* geen onderstreping */
    font-family: sans-serif;
    font-size: 14px;
    display: inline-block;
    transition: background-color 0.3s ease; /* vloeiende overgang */
}

.read-more .prompt .button:hover {
    background-color: #666; /* grijs bij hover */
}

.read-more.big-preview {
    max-height: 240px;
}

.read-more.big-preview .prompt {
    padding-top: 140px;
}