div#page {
    background: #f8f9fb;

    div.page-header {
        margin: 30px 0;

        h1 {
            padding: 0;
            margin: 0;
        }
    }

    div.page-content {
        height: 100%;
        width: 100%;
        background-color: #fff;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 10px 15px;
        margin-bottom: 10px;
        position: relative;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        color: #333;
        font-size: 13px;

        .post-date-holder {
            display: flex;
            flex-direction: row;
            justify-content: flex-end;
        }

        .post-tags {
            >a {
                margin: 0;
            }
        }
    }
}