/* Main creative writing page */
.inner-page {
    .image {
        background: url("../img/inner-pages/creative-writing/creative-writing.jpg") center center no-repeat;
        background-size: cover;
    }
    .book {
        position: relative;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 400px;
        height: 350px;
        overflow: hidden;
        padding: 0;
        a {
            &:hover {
                color: inherit;
            }
        }
        div.trapezoid {
            display: inline-block;
            min-width: 283px;
            height: 250px;
            transform: perspective(11px) rotateX(0.62deg);
            color: #3b434a;
            background-repeat: no-repeat;
            background-size: 100%;
            background-position: center;
            border-top-right-radius: 1.5%;
            border-bottom-right-radius: 1.5%;
            .passage-title {
                text-align: center;
                position: absolute;
                top: 10%;
                font-size: 2em;
                font-weight: bold;
                width: 100%;
                padding: 0 5px;
            }
            small {
                font-size: 0.8em;
                font-weight: bold;
                width: 99%;
                display: inline-block;
                text-align: center;
                position: absolute;
                left: 0;
                bottom: 0;
                padding-bottom: 5px;
            }
        }

    }

    @media (max-width: 450px) {
        .inner-page {
            .book {
                width: 300px;
                height: 250px;
            }
            .passage-title {
                top: 10%;
                font-size: 1.5em;
            }
            small {
                padding-bottom: 2px;
            }
            a {
                transform: perspective(8px) rotateX(0.57deg);
                left: 46px;
                top: -3px;
                width: 210px;
                height: 188px;
            }
        }
    }


    /* Passage pages */
    .passage {
        .content p {
            text-align: justify;
        }
        .copyright {
            display: flex;
            width: 100%;
            justify-content: right;
        }
    }

    .links-bar a {
        color: inherit;
    }

    /* Play modal pop-up */
    .modal-body {
        p {
            font-size: 1.2em;
        }
    }
}

