@charset "UTF-8";
/* CSS Document */
/* Written by Stuart Harcourt */
/* Created: 06-08-2025 */
/* Last update: 06-08-2025 */
/* This document is to add custom styles for additional elements required by the CC team */
/* This allow us to not change or break the digital8 framework */
/* This file is ONLY called on single.php and not on the global header via is_single as that would be overkill for a single style */
/* Let's play Tetris! */

/* ------ Adds enhanced <BLOCKQUOTE> styling to Wordpress Posts single posts only */ 

.single-post blockquote {
    display: block; 
    color: #333; 
    background: #F2F0EF; 
    padding: 20px; 
    border-radius: 10px; 
    margin: 30px 2%; 
    border-left: solid 20px #2874b7;
}

.single-post blockquote p {
    font-style: italic;
    font-size: 1.25em; 
    line-height: 1.3; 
}