article.page-content ul li {
        position: relative;
        padding-left: 20px; /* chừa chỗ cho icon */
    }
    article.page-content ul li::before {
        font-family: "FontAwesome"; /* Font Awesome 4.7.0 */
        content: "\f0da"; /* mã unicode của fa-caret-right */
        position: absolute;
        left: 0;
        top: 0;
        color: #333; /* màu icon */
    }
blockquote {
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    padding: 20px 30px;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    color: #333;
}

blockquote::before {
    content: "“";
    font-size: 50px;
    position: absolute;
    left: 10px;
    top: 0;
    color: #ccc;
    font-family: Georgia, serif;
}

blockquote::after {
    content: "”";
    font-size: 50px;
    position: absolute;
    right: 10px;
    bottom: -10px;
    color: #ccc;
    font-family: Georgia, serif;
}
article.page-content blockquote p:last-of-type{
    margin-bottom:10px;
}


